@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Brisa Light — modern / bold / young ─────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --c-bg:#f5f5fa;--c-surface:#ffffff;--c-border:#ececf3;
  --c-text:#0d0d16;--c-muted:#6b7280;
  --c-primary:#ec5b13;--c-primary-h:#d24e0c;--c-accent:#ff2d70;
  --c-success:#16a34a;--c-danger:#e11d48;
  --radius:18px;--radius-sm:12px;--pill:999px;
  --grad:linear-gradient(135deg,#ff7a3d 0%,#ec5b13 60%);
  --grad-hot:linear-gradient(135deg,#ec5b13 0%,#ff2d70 100%);
  --shadow:0 6px 20px rgba(13,13,22,.06);
  --shadow-lg:0 24px 50px -18px rgba(13,13,22,.22);
  --font-head:'Space Grotesk',system-ui,sans-serif;
  --font-body:'Inter',system-ui,sans-serif;
}
body{font-family:var(--font-body);background:var(--c-bg);color:var(--c-text);line-height:1.55;-webkit-font-smoothing:antialiased;display:flex;flex-direction:column;min-height:100vh}
h1,h2,h3,h4,.store-name,.section-title{font-family:var(--font-head);letter-spacing:-.02em}
a{color:var(--c-primary);text-decoration:none}
a:hover{color:var(--c-primary-h)}
img{max-width:100%;height:auto;display:block}

/* ── Layout ──────────────────────────────────────────────────────── */
.container{width:100%;max-width:1240px;margin:0 auto;padding:0 22px}
.site-header{background:rgba(255,255,255,.78);backdrop-filter:saturate(180%) blur(14px);border-bottom:1px solid var(--c-border);position:sticky;top:0;z-index:100}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:72px;gap:18px}
.store-identity+.cart-btn{margin-left:auto}
.store-logo{height:60px;width:auto;max-width:240px;object-fit:contain;display:block}
.store-name{font-size:23px;font-weight:700;color:var(--c-text)}
.header-nav{display:none}
.header-nav a{font-size:14px;font-weight:600;color:var(--c-muted);position:relative}
.header-nav a:hover{color:var(--c-text)}
.cart-btn{display:inline-flex;align-items:center;gap:9px;background:var(--grad);color:#fff;padding:11px 20px;border-radius:var(--pill);font-size:14px;font-weight:700;box-shadow:0 8px 20px -8px rgba(236,91,19,.6);transition:transform .15s,box-shadow .15s}
.cart-btn:hover{color:#fff;transform:translateY(-2px);box-shadow:0 14px 26px -10px rgba(236,91,19,.7)}
.cart-count{background:rgba(255,255,255,.28);padding:2px 9px;border-radius:var(--pill);font-size:12px;font-weight:800}

/* ── Banner / hero ───────────────────────────────────────────────── */
.store-banner{width:100%;max-height:380px;object-fit:cover;display:block}
.hero-placeholder{min-height:300px;background:var(--grad-hot);display:flex;align-items:center;justify-content:center;color:#fff;text-align:center;padding:56px;position:relative;overflow:hidden}
.hero-placeholder::after{content:"";position:absolute;inset:0;background:radial-gradient(circle at 80% 20%,rgba(255,255,255,.22),transparent 45%)}
.hero-placeholder>div{position:relative;z-index:1}
.hero-placeholder h1{font-size:clamp(30px,6vw,60px);font-weight:700;margin-bottom:12px;letter-spacing:-.03em;line-height:1.02}
.hero-placeholder p{font-size:clamp(15px,2vw,20px);opacity:.92;font-weight:500;max-width:640px;margin:0 auto}

/* ── Category nav ────────────────────────────────────────────────── */
.cat-nav-wrap{position:relative}
.cat-nav{background:var(--c-surface);border-bottom:1px solid var(--c-border);overflow-x:auto;scroll-behavior:smooth;scrollbar-width:thin;scrollbar-color:var(--c-border) transparent}
.cat-nav::-webkit-scrollbar{height:6px}
.cat-nav::-webkit-scrollbar-track{background:transparent}
.cat-nav::-webkit-scrollbar-thumb{background:var(--c-border);border-radius:999px}
.cat-nav::-webkit-scrollbar-thumb:hover{background:var(--c-primary)}
.cat-arrow{position:absolute;top:0;bottom:0;width:52px;border:0;cursor:pointer;z-index:6;font-size:26px;font-weight:700;font-family:var(--font-head);color:var(--c-text);display:flex;align-items:center;transition:opacity .15s,color .15s}
.cat-arrow-prev{left:0;justify-content:flex-start;padding-left:14px;background:linear-gradient(to right,var(--c-surface) 58%,transparent)}
.cat-arrow-next{right:0;justify-content:flex-end;padding-right:14px;background:linear-gradient(to left,var(--c-surface) 58%,transparent)}
.cat-arrow:hover{color:var(--c-primary)}
.cat-arrow.hidden{opacity:0;pointer-events:none}
.cat-nav-inner{display:flex;gap:6px;padding:10px 20px}
.cat-nav a{padding:9px 18px;font-size:14px;font-weight:600;color:var(--c-muted);white-space:nowrap;border-radius:var(--pill);transition:.15s}
.cat-nav a:hover{color:var(--c-text);background:#f1f1f6}
.cat-nav a.active{color:#fff;background:var(--c-text)}

/* ── Section ─────────────────────────────────────────────────────── */
.section{padding:56px 0}
.section-title{font-size:clamp(24px,4vw,34px);font-weight:700;margin-bottom:30px;letter-spacing:-.03em}

/* ── Product grid ────────────────────────────────────────────────── */
.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(232px,1fr));gap:24px}
.product-card{background:var(--c-surface);border:1px solid var(--c-border);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);transition:box-shadow .2s,transform .2s;display:flex;flex-direction:column}
.product-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-6px)}
.product-card a{text-decoration:none;color:inherit}
.product-img-wrap{position:relative;aspect-ratio:1;background:#f1f1f6;overflow:hidden}
.product-img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .35s}
.product-card:hover .product-img-wrap img{transform:scale(1.06)}
.product-img-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:44px;color:#d6d6e2;font-weight:800;font-family:var(--font-head)}
.badge-oferta{position:absolute;top:12px;left:12px;background:var(--grad-hot);color:#fff;font-size:11px;font-weight:800;letter-spacing:.03em;text-transform:uppercase;padding:5px 11px;border-radius:var(--pill)}
.badge-dest{position:absolute;top:12px;right:12px;background:#0d0d16;color:#fff;font-size:13px;padding:5px 9px;border-radius:var(--pill)}
.product-info{padding:16px 16px 18px;display:flex;flex-direction:column;flex:1}
.product-name{font-size:15px;font-weight:600;margin-bottom:10px;line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.product-price{display:flex;align-items:baseline;gap:9px;margin-top:auto}
.price-current{font-size:21px;font-weight:800;color:var(--c-text);font-family:var(--font-head)}
.price-old{font-size:13px;color:var(--c-muted);text-decoration:line-through}
.product-add-btn{width:100%;margin:12px 16px 16px;width:calc(100% - 32px);padding:11px;background:var(--c-text);color:#fff;border:none;border-radius:var(--pill);font-size:13px;font-weight:700;cursor:pointer;transition:.18s}
.product-add-btn:hover{background:var(--c-primary)}
.out-of-stock{color:var(--c-muted);font-size:12px;text-align:center;padding:10px 0;font-weight:600}

/* ── Product detail ──────────────────────────────────────────────── */
.product-detail{display:grid;grid-template-columns:1fr 1fr;gap:48px;padding:48px 0}
@media(max-width:700px){.product-detail{grid-template-columns:1fr;gap:28px}}
.product-gallery{position:sticky;top:92px}
.gallery-main{aspect-ratio:1;background:#f1f1f6;border-radius:var(--radius);overflow:hidden;margin-bottom:14px}
.gallery-main img{width:100%;height:100%;object-fit:cover}
.gallery-thumbs{display:flex;gap:10px;flex-wrap:wrap}
.gallery-thumb{width:76px;height:76px;border-radius:var(--radius-sm);object-fit:cover;cursor:pointer;opacity:.55;border:2px solid transparent;transition:.15s}
.gallery-thumb.active,.gallery-thumb:hover{opacity:1;border-color:var(--c-primary)}
.product-info-main .breadcrumb{font-size:13px;color:var(--c-muted);margin-bottom:14px;font-weight:500}
.product-info-main .breadcrumb a{color:var(--c-muted)}
.product-info-main h1{font-size:clamp(28px,4vw,40px);font-weight:700;margin-bottom:18px;line-height:1.1;letter-spacing:-.03em}
.product-price-block{margin-bottom:24px}
.product-price-block .price-main{font-size:40px;font-weight:800;font-family:var(--font-head)}
.product-price-block .price-old{font-size:18px}
.qty-selector{display:flex;align-items:center;gap:6px;margin-bottom:18px;border:1px solid var(--c-border);border-radius:var(--pill);width:fit-content;padding:4px}
.qty-btn{width:38px;height:38px;border:none;border-radius:50%;background:#f1f1f6;font-size:18px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:.15s}
.qty-btn:hover{background:var(--c-primary);color:#fff}
.qty-input{width:52px;text-align:center;border:none;background:none;padding:6px;font-size:16px;font-weight:700;font-family:var(--font-head)}
.btn-add-cart{width:100%;padding:16px;background:var(--grad);color:#fff;border:none;border-radius:var(--pill);font-size:16px;font-weight:700;cursor:pointer;transition:transform .15s,box-shadow .15s;margin-bottom:14px;box-shadow:0 12px 26px -10px rgba(236,91,19,.6)}
.btn-add-cart:hover{transform:translateY(-2px);box-shadow:0 18px 34px -12px rgba(236,91,19,.7)}
.product-description{margin-top:26px;color:#3f3f4d;line-height:1.8;font-size:15px}
.product-meta{margin-top:18px;font-size:13px;color:var(--c-muted)}
.product-meta span{display:block}

/* ── Cart ────────────────────────────────────────────────────────── */
.cart-layout{display:grid;grid-template-columns:1fr 360px;gap:32px;padding:48px 0}
@media(max-width:800px){.cart-layout{grid-template-columns:1fr}}
.cart-items-list{background:var(--c-surface);border:1px solid var(--c-border);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.cart-item{display:flex;gap:16px;padding:18px;border-bottom:1px solid var(--c-border);align-items:center}
.cart-item:last-child{border-bottom:none}
.cart-item-img{width:84px;height:84px;border-radius:var(--radius-sm);object-fit:cover;flex-shrink:0;background:#f1f1f6}
.cart-item-info{flex:1}
.cart-item-name{font-size:15px;font-weight:700;margin-bottom:4px}
.cart-item-price{font-size:14px;color:var(--c-muted)}
.cart-item-controls{display:flex;align-items:center;gap:8px;margin-top:8px}
.cart-item-subtotal{font-size:16px;font-weight:800;margin-left:auto;flex-shrink:0;font-family:var(--font-head)}
.cart-item-remove{background:none;border:none;color:var(--c-muted);cursor:pointer;font-size:18px;padding:4px}
.cart-item-remove:hover{color:var(--c-danger)}
.cart-summary{background:var(--c-surface);border:1px solid var(--c-border);border-radius:var(--radius);padding:28px;position:sticky;top:92px;box-shadow:var(--shadow)}
.cart-summary h3{font-size:20px;font-weight:700;margin-bottom:22px}
.summary-row{display:flex;justify-content:space-between;margin-bottom:12px;font-size:15px}
.summary-total{font-size:23px;font-weight:800;padding-top:16px;border-top:2px solid var(--c-border);display:flex;justify-content:space-between;font-family:var(--font-head)}
.btn-checkout{display:block;text-align:center;text-decoration:none;box-sizing:border-box;width:100%;padding:16px;background:var(--grad);color:#fff;border:none;border-radius:var(--pill);font-size:16px;font-weight:700;cursor:pointer;margin-top:18px;transition:transform .15s;box-shadow:0 12px 26px -10px rgba(236,91,19,.6)}
.btn-checkout:hover{transform:translateY(-2px)}
.cart-empty{text-align:center;padding:90px 20px;color:var(--c-muted)}
.cart-empty h2{font-size:26px;margin-bottom:10px;color:var(--c-text)}

/* ── Checkout ────────────────────────────────────────────────────── */
.checkout-layout{display:grid;grid-template-columns:1fr 360px;gap:32px;padding:48px 0}
@media(max-width:800px){.checkout-layout{grid-template-columns:1fr}}
.checkout-form-card{background:var(--c-surface);border:1px solid var(--c-border);border-radius:var(--radius);padding:30px;box-shadow:var(--shadow)}
.checkout-form-card h2{font-size:20px;font-weight:700;margin-bottom:22px}
.form-group{margin-bottom:18px}
.form-group label{display:block;font-size:13px;font-weight:600;margin-bottom:7px}
.form-control{width:100%;padding:12px 15px;border:1px solid var(--c-border);border-radius:var(--radius-sm);font-size:14px;font-family:inherit;background:#fbfbfe;transition:.15s}
.form-control:focus{outline:none;border-color:var(--c-primary);background:#fff;box-shadow:0 0 0 4px rgba(236,91,19,.12)}
.payment-options{display:flex;flex-direction:column;gap:12px;margin-bottom:22px}
.payment-option{display:flex;align-items:center;gap:12px;padding:16px;border:2px solid var(--c-border);border-radius:var(--radius-sm);cursor:pointer;transition:.15s}
.payment-option:has(input:checked),.payment-option.selected{border-color:var(--c-primary);background:#fff3ec}
.payment-option input{width:18px;height:18px;accent-color:var(--c-primary)}
.payment-option-label{font-size:14px;font-weight:700}
.payment-option-desc{font-size:12px;color:var(--c-muted)}
.btn-place-order{width:100%;padding:16px;background:var(--c-success);color:#fff;border:none;border-radius:var(--pill);font-size:16px;font-weight:700;cursor:pointer;transition:.15s}
.btn-place-order:hover{filter:brightness(1.06)}

/* ── Result page ─────────────────────────────────────────────────── */
.result-page{text-align:center;padding:90px 20px}
.result-icon{font-size:72px;margin-bottom:24px}
.result-page h1{font-size:34px;font-weight:700;margin-bottom:14px;letter-spacing:-.03em}
.result-page p{color:var(--c-muted);font-size:16px;margin-bottom:26px}
.result-order-box{display:inline-block;background:var(--c-surface);border:1px solid var(--c-border);border-radius:var(--radius);padding:24px 48px;margin-bottom:26px;box-shadow:var(--shadow)}
.result-order-box .order-number{font-size:28px;font-weight:800;color:var(--c-primary);font-family:var(--font-head)}

/* ── Footer ──────────────────────────────────────────────────────── */
.site-footer{background:#0d0d16;color:#cfcfe0;padding:48px 0 36px;margin-top:auto}
.footer-inner{display:flex;gap:36px;flex-wrap:wrap;justify-content:space-between}
.footer-brand{font-size:21px;font-weight:700;color:#fff;font-family:var(--font-head)}
.footer-info{font-size:13px;color:#9a9ab0;line-height:1.9}
.footer-social{display:flex;gap:14px;margin-top:10px}
.footer-social a{color:#fff;font-size:14px;font-weight:600}
.site-footer a{color:#fff}

/* ── Toast ───────────────────────────────────────────────────────── */
.toast{position:fixed;bottom:24px;right:24px;background:#0d0d16;color:#fff;padding:14px 22px;border-radius:var(--pill);font-size:14px;font-weight:600;z-index:9999;transform:translateY(100px);opacity:0;transition:all .3s;max-width:340px;box-shadow:var(--shadow-lg)}
.toast.show{transform:translateY(0);opacity:1}

/* ── Utilities ───────────────────────────────────────────────────── */
.btn{display:inline-block;padding:12px 26px;border-radius:var(--pill);font-weight:700;font-size:14px;cursor:pointer;border:2px solid transparent;text-decoration:none;transition:transform .15s,background .15s}
.btn-primary{background:var(--grad);color:#fff;box-shadow:0 10px 24px -10px rgba(236,91,19,.6)}
.btn-primary:hover{color:#fff;transform:translateY(-2px)}
.btn-outline{border-color:var(--c-text);color:var(--c-text)}
.btn-outline:hover{background:var(--c-text);color:#fff}
.alert{padding:14px 18px;border-radius:var(--radius-sm);margin-bottom:18px;font-size:14px}
.alert-error{background:#ffe4e9;color:#9f1239;border:1px solid #fecdd5}
.alert-success{background:#dcfce7;color:#166534;border:1px solid #bbf7d0}
.text-muted{color:var(--c-muted)}
.mt-4{margin-top:16px}.mb-4{margin-bottom:16px}

@media(max-width:600px){
  .products-grid{grid-template-columns:repeat(2,1fr);gap:14px}
  .product-card .product-info{padding:12px}
  .price-current{font-size:18px}
  .header-nav{display:none}
}

/* ── Regla de plataforma (2026-07-17): el precio tachado de una oferta va SIEMPRE en small, ENCIMA del precio publicado ── */
.product-price{display:flex;flex-direction:column-reverse;align-items:flex-start;gap:2px}
.price-old{font-size:12px}
.product-price-block{display:flex;flex-direction:column;align-items:flex-start;gap:2px}
.product-price-block .price-old{font-size:14px}


/* Generado por el motor de plantillas — Style: Plantilla Mágica (plantilla-magica) */
:root{
  --c-bg:#fbf9fb;--c-surface:#f2edf3;--c-surface-2:#f2edf3;--c-border:#e5e3e5;
  --c-text:#201c22;--c-muted:#837f84;
  --c-primary:#c113ec;--c-primary-h:#aa11d0;--c-accent:#c113ec;
  --c-success:#16a34a;--c-danger:#e11d48;
  --radius:16px;--radius-sm:10px;--pill:999px;
  --grad:linear-gradient(135deg,#c113ec 0%,#aa11d0 100%);
  --grad-hot:linear-gradient(135deg,#c113ec 0%,#a115c4 100%);
  --shadow:0 6px 20px rgba(0,0,0,.08);--shadow-lg:0 24px 50px -18px rgba(0,0,0,.22);--glow:0 14px 34px -10px rgba(193,19,236,0.50);
  --font-head:'Oswald',system-ui,sans-serif;--font-body:'Inter',system-ui,sans-serif;--font:var(--font-body);
}


/* ── Motor v2: keyframes ── */
@keyframes fx { from { opacity: 0; transform: translateY(var(--fx-y, 18px)); } to { opacity: 1; transform: none; } }
@keyframes kb { from { transform: scale(1); } to { transform: scale(1.16); } }
@keyframes sl { 0%,27% { opacity: 1; } 33%,94% { opacity: 0; } 100% { opacity: 1; } }
@keyframes grad { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-18px) rotate(2deg); } }
.fx { opacity: 0; animation: fx var(--fx-dur, .8s) var(--fx-ease, ease) forwards; }
.fx.d1 { animation-delay: .18s; } .fx.d2 { animation-delay: .36s; }
.split .word { display: inline-block; animation: fx .6s var(--fx-ease, ease) both; }

/* ── Hero base + variantes ── */
.hero { position: relative; min-height: 92vh; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero__in { position: relative; z-index: 3; padding: 2rem; max-width: 960px; }
.hero h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); line-height: 1.04; margin: 0 0 .6rem; }
.hero p { font-size: 1.15rem; margin: 0 0 1.4rem; }
.hero .btn { display: inline-block; background: var(--c-primary); color: #fff; text-decoration: none; padding: .8rem 1.8rem; border-radius: var(--pill, 999px); font-weight: 700; transition: transform .2s, filter .2s; }
.hero .btn:hover { filter: brightness(1.08); }
.hero__ov { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.68)); }
.hero__ov--soft { background: rgba(0,0,0,.32); }
.hero__grad { position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, var(--c-primary), var(--c-surface), var(--c-bg)); background-size: 220% 220%; animation: grad 14s ease infinite; opacity: .9; }
.hero--kb, .hero--slider, .hero--particles { color: #fff; }
.hero--kb .hero__bg { position: absolute; inset: 0; z-index: 1; background-size: cover; background-position: center; animation: kb 20s ease-in-out infinite alternate; }
.hero--slider .hero__slides, .hero--slider .hero__slide { position: absolute; inset: 0; z-index: 1; }
.hero--slider .hero__slide { background-size: cover; background-position: center; opacity: 0; animation: sl 15s infinite, kb 20s ease-in-out infinite alternate; }
.hero--slider .s1 { animation-delay: 0s; } .hero--slider .s2 { animation-delay: -5s; } .hero--slider .s3 { animation-delay: -10s; }
.hero--grad .hero__ov { display: none; }
.hero--floating .hero__float { position: absolute; inset: 0; z-index: 1; }
.hero--floating .hero__fimg { position: absolute; width: clamp(120px, 17vw, 250px); height: clamp(160px, 23vw, 330px); background-size: cover; background-position: center; border-radius: var(--radius); box-shadow: 0 24px 60px rgba(0,0,0,.35); animation: floaty 6s ease-in-out infinite; }
.hero--floating .f1 { top: 12%; left: 6%; } .hero--floating .f2 { top: 16%; right: 8%; animation-delay: -2s; } .hero--floating .f3 { bottom: 10%; left: 22%; animation-delay: -4s; }
.hero--editorial { min-height: auto; display: block; text-align: left; padding: 6rem 1.5rem 4rem; }
.hero--editorial .hero__ed { max-width: 1120px; margin: 0 auto; display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap; }
.hero--editorial .hero__ed-txt { flex: 1 1 380px; }
.hero--editorial .hero__rule { border: 0; border-top: 2px solid var(--c-primary); width: 64px; margin: 1.2rem 0 0; }
.hero--editorial .hero__ed-img { flex: 1 1 380px; min-height: 50vh; background-size: cover; background-position: center; border-radius: var(--radius); }
.hero--split { text-align: left; display: flex; min-height: 80vh; }
.hero--split .hero__col { flex: 1 1 50%; }
.hero--split .hero__col--txt { display: flex; flex-direction: column; justify-content: center; padding: 3rem clamp(1.5rem, 5vw, 5rem); z-index: 3; }
.hero--split .hero__col--img { background-size: cover; background-position: center; min-height: 56vh; }
.hero--bigtype { min-height: 70vh; }
.hero--bigtype .hero__in--big { max-width: 1120px; }
.hero--bigtype h1 { font-size: clamp(3rem, 12vw, 9rem); line-height: .94; }
.hero--particles { background: var(--c-bg); }
.hero__particles { position: absolute; inset: 0; z-index: 1; }
@media (max-width: 720px) { .hero--split { flex-direction: column; } .hero--editorial .hero__ed { flex-direction: column; } }

/* ── Marquee ── */
.marquee { overflow: hidden; white-space: nowrap; background: var(--c-primary); color: #fff; padding: .6rem 0; }
.marquee__t { display: inline-block; font-weight: 800; letter-spacing: .1em; animation: mq 22s linear infinite; }

/* ── Secciones ── */
.sec__t { font-family: var(--font-head); font-size: 2rem; text-align: center; margin: 0 auto 1.6rem; }
.about { max-width: 760px; margin: 0 auto; padding: 4.5rem 1.5rem; text-align: center; }
.about__body { color: var(--c-muted); font-size: 1.12rem; line-height: 1.7; }
.sec--dark { position: relative; overflow: hidden; color: #fff; min-height: 56vh; display: flex; align-items: center; padding: 5rem 1.5rem; }
.sec--dark .sec-in { position: relative; z-index: 2; width: 100%; max-width: 900px; margin: 0 auto; text-align: center; }
.sec--dark .about__body, .sec--dark p { color: rgba(255,255,255,.87); }
.sec-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.sec-bg--img { animation: kb 24s ease-in-out infinite alternate; }
.sec-bg--grad { background: linear-gradient(120deg, var(--c-primary), var(--c-bg)); background-size: 220% 220%; animation: grad 16s ease infinite; }
.sec-ov { position: absolute; inset: 0; z-index: 1; background: rgba(0,0,0,.6); }
.sec-ov--soft { background: rgba(0,0,0,.35); }
.gal-grid { display: grid; gap: .75rem; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.gal { display: block; height: 200px; background-size: cover; background-position: center; border-radius: var(--radius); cursor: zoom-in; transition: transform .25s; }
.gal:hover { transform: scale(1.03); }
.tb-cta { position: relative; padding: 4.5rem 1.5rem; text-align: center; }
.tb-cta .cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.tb-cta .btn { display: inline-block; background: var(--c-primary); color: #fff; text-decoration: none; padding: .8rem 1.8rem; border-radius: var(--pill, 999px); font-weight: 700; }
.tb-cta.sec--dark .sec__t { color: #fff; }

/* ── Vidrieras destacados/ofertas (slider CSS puro — nunca el catálogo) ── */
.tb-slider-track { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
.tb-slider-track::-webkit-scrollbar { height: 6px; }
.tb-slider-track::-webkit-scrollbar-thumb { background: var(--c-border, #e2e8f0); border-radius: 999px; }
.tb-slider-card { flex: 0 0 200px; scroll-snap-align: start; }

/* ── Contacto ── */
.tb-contact-form { display: flex; flex-direction: column; gap: 12px; max-width: 480px; margin: 0 auto; }
.tb-contact-form input, .tb-contact-form textarea { padding: 11px 14px; border: 1px solid var(--c-border, #e2e8f0); border-radius: var(--radius-sm, 10px); font: inherit; background: var(--c-surface, #fff); color: var(--c-text, #111); }
.tb-contact-form .btn { align-self: flex-start; background: var(--c-primary); color: #fff; border: 0; padding: .8rem 1.8rem; border-radius: var(--pill, 999px); font-weight: 700; cursor: pointer; }
.tb-contact-feedback { margin: 0; font-size: 14px; }
.tb-contact-ok { color: #16a34a; }
.tb-contact-error { color: #e11d48; }

/* ── Footer variantes ── */
.tb-foot-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); padding-bottom: 1.2rem; }
.tb-foot-h { font-weight: 800; margin-bottom: .5rem; }
.tb-foot-desc { opacity: .75; font-size: .9rem; }
.tb-foot-bar { border-top: 1px solid rgba(128,128,128,.25); padding-top: 1rem; text-align: center; }
.tb-foot-flex { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.tb-foot-brand-lg { font-size: 1.6rem; font-weight: 800; margin-bottom: .4rem; }
.tb-foot-right { text-align: right; }
.tb-foot--big { padding: 4rem 0 2.5rem; }
.tb-foot-bigtitle { font-family: var(--font-head); font-size: clamp(2.4rem, 8vw, 5rem); font-weight: 800; line-height: 1; }
.tb-foot-bigmail { display: inline-block; font-size: clamp(1.1rem, 3vw, 1.7rem); font-weight: 700; color: var(--c-primary); text-decoration: none; margin: .8rem 0 1rem; }
.tb-foot-social-row { display: flex; gap: 1.2rem; justify-content: center; margin-bottom: 1rem; }
@media (max-width: 640px) { .tb-foot-right { text-align: left; } }
.products-grid { grid-auto-flow: dense; }
.products-grid .product-card:nth-child(7n+1) { grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; }
.products-grid .product-card:nth-child(7n+1) > a { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.products-grid .product-card:nth-child(7n+1) .product-img-wrap { aspect-ratio: auto; flex: 1; height: auto; min-height: 240px; }
.products-grid .product-card:nth-child(7n+1) .product-img-wrap img, .products-grid .product-card:nth-child(7n+1) .product-img-placeholder { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 640px) { .products-grid .product-card { grid-column: auto !important; grid-row: auto !important; display: block; } }
:root { --fx-dur: 1s; --fx-ease: cubic-bezier(.2,.8,.2,1); --fx-y: 32px; }
