:root {
  --page: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #f8faff;
  --surface-blue: #eef4ff;
  --navy: #102b50;
  --navy-2: #173b67;
  --text: #14233a;
  --muted: #65758b;
  --blue: #2468dc;
  --blue-2: #6f9fff;
  --blue-soft: #dfeaff;
  --line: rgba(16, 43, 80, 0.09);
  --success: #18875f;
  --warning: #d68a00;
  --danger: #bd3d4b;
  --shadow-sm: 0 8px 24px rgba(25, 49, 82, 0.07);
  --shadow: 0 18px 54px rgba(25, 49, 82, 0.10);
  --shadow-lg: 0 30px 80px rgba(25, 49, 82, 0.15);
  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 36px;
  --header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(111, 159, 255, 0.12), transparent 27rem),
    radial-gradient(circle at 88% 8%, rgba(36, 104, 220, 0.08), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, var(--page) 43%, #edf2f8 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .55; }

.container { width: min(1280px, calc(100% - 36px)); margin-inline: auto; }
.section { padding: 76px 0; }
.section-tight { padding: 50px 0; }
.section-soft { background: rgba(255, 255, 255, 0.54); border-block: 1px solid rgba(16, 43, 80, 0.04); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.section-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -0.05em; color: var(--navy); }
.section-heading p { margin: 10px 0 0; color: var(--muted); max-width: 42rem; }
.eyebrow { margin: 0 0 10px; color: var(--blue); font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .16em; }
.text-link { color: var(--blue); font-weight: 800; white-space: nowrap; }
.text-link:hover { color: var(--navy); }

.site-announcement {
  background: linear-gradient(90deg, #edf4ff, #f7faff, #edf4ff);
  border-bottom: 1px solid var(--line);
  color: var(--navy-2);
  font-size: .88rem;
  font-weight: 700;
}
.announcement-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px; overflow: hidden; }
.announcement-items { display: flex; align-items: center; gap: 28px; white-space: nowrap; }
.announcement-items span { display: inline-flex; align-items: center; gap: 7px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px) saturate(150%);
}
.header-main { min-height: var(--header-height); display: grid; grid-template-columns: 300px minmax(300px, 1fr) auto; align-items: center; gap: 24px; }
.site-logo { display: inline-flex; align-items: center; width: min(285px, 100%); }
.site-logo img { width: 100%; height: auto; }
.site-search {
  display: flex;
  align-items: center;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.site-search:focus-within { border-color: rgba(36, 104, 220, .36); box-shadow: 0 12px 32px rgba(36, 104, 220, .13); transform: translateY(-1px); }
.site-search input { flex: 1; min-width: 0; border: 0; outline: 0; padding: 0 18px; color: var(--text); background: transparent; }
.site-search button { align-self: stretch; width: 56px; border: 0; color: #fff; background: linear-gradient(135deg, var(--blue), #3b7bec); }
.header-actions { display: flex; align-items: center; justify-content: end; gap: 8px; }
.header-action { position: relative; display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 12px; border: 1px solid transparent; border-radius: 999px; color: var(--navy); font-weight: 800; transition: .2s ease; }
.header-action:hover { border-color: var(--line); background: var(--surface-soft); transform: translateY(-1px); }
.cart-count { position: absolute; top: -3px; right: -2px; display: grid; place-items: center; min-width: 20px; height: 20px; padding: 0 5px; border: 2px solid #fff; border-radius: 999px; color: #fff; background: var(--blue); font-size: .68rem; font-weight: 900; }
.menu-button { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--navy); }
.header-nav { border-top: 1px solid rgba(16, 43, 80, 0.055); }
.nav-inner { min-height: 52px; display: flex; align-items: center; gap: 8px; }
.nav-link { position: relative; padding: 10px 14px; border-radius: 999px; color: var(--muted); font-size: .91rem; font-weight: 800; transition: .2s ease; }
.nav-link:hover, .nav-link.is-current { color: var(--navy); background: var(--surface-blue); }
.nav-link.is-current::after { content: ""; position: absolute; left: 25%; right: 25%; bottom: 2px; height: 2px; border-radius: 2px; background: var(--blue); }
.mobile-menu { display: none; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 22px; border: 0; border-radius: 999px; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--blue), #3b7bec); box-shadow: 0 14px 30px rgba(36, 104, 220, .22); }
.btn-primary:hover { box-shadow: 0 18px 38px rgba(36, 104, 220, .3); }
.btn-secondary { color: var(--navy); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost { color: var(--blue); background: var(--surface-blue); }
.btn-block { width: 100%; }

.hero { padding: 34px 0 30px; }
.hero-shell {
  position: relative;
  min-height: 610px;
  border: 1px solid rgba(16, 43, 80, 0.06);
  border-radius: 42px;
  background:
    radial-gradient(circle at 78% 38%, rgba(111, 159, 255, .24), transparent 29rem),
    radial-gradient(circle at 10% 88%, rgba(36, 104, 220, .08), transparent 20rem),
    linear-gradient(140deg, #ffffff 0%, #f8fbff 52%, #eaf1fd 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-shell::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(36,104,220,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(36,104,220,.025) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to right, transparent, black 40%, black 80%, transparent); pointer-events: none; }
.hero-slide { position: absolute; inset: 0; display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); align-items: center; gap: 34px; padding: 56px 68px; opacity: 0; pointer-events: none; transform: translateX(4%); transition: opacity .65s ease, transform .65s cubic-bezier(.22,.8,.2,1); }
.hero-slide.is-active { opacity: 1; pointer-events: auto; transform: translateX(0); }
.hero-copy { position: relative; z-index: 2; max-width: 600px; }
.hero-copy h1 { margin: 0; color: var(--navy); font-size: clamp(3.2rem, 6.5vw, 6.6rem); line-height: .91; letter-spacing: -.07em; }
.hero-copy .hero-accent { color: var(--blue); }
.hero-copy > p { max-width: 35rem; margin: 22px 0 0; color: var(--muted); font-size: 1.08rem; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 26px; color: var(--muted); font-size: .92rem; font-weight: 750; }
.hero-meta-pill { display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, .72); }
.hero-visual { position: relative; z-index: 1; min-height: 500px; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; width: min(470px, 90%); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(36,104,220,.22), transparent 64%); filter: blur(4px); animation: pulseGlow 5s ease-in-out infinite; }
.hero-product-image { position: relative; z-index: 2; width: min(500px, 90%); max-height: 500px; object-fit: contain; filter: drop-shadow(0 32px 34px rgba(18, 43, 80, .22)); animation: productFloat 4.6s ease-in-out infinite; }
.hero-orbit { position: absolute; z-index: 0; width: min(520px, 92%); aspect-ratio: 1; border: 1px solid rgba(36,104,220,.17); border-radius: 50%; animation: orbitSpin 18s linear infinite; }
.hero-orbit::before, .hero-orbit::after { content: ""; position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 24px rgba(36,104,220,.6); }
.hero-orbit::before { top: 6%; left: 55%; }
.hero-orbit::after { bottom: 12%; left: 8%; }
.hero-nav { position: absolute; z-index: 5; inset: auto 32px 28px auto; display: flex; gap: 10px; }
.hero-arrow { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; color: var(--navy); background: rgba(255,255,255,.84); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); transition: .2s ease; }
.hero-arrow:hover { color: #fff; background: var(--blue); transform: translateY(-2px); }
.hero-dots { position: absolute; z-index: 5; left: 68px; bottom: 34px; display: flex; gap: 8px; }
.hero-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px; background: rgba(16,43,80,.19); transition: .25s ease; }
.hero-dot.is-active { width: 34px; background: var(--blue); }

.trust-strip { margin-top: 22px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-sm); overflow: hidden; }
.trust-item { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 12px; padding: 18px 22px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 16px; color: var(--blue); background: var(--surface-blue); font-size: 1.2rem; }
.trust-item strong { display: block; color: var(--navy); }
.trust-item span { color: var(--muted); font-size: .86rem; }

