:root {
  --lp-primary: #1a5fb4;
  --lp-primary-dark: #10418a;
  --lp-accent: #ff9800;
  --lp-accent-light: #fff3e0;
  --lp-wsp: #25d366;
  --lp-dark: #1e293b;
  --lp-gray: #64748b;
  --lp-light: #f8fafc;
  --lp-border: #e2e8f0;
  --lp-radius: 1rem;
  --lp-shadow: 0 4px 20px rgba(30,41,59,0.08);
  --lp-shadow-lg: 0 12px 40px rgba(30,41,59,0.12);
  --lp-blog-ink: #172033;
  --lp-blog-soft: #f4f8ff;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
  color: var(--lp-dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Roboto', sans-serif; font-weight: 800; letter-spacing: -.01em; }

/* Topbar */
.lp-topbar { background: var(--lp-dark); color: #94a3b8; padding: .35rem 0; font-size: .8rem; }
.lp-topbar a { color: #cbd5e1; text-decoration: none; }
.lp-topbar a:hover { color: #fff; }

/* Navbar */
.lp-navbar { background: #fff; border-bottom: 1px solid var(--lp-border); padding: .6rem 0; }
.lp-brand { display: flex; align-items: center; gap: .5rem; font-weight: 800; font-size: 1.35rem; color: var(--lp-dark) !important; text-decoration: none; }
.lp-brand-accent { color: var(--lp-primary); }
.lp-brand-text { font-family: 'Outfit', sans-serif; }
.lp-search-form { width: 260px; }
.lp-search-form .form-control { border-radius: .5rem 0 0 .5rem; border-color: var(--lp-border); font-size: .9rem; }
.lp-search-form .btn { border-radius: 0 .5rem .5rem 0; border-color: var(--lp-border); }
.navbar-nav .nav-link { font-weight: 500; color: var(--lp-dark) !important; padding: .5rem .9rem !important; border-radius: .5rem; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { background: var(--lp-light); color: var(--lp-primary) !important; }
.dropdown-menu { border: 1px solid var(--lp-border); border-radius: .75rem; box-shadow: var(--lp-shadow-lg); font-size: .9rem; }
.dropdown-item { border-radius: .375rem; padding: .45rem .8rem; }
.dropdown-item:hover { background: var(--lp-light); color: var(--lp-primary); }
.lp-nav-toggle { border: 1px solid #c7dbf6; border-radius: .85rem; padding: .42rem .5rem; background: linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%); box-shadow: 0 8px 18px rgba(26,95,180,.14); }
.lp-nav-toggle:focus { box-shadow: 0 0 0 .18rem rgba(26,95,180,.2); }
.lp-nav-toggle-icon { width: 24px; height: 16px; display: inline-flex; flex-direction: column; justify-content: space-between; }
.lp-nav-toggle-icon span { display: block; height: 2px; border-radius: 999px; background: linear-gradient(90deg, #1a5fb4 0%, #2b7bdd 100%); }
.lp-categories-dropdown { min-width: 290px; }
.lp-dropdown-item { display: flex; justify-content: space-between; align-items: center; gap: .7rem; }
.lp-dropdown-meta { display: inline-flex; align-items: center; gap: .45rem; }
.lp-dropdown-meta i { color: var(--lp-primary); }
.lp-nav-badge { min-width: 28px; height: 24px; display: inline-flex; align-items: center; justify-content: center; padding: 0 .45rem; border-radius: 999px; border: 1px solid #d7e4f8; background: #f1f7ff; color: #1b4f95; font-size: .74rem; font-weight: 700; line-height: 1; }

/* Sticky bar */
.lp-sticky-bar { position: fixed; top: 0; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--lp-border); z-index: 1050; transform: translateY(-100%); opacity: 0; transition: transform .35s ease, opacity .35s ease; padding: .45rem 0; box-shadow: var(--lp-shadow); }
.lp-sticky-bar.visible { transform: translateY(0); opacity: 1; }
.lp-sticky-brand { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; background: var(--lp-primary); color: #fff; font-weight: 700; border-radius: .375rem; text-decoration: none; font-size: .85rem; }
.lp-sticky-search .form-control { border-radius: .5rem; border-color: var(--lp-border); }
.lp-sticky-icon-btn { height: 34px; border-radius: .65rem; border: 1px solid #d8e3f3; padding: 0 .55rem; display: inline-flex; align-items: center; justify-content: center; gap: .35rem; font-size: .8rem; text-decoration: none; font-weight: 700; background: #fff; color: #334155; box-shadow: 0 6px 14px rgba(15,23,42,.08); }
.lp-sticky-icon-btn:hover { color: #0f2f5c; border-color: #c0d5f1; }
.lp-sticky-menu-btn { background: linear-gradient(180deg, #ffffff 0%, #f1f7ff 100%); color: #1a5fb4; }
.lp-sticky-cart-btn { color: #1a5fb4; }
.lp-sticky-wsp-btn { background: #f0fff5; border-color: #b6ebcd; color: #138a44; min-width: 34px; padding: 0; }

/* Offcanvas nav */
.lp-offcanvas-nav { width: min(94vw, 360px); background: linear-gradient(180deg, #f7fbff 0%, #fdfefe 34%, #ffffff 100%); border-right: 1px solid #dce8f8; }
.lp-offcanvas-nav .offcanvas-header { background: #fff; box-shadow: 0 6px 14px rgba(15,23,42,.04); }
.lp-offcanvas-subtitle { font-size: .78rem; color: var(--lp-gray); }
.lp-offcanvas-quick { display: grid; gap: .65rem; margin-bottom: 1rem; }
.lp-offcanvas-pill { display: flex; align-items: center; gap: .55rem; text-decoration: none; color: #133a74; border: 1px solid #dbe8fb; border-radius: .85rem; background: #fff; padding: .62rem .72rem; font-weight: 600; box-shadow: 0 10px 24px rgba(26,95,180,.07); }
.lp-offcanvas-pill i { color: var(--lp-primary); }
.lp-offcanvas-pill strong { margin-left: auto; font-size: .78rem; color: #11407e; background: #e8f2ff; border: 1px solid #d0e2fb; border-radius: 999px; padding: .15rem .48rem; }
.lp-offcanvas-pill-wsp { border-color: #b7ebcd; color: #13643a; background: #f2fff6; }
.lp-offcanvas-pill-wsp i { color: #199b4f; }
.lp-offcanvas-block-title { margin: .2rem 0 .7rem; font-size: .84rem; text-transform: uppercase; letter-spacing: .08em; color: #4b6488; font-weight: 800; }
.lp-offcanvas-list .nav-link { border: 1px solid #deebfa; border-radius: .82rem; background: #fff; padding: .6rem .72rem !important; display: flex; align-items: center; justify-content: space-between; color: #1e293b !important; font-weight: 600; }
.lp-offcanvas-list .nav-link:hover { border-color: #c7dcf8; background: #f8fbff; color: #1a5fb4 !important; }
.lp-offcanvas-list .nav-link.active { border-color: #b8d2f7; background: #eff6ff; color: #0f4a9a !important; }
.lp-offcanvas-link-meta { display: inline-flex; align-items: center; gap: .5rem; }
.lp-offcanvas-link-meta i { color: #1a5fb4; }

/* Hero */
.lp-hero { padding: 4rem 0 3.5rem; background: linear-gradient(135deg, #f0f7ff 0%, #fff 60%); }
.lp-hero-title { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.15; color: var(--lp-dark); margin-bottom: 1rem; }
.lp-hero-lead { font-size: 1.1rem; color: var(--lp-gray); max-width: 520px; margin-bottom: 1.5rem; line-height: 1.6; }
.lp-hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.lp-hero-img-link { display: block; position: relative; overflow: hidden; padding-bottom: 62.5%; background: #f8fafc; border-radius: var(--lp-radius); filter: drop-shadow(0 20px 40px rgba(26,95,180,0.12)); max-width: 460px; margin: 0 auto; }
.lp-hero-img-link img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.lp-hero-badges .badge { background: #fff; color: var(--lp-gray); border: 1px solid var(--lp-border); font-weight: 400; padding: .5rem .75rem; margin-right: .4rem; margin-bottom: .4rem; }
.lp-hero-badges .badge i { color: var(--lp-primary); margin-right: .25rem; }

/* Buttons */
.lp-btn { display: inline-flex; align-items: center; justify-content: center; gap: .4rem; padding: .65rem 1.4rem; border-radius: .6rem; font-weight: 600; font-size: .95rem; text-decoration: none; transition: all .2s ease; border: 1px solid transparent; cursor: pointer; }
.lp-btn-primary { background: var(--lp-primary); color: #fff; border-color: var(--lp-primary); }
.lp-btn-primary:hover { background: var(--lp-primary-dark); color: #fff; }
.lp-btn-wsp { background: var(--lp-wsp); color: #fff; border-color: var(--lp-wsp); }
.lp-btn-wsp:hover { background: #1da851; color: #fff; }
.lp-btn-outline { background: #fff; color: var(--lp-dark); border-color: var(--lp-border); }
.lp-btn-outline:hover { border-color: var(--lp-primary); color: var(--lp-primary); }
.lp-btn-sm { padding: .4rem .8rem; font-size: .82rem; border-radius: .45rem; }

/* Sections */
.lp-section { padding: 3.5rem 0; }
.lp-bg-light { background: var(--lp-light); }
.lp-section-title { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .5rem; color: var(--lp-dark); }
.lp-section-subtitle { color: var(--lp-gray); margin-bottom: 2rem; }
.lp-reveal-item {
  opacity: 1;
  transform: none;
  transition: opacity .72s ease, transform .72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--lp-reveal-delay, 0ms);
  will-change: opacity, transform;
}
.lp-reveal-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .lp-reveal-item,
  .lp-reveal-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Categories */
.lp-category-card { display: block; text-decoration: none; text-align: center; }
.lp-category-img { width: 100%; aspect-ratio: 1; border-radius: var(--lp-radius); background-size: cover; background-position: center; margin-bottom: .6rem; transition: transform .25s ease, box-shadow .25s ease; border: 1px solid var(--lp-border); }
.lp-category-card:hover .lp-category-img { transform: translateY(-4px); box-shadow: var(--lp-shadow-lg); }
.lp-category-name { font-weight: 600; color: var(--lp-dark); font-size: .92rem; }

/* Product Card / Slide Card (unificado) */
.lp-slide-card { background: #fff; border: 1px solid var(--lp-border); border-radius: var(--lp-radius); overflow: hidden; transition: box-shadow .25s ease, transform .25s ease; height: 100%; display: flex; flex-direction: column; }
.lp-slide-card:hover { box-shadow: var(--lp-shadow-lg); transform: translateY(-3px); }
.lp-slide-img-link { display: block; position: relative; overflow: hidden; padding-bottom: 100%; background: #f8fafc; }
.lp-slide-img-link img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.lp-slide-card:hover .lp-slide-img-link img { transform: scale(1.05); }
.lp-slide-body { padding: .8rem; flex: 1; display: flex; flex-direction: column; }
.lp-slide-title { font-size: .9rem; line-height: 1.2; margin-bottom: .25rem; }
.lp-slide-title a { color: var(--lp-dark); text-decoration: none; }
.lp-slide-title a:hover { color: var(--lp-primary); }
.lp-slide-sku { font-size: .75rem; color: var(--lp-gray); display: block; margin-bottom: .5rem; }
.lp-slide-desc {
  margin: 0 0 .55rem;
  font-size: .78rem;
  line-height: 1.35;
  color: #475569;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.lp-prod-actions-group { width: 100%; display: flex; align-items: stretch; margin-top: auto; padding-top: .5rem; border-radius: .6rem; overflow: hidden; }
.lp-prod-actions-group .lp-prod-action-btn { flex: 1 1 0; border: 1px solid; border-left-width: 0; background: #fff; font-weight: 700; font-size: .75rem; line-height: 1.05; text-align: center; text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding: .35rem .2rem; border-radius: 0; color: inherit; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.lp-prod-actions-group .lp-prod-action-btn:first-child { border-left-width: 1px; border-top-left-radius: .6rem; border-bottom-left-radius: .6rem; }
.lp-prod-actions-group .lp-prod-action-btn:last-child { border-top-right-radius: .6rem; border-bottom-right-radius: .6rem; }
.lp-prod-actions-group .lp-prod-action-btn i { margin-right: .15rem; font-size: .8rem; }
.lp-prod-action-sku { color: var(--lp-dark); border-color: var(--lp-primary); }
.lp-prod-action-sku i { color: var(--lp-primary); }
.lp-prod-action-sku:hover, .lp-prod-action-sku:focus { background: var(--lp-primary); color: #fff; }
.lp-prod-action-sku:hover i, .lp-prod-action-sku:focus i { color: #fff; }
.lp-prod-action-cart { color: var(--lp-dark); border-color: #94a3b8; }
.lp-prod-action-cart:hover, .lp-prod-action-cart:focus { background: #94a3b8; color: #fff; }
.lp-prod-action-wsp { color: #15803d; border-color: var(--lp-wsp); }
.lp-prod-action-wsp i { color: var(--lp-wsp); }
.lp-prod-action-wsp:hover, .lp-prod-action-wsp:focus { background: var(--lp-wsp); color: #fff; }
.lp-prod-action-wsp:hover i, .lp-prod-action-wsp:focus i { color: #fff; }

/* Legacy actions (fallback) */
.lp-slide-actions { display: flex; gap: .35rem; margin-top: auto; }
.lp-slide-actions .lp-btn-sm { flex: 1; }

/* Grid catalog helpers */
.lp-product-card { /* alias para compatibilidad */ }
.lp-card-img-link { display: block; position: relative; }
.lp-card-img-wrap { position: relative; overflow: hidden; background: #f8fafc; padding-bottom: 100%; }
.lp-card-img-wrap img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.lp-card-badge { position: absolute; top: 10px; left: 10px; background: rgba(255,255,255,0.95); backdrop-filter: blur(4px); color: var(--lp-primary); font-size: .72rem; font-weight: 700; padding: .3rem .6rem; border-radius: 999px; border: 1px solid var(--lp-border); }
.lp-card-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.lp-card-title { font-size: .98rem; line-height: 1.25; margin-bottom: .35rem; }
.lp-card-title a { color: var(--lp-dark); text-decoration: none; }
.lp-card-title a:hover { color: var(--lp-primary); }
.lp-card-sku { font-size: .78rem; color: var(--lp-gray); margin-bottom: .4rem; }
.lp-card-desc { font-size: .85rem; color: var(--lp-gray); line-height: 1.45; margin-bottom: .75rem; flex: 1; }
.lp-card-actions { display: flex; gap: .4rem; }
.lp-card-actions .lp-btn { flex: 1; padding: .45rem .4rem; font-size: .82rem; }

/* Spotlight */
.lp-spotlight { background: #fff; border: 1px solid var(--lp-border); border-radius: var(--lp-radius); overflow: hidden; box-shadow: var(--lp-shadow); }
.lp-spotlight-img-wrap { background: var(--lp-light); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding-bottom: 100%; }
.lp-spotlight-img-wrap img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; padding: 1.5rem; }
.lp-spotlight-body { padding: 2.5rem; }
.lp-spotlight-label { display: inline-block; background: var(--lp-accent-light); color: var(--lp-accent); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: .35rem .7rem; border-radius: .4rem; margin-bottom: .75rem; }
.lp-spotlight-title { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: .75rem; }
.lp-spotlight-desc { color: var(--lp-gray); line-height: 1.6; margin-bottom: 1rem; }
.lp-spotlight-sku { font-size: .85rem; color: var(--lp-gray); margin-bottom: 1.25rem; }
.lp-spotlight-actions { display: flex; gap: .6rem; flex-wrap: wrap; }

/* CTA Section */
.lp-cta-section { background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-dark) 100%); color: #fff; padding: 4rem 0; text-align: center; }
.lp-cta-title { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: .75rem; color: #fff; }
.lp-cta-text { opacity: .9; max-width: 600px; margin: 0 auto 1.5rem; font-size: 1.05rem; }
.lp-cta-actions { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; }
.lp-cta-section .lp-btn-outline { color: #fff; border-color: rgba(255,255,255,.5); background: transparent; }
.lp-cta-section .lp-btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* Tri carousel tabs */
.lp-tri-tabs .nav-pills .nav-link { color: var(--lp-gray); border-radius: .5rem .5rem 0 0; border-bottom: 2px solid transparent; font-weight: 600; }
.lp-tri-tabs .nav-pills .nav-link.active { background: transparent; color: var(--lp-primary); border-bottom-color: var(--lp-primary); }
.lp-tri-tabs .tab-content { padding-top: 1rem; }

/* Curiosidades widget (una a la vez, compacto) */
.lp-curios-section { background: linear-gradient(160deg, #0f172a 0%, #1e293b 50%, #1a5fb4 100%); padding: 2.5rem 0; color: #fff; }
.lp-curios-header { text-align: center; margin-bottom: 1.25rem; }
.lp-curios-kicker { display: inline-block; color: #93c5fd; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .4rem; }
.lp-curios-title { font-size: clamp(1.3rem, 3vw, 1.8rem); color: #fff; margin-bottom: .4rem; }
.lp-curios-lead { color: #cbd5e1; font-size: .9rem; max-width: 520px; margin: 0 auto; }
.lp-curios-widget { max-width: 720px; margin: 0 auto; }
.lp-curios-nav { display: flex; align-items: center; justify-content: center; gap: .75rem; margin-bottom: .75rem; }
.lp-curios-btn { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s; font-size: .85rem; }
.lp-curios-btn:hover { background: rgba(255,255,255,.2); }
.lp-curios-counter { font-size: .8rem; color: #94a3b8; font-weight: 600; min-width: 60px; text-align: center; }
.lp-curios-slide { display: none; gap: 1rem; align-items: center; background: #fff; color: var(--lp-dark); border-radius: 1rem; padding: .9rem; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.lp-curios-slide-img { flex: 0 0 140px; height: 100px; border-radius: .6rem; overflow: hidden; }
.lp-curios-slide-img img { width: 100%; height: 100%; object-fit: cover; }
.lp-curios-slide-body { flex: 1; min-width: 0; }
.lp-curios-slide-body h4 { font-size: .95rem; margin-bottom: .25rem; }
.lp-curios-slide-body p { font-size: .82rem; color: #475569; line-height: 1.5; margin: 0; }
.lp-curios-link-title { color: var(--lp-dark); text-decoration: none; }
.lp-curios-link-title:hover { color: var(--lp-primary); }
@media (max-width: 575px) {
  .lp-curios-slide { flex-direction: column; align-items: stretch; }
  .lp-curios-slide-img { flex: none; width: 100%; height: 160px; }
}

/* Editorial */
.lp-editorial-img { display: block; width: 100%; min-height: 320px; border-radius: var(--lp-radius); background-size: cover; background-position: center; border: 1px solid var(--lp-border); transition: transform .22s ease, box-shadow .22s ease; }
.lp-editorial-link-img { text-decoration: none; box-shadow: var(--lp-shadow); }
.lp-editorial-link-img:hover { transform: translateY(-3px); box-shadow: var(--lp-shadow-lg); }
.lp-benefits-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.lp-benefits-list li { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; color: var(--lp-gray); }
.lp-benefits-list i { color: var(--lp-primary); font-size: 1.1rem; }

/* Benefits bar */
.lp-benefits-bar { background: #fff; border-top: 1px solid var(--lp-border); border-bottom: 1px solid var(--lp-border); padding: 2rem 0; }
.lp-benefit-item { display: flex; flex-direction: column; align-items: center; gap: .5rem; font-weight: 500; font-size: .9rem; }
.lp-benefit-item i { font-size: 1.6rem; color: var(--lp-primary); }

/* Catalog */
.lp-catalog-hero { background: var(--lp-light); padding: 2.5rem 0 1.5rem; }
.lp-catalog-h1 { font-size: clamp(1.4rem, 3vw, 2rem); margin-top: .5rem; }
.lp-catalog-query { color: var(--lp-gray); }
.lp-catalog-body { padding-top: 2rem; padding-bottom: 3rem; }
.lp-sidebar { background: #fff; border: 1px solid var(--lp-border); border-radius: var(--lp-radius); padding: 1.25rem; position: sticky; top: 80px; }
.lp-sidebar-title { font-size: 1rem; margin-bottom: .75rem; }
.lp-sidebar-list { list-style: none; padding: 0; margin: 0; }
.lp-sidebar-list li { border-bottom: 1px solid #f1f5f9; }
.lp-sidebar-list a { display: flex; justify-content: space-between; align-items: center; padding: .55rem 0; color: var(--lp-dark); text-decoration: none; font-size: .9rem; font-weight: 500; }
.lp-sidebar-list a:hover, .lp-sidebar-list a.active { color: var(--lp-primary); }
.lp-count { background: var(--lp-light); color: var(--lp-gray); font-size: .72rem; padding: .15rem .45rem; border-radius: .35rem; font-weight: 600; }
.lp-toolbar { background: #fff; border: 1px solid var(--lp-border); border-radius: var(--lp-radius); padding: .75rem 1rem; }
.lp-results-count { font-size: .9rem; color: var(--lp-gray); }

/* Product Detail */
.lp-product-hero { padding-top: 1.5rem; }
.lp-product-gallery { background: #fff; border-radius: var(--lp-radius); }
.lp-main-img { background: var(--lp-light); border-radius: var(--lp-radius); overflow: hidden; cursor: zoom-in; position: relative; padding-bottom: 100%; border: 1px solid var(--lp-border); }
.lp-main-img img { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); max-width: 100%; max-height: 100%; object-fit: contain; padding: 1rem; }
.lp-thumbs .lp-thumb { width: 72px; height: 72px; border: 2px solid var(--lp-border); border-radius: .5rem; overflow: hidden; background: #fff; padding: 0; cursor: pointer; transition: border-color .2s; }
.lp-thumbs .lp-thumb.active, .lp-thumbs .lp-thumb:hover { border-color: var(--lp-primary); }
.lp-thumbs .lp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lp-product-info { padding: .5rem 0; }
.lp-product-subcat { display: inline-block; color: var(--lp-primary); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .4rem; }
.lp-product-title { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: .6rem; }
.lp-product-sku { color: var(--lp-gray); font-size: .9rem; margin-bottom: 1rem; }
.lp-product-desc { color: #475569; line-height: 1.7; }
.lp-product-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.lp-product-badges .badge { font-weight: 400; padding: .5rem .7rem; margin-right: .35rem; }

/* Link style */
.lp-link { color: var(--lp-primary); text-decoration: none; font-weight: 500; }
.lp-link:hover { text-decoration: underline; }

/* 404 */
.lp-404 { padding: 5rem 0; }

/* Footer */
.lp-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1000px 420px at -8% -10%, rgba(55,123,213,.26), transparent 60%),
    radial-gradient(780px 320px at 110% 0%, rgba(34,197,94,.16), transparent 62%),
    linear-gradient(150deg, #071224 0%, #0b172c 52%, #101b33 100%);
  color: #9fb0c8;
  padding: 3.2rem 0 1.6rem;
  font-size: .9rem;
  border-top: 1px solid rgba(148,163,184,.16);
}
.lp-footer::before,
.lp-footer::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  opacity: .35;
  filter: blur(55px);
}
.lp-footer::before {
  width: 240px;
  height: 240px;
  left: -70px;
  bottom: -70px;
  background: rgba(59,130,246,.46);
}
.lp-footer::after {
  width: 180px;
  height: 180px;
  right: -60px;
  top: -55px;
  background: rgba(34,197,94,.32);
}
.lp-footer .container { position: relative; z-index: 1; }
.lp-footer h5 { color: #f8fbff; font-size: 1rem; margin-bottom: .75rem; letter-spacing: .01em; }
.lp-footer a { color: #d5e1f4; text-decoration: none; }
.lp-footer a:hover { color: #fff; }

.lp-footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: .95rem;
}
.lp-footer-card {
  border: 1px solid rgba(148,163,184,.26);
  border-radius: 1.05rem;
  background: linear-gradient(165deg, rgba(255,255,255,.09) 0%, rgba(255,255,255,.02) 100%);
  box-shadow: 0 20px 48px rgba(3,9,22,.35);
  padding: 1rem 1.05rem .95rem;
  backdrop-filter: blur(7px);
}
.lp-footer-card p { margin-bottom: .5rem; color: #b8c6dc; line-height: 1.48; }
.lp-footer-kicker {
  display: inline-block;
  margin-bottom: .45rem;
  border-radius: 999px;
  padding: .2rem .58rem;
  border: 1px solid rgba(147,197,253,.45);
  background: rgba(37,99,235,.18);
  color: #cfe4ff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.lp-footer-main-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .25rem;
  color: #e6f0ff;
  font-weight: 700;
}
.lp-footer-main-link i { color: #86b8ff; }

.lp-footer-links { list-style: none; padding: 0; margin: 0; }
.lp-footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .35rem .52rem;
}
.lp-footer-links li { margin: 0; }
.lp-footer-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .45rem;
  border: 1px solid rgba(148,163,184,.24);
  background: rgba(15,23,42,.35);
  border-radius: .68rem;
  padding: .3rem .48rem;
  font-size: .78rem;
}
.lp-footer-links a:hover { border-color: rgba(147,197,253,.52); background: rgba(29,78,216,.27); }
.lp-footer-count {
  min-width: 24px;
  text-align: center;
  border-radius: 999px;
  background: rgba(147,197,253,.2);
  border: 1px solid rgba(147,197,253,.44);
  color: #d2e7ff;
  font-size: .68rem;
  font-weight: 700;
  padding: 0 .35rem;
}
.lp-footer-contact-strong { color: #e8f0ff !important; font-weight: 700; margin-bottom: .35rem; }
.lp-footer-card-contact i { color: #8fc1ff; margin-right: .22rem; }

.lp-footer-brands {
  border-color: rgba(148,163,184,.22) !important;
}
.lp-footer-brands-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  flex-wrap: wrap;
  margin-bottom: .82rem;
}
.lp-footer-group-brand {
  display: inline-flex;
  align-items: center;
  gap: .58rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: .02em;
}
.lp-footer-group-brand img {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3);
  background: #fff;
  object-fit: contain;
}
.lp-footer-brands-title { color: #b6c6de; font-weight: 600; font-size: .9rem; }

.lp-footer-brand-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .68rem;
}
.lp-footer-brand-plaque {
  border-radius: .88rem;
  border: 1px solid rgba(148,163,184,.34);
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .6rem .45rem;
  background: linear-gradient(180deg, rgba(15,23,42,.44), rgba(15,23,42,.18));
  box-shadow: 0 12px 28px rgba(2,7,18,.35);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.lp-footer-brand-plaque:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(191,219,254,.78);
  box-shadow: 0 20px 34px rgba(2,7,18,.45);
}
.lp-footer-brand-plaque img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: .72rem;
  background: #fff;
  padding: .38rem;
}
.lp-footer-brand-plaque strong {
  color: #edf4ff;
  font-size: .72rem;
  text-align: center;
  line-height: 1.2;
  letter-spacing: .01em;
}
.lp-plaque-grabo { background: linear-gradient(180deg, rgba(56,189,248,.28), rgba(15,23,42,.22)); }
.lp-plaque-estampa { background: linear-gradient(180deg, rgba(250,204,21,.24), rgba(15,23,42,.22)); }
.lp-plaque-posavaso { background: linear-gradient(180deg, rgba(22,163,74,.28), rgba(15,23,42,.22)); }
.lp-plaque-botellas { background: linear-gradient(180deg, rgba(14,165,233,.26), rgba(15,23,42,.22)); }
.lp-plaque-regalo { background: linear-gradient(180deg, rgba(59,130,246,.29), rgba(15,23,42,.22)); }
.lp-plaque-trofeos { background: linear-gradient(180deg, rgba(249,115,22,.26), rgba(15,23,42,.22)); }

.lp-footer-bottom { color: #7f95b3; border-color: rgba(148,163,184,.2) !important; }

/* Search suggest */
.lp-suggest-list a:hover { background: var(--lp-light); }

/* Splide arrows override */
.splide__arrow { background: var(--lp-primary); opacity: .85; }
.splide__arrow svg { fill: #fff; }
.splide__arrow:hover { opacity: 1; background: var(--lp-primary-dark); }
.splide__pagination__page.is-active { background: var(--lp-primary); }

/* Hero carousel */
.lp-hero-splide { border-radius: var(--lp-radius); overflow: hidden; box-shadow: var(--lp-shadow-lg); }
.lp-hero-splide .splide__slide { display: flex; align-items: center; justify-content: center; background: #fff; }
.lp-hero-splide .splide__slide a { display: block; width: 100%; margin: 0 auto; position: relative; }
.lp-hero-splide .splide__slide a::before { content: ''; display: block; padding-bottom: 62.5%; }
.lp-hero-splide .splide__slide img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.lp-hero-splide .splide__pagination { bottom: .5rem; }
.lp-hero-splide .splide__pagination__page { width: 10px; height: 10px; margin: 0 4px; }

/* Blog cards */
.lp-blog-card {
  background: #fff;
  border: 1px solid #dbe8fb;
  border-radius: 1.05rem;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(12,43,95,.08);
  transition: transform .24s ease, box-shadow .24s ease;
}
.lp-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 34px rgba(12,43,95,.14);
}
.lp-blog-card-img {
  display: block;
  position: relative;
  overflow: hidden;
  padding-bottom: 68%;
  background: #eaf2ff;
}
.lp-blog-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.lp-blog-card:hover .lp-blog-card-img img { transform: scale(1.05); }
.lp-blog-card-body {
  padding: 1rem .95rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.lp-blog-card-title {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.2;
}
.lp-blog-card-title a { color: #13294f; text-decoration: none; }
.lp-blog-card-title a:hover { color: var(--lp-primary); }
.lp-blog-card-hook {
  margin: 0;
  color: #41546f;
  font-size: .88rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}
.lp-blog-card-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
  color: #66819f;
  font-size: .75rem;
  font-weight: 700;
}

/* Blog detail */
.lp-blog-detail-zone {
  background:
    radial-gradient(circle at 12% 10%, rgba(26,95,180,.14), transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(14,165,233,.12), transparent 40%),
    #edf6ff;
}
.lp-blog-rec-widget {
  margin-top: .9rem;
  max-width: 100%;
  border: 1px solid #cfe0f8;
  border-radius: .95rem;
  background: linear-gradient(180deg, #f8fcff, #eef5ff);
  box-shadow: 0 12px 24px rgba(15,48,99,.1);
  padding: .72rem .75rem .8rem;
}
.lp-blog-rec-head h3 {
  margin: .08rem 0 .2rem;
  font-size: .98rem;
  color: #123462;
}
.lp-blog-rec-kicker {
  display: inline-flex;
  align-items: center;
  border: 1px solid #b9d2f4;
  border-radius: 999px;
  background: #ffffff;
  color: #174886;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .2rem .52rem;
  font-weight: 800;
}
.lp-blog-rec-sku {
  display: inline-flex;
  font-size: .72rem;
  color: #4b678b;
  font-weight: 700;
}
.lp-blog-rec-splide {
  margin: .5rem 0 .55rem;
  border-radius: .82rem;
  overflow: hidden;
  border: 1px solid #d4e4f9;
  background: #fff;
}
.lp-blog-rec-slide-link {
  display: block;
  position: relative;
  padding-bottom: 68%;
}
.lp-blog-rec-slide-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-blog-rec-splide .splide__arrow {
  width: 1.72rem;
  height: 1.72rem;
  background: rgba(255,255,255,.94);
  border: 1px solid #c0d8f6;
}
.lp-blog-rec-splide .splide__arrow svg { fill: #154c8f; }
.lp-blog-rec-splide .splide__pagination {
  bottom: .24rem;
}
.lp-blog-rec-splide .splide__pagination__page {
  width: 8px;
  height: 8px;
}
.lp-blog-rec-cta-wrap {
  display: flex;
  justify-content: center;
}
.lp-blog-main-box {
  background: #fff;
  border: 1px solid #cfe0f6;
  border-radius: 1rem;
  box-shadow: 0 16px 32px rgba(15,48,99,.08);
  overflow: hidden;
}
.lp-blog-main-cover {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.lp-blog-main-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(12,24,44,.8), rgba(16,65,138,.68));
  color: #eff7ff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .5rem;
  padding: 1.15rem 1.25rem;
}
.lp-blog-main-cover-overlay h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.35vw, 2rem);
  line-height: 1.15;
}
.lp-blog-main-cover-overlay p {
  margin: 0;
  max-width: 64ch;
  font-size: .95rem;
  color: rgba(243,249,255,.95);
}
.lp-blog-main-content {
  padding: 1.05rem 1.1rem 1.15rem;
}
.lp-blog-main-section + .lp-blog-main-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #d9e7fa;
}
.lp-blog-main-section h3 {
  margin: 0 0 .45rem;
  color: #16325f;
  font-size: 1.12rem;
}
.lp-blog-main-product {
  border: 1px solid #d8e7fb;
  border-radius: .9rem;
  padding: .85rem;
  background: linear-gradient(180deg, #f6fbff, #edf5ff);
}
.lp-blog-main-product h4 {
  margin: 0 0 .45rem;
  font-size: 1.02rem;
  color: #123b78;
}
.lp-blog-rich-paragraph {
  margin: 0;
  color: #2c425f;
  font-size: 1rem;
  line-height: 1.82;
}
.lp-blog-rich-paragraph + .lp-blog-rich-paragraph {
  margin-top: .72rem;
}
.lp-blog-rich-paragraph.is-lead {
  color: #223752;
  font-size: 1.06rem;
  font-weight: 500;
}
.lp-blog-rich-paragraph strong,
.lp-blog-rich-list strong {
  color: #0f2d5d;
  font-weight: 800;
}
.lp-blog-rich-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #2c425f;
  display: grid;
  gap: .4rem;
}
.lp-blog-rich-list li {
  line-height: 1.62;
}
.lp-blog-side-stack {
  display: grid;
  gap: .8rem;
  position: sticky;
  top: 92px;
}
.lp-blog-side-card {
  border-radius: .96rem;
  border: 1px solid #d6e4f7;
  background: #fff;
  box-shadow: 0 12px 24px rgba(13,44,95,.08);
  padding: .9rem .95rem;
}
.lp-blog-side-card h3 {
  margin: 0 0 .48rem;
  font-size: 1rem;
}
.lp-blog-side-know { background: linear-gradient(180deg, #f5fff9, #e8fdf0); }
.lp-blog-side-conclusion { background: linear-gradient(180deg, #fffaf2, #fff1d9); }
.lp-blog-side-hook { background: linear-gradient(180deg, #f8f4ff, #f0e6ff); }
.lp-blog-side-related { background: linear-gradient(180deg, #f4f9ff, #ecf4ff); }
.lp-blog-hook-text {
  margin: 0;
  color: #294265;
  line-height: 1.6;
}
.lp-blog-side-cta {
  margin-top: .65rem;
  border-top: 1px dashed #c8d8f1;
  padding-top: .6rem;
}
.lp-blog-related-list {
  display: grid;
  gap: .56rem;
}
.lp-blog-related-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: .62rem;
  text-decoration: none;
  border: 1px solid #d6e3f6;
  border-radius: .78rem;
  background: #fff;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.lp-blog-related-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15,48,99,.12);
}
.lp-blog-related-thumb {
  display: block;
  position: relative;
  min-height: 100%;
}
.lp-blog-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-blog-related-copy {
  display: grid;
  gap: .24rem;
  padding: .48rem .52rem .48rem 0;
}
.lp-blog-related-copy strong {
  color: #112d5a;
  font-size: .85rem;
  line-height: 1.25;
}
.lp-blog-related-copy small {
  color: #496382;
  font-size: .74rem;
  line-height: 1.35;
}
.lp-blog-related-copy time {
  color: #6b85a3;
  font-size: .68rem;
  font-weight: 700;
}

/* Blog bento detail */
.lp-blog-bento-zone {
  background:
    radial-gradient(circle at 10% 10%, rgba(59,130,246,.16), transparent 40%),
    radial-gradient(circle at 90% 18%, rgba(16,185,129,.14), transparent 42%),
    #f8fbff;
}
.lp-blog-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: .95rem;
}
.lp-blog-bento-card {
  border: 1px solid #d3e3fb;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 14px 28px rgba(12,43,95,.08);
  padding: 1rem 1rem 1.05rem;
}
.lp-blog-bento-card h3 {
  margin: 0 0 .55rem;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--lp-blog-ink);
}
.lp-blog-bento-card h4 {
  margin: 0 0 .45rem;
  font-family: 'Roboto', sans-serif;
  font-size: .98rem;
  font-weight: 800;
  color: #17305f;
}
.lp-blog-bento-card p {
  margin: 0;
  color: #2f4565;
  font-size: .95rem;
  line-height: 1.65;
  white-space: normal;
}
.lp-blog-bento-cover {
  grid-column: span 12;
  min-height: 260px;
  padding: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}
.lp-blog-bento-cover-overlay {
  position: absolute;
  inset: 0;
  padding: 1.1rem 1.15rem;
  background: linear-gradient(155deg, rgba(13,24,45,.78), rgba(16,65,138,.66));
  color: #eff7ff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .5rem;
}
.lp-blog-bento-cover-overlay h2 {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.95rem);
  font-weight: 800;
  line-height: 1.15;
}
.lp-blog-bento-cover-overlay p {
  margin: 0;
  color: rgba(241,247,255,.94);
}
.lp-blog-chip {
  align-self: flex-start;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  padding: .24rem .62rem;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(255,255,255,.16);
}
.lp-blog-bento-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  font-size: .75rem;
  font-weight: 700;
  color: #dbeafe;
}
.lp-blog-bento-intro { grid-column: span 7; background: linear-gradient(180deg, #ffffff, #f8fbff); }
.lp-blog-bento-why { grid-column: span 5; background: linear-gradient(180deg, #fefcf4, #fff6dc); }
.lp-blog-bento-know { grid-column: span 5; background: linear-gradient(180deg, #f5fff9, #e7fcef); }
.lp-blog-bento-value { grid-column: span 7; background: linear-gradient(180deg, #f6f9ff, #e9f2ff); }
.lp-blog-bento-product { grid-column: span 4; background: linear-gradient(180deg, #fdf6ff, #f6e7ff); display: flex; flex-direction: column; gap: .55rem; }
.lp-blog-bento-close { grid-column: span 8; background: linear-gradient(180deg, #ffffff, #eff6ff); }
.lp-blog-bento-cta {
  margin-top: .7rem;
  border: 1px dashed #95b4e5;
  border-radius: .85rem;
  padding: .65rem .72rem;
  background: var(--lp-blog-soft);
  color: #173a73;
  font-weight: 600;
}
.lp-blog-bento-related { grid-column: span 12; background: linear-gradient(180deg, #fff, #f5f9ff); }

/* Cart drawer */
.lp-cart-overlay { position: fixed; inset: 0; background: rgba(15,23,42,.4); opacity: 0; pointer-events: none; transition: opacity .25s ease; z-index: 140; }
.lp-cart-drawer { position: fixed; right: 0; top: 0; width: min(96vw, 430px); height: 100dvh; max-height: 100vh; background: #fff; border-left: 1px solid var(--lp-border); transform: translate3d(100%,0,0); transition: transform .32s ease; z-index: 141; display: grid; grid-template-rows: auto 1fr auto; }
body.lp-cart-open .lp-cart-overlay { opacity: 1; pointer-events: auto; }
body.lp-cart-open .lp-cart-drawer { transform: translateX(0); }
.lp-cart-head { padding: 12px; border-bottom: 1px solid var(--lp-border); display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.lp-cart-head h2 { margin: 0; font-size: 1rem; }
.lp-cart-close { border: 1px solid var(--lp-border); background: #fff; border-radius: 8px; width: 34px; height: 34px; cursor: pointer; font-size: 1.2rem; line-height: 1; color: var(--lp-dark); }
.lp-cart-items { overflow: auto; padding: 10px 12px; }
.lp-cart-empty { border: 1px dashed #94a3b8; border-radius: 10px; padding: 12px; color: #334155; background: var(--lp-light); font-size: .85rem; }
.lp-cart-item { border: 1px solid var(--lp-border); border-radius: 10px; background: #fff; padding: 8px; display: grid; grid-template-columns: 62px 1fr; gap: 9px; }
.lp-cart-item + .lp-cart-item { margin-top: 8px; }
.lp-cart-item img { width: 62px; height: 62px; object-fit: cover; border-radius: 8px; border: 1px solid var(--lp-border); background: #fff; }
.lp-cart-item-name { margin: 0 0 3px; font-size: .85rem; font-weight: 700; line-height: 1.25; color: var(--lp-dark); }
.lp-cart-item-sku { margin: 0 0 6px; font-size: .74rem; color: var(--lp-gray); }
.lp-cart-item-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.lp-cart-item-row input { width: 80px; border: 1px solid var(--lp-border); border-radius: 8px; padding: 6px 8px; font-size: .84rem; }
.lp-cart-item-row .lp-cart-remove { border: 1px solid #fca5a5; color: #b91c1c; background: #fff1f2; border-radius: 8px; padding: 6px 8px; font-size: .76rem; font-weight: 700; cursor: pointer; }
.lp-cart-item-row .lp-cart-minus, .lp-cart-item-row .lp-cart-plus { border: 1px solid var(--lp-border); background: var(--lp-light); border-radius: 6px; width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; font-weight: 700; color: var(--lp-dark); }
.lp-cart-footer { border-top: 1px solid var(--lp-border); padding: 10px 12px 12px; background: var(--lp-light); }
.lp-cart-footer h3 { margin: 0 0 8px; font-size: .95rem; color: var(--lp-dark); }
.lp-cart-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.lp-cart-field.full { grid-column: 1 / -1; }
.lp-cart-field label { display: block; margin: 0 0 4px; font-size: .76rem; color: #334155; font-weight: 700; }
.lp-cart-field input, .lp-cart-field textarea { width: 100%; border: 1px solid var(--lp-border); border-radius: 8px; padding: 8px 9px; font-size: .85rem; font-family: inherit; }
.lp-cart-field textarea { min-height: 70px; resize: vertical; }
.lp-cart-actions { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 8px; }
.lp-cart-cta { border-radius: 9px; border: 1px solid var(--lp-primary-dark); background: var(--lp-primary); color: #fff; font-weight: 800; font-size: .82rem; padding: 8px 10px; cursor: pointer; transition: opacity .2s ease; }
.lp-cart-cta:hover { opacity: .92; }
.lp-cart-cta.wsp { background: var(--lp-wsp); border-color: #1da851; }
.lp-cart-cta.wsp::before { content: ""; width: 16px; height: 16px; border-radius: 999px; display: inline-block; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M19.1 17.8c-.3-.1-1.8-.9-2.1-1s-.5-.1-.8.1c-.2.3-.9 1-.9 1.2-.2.1-.3.1-.6 0-1.8-.9-3-1.7-4.2-3.8-.3-.5.3-.5.8-1.7.1-.2 0-.5 0-.6s-.8-1.9-1.1-2.6c-.3-.7-.6-.6-.8-.6h-.7c-.2 0-.6.1-.9.4-.3.3-1.2 1.2-1.2 2.8s1.2 3.3 1.4 3.5c.2.3 2.4 3.7 5.9 5.2 2.2.9 3 1 4 .8.6-.1 1.8-.7 2.1-1.4.3-.7.3-1.3.2-1.4-.1-.1-.3-.2-.6-.3z'/%3E%3Cpath fill='%23fff' d='M16.1 3.2c-6.9 0-12.4 5.6-12.4 12.4 0 2.2.6 4.3 1.7 6.2l-1.8 6.7 6.9-1.8c1.8 1 3.9 1.6 6 1.6h.1c6.8 0 12.4-5.6 12.4-12.4 0-6.8-5.5-12.4-12.4-12.4zm.1 22.6h-.1c-1.9 0-3.8-.5-5.4-1.5l-.4-.2-4.1 1.1 1.1-4-.2-.4c-1.1-1.7-1.6-3.6-1.6-5.6 0-5.9 4.8-10.7 10.7-10.7s10.7 4.8 10.7 10.7c0 5.9-4.8 10.6-10.7 10.6z'/%3E%3C/svg%3E"); background-size: contain; background-position: center; background-repeat: no-repeat; margin-right: 6px; vertical-align: -2px; }

/* Cart count badge */
.lp-cart-count { min-width: 22px; height: 22px; border-radius: 999px; background: var(--lp-primary); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; padding: 0 5px; }
.lp-cart-btn { position: relative; display: inline-flex; align-items: center; gap: .25rem; }

/* Toast */
.lp-toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--lp-dark); color: #fff; padding: .6rem 1.2rem; border-radius: .5rem; font-size: .9rem; opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease; z-index: 200; white-space: nowrap; }
.lp-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Product qty inline */
.lp-qty-inline { display: inline-flex; align-items: center; gap: .25rem; }
.lp-qty-inline input { width: 70px; text-align: center; border: 1px solid var(--lp-border); border-radius: .375rem; padding: .3rem .4rem; font-size: .85rem; }
.lp-qty-inline .lp-qty-hint { font-size: .72rem; color: var(--lp-gray); white-space: nowrap; }

/* Producciones realizadas */
.lp-productions-section { padding: 2.5rem 0; }
.lp-productions-box { border: 1px solid var(--lp-primary-dark); border-radius: 20px; background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-dark) 100%); padding: 0.95rem; }
.lp-productions-head { display: flex; align-items: center; justify-content: space-between; gap: 0.9rem; margin-bottom: 0.8rem; flex-wrap: wrap; }
.lp-productions-brand { display: flex; align-items: center; gap: 0.7rem; }
.lp-productions-avatar { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.68); background: #fff; display: inline-flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.lp-productions-avatar img { width: 84%; height: 84%; object-fit: contain; }
.lp-productions-brand h2 { margin: 0; font-size: clamp(1.15rem, 2.2vw, 1.45rem); line-height: 1.15; color: #fff; font-weight: 800; }
.lp-productions-brand p { margin: 0.1rem 0 0; color: rgba(255,255,255,0.92); font-size: 0.86rem; font-weight: 600; }
.lp-productions-splide .splide__slide { height: auto; padding: 0.15rem; }
.lp-productions-splide .splide__arrow { width: 1.9rem; height: 1.9rem; background: rgba(255,255,255,0.95); border: 1px solid rgba(26,95,180,0.45); }
.lp-productions-splide .splide__arrow svg { fill: var(--lp-primary); }
.lp-production-card { border: 1px solid rgba(255,255,255,0.35); border-radius: 16px; overflow: hidden; background: #fff; box-shadow: 0 8px 22px rgba(15,23,42,0.14); display: flex; flex-direction: column; }
.lp-production-image { width: 100%; display: block; overflow: hidden; position: relative; padding-bottom: 100%; }
.lp-production-image img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.lp-production-body { padding: 0.92rem 0.92rem 0.88rem; display: flex; flex-direction: column; gap: 0.45rem; }
.lp-production-logo { min-height: 32px; display: flex; align-items: center; justify-content: center; }
.lp-production-logo img { max-height: 34px; max-width: 120px; width: auto; height: auto; object-fit: contain; }
.lp-production-logo span { font-size: 0.8rem; font-weight: 700; color: var(--lp-dark); text-align: center; }
.lp-production-card h3 { margin: 0; font-size: 0.95rem; line-height: 1.3; font-weight: 700; }
.lp-production-card h3 a { color: var(--lp-dark); text-decoration: none; }
.lp-production-card h3 a:hover { color: var(--lp-primary); }
.lp-production-client { margin: 0; font-size: 0.81rem; color: var(--lp-gray); }
.lp-production-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; align-items: center; margin-top: 0.22rem; }

/* Responsive */
@media (max-width: 991px) {
  .lp-hero { padding: 2.5rem 0; }
  .lp-section { padding: 2.5rem 0; }
  .lp-sidebar { position: static; }
  .lp-search-form { width: 100%; margin-top: .5rem; }
  .lp-blog-bento-intro,
  .lp-blog-bento-why,
  .lp-blog-bento-know,
  .lp-blog-bento-value,
  .lp-blog-bento-product,
  .lp-blog-bento-close,
  .lp-blog-bento-related { grid-column: span 12; }
  .lp-blog-rec-widget { max-width: 100%; }
  .lp-blog-side-stack { position: static; top: auto; }
  .lp-categories-dropdown { min-width: 100%; }
  .lp-footer-main { grid-template-columns: 1fr 1fr; }
  .lp-footer-card-contact { grid-column: 1 / -1; }
  .lp-footer-brand-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
  .lp-hero-title { font-size: 1.6rem; }
  .lp-btn-lg { padding: .55rem 1rem; font-size: .9rem; }
  .lp-product-actions .lp-btn { flex: 1 1 100%; }
  .lp-sticky-icon-btn span { display: none !important; }
  .lp-blog-main-cover { min-height: 230px; }
  .lp-blog-related-item { grid-template-columns: 76px 1fr; }
  .lp-sticky-icon-btn { min-width: 34px; padding-left: .45rem; padding-right: .45rem; }
  .lp-offcanvas-pill span { font-size: .84rem; }
  .lp-footer-main { grid-template-columns: 1fr; }
  .lp-footer-links-grid { grid-template-columns: 1fr; }
  .lp-footer-brand-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-footer-brand-plaque { min-height: 98px; }
  .lp-footer-brand-plaque img { width: 50px; height: 50px; }
}

/* Client logos carousel */
.lp-client-logos-section { padding-top: 1.8rem; padding-bottom: 0.65rem; }
.lp-client-logos-splide { background: #fff; }
.lp-client-logos-splide .splide__slide { padding: 0.15rem; }
.lp-client-logo-pill {
    height: 70px;
    border-radius: 999px;
    border: 1px solid var(--lp-border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    box-shadow: 0 8px 20px rgba(15,23,42,0.06);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}
.lp-client-logo-pill:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(15,23,42,0.1); }
.lp-client-logo-pill img { max-width: 138px; max-height: 38px; width: auto; height: auto; object-fit: contain; }
.lp-client-logo-text { font-size: 0.82rem; font-weight: 700; color: var(--lp-dark); text-align: center; line-height: 1.2; }
.lp-client-logos-splide .splide__arrow { width: 1.9rem; height: 1.9rem; background: #fff; border: 1px solid var(--lp-border); }
.lp-client-logos-splide .splide__arrow svg { fill: var(--lp-primary); }

@media (max-width: 575px) {
    .lp-client-logo-pill { height: 64px; padding-left: 0.75rem; padding-right: 0.75rem; }
    .lp-client-logo-pill img { max-width: 110px; max-height: 34px; }
}
