:root {
  --navy: #0b2f57;
  --blue: #0f4c81;
  --blue-soft: #eaf3fb;
  --red: #d62732;
  --red-dark: #b71f29;
  --ink: #17324d;
  --muted: #5f7184;
  --line: #d9e3ec;
  --surface: #f5f8fb;
  --white: #fff;
  --success: #197047;
  --shadow: 0 12px 35px rgba(13, 47, 87, .09);
  --radius: 18px;
  --max: 1200px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--white); color: var(--ink); line-height: 1.55; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
:focus-visible { outline: 3px solid #ffb4b9; outline-offset: 3px; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 999; padding: .75rem 1rem; background: var(--navy); color: white; border-radius: 0 0 8px 8px; }
.skip-link:focus { top: 0; }
.container { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section--soft { background: var(--surface); }
.section--blue { background: var(--navy); color: white; }
.eyebrow { margin: 0 0 .65rem; color: var(--red); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; color: var(--navy); font-family: "Aptos Display", Inter, ui-sans-serif, system-ui, sans-serif; line-height: 1.08; text-wrap: balance; }
h1 { font-size: clamp(2.35rem, 6vw, 4.85rem); letter-spacing: -.045em; }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); letter-spacing: -.03em; }
h3 { font-size: 1.2rem; letter-spacing: -.015em; }
.section--blue h2, .section--blue h3 { color: white; }
p { margin: 0; }
.lead { color: var(--muted); font-size: clamp(1rem, 2vw, 1.2rem); max-width: 62ch; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.section-heading > div { display: grid; gap: .55rem; }
.section-heading .lead { max-width: 52ch; }
.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: .55rem; padding: .72rem 1.1rem; border: 2px solid transparent; border-radius: 12px; background: var(--red); color: white; font-weight: 800; line-height: 1.1; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.btn:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn--secondary { border-color: var(--navy); background: white; color: var(--navy); }
.btn--secondary:hover { background: var(--blue-soft); color: var(--navy); }
.btn--ghost { border-color: var(--line); background: white; color: var(--navy); }
.btn--small { min-height: 42px; padding: .6rem .8rem; font-size: .9rem; }
.btn img { width: 20px; height: 20px; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.text-link { display: inline-flex; align-items: center; gap: .35rem; color: var(--blue); font-weight: 800; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: .18em; }
.text-link:hover { text-decoration-color: currentColor; }
button.text-link { width: max-content; min-height: 0; padding: 0; border: 0; background: transparent; }

.topbar { background: var(--navy); color: white; font-size: .84rem; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar__inner span:last-child { color: #d7e9f9; }
.site-header { position: sticky; top: 0; z-index: 80; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(12px); }
.nav { min-height: 78px; display: flex; align-items: center; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; flex: none; color: var(--navy); font-weight: 900; letter-spacing: -.03em; }
.brand__mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: var(--navy); color: white; box-shadow: inset -9px 0 0 var(--red); }
.brand__text { display: grid; line-height: 1; }
.brand__text small { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; }
.brand__text strong { font-size: 1.1rem; }
.nav__links { margin-left: auto; display: flex; align-items: center; gap: .2rem; }
.nav__links a { padding: .65rem .7rem; border-radius: 9px; color: var(--ink); font-size: .9rem; font-weight: 700; }
.nav__links a:hover, .nav__links a[aria-current="page"] { background: var(--blue-soft); color: var(--navy); }
.nav__actions { display: flex; gap: .45rem; }
.icon-btn { position: relative; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 11px; background: white; }
.icon-btn img { width: 22px; height: 22px; }
.nav__actions .icon-btn:not(.menu-toggle) { border-color: var(--navy); background: var(--navy); }
.cart-count { position: absolute; right: -5px; top: -6px; min-width: 20px; height: 20px; padding: 0 5px; display: grid; place-items: center; border-radius: 999px; background: var(--red); color: white; font-size: .7rem; font-weight: 900; }
.menu-toggle { display: none; width: auto; padding: 0 .7rem; grid-auto-flow: column; gap: .45rem; }
.menu-bars, .menu-bars::before, .menu-bars::after { width: 18px; height: 2px; display: block; border-radius: 99px; background: var(--navy); }
.menu-bars { position: relative; }
.menu-bars::before, .menu-bars::after { content: ""; position: absolute; left: 0; }
.menu-bars::before { top: -6px; }
.menu-bars::after { top: 6px; }
.menu-label { color: var(--navy); font-size: .82rem; font-weight: 800; }

.hero { overflow: hidden; position: relative; padding: clamp(3.5rem, 7vw, 7.5rem) 0; background: linear-gradient(135deg, #fff 0 54%, #edf5fb 54%); }
.hero::before { content: ""; position: absolute; width: 340px; height: 340px; border: 52px solid rgba(214,39,50,.08); border-radius: 50%; right: -150px; top: -190px; }
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.hero__copy { display: grid; gap: 1.35rem; position: relative; z-index: 1; }
.hero__copy h1 span { color: var(--red); }
.hero__visual { min-height: 470px; position: relative; display: grid; place-items: center; }
.hero__photo { width: 88%; height: 430px; border-radius: 34px 110px 34px 34px; object-fit: cover; box-shadow: var(--shadow); }
.hero__product { position: absolute; left: -3%; bottom: -4%; width: 190px; height: 220px; object-fit: contain; padding: 18px; border-radius: 24px; background: white; box-shadow: 0 24px 50px rgba(13,47,87,.16); }
.hero__note { position: absolute; right: -2%; bottom: 2rem; max-width: 190px; padding: 1rem; border-left: 4px solid var(--red); border-radius: 12px; background: white; box-shadow: var(--shadow); font-weight: 800; }
.trust-row { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; color: var(--muted); font-size: .9rem; font-weight: 700; }
.trust-row span::before { content: ""; width: 8px; height: 8px; display: inline-block; margin-right: .45rem; border-radius: 50%; background: var(--success); }

.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: -2rem; position: relative; z-index: 2; }
.quick-card { min-height: 128px; display: grid; grid-template-columns: 52px 1fr; align-items: start; gap: 1rem; padding: 1.35rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.quick-card__icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; background: var(--blue-soft); }
.quick-card__icon img { width: 30px; height: 30px; }
.quick-card p { margin-top: .4rem; color: var(--muted); font-size: .9rem; }

.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.category-card { position: relative; min-height: 270px; overflow: hidden; border-radius: 22px; background: var(--navy); box-shadow: var(--shadow); }
.category-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.category-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(7,31,58,.88)); }
.category-card__body { position: absolute; inset: auto 0 0; z-index: 1; padding: 1.25rem; color: white; }
.category-card h3 { color: white; }
.category-card p { margin-top: .45rem; color: #e7f1fa; font-size: .9rem; }
.category-card:hover img { transform: scale(1.025); }
.category-card img { transition: transform .35s ease; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; }
.product-card { min-width: 0; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: transform .18s ease, box-shadow .18s ease; }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.product-card__image { height: 245px; padding: 1rem; display: grid; place-items: center; background: white; border-bottom: 1px solid var(--line); }
.product-card__image img { width: 100%; height: 100%; object-fit: contain; }
.product-card__body { flex: 1; display: flex; flex-direction: column; gap: .6rem; padding: 1.1rem; }
.product-card__meta { display: flex; justify-content: space-between; gap: .5rem; color: var(--muted); font-size: .74rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.product-card h3 { min-height: 2.5em; font-size: 1.03rem; }
.product-card__presentation { color: var(--muted); font-size: .9rem; }
.product-card__price { margin-top: auto; color: var(--navy); font-size: 1.35rem; font-weight: 900; }
.product-card__actions { display: grid; grid-template-columns: 1fr auto; gap: .5rem; margin-top: .4rem; }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.benefit { padding: 1.35rem; border: 1px solid rgba(255,255,255,.17); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.benefit img { width: 42px; height: 42px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.benefit p { margin-top: .45rem; color: #d9e8f5; font-size: .92rem; }

.split-panel { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: var(--shadow); }
.split-panel__content { display: grid; align-content: center; gap: 1rem; padding: clamp(2rem, 5vw, 4.5rem); }
.split-panel__image { min-height: 460px; width: 100%; height: 100%; object-fit: cover; }
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.info-card { padding: 1.35rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.info-card img { width: 36px; height: 36px; margin-bottom: 1rem; }
.info-card p { margin-top: .5rem; color: var(--muted); font-size: .92rem; }

.page-hero { padding: clamp(3rem, 6vw, 5.5rem) 0; background: linear-gradient(135deg, var(--surface), white); border-bottom: 1px solid var(--line); }
.page-hero__inner { display: grid; gap: 1rem; max-width: 780px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .5rem; color: var(--muted); font-size: .86rem; }
.breadcrumbs span { color: var(--navy); font-weight: 800; }
.shop-layout { display: grid; grid-template-columns: 280px minmax(0,1fr); align-items: start; gap: 1.5rem; }
.filters { position: sticky; top: 105px; display: grid; gap: 1rem; padding: 1.2rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.field { display: grid; gap: .4rem; }
.field label, .field legend { color: var(--navy); font-size: .86rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 46px; padding: .7rem .8rem; border: 1px solid #b7c7d5; border-radius: 10px; background: white; color: var(--ink); }
.field textarea { min-height: 130px; resize: vertical; }
.filter-summary { margin-bottom: 1rem; display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); }
.empty-state { padding: 3rem; border: 1px dashed var(--line); border-radius: var(--radius); text-align: center; }

.product-detail { display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.product-detail__media { position: sticky; top: 110px; min-height: 520px; padding: 2rem; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 24px; background: white; }
.product-detail__media img { width: 100%; height: 480px; object-fit: contain; }
.product-detail__content { display: grid; gap: 1.15rem; }
.sku { color: var(--muted); font-size: .84rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.price { color: var(--navy); font-size: 2rem; font-weight: 900; }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; }
.fact { padding: .9rem; border-radius: 12px; background: var(--surface); }
.fact strong { display: block; color: var(--navy); font-size: .8rem; text-transform: uppercase; }
.purchase-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.qty-control { display: grid; grid-template-columns: 44px 58px 44px; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; }
.qty-control button, .qty-control input { min-height: 48px; border: 0; background: white; text-align: center; }
.qty-control button { color: var(--navy); font-size: 1.35rem; font-weight: 800; }
.qty-control input { width: 58px; appearance: textfield; }
.notice { padding: 1rem; border-left: 4px solid var(--blue); border-radius: 8px; background: var(--blue-soft); color: var(--ink); }
.notice--warn { border-color: #d28a00; background: #fff7df; }
.detail-section { padding-top: 1.4rem; border-top: 1px solid var(--line); }
.detail-section h2 { margin-bottom: .7rem; font-size: 1.35rem; }
.check-list { display: grid; gap: .55rem; padding: 0; list-style: none; }
.check-list li { padding-left: 1.45rem; position: relative; }
.check-list li::before { content: ""; width: 8px; height: 8px; position: absolute; left: 0; top: .55em; border-radius: 50%; background: var(--red); }
.faq-list { display: grid; gap: .75rem; }
details { border: 1px solid var(--line); border-radius: 12px; background: white; }
summary { padding: 1rem; color: var(--navy); font-weight: 800; cursor: pointer; }
details p { padding: 0 1rem 1rem; color: var(--muted); }

.calculator { display: grid; gap: 1.2rem; padding: clamp(1.25rem, 3vw, 2rem); border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: var(--shadow); }
.calculator__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.stepper { display: grid; grid-template-columns: 44px 1fr 44px; border: 1px solid #b7c7d5; border-radius: 10px; overflow: hidden; }
.stepper input, .stepper button { min-height: 46px; border: 0; background: white; text-align: center; }
.stepper button { color: var(--navy); font-size: 1.25rem; font-weight: 900; }
.choice-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; }
.choice label { display: block; min-height: 46px; padding: .7rem; border: 1px solid #b7c7d5; border-radius: 10px; text-align: center; font-weight: 700; }
.choice input:checked + label { border-color: var(--blue); background: var(--blue-soft); color: var(--navy); box-shadow: inset 0 0 0 1px var(--blue); }
.calc-result { display: none; gap: 1rem; padding: 1.3rem; border-radius: 16px; background: var(--navy); color: white; }
.calc-result.is-visible { display: grid; }
.calc-result h3 { color: white; font-size: 1.4rem; }
.calc-result__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; }
.calc-result__grid div { padding: .7rem; border-radius: 10px; background: rgba(255,255,255,.1); }
.calc-result__grid small { display: block; color: #cfe1f0; }

.cart-layout { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(300px,.65fr); align-items: start; gap: 1.5rem; }
.cart-items { display: grid; gap: .8rem; }
.cart-item { display: grid; grid-template-columns: 110px 1fr auto; align-items: center; gap: 1rem; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.cart-item__image { width: 110px; height: 110px; object-fit: contain; }
.cart-item__details { display: grid; gap: .35rem; }
.cart-item__price { text-align: right; font-weight: 900; color: var(--navy); }
.cart-summary { position: sticky; top: 110px; display: grid; gap: 1rem; padding: 1.35rem; border-radius: var(--radius); background: var(--navy); color: white; }
.cart-summary h2 { color: white; font-size: 1.45rem; }
.summary-row { display: flex; justify-content: space-between; gap: 1rem; }
.summary-row--total { padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.2); font-size: 1.2rem; font-weight: 900; }
.progress { height: 8px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.15); }
.progress span { height: 100%; display: block; width: 0; border-radius: inherit; background: #63d2a0; }
.cart-summary .btn--secondary { border-color: white; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 1.5rem; }
.contact-panel { padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: 22px; background: var(--navy); color: white; }
.contact-panel h2 { color: white; }
.contact-panel .check-list { margin-top: 1.4rem; }
.contact-form { display: grid; gap: 1rem; padding: clamp(1.5rem, 4vw, 2.5rem); border: 1px solid var(--line); border-radius: 22px; background: white; }

.search-panel, .assistant { position: fixed; inset: 0; z-index: 110; display: none; background: rgba(7,31,58,.52); }
.search-panel.is-open, .assistant.is-open { display: grid; }
.search-panel { place-items: start center; padding: 10vh 1rem 1rem; }
.search-panel__dialog { width: min(680px,100%); max-height: 80vh; overflow: auto; padding: 1rem; border-radius: 18px; background: white; box-shadow: 0 28px 70px rgba(7,31,58,.24); }
.search-panel__head, .assistant__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.search-results { display: grid; gap: .5rem; margin-top: .75rem; }
.search-result { display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: .75rem; padding: .65rem; border-radius: 10px; }
.search-result:hover { background: var(--surface); }
.search-result img { width: 58px; height: 58px; object-fit: contain; }
.assistant { place-items: end; padding: 1rem; pointer-events: none; }
.assistant__dialog { width: min(390px,100%); max-height: min(650px,calc(100vh - 2rem)); display: grid; grid-template-rows: auto 1fr auto; border-radius: 20px; overflow: hidden; background: white; box-shadow: 0 28px 70px rgba(7,31,58,.25); pointer-events: auto; }
.assistant__head { padding: 1rem; background: var(--navy); color: white; }
.assistant__head h2 { color: white; font-size: 1.1rem; }
.assistant__messages { overflow: auto; display: grid; align-content: start; gap: .7rem; padding: 1rem; }
.message { max-width: 88%; padding: .75rem; border-radius: 12px; background: var(--surface); }
.message--user { justify-self: end; background: var(--blue); color: white; }
.assistant__form { display: grid; grid-template-columns: 1fr auto; gap: .5rem; padding: .75rem; border-top: 1px solid var(--line); }
.assistant__form input { min-width: 0; min-height: 44px; padding: .6rem; border: 1px solid #b7c7d5; border-radius: 9px; }
.assistant-trigger { position: fixed; right: 1rem; bottom: 1rem; z-index: 75; border-radius: 999px; box-shadow: var(--shadow); }

.final-cta { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; padding: clamp(2rem, 5vw, 4rem); border-radius: 28px; background: var(--blue-soft); }
.footer { padding: 4rem 0 2rem; background: #071f3a; color: #d9e8f5; }
.footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 2rem; }
.footer h2, .footer h3 { color: white; }
.footer__links { display: grid; align-content: start; gap: .55rem; margin-top: 1rem; }
.footer__links a:hover { color: white; text-decoration: underline; }
.footer__bottom { margin-top: 2.5rem; padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,.14); font-size: .82rem; }
.socials { display: flex; gap: .5rem; margin-top: 1rem; }
.socials img { width: 22px; height: 22px; filter: brightness(0) invert(1); }
.status-pill { display: inline-flex; align-items: center; gap: .4rem; width: max-content; padding: .35rem .65rem; border-radius: 999px; background: #e8f6ef; color: var(--success); font-size: .78rem; font-weight: 800; }
.status-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

@media (max-width: 1080px) {
  .nav__links { position: fixed; inset: 0 0 0 auto; width: min(390px, 92vw); height: 100vh; padding: 6.5rem 1.25rem 2rem; overflow-y: auto; display: none; flex-direction: column; align-items: stretch; background: white; box-shadow: -20px 0 50px rgba(7,31,58,.2); }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: .9rem; font-size: 1rem; }
  .menu-toggle { display: grid; z-index: 2; }
  .product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
  .topbar__inner span:last-child { display: none; }
  .hero { background: linear-gradient(180deg,#fff 0 52%,#edf5fb 52%); }
  .hero__grid, .split-panel, .product-detail, .shop-layout, .cart-layout, .contact-grid { grid-template-columns: 1fr; }
  .hero__copy { text-align: center; justify-items: center; }
  .hero__visual { min-height: 380px; }
  .hero__photo { height: 350px; width: 100%; border-radius: 30px 80px 30px 30px; }
  .hero__product { width: 145px; height: 170px; left: 2%; }
  .quick-grid { grid-template-columns: 1fr; margin-top: 1rem; }
  .quick-card { min-height: 0; }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .info-cards { grid-template-columns: 1fr; }
  .filters { position: static; }
  .product-detail__media { position: static; min-height: 400px; }
  .product-detail__media img { height: 360px; }
  .cart-summary { position: static; }
  .footer__grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .section { padding: 3.5rem 0; }
  .section-heading { align-items: start; flex-direction: column; gap: 1rem; }
  .nav { min-height: 68px; gap: .65rem; }
  .brand__text small { display: none; }
  .nav__actions { margin-left: auto; }
  .nav__actions .icon-btn:first-child { display: none; }
  .hero { padding: 3rem 0 4rem; }
  .hero__visual { min-height: 310px; }
  .hero__photo { height: 290px; }
  .hero__note { right: 2%; bottom: -1rem; font-size: .82rem; }
  .hero__product { width: 115px; height: 135px; bottom: -3%; }
  .actions { width: 100%; }
  .actions .btn { flex: 1 1 100%; }
  .category-grid, .product-grid, .benefit-grid, .footer__grid, .calculator__grid, .calc-result__grid { grid-template-columns: 1fr; }
  .category-card { min-height: 235px; }
  .product-card__image { height: 220px; }
  .facts { grid-template-columns: 1fr; }
  .product-detail__media { min-height: 330px; }
  .product-detail__media img { height: 290px; }
  .purchase-row { align-items: stretch; }
  .purchase-row .btn { flex: 1 1 100%; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item__image { width: 80px; height: 80px; }
  .cart-item__price { grid-column: 2; text-align: left; }
  .final-cta { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .search-panel { padding-top: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

@media print {
  .topbar, .site-header, .assistant-trigger, .footer, .btn { display: none !important; }
  .section { padding: 1rem 0; }
}

/* DECOPLUS V2 AUDIT ENHANCEMENTS */
:root { --header-navy:#082746; --gold:#f2b705; }
.topbar { background: linear-gradient(90deg,#d62732,#a51e28); }
.topbar__inner { min-height:40px; }
.topbar__item { display:inline-flex; align-items:center; gap:.38rem; color:#fff; font-weight:800; }
.topbar__item img { filter:brightness(0) invert(1); }
.site-header { border-bottom:1px solid rgba(255,255,255,.12); background:rgba(8,39,70,.97); box-shadow:0 8px 25px rgba(7,31,58,.13); }
.nav { min-height:82px; }
.brand--official { min-width:210px; }
.brand__logo { width:min(260px,24vw); height:auto; max-height:48px; object-fit:contain; object-position:left center; }
.nav__links a { color:#f6fbff; }
.nav__links a:hover,.nav__links a[aria-current="page"] { background:rgba(255,255,255,.12); color:#fff; }
.nav__actions .icon-btn,.nav__actions .icon-btn:not(.menu-toggle) { border-color:rgba(255,255,255,.3); background:rgba(255,255,255,.08); }
.nav__actions .icon-btn:hover { background:rgba(255,255,255,.17); }
.icon-btn--whatsapp { background:#fff !important; border-color:#fff !important; }
.menu-bars,.menu-bars::before,.menu-bars::after { background:#fff; }
.menu-label { color:#fff; }
.hero-slider { position:relative; min-height:650px; overflow:hidden; background:#071f3a; color:#fff; }
.hero-slide { min-height:650px; position:absolute; inset:0; display:grid; align-items:center; opacity:0; visibility:hidden; transition:opacity .7s ease; background-image:linear-gradient(90deg,rgba(7,31,58,.94) 0%,rgba(7,31,58,.77) 48%,rgba(7,31,58,.22) 100%),var(--slide-image); background-size:cover; background-position:center; }
.hero-slide.is-active { position:relative; opacity:1; visibility:visible; z-index:1; }
.hero-slide__content { display:grid; align-content:center; gap:1.25rem; min-height:650px; padding-block:6.5rem 7.5rem; }
.hero-slide__content h1,.hero-slide__content h2 { max-width:760px; color:#fff; font-size:clamp(2.6rem,6.3vw,5.3rem); letter-spacing:-.05em; }
.hero-slide__content h1 span { color:#ff5963; }
.hero-slide__content .lead { max-width:650px; color:#e6f1fa; }
.btn--glass { border-color:rgba(255,255,255,.72); background:rgba(255,255,255,.12); backdrop-filter:blur(8px); }
.btn--glass:hover { background:#fff; color:var(--navy); }
.hero-facts { display:flex; flex-wrap:wrap; gap:.7rem 1.2rem; color:#dcecf8; font-weight:800; font-size:.9rem; }
.hero-facts span::before { content:""; width:8px; height:8px; display:inline-block; margin-right:.45rem; border-radius:50%; background:#63d2a0; }
.hero-slider__controls { position:absolute; z-index:4; left:50%; bottom:1.4rem; transform:translateX(-50%); display:flex; align-items:center; justify-content:space-between; pointer-events:none; }
.hero-slider__controls>button,.hero-slider__dots button { pointer-events:auto; }
.hero-slider__controls>button { width:46px; height:46px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.5); border-radius:50%; background:rgba(7,31,58,.62); color:#fff; }
.hero-slider__controls>button img { filter:brightness(0) invert(1); }
.hero-slider__dots { display:flex; gap:.45rem; padding:.55rem .7rem; border-radius:999px; background:rgba(7,31,58,.62); }
.hero-slider__dots button { width:9px; height:9px; padding:0; border:0; border-radius:50%; background:rgba(255,255,255,.48); }
.hero-slider__dots button.is-active { width:28px; border-radius:999px; background:#fff; }
.page-hero--image { position:relative; min-height:390px; display:grid; align-items:end; overflow:hidden; border:0; background-image:linear-gradient(90deg,rgba(7,31,58,.93),rgba(7,31,58,.58)),var(--page-hero-image); background-size:cover; background-position:center; }
.page-hero--image .page-hero__inner { max-width:860px; padding-block:5.2rem 4.5rem; }
.page-hero--image h1,.page-hero--image .breadcrumbs,.page-hero--image .breadcrumbs a { color:#fff; }
.page-hero--image .lead { color:#e3eef7; }
.page-hero--image .eyebrow { color:#ff6e77; }
.page-hero--product { padding:1.1rem 0; background:#f2f6fa; }
.visit-store__grid,.about-story,.service-split,.location-section { display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(1.5rem,4vw,4rem); align-items:center; }
.visit-store__media,.about-story__media,.service-split__media,.location-section__media { position:relative; overflow:hidden; border-radius:26px; box-shadow:var(--shadow); }
.visit-store__media img,.about-story__media img,.service-split__media img,.location-section__media img { width:100%; min-height:420px; object-fit:cover; }
.visit-store__badge { position:absolute; left:1rem; bottom:1rem; padding:.65rem .9rem; border-radius:999px; background:#fff; color:var(--navy); font-weight:900; box-shadow:var(--shadow); }
.visit-store__content,.about-story__content,.service-split__content { display:grid; gap:1rem; }
.contact-mini-list { display:grid; gap:.7rem; }
.contact-mini-list>a,.contact-mini-list>span { display:grid; grid-template-columns:28px 1fr; gap:.75rem; align-items:start; padding:.8rem; border:1px solid var(--line); border-radius:12px; background:#fff; }
.contact-mini-list img { color:var(--navy); }
.contact-mini-list strong { display:block; color:var(--navy); }
.social-band { background:#071f3a; color:#fff; }
.social-band h2 { color:#fff; }
.social-band__inner { display:flex; align-items:center; justify-content:space-between; gap:2rem; }
.social-band__actions { display:flex; flex-wrap:wrap; gap:.75rem; }
.social-button { min-width:170px; display:flex; align-items:center; gap:.7rem; padding:.8rem 1rem; border:1px solid rgba(255,255,255,.22); border-radius:14px; background:rgba(255,255,255,.08); color:#fff; font-weight:900; }
.contact-directory { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; margin-bottom:1.5rem; }
.contact-card { min-width:0; display:grid; gap:.65rem; padding:1.1rem; border:1px solid var(--line); border-radius:18px; background:#fff; box-shadow:var(--shadow); }
.contact-card__icon { width:52px; height:52px; display:grid; place-items:center; border-radius:15px; background:var(--blue-soft); color:var(--navy); }
.contact-card__icon img:not([src*="whatsapp"]) { width:30px; height:30px; }
.contact-card span strong,.contact-card span small { display:block; }
.contact-card small { color:var(--muted); overflow-wrap:anywhere; }
.contact-card b { color:var(--blue); font-size:.88rem; }
.contact-card--static { box-shadow:none; }
.contact-grid--v2 { margin-top:1rem; }
.contact-panel { display:grid; align-content:start; gap:1rem; }
.contact-panel .eyebrow { color:#ff7e86; }
.socials--panel img { filter:none; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.location-section__map { display:grid; gap:1rem; }
.location-section__map iframe { width:100%; min-height:360px; border:0; border-radius:22px; box-shadow:var(--shadow); }
.policy-layout { display:grid; grid-template-columns:260px minmax(0,1fr); gap:2rem; align-items:start; }
.policy-nav { position:sticky; top:115px; display:grid; gap:.35rem; padding:1rem; border:1px solid var(--line); border-radius:18px; background:#fff; }
.policy-nav a { padding:.65rem .75rem; border-radius:9px; color:var(--navy); font-weight:800; }
.policy-nav a:hover { background:var(--blue-soft); }
.policy-content { display:grid; gap:1rem; }
.policy-content article { scroll-margin-top:120px; padding:clamp(1.3rem,3vw,2rem); border:1px solid var(--line); border-radius:20px; background:#fff; }
.policy-content article h2 { font-size:clamp(1.5rem,3vw,2.15rem); }
.policy-content article p+p { margin-top:.8rem; }
.policy-contact { background:var(--navy)!important; color:#fff; }
.policy-contact h2 { color:#fff; }
.policy-contact .text-link { color:#fff; }
.faq-list--large details { box-shadow:0 7px 24px rgba(13,47,87,.05); }
.faq-list--large summary { padding:1.2rem; font-size:1.02rem; }
.faq-list--large details p { padding:0 1.2rem 1.2rem; }
.faq-search--live input { min-width:0; }
.faq-search__status { margin:-.5rem 0 1.25rem; color:var(--muted); font-size:.92rem; }
.faq-list--large details small { display:block; padding:0 1.2rem 1.1rem; color:var(--muted); }
.legal-overview h1 { font-size:clamp(1.9rem,3vw,2.55rem); line-height:1.08; }
.legal-overview .lead { max-width:760px; font-size:clamp(1rem,1.5vw,1.12rem); }
.legal-overview__grid { grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1rem; }
.legal-overview__card { min-height:0; padding:1.2rem; text-decoration:none; }
.legal-overview__card h2 { font-size:clamp(1.05rem,1.6vw,1.28rem); line-height:1.25; }
.legal-overview__card p { font-size:.94rem; }
.legal-overview__request { margin-top:1.5rem; }
.legal-overview__request h2 { font-size:clamp(1.2rem,2vw,1.55rem); }
.legal-overview__notice { margin-top:1.25rem; }
.legal-document { max-width:920px; }
.legal-document h1 { font-size:clamp(1.75rem,3vw,2.4rem); line-height:1.12; }
.legal-document h2 { font-size:clamp(1.25rem,2vw,1.55rem); line-height:1.25; }
.legal-document h3 { font-size:clamp(1.05rem,1.6vw,1.25rem); line-height:1.3; }
.faq-cta { margin-top:2rem; display:flex; align-items:center; justify-content:space-between; gap:2rem; padding:clamp(1.5rem,4vw,3rem); border-radius:24px; background:var(--navy); color:#fff; }
.faq-cta h2 { color:#fff; }
.value-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; margin:2.5rem 0; }
.value-grid article { padding:1.2rem; border:1px solid var(--line); border-radius:18px; background:#fff; }
.value-grid strong { display:block; color:var(--red); font-size:2.3rem; line-height:1; }
.value-grid h3 { margin-top:.45rem; }
.value-grid p { margin-top:.45rem; color:var(--muted); }
.service-split--reverse .service-split__media { order:2; }
.numbered-list { display:grid; gap:.75rem; margin:0; padding:0; list-style:none; counter-reset:steps; }
.numbered-list li { counter-increment:steps; display:grid; grid-template-columns:42px 1fr; column-gap:.75rem; padding:.8rem; border:1px solid var(--line); border-radius:12px; background:#fff; }
.numbered-list li::before { content:counter(steps); grid-row:1/3; width:38px; height:38px; display:grid; place-items:center; border-radius:50%; background:var(--navy); color:#fff; font-weight:900; }
.numbered-list strong { color:var(--navy); }
.service-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:.75rem; }
.service-cards article { padding:1rem; border:1px solid var(--line); border-radius:14px; background:#fff; }
.service-cards img { margin-bottom:.65rem; }
.image-review-badge { position:absolute; left:.7rem; top:.7rem; z-index:3; padding:.35rem .55rem; border-radius:999px; background:#fff3cd; color:#775600; border:1px solid #f2d36b; font-size:.72rem; font-weight:900; box-shadow:0 6px 18px rgba(7,31,58,.1); }
.product-card__image,.product-detail__media { position:relative; }
.image-review-badge--detail { left:1rem; top:1rem; }
.image-review-note { position:absolute; left:1rem; right:1rem; bottom:1rem; padding:.7rem; border-radius:10px; background:rgba(7,31,58,.92); color:#fff; font-size:.82rem; }
.footer__grid--v2 { grid-template-columns:1.35fr .7fr .85fr 1.15fr; }
.footer-brand img { width:min(310px,100%); height:auto; }
.footer__brand-column p { margin-top:1rem; max-width:42ch; }
.footer__contact a,.footer__contact span { display:grid; grid-template-columns:20px 1fr; gap:.55rem; align-items:start; }
.footer__contact img { filter:brightness(0) invert(1); }
.footer__legal { display:flex; flex-wrap:wrap; gap:.55rem 1.2rem; margin-top:2rem; padding-top:1.25rem; border-top:1px solid rgba(255,255,255,.14); font-size:.85rem; }
.footer__legal a:hover,.footer__bottom a:hover { color:#fff; text-decoration:underline; }
.socials a { width:42px; height:42px; display:grid; place-items:center; border-radius:50%; background:rgba(255,255,255,.1); }
.socials img { width:28px; height:28px; filter:none; }
.floating-contact { position:fixed; right:1rem; z-index:78; min-height:48px; display:flex; align-items:center; gap:.55rem; padding:.65rem .9rem; border-radius:999px; box-shadow:0 14px 34px rgba(7,31,58,.22); font-weight:900; }
.floating-contact--whatsapp { bottom:1rem; background:#25d366; color:#063d1c; }
.floating-contact--assistant { bottom:4.8rem; }
.cookie-banner { position:fixed; left:1rem; right:1rem; bottom:1rem; z-index:140; width:min(900px,calc(100% - 2rem)); margin-inline:auto; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1rem; border:1px solid var(--line); border-radius:18px; background:#fff; box-shadow:0 20px 55px rgba(7,31,58,.22); }
.cookie-banner[hidden] { display:none; }
.cookie-banner p { color:var(--muted); font-size:.9rem; }
.cookie-banner__actions { display:flex; align-items:center; gap:1rem; flex:none; }
@media (max-width:1080px){
  .brand__logo { width:225px; }
  .nav__links { background:#071f3a; }
  .contact-directory { grid-template-columns:repeat(2,1fr); }
  .footer__grid--v2 { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:820px){
  .hero-slider,.hero-slide,.hero-slide__content { min-height:610px; }
  .hero-slide { background-image:linear-gradient(180deg,rgba(7,31,58,.9),rgba(7,31,58,.65)),var(--slide-image); background-position:center; }
  .hero-slide__content { padding-block:5.5rem 7rem; text-align:center; justify-items:center; }
  .hero-facts { justify-content:center; }
  .page-hero--image { min-height:350px; }
  .visit-store__grid,.about-story,.service-split,.location-section { grid-template-columns:1fr; }
  .service-split--reverse .service-split__media { order:0; }
  .policy-layout { grid-template-columns:1fr; }
  .policy-nav { position:static; display:flex; overflow:auto; }
  .policy-nav a { flex:none; }
  .value-grid { grid-template-columns:repeat(2,1fr); }
  .faq-cta,.social-band__inner { align-items:flex-start; flex-direction:column; }
}
@media (max-width:560px){
  .topbar__inner { justify-content:center; }
  .topbar__inner>span,.topbar__address { display:none!important; }
  .brand--official { min-width:0; }
  .brand__logo { width:180px; max-height:38px; }
  .nav { min-height:72px; }
  .nav__actions .icon-btn--whatsapp,.nav__actions button[data-open-dialog="search"] { display:none; }
  .hero-slider,.hero-slide,.hero-slide__content { min-height:590px; }
  .hero-slide__content h1,.hero-slide__content h2 { font-size:clamp(2.2rem,12vw,3.4rem); }
  .hero-slide__content .actions .btn { width:100%; }
  .hero-slider__controls { width:calc(100% - 24px); }
  .page-hero--image { min-height:330px; }
  .contact-directory,.form-grid,.value-grid,.service-cards { grid-template-columns:1fr; }
  .visit-store__media img,.about-story__media img,.service-split__media img,.location-section__media img { min-height:300px; }
  .footer__grid--v2 { grid-template-columns:1fr; }
  .floating-contact span { display:none; }
  .floating-contact { width:50px; height:50px; padding:0; justify-content:center; }
  .floating-contact--assistant { bottom:4.7rem; }
  .cookie-banner { align-items:stretch; flex-direction:column; }
  .cookie-banner__actions { justify-content:space-between; }
  .image-review-note { position:static; margin:0 1rem 1rem; }
}
@media print { .floating-contact,.cookie-banner,.hero-slider__controls { display:none!important; } }
