:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #f6f7fb;
  --surface: rgba(255,255,255,.82);
  --surface-solid: #fff;
  --surface-muted: #edf0f8;
  --text: #0e1429;
  --muted: #5f6880;
  --border: rgba(18, 28, 59, .11);
  --accent: #436ff7;
  --accent-strong: #284ec8;
  --accent-soft: rgba(67,111,247,.12);
  --success: #087b58;
  --warning: #a85d00;
  --danger: #c4354d;
  --shadow: 0 22px 70px rgba(16,29,70,.12);
  --shadow-soft: 0 12px 32px rgba(17,31,74,.08);
  --radius: 24px;
  --radius-sm: 15px;
  --page: min(1240px, calc(100% - 48px));
  --ease: cubic-bezier(.2,.75,.2,1);
}

body.theme-dark {
  color-scheme: dark;
  --bg: #070a14;
  --surface: rgba(16,21,39,.86);
  --surface-solid: #101527;
  --surface-muted: #171d32;
  --text: #f4f6ff;
  --muted: #a5aec9;
  --border: rgba(172,189,255,.16);
  --accent: #809cff;
  --accent-strong: #a3b6ff;
  --accent-soft: rgba(128,156,255,.15);
  --success: #54d6a9;
  --warning: #ffba68;
  --danger: #ff91a2;
  --shadow: 0 26px 90px rgba(0,0,0,.38);
  --shadow-soft: 0 15px 38px rgba(0,0,0,.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: radial-gradient(circle at 11% -4%, rgba(79,117,255,.18), transparent 25rem), radial-gradient(circle at 92% 18%, rgba(199,211,255,.18), transparent 29rem), var(--bg);
  transition: background .25s ease, color .25s ease;
}
body.is-locked { overflow: hidden; }
body::selection { color: #fff; background: var(--accent); }
button, input, select, textarea { font: inherit; }
button { border: 0; cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .5; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
button, a { touch-action: manipulation; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 220; top: -80px; left: 12px; padding: 10px 14px; border-radius: 10px; color: #fff; background: var(--accent); box-shadow: var(--shadow); transition: top .2s ease; }
.skip-link:focus { top: 12px; }
.reading-progress { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; height: 3px; background: transparent; }
.reading-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--accent), #9caeff); transition: width .08s linear; }

.promo-bar { display: flex; gap: 16px; justify-content: center; align-items: center; min-height: 36px; padding: 6px 24px; color: #eaf0ff; background: #101a39; font-size: .76rem; font-weight: 600; }
.promo-bar p { margin: 0; text-align: center; }
.text-button { padding: 0; color: var(--accent-strong); background: none; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.promo-bar .text-button { flex: 0 0 auto; color: #cad6ff; }

.navbar { position: sticky; z-index: 50; top: 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: var(--page); min-height: 76px; margin: 0 auto; border-bottom: 1px solid transparent; background: color-mix(in srgb, var(--bg) 86%, transparent); backdrop-filter: blur(18px); transition: border-color .2s ease, min-height .2s ease; }
.navbar.scrolled { min-height: 64px; border-bottom-color: var(--border); }
.navbar__brand { display: inline-flex; gap: 10px; align-items: center; width: max-content; }
.brand__mark { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 12px; color: #fff; background: linear-gradient(145deg, var(--accent), #253d9d); box-shadow: 0 8px 18px rgba(48,76,190,.26); font-weight: 800; }
.navbar__brand > span:last-child { display: grid; line-height: 1.2; }
.eyebrow { display: block; margin: 0 0 5px; color: var(--accent-strong); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.navbar__brand strong { font-size: .73rem; font-weight: 600; white-space: nowrap; }
.navbar__nav { display: flex; gap: clamp(14px,2vw,30px); align-items: center; justify-content: center; }
.navbar__nav a, .nav-link { padding: 8px 0; color: var(--muted); background: none; font-size: .83rem; font-weight: 700; transition: color .18s ease; }
.navbar__nav a:hover, .nav-link:hover { color: var(--text); }
.navbar__actions { display: flex; gap: 7px; align-items: center; justify-content: flex-end; }
.compact-select { max-width: 55px; padding: 6px 3px; border: 0; border-radius: 7px; color: var(--muted); background: transparent; font-size: .73rem; font-weight: 800; }
.icon-btn { position: relative; display: inline-grid; width: 37px; height: 37px; place-items: center; border: 1px solid transparent; border-radius: 12px; color: var(--text); background: transparent; font-size: 1.15rem; line-height: 1; transition: background .18s ease, border-color .18s ease, transform .18s var(--ease); }
.icon-btn:hover { border-color: var(--border); background: var(--surface); transform: translateY(-1px); }
.icon-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
#cartToggle { font-size: 0; }
#cartToggle::before { width: 20px; height: 20px; content: ""; background: currentColor; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 4h2l2.2 10.2a2 2 0 0 0 2 1.6h7.9a2 2 0 0 0 1.9-1.4L21 7H6.2v1.8h13.5l-1.5 5.2H9.2L6.8 4H3zm5.8 14.8a1.3 1.3 0 1 0 0 2.6 1.3 1.3 0 0 0 0-2.6zm7.5 0a1.3 1.3 0 1 0 0 2.6 1.3 1.3 0 0 0 0-2.6z'/%3E%3C/svg%3E") center / contain no-repeat; }
#cartToggle > span { font-size: .62rem; }
.has-badge span { position: absolute; top: -3px; right: -3px; display: grid; min-width: 17px; height: 17px; padding: 0 4px; place-items: center; border: 2px solid var(--bg); border-radius: 999px; color: #fff; background: var(--accent); font-size: .62rem; font-weight: 800; }
.mobile-only { display: none; }

.mobile-menu { position: fixed; z-index: 90; top: 0; right: 0; bottom: 0; width: min(320px, 86vw); padding: 92px 28px 28px; background: var(--surface-solid); box-shadow: var(--shadow); transform: translateX(105%); transition: transform .3s var(--ease); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav { display: grid; gap: 4px; }
.mobile-menu nav a, .mobile-menu nav button { padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--text); background: none; text-align: left; font-weight: 700; }
.close-button { position: absolute; top: 22px; right: 22px; }

.section { width: var(--page); margin: 0 auto; padding: clamp(62px,8vw,120px) 0; }
@supports (content-visibility: auto) {
  .products-section, #destacados, #recommendations, #recentlyViewed, .featured-card, .benefits, .journal, .newsletter { content-visibility: auto; contain-intrinsic-size: auto 760px; }
}
.hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(370px,.95fr); gap: clamp(38px,7vw,100px); align-items: center; min-height: 630px; padding-top: 64px; }
.hero h1, h2, h3, p { overflow-wrap: break-word; }
.hero h1 { max-width: 690px; margin: 0; letter-spacing: -.065em; font-size: clamp(2.8rem,6.1vw,5.45rem); line-height: .98; }
.hero p { max-width: 610px; margin: 25px 0 0; color: var(--muted); font-size: clamp(1rem,1.5vw,1.15rem); line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.btn { display: inline-flex; min-height: 46px; padding: 0 19px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 14px; font-size: .86rem; font-weight: 800; text-align: center; transition: transform .2s var(--ease), box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--accent), #3756d5); box-shadow: 0 12px 22px rgba(52,83,207,.23); }
.btn-primary:hover { box-shadow: 0 16px 27px rgba(52,83,207,.33); }
.btn-secondary { border-color: var(--border); color: var(--text); background: var(--surface); }
.btn-secondary:hover { background: var(--surface-solid); box-shadow: var(--shadow-soft); }
.btn-full { width: 100%; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 47px; }
.hero__badges div { display: grid; gap: 4px; }
.hero__badges strong { font-size: 1.08rem; }
.hero__badges span { color: var(--muted); font-size: .75rem; font-weight: 600; }
.hero__visual { position: relative; min-height: 460px; overflow: hidden; padding: 0; border: 0; border-radius: 34px; background: #10182e; box-shadow: 0 30px 80px rgba(20,34,83,.28); isolation: isolate; }
.hero__visual::before { position: absolute; z-index: 1; inset: 0; content: ""; background: linear-gradient(145deg, rgba(37,68,177,.44), transparent 55%, rgba(0,0,0,.42)); pointer-events: none; }
.hero__visual img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; opacity: .92; transform: scale(1.04); transition: transform .8s var(--ease); }
.hero__visual:hover img { transform: scale(1.11); }
.hero__label, .hero__visual-hint { position: absolute; z-index: 2; color: #fff; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero__label { top: 25px; left: 27px; font-size: .7rem; }
.hero__visual-hint { right: 24px; bottom: 23px; display: inline-flex; padding: 9px 12px; border: 1px solid rgba(255,255,255,.3); border-radius: 99px; background: rgba(4,8,20,.38); backdrop-filter: blur(8px); font-size: .67rem; }
.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding: 0; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--border); }
.trust-strip span { padding: 19px 25px; color: var(--muted); background: var(--surface); font-size: .78rem; font-weight: 700; text-align: center; }

.section__header { display: grid; grid-template-columns: minmax(100px,.26fr) 1fr; gap: 24px; margin-bottom: 31px; }
.section__header h2 { max-width: 780px; margin: 0; letter-spacing: -.045em; font-size: clamp(1.9rem,3.3vw,3rem); line-height: 1.1; }
.section__header p { max-width: 640px; margin: 13px 0 0; color: var(--muted); line-height: 1.65; }
.catalog-toolbar { display: grid; grid-template-columns: minmax(240px,1fr) auto auto; gap: 11px; align-items: center; margin-bottom: 13px; }
.search-wrap { position: relative; display: flex; align-items: center; }
.search-wrap input { width: 100%; height: 49px; padding: 0 49px 0 17px; border: 1px solid var(--border); border-radius: 15px; outline: none; color: var(--text); background: var(--surface); transition: border .18s ease, box-shadow .18s ease; }
.search-wrap input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.search-action { position: absolute; right: 4px; display: grid; width: 40px; height: 40px; place-items: center; border-radius: 11px; color: var(--muted); background: transparent; font-size: 1.2rem; }
.search-action:hover { color: var(--accent-strong); background: var(--accent-soft); }
.sort-wrap { display: grid; gap: 3px; color: var(--muted); font-size: .67rem; font-weight: 800; }
.sort-wrap select { min-width: 175px; height: 40px; padding: 0 9px; border: 1px solid var(--border); border-radius: 11px; outline: none; color: var(--text); background: var(--surface); font-size: .77rem; }
.filters-panel { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr auto; gap: 18px; align-items: end; margin: 0 0 15px; padding: 20px; border: 1px solid var(--border); border-radius: 19px; background: var(--surface); box-shadow: var(--shadow-soft); }
.filters-panel fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.filters-panel legend { margin-bottom: 8px; color: var(--muted); font-size: .72rem; font-weight: 800; }
.filters-panel select { width: 100%; min-height: 35px; padding: 0 7px; border: 1px solid var(--border); border-radius: 9px; color: var(--text); background: var(--surface-solid); }
.filters-panel label { display: block; margin: 6px 0; color: var(--muted); font-size: .76rem; font-weight: 600; }
.filters-panel input[type="range"] { width: 100%; accent-color: var(--accent); }
.filters__tags { display: flex; flex-wrap: wrap; gap: 5px; }
.tag-btn { padding: 6px 9px; border: 1px solid var(--border); border-radius: 99px; color: var(--muted); background: var(--surface-solid); font-size: .68rem; font-weight: 800; }
.tag-btn.active, .tag-btn:hover { border-color: transparent; color: var(--accent-strong); background: var(--accent-soft); }
.results-count { margin: 0 0 17px; color: var(--muted); font-size: .79rem; font-weight: 600; }
.products-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.product-card { position: relative; display: grid; min-width: 0; overflow: hidden; border: 1px solid var(--border); border-radius: 21px; background: var(--surface); box-shadow: 0 1px 0 rgba(255,255,255,.55) inset; transition: transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease; }
.product-card:hover { z-index: 1; border-color: color-mix(in srgb, var(--accent) 35%, var(--border)); box-shadow: var(--shadow-soft); transform: translateY(-5px); }
.product-card__media { position: relative; aspect-ratio: 1.06/1; overflow: hidden; padding: 0; border: 0; background: var(--surface-muted); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.07); }
.product-card__media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 54%, rgba(5,9,24,.2)); pointer-events: none; }
.card-tag, .stock-label { position: absolute; z-index: 1; top: 12px; padding: 6px 8px; border-radius: 8px; color: #fff; background: rgba(12,19,42,.75); backdrop-filter: blur(6px); font-size: .64rem; font-weight: 800; }
.card-tag { left: 12px; }
.stock-label { right: 12px; }
.stock-label.low { color: #4b2700; background: #ffdc9a; }
.stock-label.out { color: #fff; background: var(--danger); }
.card-actions { position: absolute; z-index: 2; right: 11px; bottom: 11px; display: flex; gap: 6px; opacity: 0; transform: translateY(7px); transition: opacity .2s ease, transform .2s ease; }
.product-card:hover .card-actions, .product-card:focus-within .card-actions { opacity: 1; transform: translateY(0); }
.card-actions .icon-btn { color: #fff; background: rgba(8,14,36,.72); backdrop-filter: blur(8px); }
.card-actions .icon-btn.active { color: #ffc0cb; }
.product-card__body { display: grid; gap: 10px; padding: 17px; }
.product-card__category { color: var(--accent-strong); font-size: .67rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.product-card h3 { margin: 0; font-size: 1rem; letter-spacing: -.025em; }
.product-card__body > p { min-height: 39px; margin: 0; color: var(--muted); font-size: .77rem; line-height: 1.55; }
.product-meta { display: flex; gap: 6px; align-items: center; color: var(--muted); font-size: .74rem; font-weight: 700; }
.stars { color: #d9911a; letter-spacing: .04em; }
.product-card__price { display: flex; gap: 7px; align-items: baseline; }
.product-card__price strong { font-size: 1.08rem; }
.product-card__price del { color: var(--muted); font-size: .73rem; }
.product-card .btn { min-height: 41px; margin-top: 1px; font-size: .77rem; }
.empty-state { padding: 60px 20px; border: 1px dashed var(--border); border-radius: var(--radius); color: var(--muted); text-align: center; }
.empty-state strong { display: block; margin-bottom: 9px; color: var(--text); }

.product-rail { display: grid; grid-auto-columns: minmax(220px, 1fr); grid-auto-flow: column; gap: 17px; overflow-x: auto; padding: 3px 2px 17px; scrollbar-width: thin; scroll-snap-type: x proximity; }
.product-rail .product-card { scroll-snap-align: start; }
.product-rail .product-card__body > p { display: none; }
.product-rail .product-card__body { gap: 8px; }
.product-rail .product-card__media { aspect-ratio: 1.3/1; }

.featured-card { display: grid; grid-template-columns: minmax(320px,.94fr) minmax(0,1.06fr); gap: clamp(28px,5vw,72px); align-items: center; padding: clamp(22px,4vw,48px); border: 1px solid var(--border); border-radius: 31px; background: linear-gradient(135deg,var(--surface-solid),var(--surface-muted)); }
.featured-card__media { min-height: 360px; overflow: hidden; border-radius: 22px; background: #121b35; }
.featured-card__media img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.featured-card__content h2 { margin: 0; letter-spacing: -.05em; font-size: clamp(2rem,3.8vw,3.25rem); }
.featured-card__content p { max-width: 520px; color: var(--muted); line-height: 1.7; }
.featured-card__content ul { display: grid; gap: 10px; padding: 0; list-style: none; color: var(--muted); font-size: .86rem; }
.featured-card__content li::before { margin-right: 9px; content: "✓"; color: var(--success); font-weight: 800; }

.benefits { padding-top: 28px; }
.benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.benefit-card { min-height: 187px; padding: 21px; border: 1px solid var(--border); border-radius: 19px; background: var(--surface); }
.benefit-card > span { display: grid; width: 35px; height: 35px; place-items: center; border-radius: 12px; color: var(--accent-strong); background: var(--accent-soft); font-weight: 800; }
.benefit-card h3 { margin: 20px 0 8px; font-size: .94rem; }
.benefit-card p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.6; }
.journal { padding-top: 52px; }
.journal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.journal-grid article { overflow: hidden; border: 1px solid var(--border); border-radius: 18px; background: var(--surface); }
.journal-grid img { width: 100%; height: 185px; object-fit: cover; }
.journal-grid h3, .journal-grid span, .journal-grid .text-button { display: block; margin-right: 17px; margin-left: 17px; }
.journal-grid span { margin-top: 16px; color: var(--accent-strong); font-size: .67rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.journal-grid h3 { margin-top: 7px; margin-bottom: 15px; letter-spacing: -.025em; font-size: 1rem; line-height: 1.32; }
.journal-grid .text-button { margin-bottom: 18px; font-size: .77rem; text-align: left; }
.newsletter { display: flex; gap: 34px; align-items: center; justify-content: space-between; padding: 34px clamp(23px,4vw,45px); border-radius: 25px; color: #f6f8ff; background: linear-gradient(120deg,#1c2f74,#2f58dd); }
.newsletter__content { min-width: 0; }
.newsletter .eyebrow { color: #c6d3ff; }
.newsletter h2 { max-width: 590px; margin: 0; font-size: clamp(1.6rem,2.8vw,2.4rem); letter-spacing: -.04em; }
.newsletter p { margin: 10px 0 0; color: #dae2ff; font-size: .85rem; }
.newsletter__form { display: flex; width: min(100%,430px); gap: 10px; align-items: stretch; }
.newsletter__form input { min-width: 0; flex: 1; height: 50px; padding: 0 15px; border: 1px solid rgba(255,255,255,.38); border-radius: 13px; outline: none; color: #fff; background: rgba(255,255,255,.13); }
.newsletter__form input:focus { border-color: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.18); }
.newsletter__form input::placeholder { color: #dce4ff; }
.newsletter__form .btn { color: #1f39a0; background: #fff; }

.footer { width: var(--page); margin: 0 auto; padding: 0 0 34px; }
.footer::after { display: block; margin-top: 15px; color: var(--muted); content: "Demo creada por Norte Web"; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-align: center; }
html[lang="en"] .footer::after { content: "Demo created by Norte Web"; }
.footer__top { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; padding: 32px 0; border-bottom: 1px solid var(--border); }
.footer__top strong { font-size: .9rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: 13px 23px; align-content: start; }
.footer__links button { padding: 0; color: var(--muted); background: none; font-size: .76rem; text-align: left; }
.footer__links button:hover { color: var(--text); }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; color: var(--muted); font-size: .72rem; }
.footer__bottom p { margin: 0; }

.overlay { position: fixed; z-index: 70; inset: 0; opacity: 0; visibility: hidden; background: rgba(5,8,18,.52); backdrop-filter: blur(2px); transition: opacity .2s ease, visibility .2s ease; }
.overlay.active { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; z-index: 80; top: 0; right: 0; bottom: 0; display: flex; flex-direction: column; width: min(430px,100vw); padding: 23px; overflow-y: auto; border-left: 1px solid var(--border); background: var(--surface-solid); box-shadow: var(--shadow); transform: translateX(105%); transition: transform .3s var(--ease); }
.cart-drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: start; justify-content: space-between; margin-bottom: 18px; }
.drawer-head h2 { margin: 0; font-size: 1.55rem; letter-spacing: -.04em; }
.cart-drawer__body { display: grid; gap: 11px; }
.cart-empty { padding: 32px 9px; color: var(--muted); text-align: center; }
.cart-item { display: grid; grid-template-columns: 70px 1fr auto; gap: 11px; align-items: center; padding: 10px; border: 1px solid var(--border); border-radius: 15px; }
.cart-item img { width: 70px; height: 70px; border-radius: 10px; object-fit: cover; }
.cart-item h3 { margin: 0; font-size: .84rem; }
.cart-item p { margin: 4px 0 8px; color: var(--muted); font-size: .7rem; }
.cart-item__controls { display: flex; gap: 4px; align-items: center; }
.cart-item__controls button { display: grid; width: 24px; height: 24px; place-items: center; border: 1px solid var(--border); border-radius: 7px; color: var(--text); background: var(--surface-muted); }
.cart-item__controls span { min-width: 18px; text-align: center; font-size: .76rem; font-weight: 800; }
.cart-item > strong { align-self: start; font-size: .78rem; }
.cart-progress { margin-top: 17px; padding: 13px; border-radius: 14px; background: var(--accent-soft); color: var(--accent-strong); font-size: .77rem; font-weight: 700; }
.progress-track { width: 100%; height: 6px; margin-top: 9px; overflow: hidden; border-radius: 99px; background: rgba(80,107,200,.2); }
.progress-track span { display: block; height: 100%; border-radius: inherit; background: var(--accent); }
.coupon-box { margin-top: 14px; padding: 13px; border: 1px solid var(--border); border-radius: 14px; }
.coupon-box label { display: block; margin-bottom: 7px; color: var(--muted); font-size: .74rem; font-weight: 800; }
.coupon-box > div { display: flex; gap: 7px; }
.coupon-box input { min-width: 0; flex: 1; height: 39px; padding: 0 9px; border: 1px solid var(--border); border-radius: 9px; outline: none; color: var(--text); background: var(--surface); text-transform: uppercase; }
.coupon-box .btn { min-height: 39px; padding: 0 12px; font-size: .73rem; }
.coupon-box p { min-height: 16px; margin: 7px 0 0; color: var(--muted); font-size: .71rem; }
.coupon-box p.error { color: var(--danger); }
.coupon-box p.success { color: var(--success); }
.cart-summary { display: grid; gap: 8px; margin: 16px 0; padding-top: 15px; border-top: 1px solid var(--border); }
.cart-summary div { display: flex; justify-content: space-between; color: var(--muted); font-size: .8rem; }
.cart-summary .total { padding-top: 10px; border-top: 1px solid var(--border); color: var(--text); font-size: 1rem; font-weight: 800; }
.cart-summary .positive { color: var(--success); }

.modal { position: fixed; z-index: 85; inset: 0; display: grid; padding: 24px; overflow-y: auto; place-items: center; }
.modal__panel { position: relative; width: min(620px,100%); max-height: min(780px, calc(100vh - 48px)); padding: clamp(22px,4vw,38px); overflow-y: auto; border: 1px solid var(--border); border-radius: 25px; background: var(--surface-solid); box-shadow: var(--shadow); animation: modal-in .24s var(--ease); }
.modal__panel--wide { width: min(1000px,100%); }
.modal__panel--product { width: min(1100px,100%); }
.modal-close { position: absolute; z-index: 3; top: 13px; right: 13px; background: var(--surface-muted); }
@keyframes modal-in { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.modal h2 { margin: 0 0 9px; letter-spacing: -.045em; font-size: clamp(1.55rem,3vw,2.25rem); }
.modal-intro { margin: 0 0 22px; color: var(--muted); line-height: 1.65; }
.modal-tabs { display: flex; gap: 7px; margin: 0 0 21px; border-bottom: 1px solid var(--border); }
.modal-tabs button { padding: 9px 2px; border-bottom: 2px solid transparent; color: var(--muted); background: none; font-size: .78rem; font-weight: 800; }
.modal-tabs button.active { border-color: var(--accent); color: var(--accent-strong); }
.form-grid { display: grid; gap: 14px; }
.form-grid label { display: grid; gap: 6px; color: var(--muted); font-size: .75rem; font-weight: 800; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; min-height: 43px; padding: 9px 11px; border: 1px solid var(--border); border-radius: 11px; outline: none; color: var(--text); background: var(--surface); }
.form-grid textarea { min-height: 92px; resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.form-help { margin: 0; color: var(--muted); font-size: .73rem; line-height: 1.55; }
.account-profile { display: grid; gap: 15px; }
.profile-card { display: flex; gap: 13px; align-items: center; padding: 17px; border-radius: 17px; background: var(--accent-soft); }
.avatar { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; color: #fff; background: var(--accent); font-weight: 800; }
.profile-card strong, .profile-card span { display: block; }
.profile-card span { margin-top: 3px; color: var(--muted); font-size: .74rem; }
.order-card { padding: 14px; border: 1px solid var(--border); border-radius: 14px; }
.order-card + .order-card { margin-top: 10px; }
.order-card__top { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.order-card p { margin: 7px 0; color: var(--muted); font-size: .77rem; }
.status-pill { display: inline-flex; padding: 5px 8px; border-radius: 99px; color: var(--success); background: color-mix(in srgb, var(--success) 14%, transparent); font-size: .66rem; font-weight: 800; }
.status-pill.pending { color: var(--warning); background: color-mix(in srgb, var(--warning) 14%, transparent); }
.account-stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.account-stat-grid div { padding: 12px; border: 1px solid var(--border); border-radius: 12px; }
.account-stat-grid strong { display: block; font-size: 1.08rem; }
.account-stat-grid span { color: var(--muted); font-size: .67rem; font-weight: 700; }

.product-detail { display: grid; grid-template-columns: minmax(0,.96fr) minmax(310px,.9fr); gap: clamp(26px,4vw,50px); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; color: var(--muted); font-size: .7rem; }
.breadcrumb span:last-child { color: var(--text); }
.product-gallery { position: relative; display: grid; grid-template-columns: 75px 1fr; gap: 11px; }
.gallery-thumbs { display: grid; align-content: start; gap: 9px; }
.gallery-thumbs button { width: 100%; aspect-ratio: 1; overflow: hidden; padding: 0; border: 2px solid transparent; border-radius: 11px; background: var(--surface-muted); }
.gallery-thumbs button.active { border-color: var(--accent); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main { position: relative; min-height: 420px; overflow: hidden; border-radius: 20px; background: var(--surface-muted); cursor: zoom-in; }
.gallery-main img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; transform-origin: center; transition: transform .15s ease; }
.gallery-main:hover img { transform: scale(1.55); }
.gallery-controls { position: absolute; right: 12px; bottom: 12px; display: flex; gap: 6px; }
.gallery-controls button { padding: 8px 9px; border-radius: 10px; color: #fff; background: rgba(9,14,30,.72); backdrop-filter: blur(6px); font-size: .68rem; font-weight: 800; }
.product-detail__info > .eyebrow { margin-top: 33px; }
.product-detail__info h2 { margin-bottom: 10px; }
.rating-row { display: flex; gap: 7px; align-items: center; color: var(--muted); font-size: .78rem; font-weight: 700; }
.rating-row button { padding: 0; color: var(--accent-strong); background: none; font-size: inherit; text-decoration: underline; }
.detail-price { display: flex; gap: 10px; align-items: baseline; margin: 18px 0; }
.detail-price strong { font-size: 1.8rem; letter-spacing: -.04em; }
.detail-price del { color: var(--muted); }
.discount-chip { padding: 5px 7px; border-radius: 8px; color: var(--success); background: color-mix(in srgb, var(--success) 12%, transparent); font-size: .7rem; font-weight: 800; }
.product-description { color: var(--muted); font-size: .88rem; line-height: 1.7; }
.variant-group { margin: 18px 0; }
.variant-group > strong { display: block; margin-bottom: 9px; font-size: .78rem; }
.variant-options { display: flex; flex-wrap: wrap; gap: 7px; }
.variant-options button { min-height: 36px; padding: 0 11px; border: 1px solid var(--border); border-radius: 10px; color: var(--text); background: var(--surface); font-size: .75rem; font-weight: 700; }
.variant-options button.active { border-color: var(--accent); color: var(--accent-strong); background: var(--accent-soft); }
.variant-options button:disabled { text-decoration: line-through; }
.detail-stock { margin: 4px 0 18px; color: var(--success); font-size: .78rem; font-weight: 800; }
.detail-stock.low { color: var(--warning); }
.detail-stock.out { color: var(--danger); }
.detail-actions { display: grid; grid-template-columns: 1fr auto auto; gap: 8px; }
.detail-actions .icon-btn { border-color: var(--border); background: var(--surface); }
.detail-actions .icon-btn.active { color: #e65772; }
.detail-extra { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 17px; }
.detail-extra div { padding: 10px; border: 1px solid var(--border); border-radius: 11px; color: var(--muted); font-size: .67rem; line-height: 1.4; }
.detail-extra strong { display: block; margin-bottom: 2px; color: var(--text); font-size: .7rem; }
.product-lower { grid-column: 1/-1; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 7px; padding-top: 23px; border-top: 1px solid var(--border); }
.review-summary { display: flex; gap: 17px; align-items: center; padding: 14px; border-radius: 14px; background: var(--surface-muted); }
.review-summary strong { font-size: 2rem; }
.review-summary p { margin: 4px 0 0; color: var(--muted); font-size: .72rem; }
.review-list, .question-list { display: grid; gap: 10px; margin-top: 13px; }
.review, .question { padding: 12px; border: 1px solid var(--border); border-radius: 12px; }
.review__top { display: flex; justify-content: space-between; gap: 9px; font-size: .74rem; }
.review p, .question p { margin: 7px 0 0; color: var(--muted); font-size: .76rem; line-height: 1.5; }
.review img { width: 64px; height: 64px; margin-top: 8px; border-radius: 8px; object-fit: cover; }
.question strong { font-size: .76rem; }
.question .answer { padding-top: 8px; color: var(--success); }
.mini-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 13px; }
.mini-form input, .mini-form textarea, .mini-form select { min-width: 0; padding: 9px; border: 1px solid var(--border); border-radius: 9px; outline: none; color: var(--text); background: var(--surface); }
.mini-form textarea { grid-column: 1/-1; min-height: 64px; resize: vertical; }
.mini-form .file-input { grid-column: 1/-1; color: var(--muted); font-size: .72rem; }
.gallery-360 { position: relative; display: grid; min-height: 420px; overflow: hidden; place-items: center; border-radius: 20px; background: radial-gradient(circle at 50% 43%, rgba(107,140,255,.34), transparent 25%), #10182e; cursor: grab; user-select: none; touch-action: none; }
.gallery-360:active { cursor: grabbing; }
.gallery-360 img { width: 85%; height: 85%; object-fit: cover; mix-blend-mode: screen; opacity: .86; transform: rotateY(var(--rotate,0deg)) scaleX(var(--flip,1)); transition: transform .08s linear; }
.gallery-360 span { position: absolute; bottom: 16px; padding: 7px 10px; border-radius: 99px; color: #fff; background: rgba(0,0,0,.46); font-size: .7rem; font-weight: 800; pointer-events: none; }

.compare-table { width: 100%; border-collapse: collapse; overflow: hidden; border: 1px solid var(--border); border-radius: 14px; font-size: .78rem; }
.compare-table th, .compare-table td { padding: 11px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.compare-table th { color: var(--muted); font-size: .68rem; }
.compare-table td img { width: 78px; height: 64px; border-radius: 8px; object-fit: cover; }
.compare-table button { color: var(--accent-strong); background: none; font-weight: 800; }
.compare-empty { padding: 32px; color: var(--muted); text-align: center; }

.checkout-section + .checkout-section { margin-top: 19px; padding-top: 19px; border-top: 1px solid var(--border); }
.checkout-section h3 { margin: 0 0 12px; font-size: 1rem; }
.checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.payment-option { display: flex; gap: 8px; align-items: center; min-height: 43px; padding: 0 10px; border: 1px solid var(--border); border-radius: 10px; font-size: .74rem; font-weight: 700; }
.payment-option:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.checkout-total { display: grid; gap: 7px; padding: 14px; border-radius: 13px; background: var(--surface-muted); font-size: .78rem; }
.checkout-total div { display: flex; justify-content: space-between; }
.checkout-total .final { margin-top: 4px; padding-top: 8px; border-top: 1px solid var(--border); font-size: 1rem; font-weight: 800; }
.payment-note { margin: 10px 0 0; color: var(--warning); font-size: .72rem; line-height: 1.5; }
.tracking-timeline { display: grid; gap: 0; padding: 3px 0 3px 6px; }
.tracking-step { position: relative; padding: 0 0 20px 25px; color: var(--muted); font-size: .77rem; }
.tracking-step::before { position: absolute; top: 1px; left: 0; width: 12px; height: 12px; border: 2px solid var(--border); border-radius: 50%; content: ""; background: var(--surface-solid); }
.tracking-step::after { position: absolute; top: 13px; bottom: 0; left: 6px; width: 2px; content: ""; background: var(--border); }
.tracking-step:last-child { padding-bottom: 0; }
.tracking-step:last-child::after { display: none; }
.tracking-step.complete { color: var(--text); font-weight: 700; }
.tracking-step.complete::before { border-color: var(--success); background: var(--success); }
.tracking-step.active::before { border-color: var(--accent); background: var(--accent); box-shadow: 0 0 0 5px var(--accent-soft); }
.tracking-step small { display: block; margin-top: 4px; color: var(--muted); font-weight: 500; }
.info-content p, .info-content li { color: var(--muted); font-size: .86rem; line-height: 1.7; }
.info-content ul { padding-left: 20px; }
.map-placeholder { min-height: 185px; padding: 22px; border-radius: 14px; color: #fff; background: linear-gradient(140deg,#1b315c,#4a70d1); }
.map-placeholder p { max-width: 300px; color: #e6edff; }
.map-placeholder a { display: inline-flex; margin-top: 12px; color: #fff; font-size: .78rem; font-weight: 800; text-decoration: underline; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .76rem; }
.admin-table th, .admin-table td { padding: 10px 7px; border-bottom: 1px solid var(--border); text-align: left; }
.admin-table th { color: var(--muted); font-size: .68rem; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 9px; margin: 16px 0; }

.support-chat { position: fixed; z-index: 45; right: 22px; bottom: 22px; }
.whatsapp-float { position: fixed; z-index: 44; right: 22px; bottom: 83px; display: inline-flex; gap: 8px; align-items: center; min-height: 42px; padding: 0 14px; border-radius: 999px; color: #fff; background: #20b768; box-shadow: 0 10px 27px rgba(10,111,60,.28); font-size: .76rem; font-weight: 800; transition: transform .18s var(--ease), filter .18s ease; }
.whatsapp-float:hover { color: #fff; filter: brightness(1.06); transform: translateY(-2px); }
.whatsapp-float svg { width: 18px; height: 18px; fill: currentColor; }
.chat-toggle { display: flex; gap: 8px; align-items: center; padding: 12px 15px; border-radius: 999px; color: #fff; background: #192b67; box-shadow: 0 10px 27px rgba(18,38,112,.32); font-size: .77rem; font-weight: 800; }
.chat-panel { position: absolute; right: 0; bottom: 54px; width: min(350px,calc(100vw - 32px)); overflow: hidden; border: 1px solid var(--border); border-radius: 18px; background: var(--surface-solid); box-shadow: var(--shadow); }
.chat-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 13px; color: #fff; background: #192b67; font-size: .79rem; }
.chat-head .icon-btn { color: #fff; }
.chat-log { display: grid; gap: 8px; min-height: 137px; max-height: 260px; padding: 13px; overflow-y: auto; }
.chat-log p { width: fit-content; max-width: 87%; margin: 0; padding: 9px 10px; border-radius: 11px 11px 11px 2px; color: var(--text); background: var(--surface-muted); font-size: .75rem; line-height: 1.45; }
.chat-log p.user { justify-self: end; border-radius: 11px 11px 2px 11px; color: #fff; background: var(--accent); }
.chat-suggestions { display: flex; gap: 5px; padding: 0 12px 10px; }
.chat-suggestions button { padding: 5px 7px; border-radius: 7px; color: var(--accent-strong); background: var(--accent-soft); font-size: .66rem; font-weight: 700; }
.chat-panel form { display: flex; gap: 5px; padding: 10px; border-top: 1px solid var(--border); }
.chat-panel input { min-width: 0; flex: 1; height: 35px; padding: 0 9px; border: 1px solid var(--border); border-radius: 9px; outline: none; color: var(--text); background: var(--surface); font-size: .75rem; }
.chat-panel form button { width: 35px; border-radius: 9px; color: #fff; background: var(--accent); }
.cookie-banner { position: fixed; z-index: 95; right: 18px; bottom: 18px; display: flex; gap: 20px; align-items: end; width: min(660px,calc(100% - 36px)); padding: 19px; border: 1px solid var(--border); border-radius: 19px; background: var(--surface-solid); box-shadow: var(--shadow); }
.cookie-banner h2 { margin: 0; font-size: .94rem; }
.cookie-banner p { margin: 7px 0 0; color: var(--muted); font-size: .73rem; line-height: 1.5; }
.cookie-actions { display: flex; flex: 0 0 auto; gap: 7px; }
.cookie-actions .btn { min-height: 38px; padding: 0 11px; font-size: .71rem; }
.toast { position: fixed; z-index: 120; bottom: 22px; left: 50%; max-width: calc(100vw - 35px); padding: 12px 15px; border-radius: 12px; color: #fff; background: #10172e; box-shadow: var(--shadow); font-size: .78rem; font-weight: 700; opacity: 0; pointer-events: none; transform: translate(-50%,20px); transition: opacity .2s ease, transform .2s ease; }
.toast.show { opacity: 1; transform: translate(-50%,0); }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .navbar { grid-template-columns: 1fr auto; }
  .navbar__nav { display: none; }
  .mobile-only { display: inline-grid; }
  .products-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .filters-panel { grid-template-columns: 1fr 1fr 1fr; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .newsletter { display: grid; gap: 24px; }
  .newsletter__form { width: 100%; }
}
@media (max-width: 760px) {
  :root { --page: min(100% - 28px,1240px); }
  .promo-bar { gap: 8px; justify-content: space-between; padding: 6px 14px; }
  .promo-bar p { text-align: left; font-size: .68rem; }
  .promo-bar .text-button { font-size: .67rem; }
  .navbar { min-height: 66px; }
  .navbar__brand strong { display: none; }
  .compact-select { display: none; }
  .navbar__actions { gap: 2px; }
  .navbar { background: color-mix(in srgb, var(--bg) 97%, transparent); backdrop-filter: none; }
  .navbar__actions .icon-btn { width: 40px; height: 40px; }
  .hero { grid-template-columns: 1fr; min-height: 0; padding-top: 43px; }
  .hero__visual, .hero__visual img { min-height: 360px; }
  .hero__visual-hint, .card-tag, .stock-label, .card-actions .icon-btn { backdrop-filter: none; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip span { padding: 13px; }
  .section { padding: 60px 0; }
  .section__header { display: block; }
  .section__header .eyebrow { margin-bottom: 12px; }
  .catalog-toolbar { grid-template-columns: 1fr auto; }
  .sort-wrap { grid-column: 1/-1; }
  .sort-wrap select { width: 100%; }
  .filters-panel { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
  .product-card__body { padding: 13px; }
  .product-card__body > p { display: none; }
  .card-actions { opacity: 1; transform: none; }
  .featured-card { grid-template-columns: 1fr; padding: 16px; }
  .featured-card__media, .featured-card__media img { min-height: 250px; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-grid img { height: 210px; }
  .newsletter { gap: 20px; padding: 29px 20px; border-radius: 21px; }
  .newsletter p { line-height: 1.55; }
  .newsletter__form { gap: 12px; }
  .footer__top { grid-template-columns: 1fr; gap: 25px; }
  .footer__bottom { display: grid; }
  .product-detail { grid-template-columns: 1fr; }
  .product-lower { grid-template-columns: 1fr; }
  .product-detail__info > .eyebrow { margin-top: 0; }
  .gallery-main, .gallery-main img, .gallery-360 { min-height: 330px; }
  .modal { padding: 12px; }
  .modal__panel { max-height: calc(100vh - 24px); padding: 26px 18px; border-radius: 19px; }
  .detail-extra { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .cookie-banner { right: 12px; bottom: 12px; display: grid; width: calc(100% - 24px); }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { flex: 1; }
  .whatsapp-float { right: 14px; bottom: 77px; min-height: 39px; padding: 0 12px; }
}
@media (max-width: 460px) {
  .navbar__actions #themeToggle, .navbar__actions #compareButton { display: none; }
  .navbar__actions .icon-btn { width: 36px; height: 36px; }
  .hero h1 { font-size: 2.65rem; }
  .hero__badges { gap: 15px; }
  .filters-panel { grid-template-columns: 1fr; }
  .products-grid { gap: 8px; }
  .product-card h3 { font-size: .88rem; }
  .product-card__category, .product-meta { font-size: .64rem; }
  .product-card__price strong { font-size: .94rem; }
  .product-card .btn { padding: 0 8px; font-size: .68rem; }
  .card-actions { right: 6px; bottom: 6px; gap: 3px; }
  .card-actions .icon-btn { width: 28px; height: 28px; font-size: .86rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .newsletter__form { display: grid; gap: 12px; }
  .newsletter__form input, .newsletter__form .btn { min-height: 52px; }
  .newsletter__form .btn { width: 100%; }
  .gallery-thumbs { display: flex; grid-column: 1/-1; order: 2; }
  .gallery-thumbs button { width: 56px; }
  .product-gallery { grid-template-columns: 1fr; }
  .detail-actions { grid-template-columns: 1fr auto auto; }
  .payment-options { grid-template-columns: 1fr; }
}
@media (min-width: 1600px) {
  :root { --page: min(1460px, calc(100% - 96px)); }
  .products-grid { grid-template-columns: repeat(5,minmax(0,1fr)); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Norte Web demo identifier. */
.portfolio-demo-bar{position:relative;z-index:200;display:flex;align-items:center;justify-content:space-between;gap:14px;min-height:38px;padding:7px max(18px,calc((100vw - var(--page))/2));color:#dce6ff;background:#070d1e;font-size:.67rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase}.portfolio-demo-bar a{color:#aebeff;letter-spacing:0;text-transform:none}.portfolio-demo-bar a:hover{text-decoration:underline;text-underline-offset:4px}.portfolio-demo-bar+ .skip-link{top:-80px;transform:none}.portfolio-demo-bar+ .skip-link:focus{top:46px}.portfolio-demo-bar~.navbar{top:38px}@media(max-width:760px){.portfolio-demo-bar{justify-content:center;padding:7px 13px;font-size:.57rem}.portfolio-demo-bar a:last-child{display:none}.portfolio-demo-bar span{white-space:nowrap}.portfolio-demo-bar+ .skip-link:focus{top:42px}.portfolio-demo-bar~.navbar{top:34px}}
