/* ===========================================================
   Legend Hub — Aerion theme preview
   Mobile accessories · Blue + White (derived from logo)
   =========================================================== */

:root {
  --brand: #0b3dae; /* royal blue — logo, buttons, price, active nav */
  --brand-deep: #07235f; /* navy — announce bar, footer */
  --brand-bright: #2f6bf2; /* bright blue — links, hovers, accents */
  --ink: #0e1a33; /* headings + strong text */
  --ink-soft: #34405c;
  --muted: #5b6a86;
  --faint: #5e6b84;
  --bg: #f5f8fd; /* cool off-white page */
  --surface: #ffffff; /* cards */
  --line: #e5ebf5; /* hairlines */
  --header-accent: #000 important;
  --line-strong: #d3ddec;
  --tint: #eef3fd; /* light-blue fill (icon tiles, chips) */
  --price: #0b3dae;
  --sale: #d6342c; /* discount text only */
  --radius: 14px;
  --radius-sm: 10px;
  --shadow:
    0 1px 2px rgba(11, 38, 90, 0.05), 0 10px 26px rgba(11, 38, 90, 0.07);
  --shadow-hover:
    0 6px 14px rgba(11, 38, 90, 0.09), 0 20px 46px rgba(11, 38, 90, 0.14);
  --container: 1240px;
  --signature: linear-gradient(
    90deg,
    var(--brand) 0%,
    var(--brand-bright) 100%
  );
  --ff-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ff-display: "Space Grotesk", "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--brand-deep);
  color: #dbe6ff;
  font-size: 12.5px;
  letter-spacing: 0.03em;
}
.announce .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  height: 38px;
  text-align: center;
}
.announce span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.announce .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #46599a;
}

/* ---------- Header (Aerion: sticky, search, account, wishlist, cart) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  justify-self: start;
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 13px;
  background: var(--tint);
  border: 1px solid var(--line-strong);
  flex: none;
}
.brand-chip img {
  height: 40px;
  width: auto;
}
.brand-word {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1;
}
.brand-word span {
  color: var(--brand);
}

.primary-nav {
  display: flex;
  gap: 28px;
  justify-self: center;
}
.primary-nav > a,
.primary-nav .has-mega > a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 28px 0;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.18s ease;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 2px;
  background: var(--signature);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.primary-nav a:hover {
  color: var(--brand);
}
.primary-nav a:hover::after,
.primary-nav a.active::after {
  transform: scaleX(1);
}
.primary-nav .chev {
  width: 14px;
  height: 14px;
}

/* mega-menu (Aerion signature) */
.has-mega {
  position: static;
}
.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 40px rgba(11, 38, 90, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s;
  z-index: 90;
}
.has-mega:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px 28px;
  padding: 28px 0 34px;
}
.mega a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.mega a::after {
  display: none;
}
.mega a:hover {
  background: var(--tint);
  color: var(--brand);
}
.mega a svg {
  width: 19px;
  height: 19px;
  color: var(--brand);
  flex: none;
}
.mega-foot {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px dashed var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}
.mega-foot b {
  color: var(--brand);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--ink);
  border-radius: 50%;
  transition:
    background 0.15s ease,
    color 0.15s ease;
  position: relative;
}
.icon-btn:hover {
  background: var(--tint);
  color: var(--brand);
}
.icon-btn svg {
  width: 21px;
  height: 21px;
}
.cart-count {
  position: absolute;
  top: 3px;
  right: 3px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--surface);
}
/* animated search pill */
.search-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  background: #fff;
  width: 210px;
  transition:
    width 0.25s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  color: var(--faint);
}
.search-pill:focus-within {
  width: 258px;
  box-shadow: var(--shadow);
  border-color: var(--brand-bright);
  color: var(--ink);
}
.search-pill svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--muted);
}
.search-pill input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 13.5px;
  color: var(--ink);
  font-family: inherit;
}
.hamburger {
  display: none;
}