.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.category-card { position: relative; min-height: 180px; padding: 20px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, #fff, #f4f7fc); box-shadow: var(--shadow-sm); overflow: hidden; transition: .25s ease; }
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(36,104,220,.18); }
.category-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -34px; bottom: -44px; border-radius: 50%; background: radial-gradient(circle, rgba(36,104,220,.18), transparent 66%); transition: .3s ease; }
.category-card:hover::after { transform: scale(1.2); }
.category-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 17px; background: var(--surface-blue); font-size: 1.45rem; }
.category-card h3 { margin: 24px 0 4px; color: var(--navy); font-size: 1.1rem; }
.category-card p { margin: 0; color: var(--muted); font-size: .86rem; }

.carousel-shell { position: relative; }
.product-carousel { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 300px); gap: 18px; overflow-x: auto; padding: 4px 4px 22px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.product-carousel::-webkit-scrollbar { display: none; }
.carousel-control { position: absolute; z-index: 6; top: 42%; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--navy); box-shadow: var(--shadow); }
.carousel-control:hover { color: #fff; background: var(--blue); }
.carousel-control.prev { left: -20px; }
.carousel-control.next { right: -20px; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.product-card { position: relative; min-width: 0; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; scroll-snap-align: start; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.product-card:hover { transform: translateY(-7px); border-color: rgba(36,104,220,.2); box-shadow: var(--shadow-lg); }
.product-card-link { display: block; }
.product-card-media { position: relative; height: 260px; padding: 12px; background: linear-gradient(150deg, #fbfcff, #ecf2f9); overflow: hidden; }
.product-card-media img { width: 100%; height: 100%; object-fit: contain; border-radius: 18px; transition: transform .45s cubic-bezier(.2,.8,.2,1), filter .45s ease; }
.product-card:hover .product-card-media img { transform: scale(1.055) translateY(-3px); filter: saturate(1.05); }
.product-badge { position: absolute; z-index: 3; top: 16px; left: 16px; padding: 7px 10px; border-radius: 999px; color: #fff; background: linear-gradient(135deg, var(--navy), var(--blue)); font-size: .68rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.product-hover-panel { position: absolute; z-index: 4; left: 14px; right: 14px; bottom: 14px; padding: 16px; border: 1px solid rgba(255,255,255,.7); border-radius: 20px; color: #fff; background: linear-gradient(145deg, rgba(16,43,80,.88), rgba(36,104,220,.85)); box-shadow: var(--shadow); backdrop-filter: blur(16px); opacity: 0; transform: translateY(14px); transition: .32s cubic-bezier(.2,.8,.2,1); }
.product-card:hover .product-hover-panel { opacity: 1; transform: translateY(0); }
.hover-eyebrow { font-size: .69rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; opacity: .78; }
.product-hover-panel p { margin: 6px 0 10px; font-size: .86rem; line-height: 1.45; }
.hover-link { font-weight: 850; font-size: .84rem; }
.product-card-body { padding: 18px 18px 14px; }
.product-card-meta { display: flex; justify-content: space-between; gap: 10px; color: var(--muted); font-size: .75rem; font-weight: 750; text-transform: uppercase; letter-spacing: .045em; }
.product-card h3 { margin: 10px 0 3px; color: var(--navy); font-size: 1.2rem; line-height: 1.2; }
.product-subtitle { margin: 0; color: var(--muted); min-height: 2.6em; font-size: .88rem; }
.product-rating { min-height: 24px; display: flex; align-items: center; gap: 7px; margin-top: 10px; color: var(--muted); font-size: .8rem; }
.rating-stars { color: #ecaa00; letter-spacing: .02em; }
.review-first { color: var(--blue); font-weight: 780; }
.product-price-row { display: flex; align-items: baseline; gap: 9px; margin-top: 8px; }
.product-price-row strong { color: var(--navy); font-size: 1.25rem; }
.price-old { color: #94a0b2; font-size: .85rem; text-decoration: line-through; }
.quick-cart { width: calc(100% - 36px); min-height: 43px; margin: 0 18px 18px; border: 0; border-radius: 999px; color: #fff; background: linear-gradient(135deg, var(--blue), #3b7bec); font-weight: 850; box-shadow: 0 12px 25px rgba(36,104,220,.17); transition: .2s ease; }
.quick-cart:hover { transform: translateY(-2px); box-shadow: 0 17px 32px rgba(36,104,220,.25); }
.quick-cart.is-added { background: var(--success); }

.review-carousel { position: relative; overflow: hidden; }
.review-track { display: flex; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.review-slide { min-width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.review-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.review-avatar { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-2)); font-weight: 900; }
.review-card blockquote { margin: 18px 0; color: var(--text); font-size: 1rem; line-height: 1.65; }
.review-card footer { display: flex; justify-content: space-between; gap: 10px; color: var(--muted); font-size: .82rem; }
.review-controls { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.review-control { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; color: var(--navy); background: #fff; box-shadow: var(--shadow-sm); }
.review-control:hover { color: #fff; background: var(--blue); }

.brand-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.brand-chip { display: grid; place-items: center; min-height: 84px; border: 1px solid var(--line); border-radius: 22px; color: var(--navy); background: #fff; box-shadow: var(--shadow-sm); font-weight: 900; transition: .22s ease; }
.brand-chip:hover { color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow); }

.newsletter { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center; padding: 38px; border: 1px solid var(--line); border-radius: 32px; background: linear-gradient(135deg, #fff, #eaf2ff); box-shadow: var(--shadow); }
.newsletter h2 { margin: 0; color: var(--navy); font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.05em; }
.newsletter p { margin: 12px 0 0; color: var(--muted); }
.newsletter-form { display: flex; align-items: center; gap: 10px; padding: 8px; border: 1px solid var(--line); border-radius: 999px; background: #fff; box-shadow: var(--shadow-sm); }
.newsletter-form input { flex: 1; min-width: 0; border: 0; outline: 0; padding: 0 14px; }

.site-footer { margin-top: 70px; border-top: 1px solid var(--line); background: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 36px; padding: 52px 0 36px; }
.footer-logo { width: 250px; }
.footer-copy { max-width: 28rem; color: var(--muted); }
.footer-column h3 { color: var(--navy); font-size: .95rem; }
.footer-column a { display: block; margin-top: 10px; color: var(--muted); font-size: .9rem; }
.footer-column a:hover { color: var(--blue); }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }

.page-hero { padding: 50px 0 24px; }
.page-hero h1 { margin: 0; color: var(--navy); font-size: clamp(2.8rem, 6vw, 5.4rem); line-height: .95; letter-spacing: -.065em; }
.page-hero p { max-width: 44rem; color: var(--muted); }

.shop-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 28px; align-items: start; padding-bottom: 80px; }
.filter-panel { position: sticky; top: calc(var(--header-height) + 70px); padding: 22px; border: 1px solid var(--line); border-radius: 26px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-sm); }
.filter-panel h2 { margin: 0; color: var(--navy); font-size: 1.15rem; }
.filter-group { padding: 18px 0; border-bottom: 1px solid var(--line); }
.filter-group:last-child { border-bottom: 0; padding-bottom: 0; }
.filter-label { display: block; margin-bottom: 9px; color: var(--navy); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.filter-panel input, .filter-panel select, .shop-toolbar input, .shop-toolbar select { width: 100%; min-height: 44px; border: 1px solid var(--line); border-radius: 14px; color: var(--text); background: #fff; padding: 0 12px; outline: 0; }
.filter-panel input:focus, .filter-panel select:focus, .shop-toolbar input:focus, .shop-toolbar select:focus { border-color: rgba(36,104,220,.35); box-shadow: 0 0 0 4px rgba(36,104,220,.08); }
.shop-results { min-width: 0; }
.shop-toolbar { display: grid; grid-template-columns: minmax(220px, 1fr) 210px auto; gap: 12px; align-items: center; margin-bottom: 20px; }
.result-count { color: var(--muted); font-size: .88rem; text-align: right; }
.mobile-filter-toggle { display: none; }
.empty-state { grid-column: 1 / -1; padding: 58px; border: 1px dashed rgba(16,43,80,.2); border-radius: 24px; color: var(--muted); background: rgba(255,255,255,.7); text-align: center; }

.product-page { padding: 42px 0 80px; }
.product-main { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: 30px; align-items: start; }
.product-gallery { min-width: 0; }
.gallery-stage { position: relative; min-height: 650px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 34px; background: linear-gradient(145deg, #fbfcff, #eaf0f8); box-shadow: var(--shadow); overflow: hidden; }
.gallery-stage::after { content: ""; position: absolute; width: 80%; height: 16%; left: 10%; bottom: 3%; border-radius: 50%; background: radial-gradient(ellipse, rgba(18,43,80,.15), transparent 66%); filter: blur(14px); }
.gallery-stage img { position: relative; z-index: 2; max-width: 88%; max-height: 610px; object-fit: contain; transition: transform .35s ease; }
.gallery-stage:hover img { transform: scale(1.025); }
.gallery-thumbs { display: flex; gap: 12px; overflow-x: auto; padding: 14px 2px 2px; scrollbar-width: none; }
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb { flex: 0 0 82px; height: 82px; padding: 6px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; }
.gallery-thumb.is-active { outline: 2px solid rgba(36,104,220,.35); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; border-radius: 12px; }
.purchase-panel { position: sticky; top: calc(var(--header-height) + 70px); padding: 28px; border: 1px solid var(--line); border-radius: 32px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.purchase-panel h1 { margin: 10px 0 8px; color: var(--navy); font-size: clamp(2.6rem, 5vw, 4.5rem); line-height: .94; letter-spacing: -.06em; }
.purchase-subtitle { margin: 0; color: var(--muted); }
.purchase-rating { display: flex; align-items: center; gap: 8px; min-height: 28px; margin-top: 14px; color: var(--muted); font-size: .88rem; }
.purchase-price { display: flex; align-items: baseline; gap: 10px; margin: 20px 0; }
.purchase-price strong { color: var(--blue); font-size: 2.5rem; letter-spacing: -.04em; }
.product-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.fact { padding: 12px 14px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface-soft); }
.fact span { display: block; color: var(--muted); font-size: .69rem; font-weight: 850; text-transform: uppercase; letter-spacing: .07em; }
.fact strong { display: block; margin-top: 3px; color: var(--navy); }
.quantity-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 20px 0; }
.quantity-control { display: inline-flex; align-items: center; gap: 16px; padding: 5px; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
.quantity-control button { width: 38px; height: 38px; border: 0; border-radius: 50%; color: #fff; background: var(--blue); font-weight: 900; }
.stock-state { color: var(--success); font-weight: 800; font-size: .86rem; }
.purchase-actions { display: grid; gap: 10px; }
.purchase-trust { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; margin-top: 18px; }
.purchase-trust div { padding: 11px 12px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface-blue); color: var(--navy); font-size: .8rem; font-weight: 800; }
.product-content { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; margin-top: 28px; }
.content-card { padding: 26px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-sm); }
.content-card h2 { margin: 0; color: var(--navy); font-size: 1.6rem; letter-spacing: -.03em; }
.content-card p { color: var(--muted); }
.accordion { margin-top: 18px; }
.accordion-item { border-top: 1px solid var(--line); }
.accordion-button { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 0; border: 0; color: var(--navy); background: transparent; font-weight: 850; text-align: left; }
.accordion-panel { display: none; padding: 0 0 20px; color: var(--muted); }
.accordion-item.is-open .accordion-panel { display: block; }
.spec-list { margin: 16px 0 0; }
.spec-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.spec-row dt { color: var(--muted); }
.spec-row dd { margin: 0; color: var(--navy); font-weight: 800; }
.product-reviews { margin-top: 28px; }
.review-summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface-soft); }
.review-summary strong { color: var(--navy); font-size: 1.35rem; }
.review-empty { color: var(--muted); }
.review-list-product { display: grid; gap: 12px; margin-top: 16px; }
.product-review { padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.product-review-header { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.product-review p { margin-bottom: 0; }
.review-form { display: grid; gap: 12px; margin-top: 18px; padding: 20px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface-soft); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.field { display: grid; gap: 7px; }
.field label { color: var(--navy); font-size: .82rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; background: #fff; padding: 12px 13px; outline: 0; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(36,104,220,.35); box-shadow: 0 0 0 4px rgba(36,104,220,.08); }
.field-full { grid-column: 1 / -1; }

.basket-page, .checkout-page { padding: 44px 0 80px; }
.basket-layout, .checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 28px; align-items: start; }
.basket-list { display: grid; gap: 14px; }
.basket-item { display: grid; grid-template-columns: 130px minmax(0, 1fr) auto; gap: 18px; align-items: center; padding: 16px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.basket-image { height: 120px; display: grid; place-items: center; border-radius: 18px; background: linear-gradient(145deg, #fbfcff, #edf2f8); overflow: hidden; }
.basket-image img { width: 100%; height: 100%; object-fit: contain; }
.basket-info h3 { margin: 0; color: var(--navy); }
.basket-info p { margin: 5px 0; color: var(--muted); font-size: .88rem; }
.basket-actions { display: grid; justify-items: end; gap: 12px; }
.remove-button { border: 0; color: var(--danger); background: transparent; font-weight: 800; }
.order-summary { position: sticky; top: calc(var(--header-height) + 70px); padding: 24px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow); }
.order-summary h2 { margin: 0 0 16px; color: var(--navy); }
.summary-row { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; color: var(--muted); }
.summary-row.total { margin-top: 8px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--navy); font-size: 1.12rem; font-weight: 900; }
.summary-note { margin: 14px 0; padding: 13px; border-radius: 15px; background: var(--surface-blue); color: var(--navy); font-size: .83rem; }
.empty-basket { padding: 70px; border: 1px dashed rgba(16,43,80,.2); border-radius: 28px; background: rgba(255,255,255,.75); text-align: center; }

.checkout-progress { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 28px 0; }
.progress-step { position: relative; padding: 12px 10px; border-radius: 14px; color: var(--muted); background: #eef2f7; font-size: .78rem; font-weight: 800; text-align: center; }
.progress-step.is-active { color: #fff; background: linear-gradient(135deg, var(--blue), #3b7bec); }
.checkout-form-card { padding: 26px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-sm); }
.checkout-form-card + .checkout-form-card { margin-top: 16px; }
.checkout-form-card h2 { margin: 0 0 18px; color: var(--navy); }
.payment-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.payment-option { padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface-soft); color: var(--navy); font-weight: 800; text-align: center; }
.payment-option.is-selected { border-color: rgba(36,104,220,.3); background: var(--surface-blue); }
.checkout-line { display: grid; grid-template-columns: 60px 1fr auto; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); }
.checkout-line img { width: 60px; height: 60px; object-fit: contain; border-radius: 12px; background: var(--surface-soft); }
.checkout-line strong { color: var(--navy); }
.checkout-line span { color: var(--muted); font-size: .8rem; }
.order-success { padding: 70px 24px; text-align: center; }
.success-mark { display: grid; place-items: center; width: 78px; height: 78px; margin: 0 auto 20px; border-radius: 50%; color: #fff; background: var(--success); font-size: 2rem; }

.toast-region { position: fixed; z-index: 200; right: 18px; bottom: 18px; display: grid; gap: 10px; }
.toast { min-width: 260px; max-width: min(420px, calc(100vw - 36px)); padding: 14px 16px; border: 1px solid var(--line); border-radius: 16px; color: var(--navy); background: rgba(255,255,255,.95); box-shadow: var(--shadow); opacity: 0; transform: translateY(12px); transition: .25s ease; backdrop-filter: blur(16px); }
.toast-show { opacity: 1; transform: translateY(0); }
.toast-error { color: var(--danger); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes productFloat { 0%, 100% { transform: translateY(0) rotate(-.3deg); } 50% { transform: translateY(-13px) rotate(.3deg); } }
@keyframes pulseGlow { 0%, 100% { transform: scale(.95); opacity: .65; } 50% { transform: scale(1.05); opacity: 1; } }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (max-width: 1120px) {
  .header-main { grid-template-columns: 250px minmax(260px, 1fr) auto; }
  .hero-slide { grid-template-columns: 1fr 1fr; padding: 52px 48px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-row { grid-template-columns: repeat(3, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 900px) {
  :root { --header-height: 70px; }
  .site-announcement { display: none; }
  .header-main { min-height: 70px; grid-template-columns: 210px 1fr auto; gap: 12px; }
  .header-main .site-search { display: none; }
  .header-nav { display: none; }
  .menu-button { display: grid; place-items: center; }
  .mobile-menu { position: fixed; z-index: 49; inset: 70px 0 auto; display: grid; gap: 6px; padding: 18px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.97); box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .28s ease; }
  .mobile-menu.is-open { transform: translateY(0); }
  .mobile-menu .site-search { display: flex; width: 100%; margin-bottom: 10px; }
  .mobile-menu a { padding: 12px 14px; border-radius: 12px; color: var(--navy); font-weight: 800; }
  .mobile-menu a:hover { background: var(--surface-blue); }
  .hero-shell { min-height: 760px; }
  .hero-slide { grid-template-columns: 1fr; align-content: center; gap: 10px; padding: 44px 34px 80px; }
  .hero-copy { text-align: center; margin-inline: auto; }
  .hero-copy > p { margin-inline: auto; }
  .hero-cta, .hero-meta { justify-content: center; }
  .hero-visual { min-height: 330px; }
  .hero-product-image { max-height: 330px; }
  .hero-dots { left: 50%; transform: translateX(-50%); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .review-slide { grid-template-columns: 1fr; }
  .review-slide .review-card:nth-child(n+2) { display: none; }
  .newsletter { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; display: none; }
  .filter-panel.is-open { display: block; }
  .mobile-filter-toggle { display: inline-flex; }
  .shop-toolbar { grid-template-columns: 1fr 180px auto; }
  .product-main, .product-content, .basket-layout, .checkout-layout { grid-template-columns: 1fr; }
  .purchase-panel, .order-summary { position: static; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1280px); }
  .section { padding: 54px 0; }
  .header-main { grid-template-columns: minmax(170px, 1fr) auto auto; }
  .header-action span:not(.cart-count) { display: none; }
  .site-logo { width: 200px; }
  .hero { padding-top: 16px; }
  .hero-shell { min-height: 720px; border-radius: 28px; }
  .hero-slide { padding: 36px 22px 82px; }
  .hero-copy h1 { font-size: clamp(2.75rem, 15vw, 4.4rem); }
  .hero-copy > p { font-size: .98rem; }
  .hero-visual { min-height: 300px; }
  .hero-product-image { max-height: 285px; }
  .hero-nav { right: 18px; bottom: 20px; }
  .hero-dots { bottom: 27px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card { min-height: 155px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card-media { height: 310px; }
  .product-hover-panel { display: none; }
  .product-carousel { grid-auto-columns: minmax(255px, 86vw); }
  .carousel-control { display: none; }
  .brand-row { grid-template-columns: repeat(2, 1fr); }
  .newsletter { padding: 26px 20px; }
  .newsletter-form { flex-direction: column; align-items: stretch; border-radius: 22px; }
  .newsletter-form input { min-height: 44px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; justify-content: center; padding: 18px 0; text-align: center; }
  .shop-toolbar { grid-template-columns: 1fr; }
  .result-count { text-align: left; }
  .gallery-stage { min-height: 440px; }
  .gallery-stage img { max-height: 410px; }
  .purchase-panel { padding: 21px; }
  .product-facts, .purchase-trust, .form-grid, .payment-options { grid-template-columns: 1fr; }
  .product-content { grid-template-columns: 1fr; }
  .spec-row { grid-template-columns: 1fr; gap: 4px; }
  .basket-item { grid-template-columns: 92px 1fr; }
  .basket-actions { grid-column: 1 / -1; justify-items: stretch; }
  .checkout-progress { grid-template-columns: repeat(2, 1fr); }
  .empty-basket { padding: 46px 20px; }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.contact-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.contact-card h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.45rem;
  letter-spacing: -.03em;
}
.contact-card p {
  margin: 7px 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}


/* =========================================================
   HEX Storefront Variants V2
   ========================================================= */
.variant-section { margin-top: 22px; }
.variant-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 11px; }
.variant-heading h2 { margin: 0; color: var(--navy); font-size: .96rem; }
.variant-heading > span { color: var(--muted); font-size: .88rem; font-weight: 760; }
.variant-colour-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.variant-colour { display: grid; grid-template-columns: 26px 1fr; align-items: center; gap: 10px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 16px; color: var(--navy); background: #fff; text-align: left; transition: transform .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease; }
.variant-colour:hover:not(:disabled) { transform: translateY(-2px); border-color: rgba(36,104,220,.32); }
.variant-colour.is-active { border-color: rgba(36,104,220,.48); background: var(--surface-blue); box-shadow: 0 0 0 2px rgba(36,104,220,.08); }
.variant-colour.is-disabled, .variant-storage.is-disabled { opacity: .42; cursor: not-allowed; filter: grayscale(.7); }
.variant-colour strong, .variant-colour small { display: block; }
.variant-colour small { margin-top: 2px; color: var(--muted); font-size: .72rem; }
.variant-swatch { width: 24px; height: 24px; border: 1px solid rgba(18,43,80,.16); border-radius: 50%; background: var(--swatch); box-shadow: inset 0 0 0 3px rgba(255,255,255,.7); }
.variant-storage-grid { display: flex; flex-wrap: wrap; gap: 9px; }
.variant-storage { min-width: 92px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 14px; color: var(--navy); background: #fff; font-weight: 820; transition: transform .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease; }
.variant-storage:hover:not(:disabled) { transform: translateY(-2px); border-color: rgba(36,104,220,.32); }
.variant-storage.is-active { border-color: rgba(36,104,220,.48); background: var(--surface-blue); box-shadow: 0 0 0 2px rgba(36,104,220,.08); }
.variant-storage small { display: block; margin-top: 3px; color: var(--muted); font-size: .66rem; font-weight: 700; }
.stock-state.is-out { color: #a03c3c; }
.gallery-stage.is-loading::before { content: "Loading photographs…"; position: absolute; z-index: 3; padding: 10px 14px; border-radius: 999px; color: var(--navy); background: rgba(255,255,255,.88); box-shadow: var(--shadow-sm); }
.company-reviews { margin-top: 28px; }
.company-review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 16px; }
.company-review-card { padding: 19px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.company-review-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.company-review-card p { margin: 12px 0; line-height: 1.65; }
.company-review-card small { color: var(--muted); }
.google-g { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); background: var(--surface-blue); font-weight: 900; }
.company-review-placeholder { grid-column: 1 / -1; padding: 20px; border: 1px dashed var(--line); border-radius: 20px; color: var(--muted); background: var(--surface-soft); text-align: center; }
.basket-info .eyebrow { margin-bottom: 6px; }
.checkout-line span { color: var(--muted); }

@media (max-width: 760px) {
  .variant-colour-grid, .company-review-grid { grid-template-columns: 1fr; }
  .variant-storage { flex: 1 1 calc(50% - 9px); }
}


/* =========================================================
   HEX V3 premium overrides
   ========================================================= */

:root {
  --hex-blue-3: #4d82f7;
  --hex-blue-4: #8db1ff;
  --hex-surface: #f7f9ff;
  --hex-surface-2: #edf3ff;
  --hex-shadow-v3: 0 22px 60px rgba(18, 43, 80, 0.10);
  --hex-shadow-v3-strong: 0 32px 84px rgba(18, 43, 80, 0.16);
}

.site-announcement {
  background:
    linear-gradient(90deg, #eef4ff 0%, #f8fbff 34%, #eef4ff 100%);
}

.site-header {
  box-shadow: 0 8px 30px rgba(18, 43, 80, 0.04);
}

.header-main {
  grid-template-columns: minmax(240px, 330px) minmax(320px, 1fr) auto;
}

.site-logo {
  width: min(320px, 100%);
}

.site-logo img {
  filter: saturate(1.05);
}

.hero {
  padding: 18px 0 22px;
}

.hero-shell {
  min-height: 520px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(141, 177, 255, 0.20), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(36, 104, 220, 0.14), transparent 26%),
    linear-gradient(140deg, #f8fbff 0%, #eef4ff 55%, #deebff 100%);
  box-shadow: var(--hex-shadow-v3-strong);
}

.hero-shell::before {
  background-image:
    linear-gradient(rgba(36,104,220,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,104,220,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .9;
}

.hero-slide {
  padding: 38px 42px 52px;
  grid-template-columns: minmax(0, 1.02fr) minmax(270px, .98fr);
  gap: 18px;
}

.hero-copy {
  max-width: 560px;
}

.hero-copy h1 {
  font-size: clamp(2.55rem, 7.8vw, 5.2rem);
  line-height: .9;
  letter-spacing: -.075em;
  text-wrap: balance;
}

.hero-copy > p {
  max-width: 32rem;
  font-size: 1.02rem;
}

.hero-cta {
  margin-top: 24px;
}

.hero-meta {
  margin-top: 20px;
}

.hero-meta-pill {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 6px 18px rgba(18, 43, 80, 0.06);
}

.hero-visual {
  min-height: 420px;
}

.hero-visual::before {
  width: min(420px, 90%);
  background: radial-gradient(circle, rgba(36,104,220,.18), transparent 64%);
}

.hero-orbit {
  width: min(390px, 82%);
  aspect-ratio: 1;
  border: 0;
  clip-path: polygon(25% 7%, 75% 7%, 100% 50%, 75% 93%, 25% 93%, 0 50%);
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,.34), transparent 24%),
    linear-gradient(145deg, rgba(36,104,220,.94), rgba(141,177,255,.98));
  box-shadow: 0 30px 56px rgba(36, 104, 220, 0.24);
  animation: productFloat 5.2s ease-in-out infinite;
}

.hero-orbit::before,
.hero-orbit::after {
  content: none;
}

.hero-product-image {
  width: min(420px, 86%);
  max-height: 430px;
  filter: drop-shadow(0 28px 28px rgba(18, 43, 80, .18));
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  border-radius: 28px;
  box-shadow: var(--hex-shadow-v3);
  background: rgba(255,255,255,.92);
}

.product-card-media {
  height: 250px;
  padding: 12px 12px 8px;
  border-radius: 28px 28px 0 0;
  background:
    radial-gradient(circle at 25% 18%, rgba(141, 177, 255, 0.14), transparent 36%),
    radial-gradient(circle at 72% 10%, rgba(36, 104, 220, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);
}

.product-card-media img {
  width: 100%;
  height: 100%;
  padding: 2px 0 0;
  object-fit: contain;
  border-radius: 24px;
  clip-path: inset(0 round 24px);
}

.product-badge {
  top: 14px;
  left: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  letter-spacing: .07em;
  box-shadow: 0 10px 22px rgba(18,43,80,.12);
}

.product-hover-panel {
  inset: auto 12px 12px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(16,43,80,.88), rgba(36,104,220,.88));
}

.product-card-body {
  padding: 18px 18px 16px;
}

.product-card h3 {
  font-size: 1.12rem;
}

.product-subtitle {
  min-height: 2.8em;
}

.quick-cart {
  width: calc(100% - 32px);
  margin: 0 16px 16px;
  min-height: 44px;
}

.review-card,
.brand-chip,
.category-card,
.content-card,
.purchase-panel,
.order-summary,
.checkout-form-card,
.admin-v2-card {
  border-radius: 26px;
}

.gallery-stage {
  min-height: 560px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 18%, rgba(141,177,255,0.10), transparent 34%),
    linear-gradient(145deg, #fbfdff, #edf4ff);
  box-shadow: var(--hex-shadow-v3);
}

.gallery-stage::after {
  width: 76%;
  left: 12%;
  bottom: 5%;
}

.gallery-stage img {
  max-width: 90%;
  max-height: 520px;
  padding: 8px 6px 12px;
  object-fit: contain;
  border-radius: 24px;
  clip-path: inset(0 round 24px);
}

.gallery-thumb {
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #eff4ff);
}

.purchase-panel {
  box-shadow: var(--hex-shadow-v3-strong);
  background: rgba(255,255,255,.96);
}

.purchase-panel h1 {
  font-size: clamp(2.2rem, 4.6vw, 4.3rem);
}

.purchase-price strong {
  font-size: 2.2rem;
}

.product-facts {
  gap: 12px;
}

.fact {
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f5f8ff);
}

.variant-section {
  margin-top: 24px;
}

.variant-heading h2 {
  font-size: 1rem;
}

.variant-colour-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.variant-colour,
.variant-storage {
  border-radius: 16px;
}

.company-reviews {
  margin-top: 30px;
}

.company-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.company-review-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: var(--shadow-sm);
}

.company-review-card p {
  margin: 12px 0;
  line-height: 1.6;
}

.company-review-placeholder {
  grid-column: 1 / -1;
  border-radius: 22px;
}

.hex-search-wrapper {
  position: relative;
}

.hex-search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 200;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(16,43,80,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.98);
  box-shadow: var(--hex-shadow-v3-strong);
  backdrop-filter: blur(18px);
}

.hex-search-results a,
.hex-search-results button {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
  border: 0;
  border-radius: 16px;
  background: var(--surface-soft);
  color: var(--text);
  text-align: left;
}

.hex-search-results a:hover,
.hex-search-results button:hover {
  background: var(--surface-blue);
}

.hex-search-results img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #edf4ff);
}

.hex-search-results strong {
  display: block;
  color: var(--navy);
  font-size: .95rem;
}

.hex-search-results small {
  color: var(--muted);
  font-size: .78rem;
}

.hex-data-state {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 220px;
  padding: 32px;
  border: 1px dashed rgba(18,43,80,.12);
  border-radius: 26px;
  background: rgba(255,255,255,.7);
  text-align: center;
}

.hex-loading-spinner {
  width: 42px;
  height: 42px;
  border: 4px solid rgba(36,104,220,.14);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: shop-spin .8s linear infinite;
}

.shop-layout {
  grid-template-columns: minmax(250px, 282px) minmax(0, 1fr);
}

.shop-toolbar {
  grid-template-columns: minmax(220px, 1fr) 230px auto;
}

.product-grid {
  gap: 18px;
}

.product-grid .product-card {
  min-width: 0;
}

.product-grid .product-card-media {
  background:
    radial-gradient(circle at 25% 18%, rgba(141, 177, 255, 0.14), transparent 36%),
    radial-gradient(circle at 72% 10%, rgba(36, 104, 220, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);
}

.brand-row {
  gap: 14px;
}

.brand-chip {
  min-height: 88px;
}

.footer-logo {
  max-width: 250px;
}

.shop-page-hero {
  overflow: hidden;
}

.shop-page-hero::after {
  width: 420px;
  height: 420px;
  right: -150px;
  top: -220px;
  background: radial-gradient(circle, rgba(36,104,220,.16), transparent 68%);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.model-card {
  border-radius: 28px;
  box-shadow: var(--hex-shadow-v3);
  background: rgba(255,255,255,.94);
}

.model-card-media {
  height: 280px;
  border-radius: 28px 28px 0 0;
  background:
    radial-gradient(circle at 25% 18%, rgba(141, 177, 255, 0.14), transparent 36%),
    radial-gradient(circle at 72% 10%, rgba(36, 104, 220, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);
}

.model-card-media img {
  clip-path: inset(0 round 24px);
}

.model-card-body {
  padding: 18px 18px 16px;
}

.model-card-action {
  width: calc(100% - 32px);
  margin: 0 16px 16px;
  border-radius: 16px;
}

@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .model-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-slide {
    grid-template-columns: minmax(0, 1fr) minmax(240px, .92fr);
  }
}

@media (max-width: 980px) {
  .header-main {
    grid-template-columns: minmax(180px, 250px) minmax(0, 1fr) auto;
  }

  .hero-shell {
    min-height: 560px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 34px 28px 66px;
  }

  .hero-copy {
    max-width: 640px;
    text-align: center;
    margin-inline: auto;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 4.4rem);
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-cta,
  .hero-meta {
    justify-content: center;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-orbit {
    width: min(360px, 82%);
  }

  .hero-product-image {
    width: min(380px, 82%);
    max-height: 360px;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 80;
    width: min(390px, calc(100% - 36px));
    max-height: 100vh;
    overflow-y: auto;
    transform: translateX(106%);
    transition: transform .25s ease;
  }

  .filter-panel.is-open {
    transform: translateX(0);
  }

  .mobile-filter-toggle {
    display: inline-flex;
  }

  .shop-toolbar {
    grid-template-columns: minmax(0, 1fr) 200px auto;
  }

  .product-grid,
  .model-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .company-review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero-shell {
    min-height: 520px;
  }

  .hero-slide {
    padding: 28px 18px 56px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 12vw, 3.9rem);
    line-height: .9;
  }

  .hero-copy > p {
    font-size: .98rem;
  }

  .hero-visual {
    min-height: 260px;
  }

  .hero-orbit {
    width: min(310px, 80%);
  }

  .hero-product-image {
    width: min(330px, 80%);
    max-height: 300px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card-media,
  .model-card-media {
    height: 220px;
  }

  .page-hero {
    padding-top: 30px;
  }

  .page-hero h1 {
    font-size: clamp(2.4rem, 10vw, 4.4rem);
  }

  .gallery-stage {
    min-height: 430px;
  }

  .gallery-stage img {
    max-height: 390px;
  }

  .purchase-panel h1 {
    font-size: clamp(2rem, 9.5vw, 3.6rem);
  }

  .purchase-price strong {
    font-size: 2rem;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, 1280px);
  }

  .header-main {
    grid-template-columns: minmax(150px, 1fr) auto auto;
    gap: 10px;
  }

  .site-logo {
    width: min(205px, 100%);
  }

  .hero {
    padding-top: 10px;
  }

  .hero-shell {
    min-height: 500px;
    border-radius: 28px;
  }

  .hero-slide {
    padding: 24px 14px 48px;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 13vw, 3.3rem);
    line-height: .88;
  }

  .hero-copy > p {
    margin-top: 16px;
  }

  .hero-cta {
    gap: 10px;
  }

  .hero-visual {
    min-height: 240px;
  }

  .hero-orbit {
    width: min(290px, 84%);
  }

  .hero-product-image {
    width: min(300px, 84%);
    max-height: 270px;
  }

  .product-grid,
  .model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-card-media,
  .model-card-media {
    height: 190px;
    padding: 10px 10px 6px;
  }

  .product-card-body,
  .model-card-body {
    padding: 14px 14px 12px;
  }

  .product-card h3,
  .model-card h2 {
    font-size: 1rem;
  }

  .product-subtitle,
  .model-card-subtitle {
    font-size: .78rem;
  }

  .product-card-meta,
  .model-card-meta {
    font-size: .66rem;
  }

  .quick-cart,
  .model-card-action {
    width: calc(100% - 24px);
    margin: 0 12px 12px;
  }

  .shop-toolbar {
    grid-template-columns: 1fr;
  }

  .result-count {
    text-align: left;
  }

  .company-review-grid {
    grid-template-columns: 1fr;
  }

  .purchase-trust,
  .product-facts {
    grid-template-columns: 1fr;
  }

  .basket-item {
    grid-template-columns: 92px 1fr;
  }

  .basket-actions {
    grid-column: 1 / -1;
    justify-items: stretch;
  }

  .checkout-progress {
    grid-template-columns: repeat(2, 1fr);
  }
}

@keyframes adminHexFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orbit,
  .hero-product-image {
    animation: none !important;
  }
}


/* HEX V3.5 base marker. Final responsive storefront overrides load from phase1.css. */