/* ---------- Hero (split editorial) ---------- */
.hero {
  background: linear-gradient(180deg, #eef3fd 0%, var(--bg) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 60px 0 70px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brand);
  margin: 0 0 18px;
  background: #fff;
  border: 1px solid var(--line-strong);
  padding: 7px 14px;
  border-radius: 30px;
}
.hero-eyebrow .pip {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-bright);
}
.hero h1 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--ink);
}
.hero h1 em {
  font-style: normal;
  color: var(--brand);
  background: var(--signature);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 460px;
  margin: 0 0 32px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 50px;
  padding: 0 26px;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover {
  background: var(--brand-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 38, 90, 0.28);
}
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.hero-meta {
  margin-top: 34px;
  display: flex;
  gap: 30px;
}
.hero-meta strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
}
.hero-meta span {
  font-size: 12.5px;
  color: var(--faint);
  letter-spacing: 0.02em;
}

.hero-figure {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 6 / 5;
  background: #eaf1fd;
  box-shadow: var(--shadow);
}
.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 11px 15px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge .ring {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex: none;
  background: var(--signature);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.hero-badge .ring svg {
  width: 18px;
  height: 18px;
}
.hero-badge small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.hero-badge b {
  font-size: 13.5px;
  color: var(--ink);
}

/* ---------- Feature banner (full-width, products + overlaid copy) ---------- */

.feature-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow);
}
.feature-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.feature-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 16, 46, 0.94) 0%,
    rgba(4, 16, 46, 0.78) 30%,
    rgba(4, 16, 46, 0.25) 56%,
    rgba(4, 16, 46, 0) 74%
  );
}
.feature-copy {
  position: relative;
  z-index: 1;
  padding: 46px 56px;
  max-width: 560px;
  color: #fff;
}
.feature-copy .eyebrow {
  color: #bcd0ff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 14px;
}
.feature-copy h2 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.feature-copy .feature-sub {
  font-size: 15.5px;
  line-height: 1.6;
  color: #dce6ff;
  margin: 0 0 26px;
  max-width: 380px;
}
.feature-copy .btn-primary {
  background: #fff;
  color: var(--brand);
}
.feature-copy .btn-primary:hover {
  background: #eaf0ff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

/* main-banner (hero) variant */

.feature-hero .feature-banner {
  min-height: 462px;
}
.feature-hero .feature-copy {
  padding: 48px 56px;
}
.feature-hero .feature-copy .eyebrow {
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
}
.feature-copy .eyebrow .pip {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-bright);
  margin-right: 8px;
}
.feature-copy h1 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: #fff;
}
.feature-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
}
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}
.feature-meta {
  display: flex;
  gap: 32px;
}
.feature-meta strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}
.feature-meta span {
  font-size: 12px;
  color: #aebfe4;
  letter-spacing: 0.02em;
}

/* ---------- Section scaffolding ---------- */
.section {
  padding-top: 24px;
  padding-bottom: 24px;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 20px;
}
.section-head .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-bright);
  margin: 0 0 10px;
}
.section-head h2 {
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
}
.view-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.view-all svg {
  width: 16px;
  height: 16px;
  transition: transform 0.18s ease;
}
.view-all:hover svg {
  transform: translateX(3px);
}

/* ---------- Categories (photo tiles — Aerion photography-forward) ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 12px 16px;
  box-shadow: var(--shadow);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-bright);
}
.cat-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 11px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.35s ease;
}
.cat-card:hover .cat-photo img {
  transform: scale(1.05);
}
.cat-card b {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

/* ---------- Product cards (Aerion: 4/5 portrait, soft shadow, no borders) ---------- */
.product-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.product-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.pc-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #ffffff;
  overflow: hidden;
}
.pc-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform 0.3s ease;
}
.product-card:hover .pc-media img {
  transform: scale(1.04);
}
.pc-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 20px;
}
.pc-tag.alt {
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--line-strong);
}
.pc-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition:
    background 0.15s ease,
    transform 0.15s ease,
    color 0.15s;
  color: var(--ink);
}
.pc-wish:hover {
  transform: scale(1.08);
  color: var(--brand);
}
.pc-wish svg {
  width: 17px;
  height: 17px;
}
.pc-body {
  padding: 15px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.pc-cat {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}
.pc-name {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}
.pc-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
}
.pc-rating .stars {
  color: #e0a52f;
  letter-spacing: 1px;
  font-size: 12px;
}
.pc-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 8px;
  row-gap: 1px;
  margin-top: auto;
  padding-top: 6px;
}
.pc-price .now {
  font-size: 18px;
  font-weight: 700;
  color: var(--price);
  font-family: var(--ff-display);
}
.pc-price .mrp {
  font-size: 13px;
  color: var(--faint);
  text-decoration: line-through;
}
.pc-price .off {
  font-size: 12px;
  font-weight: 600;
  color: var(--sale);
  white-space: nowrap;
}
.pc-add {
  margin-top: 12px;
  height: 42px;
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}
.pc-add svg {
  width: 16px;
  height: 16px;
}
.product-card:hover .pc-add {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* ---------- GenericCollectionCard (banner 26% + products 74%) ---------- */
.gcc {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: stretch;
}
.gcc-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
  background: radial-gradient(
    125% 130% at 78% 12%,
    #2c5ae0 0%,
    var(--brand) 46%,
    var(--brand-deep) 100%
  );
}
.gcc-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.12) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  opacity: 0.55;
  pointer-events: none;
}
.gcc-deco {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 116px;
  height: 84px;
  color: #bcd0ff;
  opacity: 0.85;
}
.gcc-deco svg {
  width: 100%;
  height: 100%;
}
.gcc-banner .gcc-content {
  position: relative;
  z-index: 1;
  padding: 26px;
  color: #fff;
}
.gcc-banner .gcc-content .eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
  margin: 0 0 8px;
}
.gcc-banner .gcc-content h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 27px;
  line-height: 1.1;
  margin: 0 0 10px;
}
.gcc-banner .gcc-content p {
  font-size: 13.5px;
  line-height: 1.55;
  opacity: 0.92;
  margin: 0 0 18px;
  max-width: 240px;
}
.gcc-banner .gcc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 3px;
}
.gcc-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ---------- Full-width promo: Charge at full speed ---------- */
.promo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: radial-gradient(
    120% 140% at 80% 20%,
    #2552d8 0%,
    var(--brand) 38%,
    var(--brand-deep) 100%
  );
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 24px;
  padding: 18px 18px 18px 56px;
  min-height: 320px;
}
.promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}
.promo-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 26px 0;
}
.promo-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #bcd0ff;
  margin: 0 0 14px;
}
.promo-content h2 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.06;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.promo-content p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #dce6ff;
  margin: 0 0 24px;
  max-width: 420px;
}
.promo .btn-primary {
  background: #fff;
  color: var(--brand);
}
.promo .btn-primary:hover {
  background: #eaf0ff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.promo-feats {
  display: flex;
  gap: 22px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.promo-feats div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #e7eeff;
}
.promo-feats svg {
  width: 18px;
  height: 18px;
  color: #bcd0ff;
}
.promo-media {
  position: relative;
  z-index: 1;
}
.promo-media .tile {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  aspect-ratio: 4 / 5;
  max-width: 290px;
  margin-left: auto;
  overflow: hidden;
}
.promo-media .tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.promo-media .wattage {
  position: absolute;
  top: -14px;
  left: -14px;
  z-index: 2;
  background: #ffd23f;
  color: #2a2300;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 18px;
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.trust-card {
  text-align: left;
}
.trust-card .ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.trust-card .ic svg {
  width: 25px;
  height: 25px;
  color: var(--brand);
  stroke-width: 1.95;
}
.trust-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ink);
}
.trust-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.brand-strip {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  border-top: 1px dashed var(--line-strong);
}
.brand-strip .lbl {
  font-size: 12.5px;
  color: var(--faint);
  margin-right: 6px;
}
.brand-chip {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: var(--tint);
  border-radius: 8px;
  padding: 8px 16px;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: var(--shadow);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.brand-logo:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.brand-logo img {
  height: 24px;
  width: auto;
  display: block;
}
.brand-logo img[src$=".png"] {
  height: 27px;
}
.brand-more {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: 1px dashed var(--line-strong);
  border-radius: 11px;
}

/* ---------- Testimonials ---------- */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tst-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tst-card .stars {
  color: #e0a52f;
  font-size: 14px;
  letter-spacing: 1px;
}
.tst-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}
.tst-who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.tst-who .av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.tst-who b {
  font-size: 14px;
  display: block;
  color: var(--ink);
}
.tst-who span {
  font-size: 12px;
  color: var(--faint);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #081634;
  color: #b9c4dc;
  padding: 60px 0 28px;
  margin-top: 8px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .fname {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 6px;
}
.footer-brand .fname span {
  color: var(--brand-bright);
}
.footer-brand .frule {
  height: 3px;
  width: 120px;
  border-radius: 3px;
  background: var(--signature);
  margin: 10px 0 18px;
}
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.65;
  color: #8b98b6;
  max-width: 320px;
  margin: 0 0 18px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #2b3a5e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}
.footer-social a:hover {
  background: var(--brand);
  border-color: var(--brand);
}
.footer-social svg {
  width: 17px;
  height: 17px;
  color: #cdd6ea;
}
.footer-col h5 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: #8b98b6;
  padding: 6px 0;
  transition: color 0.15s ease;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid #1c2a4a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12.5px;
  color: #6c7a9c;
  margin: 0;
}
.pay-badges {
  display: flex;
  gap: 8px;
  align-items: center;
}
.pay-badges span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #c2cce0;
  background: #14223f;
  border: 1px solid #25345a;
  border-radius: 5px;
  padding: 5px 9px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .primary-nav {
    gap: 20px;
  }
  .product-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .cat-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .hero-meta {
    gap: 20px;
  }
  .mega-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 920px) {
  .primary-nav {
    display: none;
  }
  .hamburger {
    display: inline-flex;
  }
  .search-pill {
    width: 44px;
    padding: 0;
    justify-content: center;
  }
  .search-pill input {
    display: none;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 36px 0 44px;
  }
  .hero-figure {
    order: -1;
    aspect-ratio: 16 / 10;
  }
  .gcc {
    grid-template-columns: 1fr;
  }
  .gcc-banner {
    min-height: 240px;
  }
  .promo {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }
  .promo-media {
    margin-top: 26px;
  }
  .promo-media .tile {
    margin: 0 auto;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 26px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 680px) {
  .container {
    padding: 0 18px;
  }
  .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .announce .hide-sm {
    display: none;
  }
  .announce .container {
    gap: 16px;
  }
  /* gotcha #3: reset min-width + flex on mobile so stacked banners don't stay side-by-side */
  .gcc,
  .gcc-banner,
  .gcc-products {
    width: 100%;
    min-width: 0;
  }
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  /* bestsellers: swipeable carousel on mobile (no orphan card, shows all) */
  .product-row {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 -18px;
    padding: 4px 18px 12px;
  }
  .product-row::-webkit-scrollbar {
    display: none;
  }
  .product-row {
    scrollbar-width: none;
  }
  .product-row .product-card {
    flex: 0 0 70%;
    scroll-snap-align: start;
  }
  /* trusted brands: label on its own centered line above the logos */
  .brand-strip .lbl {
    width: 100%;
    text-align: center;
    margin: 0 0 2px;
  }
  .gcc-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .gcc-products .product-card:nth-child(3) {
    display: none;
  } /* 2-up on mobile per spec */
  .tst-grid {
    grid-template-columns: 1fr;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero-meta {
    gap: 22px;
  }
  /* mobile header: flex layout (the auto/1fr grid mis-sizes here) + drop account/wishlist */
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .brand,
  .header-actions {
    flex: 0 0 auto;
  }
  .header-actions {
    gap: 6px;
  }
  .header-actions .icon-btn[aria-label="Account"],
  .header-actions .icon-btn[aria-label="Wishlist"] {
    display: none;
  }
  /* feature banner (mobile portrait crop): products up top, copy over a bottom scrim */
  .feature-hero .feature-banner {
    min-height: 566px;
    align-items: flex-end;
  }
  .feature-banner img {
    object-position: center top;
  }
  .feature-scrim {
    background: linear-gradient(
      0deg,
      rgba(4, 16, 46, 0.98) 0%,
      rgba(4, 16, 46, 0.92) 30%,
      rgba(4, 16, 46, 0.6) 52%,
      rgba(4, 16, 46, 0.2) 72%,
      rgba(4, 16, 46, 0) 88%
    );
  }
  .feature-copy {
    padding: 26px 22px 30px;
    max-width: 100%;
  }
  .feature-copy h1 {
    font-size: 34px;
  }
  .feature-copy .feature-sub {
    max-width: 100%;
  }
  .feature-hero .feature-cta {
    margin-bottom: 22px;
  }
  .feature-hero .feature-cta .btn-ghost-light {
    display: none;
  }
  .feature-meta {
    gap: 22px;
  }
}
@media (max-width: 420px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-meta strong {
    font-size: 20px;
  }
}
#notice {
  padding: 0px !important;
}

.section:has(.ProductGridCollection-component) {
  max-width: 1270px !important;
  margin: auto !important;
}
.ProductGridCollection-component {
  position: relative;
}
.ProductGridCollection-component .shop-all {
  position: absolute;
  top: 20px;
  right: 40px;
}
.shop-all .shop-all-link {
  background: transparent !important;
  color: #0b3dae !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border: none !important;
}
.shop-all-link {
  position: relative;
}

.heading-title {
  font-family: var(--ff-display) !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
  font-size: clamp(26px, 3.2vw, 36px) !important;
  line-height: 1.08 !important;
  margin: 0 !important;
  color: var(--ink) !important;
  text-align: left !important;
  margin-bottom: 24px !important;
}
.ProductGridCollection-component .heading {
  position: relative;
  padding-top: 32px;
}

.ProductGridCollection-component .heading::before {
  content: "MOST LOVED";
  position: absolute;
  top: 0;
  left: 70px;
  transform: translateX(-50%);
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.ProductGridCollection-component .section-spacing {
  margin-top: 0 !important;
}
.product-card {
  padding: 14px !important;
}
.product-swiper-slide {
  border-radius: 14px !important;
}
.product-card-info {
  height: auto !important;
}
.product-card:hover .product-card-info {
  transform: none !important;
}
.product-card .product_slide-cta .pr-plus-minus-button,
.product-card .product_slide-cta .sh-product-plus-minus-button,
.pr-outlined-button,
.pr-plus-minus-button {
  margin-top: 12px !important;
  height: 42px !important;
  border-radius: 22px !important;
  border: 1px solid var(--line-strong) !important;
  background: #fff !important;
  color: var(--ink) !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease !important;
}
.product-card .product_slide-cta .pr-plus-minus-button:hover,
.product-card .product_slide-cta .sh-product-plus-minus-button:hover {
  background: var(--brand) !important;
  color: #fff !important;
  border-color: var(--brand) !important;
}
.product-swiper {
  padding: 8px !important;
}
.ProductInfiniteScroll-component .section-spacing {
  margin-top: 0 !important;
}
.ProductInfiniteScroll-component .grid {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

@media (max-width: 1240px) {
  .ProductInfiniteScroll-component .grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1024px) {
  .ProductInfiniteScroll-component .grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .ProductInfiniteScroll-component .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 480px) {
  .ProductInfiniteScroll-component .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
.ProductInfiniteScroll-component .product-swiper-slide {
  width: calc(20% - 9.6px) !important; /* 5 columns */
}

@media (max-width: 1024px) {
  .ProductInfiniteScroll-component .product-swiper-slide {
    width: calc(25% - 9px) !important; /* 4 columns */
  }
}

@media (max-width: 768px) {
  .ProductInfiniteScroll-component .product-swiper-slide {
    width: calc(33.333% - 8px) !important; /* 3 columns */
  }
}

@media (max-width: 576px) {
  .ProductInfiniteScroll-component .product-swiper-slide {
    width: calc(50% - 6px) !important; /* 2 columns */
  }
}
.ProductInfiniteScroll-component {
  max-width: 1280px !important;
  margin: auto !important;
}
.header-transparent,
.header-solid,
.luxury-header {
  background-color: #fff !important;
}
.header-transparent {
  position: relative !important;
  top: 0px !important;
}

.desktop-nav {
  display: flex !important;
}
.lucide-shopping-bag,
.lucide-heart,
.lucide-search,
.lucide-user,
.lucide-menu {
  stroke: #000 !important;
}

#searchbar {
  color: #000 !important;
}
.search-container:before {
  background-color: #000 !important;
}
.search-btn-close svg {
  stroke: #000 !important;
}
.badge-icon-count {
  background-color: #000 !important;
  color: #fff !important;
}
.product-detail-grid .product-info {
  padding: 16px !important;
}
.related-products .product-swiper-slide {
  width: calc(25% - 16px) !important;
}
@media(max-width: 1024px) {
  .related-products .product-swiper-slide {
    width: calc(33.333% - 16px) !important;
  }
}
@media(max-width: 560px) {
  .related-products .product-swiper-slide {
    width: calc(50% - 16px) !important;
  }
}

.related-products-button {
  background-color: transparent !important;
  color: #0b3dae !important;
  border: none !important;
}
/* First button hover */
.self-stretch button:first-child:hover {
  background-color: #0b3dae !important;
  color: #fff !important;
}

.items-stretch > button:last-child {
  background-color: #0b3dae !important;
  color: #fff !important;
  border-color: #0b3dae !important;
}
.product-card-sale-price {
  color: var(--price) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
}
#sh-collection-6a38e9f9b8a8007c421def78 .banner-content {
  display: none !important;
}
/* Main content container */
.absolute.inset-0.flex.items-center.justify-center {
  justify-content: flex-start !important;
  align-items: flex-end !important;
  padding: 0 32px 48px !important;
}

/* Content wrapper */
.absolute.inset-0 .text-center {
  text-align: left !important;
  position: static !important;
  max-width: 300px !important;
  width: 100%;
}

/* Heading */
.absolute.inset-0 .heading {
  color: #fff !important;
  font-size: 20px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  margin-bottom: 16px !important;
}

/* Description */
.absolute.inset-0 .caption {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  text-align: left !important;
}

/* Button becomes text link */
.absolute.inset-0 .shop-now-button {
  background: transparent !important;
  color: #fff !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
  min-width: auto !important;
  width: auto !important;
  margin-top: 12px !important;
}

/* Arrow */
.absolute.inset-0 .shop-now-button::after {
  content: "→";
  text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
  .absolute.inset-0.flex.items-center.justify-center {
    padding: 0 24px 32px !important;
  }

  .absolute.inset-0 .heading {
    font-size: 24px !important;
  }

  .absolute.inset-0 .caption {
    font-size: 13.5px !important;
  }

  .absolute.inset-0 .shop-now-button {
    font-size: 14px !important;
  }
}
.banner {
  border-radius: 14px !important;
}
.banner-image-backdrop {
  background: transparent !important;
}
.GenericCollectionCard-component {
  max-width: 1300px !important;
  margin: auto !important;
  margin-top: -70px !important;
}
.backdrop-brightness-50 {
  backdrop-filter: unset !important;
}
.swiper-backface-hidden {
  padding: 0px !important;
}
.product-collection-container {
  padding: 0px !important;
  padding-left: 16px !important;
}
.logo {
  width: 64px !important;
  height: 64px !important;
}
@media (max-width: 680px) {
  .desktop-nav {
    display: none !important;
  }
  .ProductGridCollection-component .shop-all {
    position: absolute !important;
    top: -24px !important;
    right: -11px !important;
  }
  .sh-generic-collection-card {
    padding: 0px !important;
  }
  .GenericCollectionCard-component .page-container {
    margin-right: -20px !important;
  }
  .product-collection-container {
    padding: 0px !important;
    padding-left: 0px !important;
  }
}
@media (max-width: 680px) {
  .section {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
