/* Phase A — Home conversion refresh (Montserrat + mobile hero + discovery) */

:root {
  --font-heading: 'Montserrat', -apple-system, sans-serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;
}

body { font-weight: 400; }

.nav-link,
.nav-icon-btn,
.btn { font-weight: 600; }

.hero-title { font-weight: 800; }

.section-title,
.trust-item h4,
.product-name { font-weight: 700; }

.product-brand,
.hero-eyebrow,
.hero-location { font-weight: 500; }

.hero-subcopy,
.trust-item p,
.text-muted { font-weight: 400; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: nowrap;
}

.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-text);
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-icon-btn:hover,
.nav-icon-btn:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.nav-icon-btn:focus-visible,
.cart-btn:focus-visible,
.btn:focus-visible,
.discovery-tile:focus-visible {
  outline: 2px solid rgba(197, 168, 128, 0.7);
  outline-offset: 2px;
}

.cart-btn {
  width: 44px;
  height: 44px;
  justify-content: center;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.5rem 2.5rem;
  align-items: center;
  max-width: 1080px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 32rem;
}

.hero-intro { margin: 0; }
.hero-stage {
  justify-self: end;
  width: min(100%, 340px);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.6rem, 4.6vw, 4.35rem);
  margin-bottom: 0.65rem;
  letter-spacing: -0.04em;
  font-weight: 800;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.72) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subcopy {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  margin-bottom: 0;
  font-weight: 400;
  max-width: 34ch;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
}

.hero-location i {
  width: 14px;
  height: 14px;
  color: #e25555;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.hero-btns .btn-primary { font-weight: 700; }

.hero-secondary-link {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.hero-secondary-link:hover,
.hero-secondary-link:focus-visible {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.hero-carousel-card {
  background: var(--color-surface);
  isolation: isolate;
  contain: layout paint;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45), 0 0 28px rgba(255, 255, 255, 0.02);
}

.hero-carousel-img {
  object-fit: cover;
  object-position: center;
  transition: opacity 1.5s ease-in-out;
  will-change: opacity;
  backface-visibility: hidden;
  opacity: 0;
}

.hero-carousel-img.active {
  z-index: 1;
  opacity: 1;
}

.trust-section { padding: 1.85rem 0 2.35rem; }
.trust-item { gap: 0.75rem; }
.trust-item h4 { font-weight: 700; }

/* Desktop trust strip — light rhythm, not cards */
@media (min-width: 769px) {
  .trust-section { padding: 1.35rem 0 1.7rem; }
  .c8-trust-grid {
    gap: 1.1rem 1.35rem;
    align-items: start;
  }
  .trust-item {
    gap: 0.5rem;
    align-items: center;
    text-align: center;
  }
  .trust-item h4 {
    max-width: 16ch;
    margin: 0 auto 0.1rem;
    line-height: 1.3;
    font-size: 0.78rem;
  }
  .trust-item p {
    max-width: 22ch;
    margin: 0 auto;
    line-height: 1.35;
    font-size: 0.78rem;
  }
  .trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 1.5rem;
  }

  .trust-icon-svg {
    width: 20px;
    height: 20px;
    display: block;
  }
}

.home-featured { padding: 3rem 24px 3.25rem; }

.home-featured .section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
}

.home-featured .product-grid {
  gap: 1.35rem 1.15rem;
  max-width: 1080px;
  margin: 0 auto;
}

.home-product-card {
  border-radius: var(--radius-lg);
}

.home-product-card .product-image-wrap {
  border-radius: 0;
  overflow: hidden;
  background: var(--color-surface-light);
  border: 0;
  aspect-ratio: 4 / 5;
  margin-bottom: 0;
  cursor: pointer;
  position: relative;
}

.home-product-card .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-product-card .product-info {
  padding: 1rem 1.1rem 1.15rem;
}

.home-product-card .product-brand {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.home-product-card .product-name {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
  cursor: pointer;
  height: auto;
  -webkit-line-clamp: 2;
}

.home-product-card .product-actions {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  align-items: stretch;
}

.home-product-card .home-product-pdp,
.home-product-card .home-product-atc {
  width: 100%;
  min-height: 40px;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  justify-content: center;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  white-space: nowrap;
  border-radius: var(--radius-md);
}

/* Desktop Home keeps classic card chrome; mobile tile helpers stay inert */
.home-product-hit,
.home-product-copy {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
}
.home-product-add,
.home-product-oos-badge,
.home-price-tile,
.home-product-meta {
  display: none;
}
.home-product-desktop-chrome {
  display: block;
}
.trust-label-short {
  display: none;
}

.home-featured-more { margin-top: 1.75rem; }

.home-discovery { padding: 4rem 24px 2rem; }

.home-discovery .section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  font-weight: 700;
}

.home-discovery .section-lead {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.discovery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.discovery-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 148px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(210, 225, 245, 0.12);
  text-decoration: none;
  color: #fff;
  background: rgba(14, 24, 42, 0.72);
  padding: 14px;
  gap: 10px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.discovery-tile-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.95;
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(120, 160, 220, 0.22), transparent 55%),
    linear-gradient(160deg, rgba(18, 30, 52, 0.2), rgba(8, 14, 26, 0.55));
}

.discovery-tile-icon {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  color: rgba(220, 230, 245, 0.88);
  flex-shrink: 0;
}

.discovery-tile-label,
.discovery-tile span.discovery-tile-label {
  position: relative;
  z-index: 1;
  left: auto;
  right: auto;
  bottom: auto;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

/* Tone family — one visual system, differentiated atmosphere only */
.discovery-tile--arabes .discovery-tile-atmosphere {
  background:
    radial-gradient(90% 80% at 80% 10%, rgba(197, 168, 128, 0.22), transparent 50%),
    linear-gradient(155deg, rgba(36, 28, 18, 0.55), rgba(10, 16, 28, 0.75));
}
.discovery-tile--disenador .discovery-tile-atmosphere {
  background:
    radial-gradient(90% 80% at 15% 0%, rgba(210, 220, 235, 0.2), transparent 52%),
    linear-gradient(160deg, rgba(22, 30, 46, 0.5), rgba(8, 14, 26, 0.8));
}
.discovery-tile--dulces .discovery-tile-atmosphere {
  background:
    radial-gradient(90% 80% at 70% 0%, rgba(220, 150, 140, 0.22), transparent 55%),
    linear-gradient(160deg, rgba(42, 24, 32, 0.45), rgba(10, 16, 28, 0.78));
}
.discovery-tile--frescos .discovery-tile-atmosphere {
  background:
    radial-gradient(90% 80% at 20% 0%, rgba(120, 200, 210, 0.2), transparent 55%),
    linear-gradient(160deg, rgba(16, 36, 44, 0.5), rgba(8, 14, 26, 0.78));
}
.discovery-tile--noche .discovery-tile-atmosphere {
  background:
    radial-gradient(80% 70% at 85% 15%, rgba(90, 110, 180, 0.22), transparent 50%),
    linear-gradient(165deg, rgba(8, 12, 28, 0.7), rgba(4, 8, 18, 0.9));
}
.discovery-tile--oficina .discovery-tile-atmosphere {
  background:
    radial-gradient(90% 80% at 10% 0%, rgba(160, 180, 210, 0.14), transparent 55%),
    linear-gradient(160deg, rgba(20, 28, 42, 0.55), rgba(10, 16, 28, 0.82));
}
.discovery-tile--regalo .discovery-tile-atmosphere {
  background:
    radial-gradient(90% 80% at 75% 0%, rgba(200, 170, 140, 0.2), transparent 55%),
    linear-gradient(160deg, rgba(34, 26, 30, 0.5), rgba(10, 16, 28, 0.8));
}
.discovery-tile--calor .discovery-tile-atmosphere {
  background:
    radial-gradient(90% 80% at 30% 0%, rgba(230, 170, 90, 0.2), transparent 55%),
    linear-gradient(160deg, rgba(42, 28, 16, 0.45), rgba(10, 16, 28, 0.8));
}
.discovery-tile--frio .discovery-tile-atmosphere {
  background:
    radial-gradient(90% 80% at 70% 0%, rgba(140, 180, 230, 0.22), transparent 55%),
    linear-gradient(160deg, rgba(14, 28, 48, 0.55), rgba(8, 14, 26, 0.82));
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .discovery-tile {
    background: rgba(14, 24, 42, 0.42);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    backdrop-filter: blur(14px) saturate(1.2);
  }
}

.discovery-tile:hover .discovery-tile-icon,
.discovery-tile:focus-visible .discovery-tile-icon {
  color: #fff;
}

.discovery-tile:focus-visible {
  outline: 2px solid rgba(74, 127, 212, 0.65);
  outline-offset: 2px;
}

.hero-brand-mark {
  display: none;
}

.home-advisor { padding: 4rem 24px 5rem; }

.advisor-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 30%, rgba(197, 168, 128, 0.08), transparent 45%),
    var(--color-surface);
}

.advisor-panel h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.advisor-panel p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  max-width: 40ch;
  line-height: 1.5;
}

.advisor-visual {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 280px;
  margin-left: auto;
  border: 1px solid var(--glass-border);
  background: var(--color-bg);
}

.advisor-panel-icon {
  display: none;
}

.advisor-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Desktop WA sizing only — mobile size/placement owned by css/style.css */
@media (min-width: 861px) {
  #floating-wa.floating-wa {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: var(--lpvp-z-wa, 50);
    width: 52px;
    height: 52px;
  }
}

.luxury-loader.instant-hide {
  transition: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

@media (prefers-reduced-motion: reduce) {
  .loader-logo,
  .loader-content::before { animation: none !important; }
  .luxury-loader { transition: opacity 0.2s ease, visibility 0.2s ease; }
  .hero-carousel-img { transition: opacity 0.35s ease; }
  .hero-glow { animation: none; }
}

/* C8 M3 — Mobile Home premium reset (≤768). Desktop ≥769 unchanged. */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 16px;
    align-items: flex-start;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
    padding-top: 8px;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
  }

  /* Subtle mark — does not compete with header logo (header remains primary identity) */
  .hero-brand-mark {
    display: block;
    position: absolute;
    top: 4px;
    left: 16px;
    width: 28px;
    height: 28px;
    object-fit: contain;
    opacity: 0.55;
    pointer-events: none;
    z-index: 1;
  }

  .hero-copy {
    align-items: center;
    gap: 12px;
    max-width: none;
  }

  .hero-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
    text-transform: uppercase;
  }

  .hero-title {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    line-height: 1.1;
  }

  .hero-subcopy {
    font-size: 14px;
    font-weight: 400;
    max-width: 34ch;
    margin: 0 auto;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .hero-actions {
    align-items: center;
    gap: 12px;
    margin-top: 0;
    width: 100%;
  }

  .hero-btns {
    width: auto;
    max-width: 100%;
    flex-direction: column;
    gap: 0;
    order: 1;
  }

  .hero-btns .btn {
    width: auto;
    min-width: 220px;
    min-height: 50px;
    height: 50px;
    padding: 0 24px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    justify-content: center;
  }

  .hero-btns .btn-primary {
    font-weight: 600;
    background: #fff;
    color: #0a1425;
  }

  .hero-btns .btn-outline {
    display: none !important;
  }

  .hero-secondary-link {
    order: 2;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(200, 215, 235, 0.82);
    border-bottom: 0;
    padding: 8px 4px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-secondary-link:hover,
  .hero-secondary-link:focus-visible {
    color: #fff;
    border-bottom-color: transparent;
  }

  /* Editorial product stage — no heavy boxed card */
  .hero-stage {
    width: min(58vw, 220px);
    max-width: 220px;
    margin: 0 auto;
    justify-self: center;
  }

  .hero-carousel-card {
    width: 100%;
    max-width: none;
    margin: 0;
    aspect-ratio: 4 / 5;
    border-radius: 22px;
    background: rgba(12, 20, 36, 0.55);
    border: 1px solid rgba(210, 225, 245, 0.1);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 16px 36px rgba(0, 0, 0, 0.28);
    overflow: hidden;
  }

  .hero-location {
    display: none;
  }

  /* Confidence rail — deliberate user-driven horizontal scroll (no doc overflow) */
  .trust-section {
    padding: 8px 0 16px;
    overflow-x: clip;
  }

  .trust-section .container {
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }

  body[data-page="home"] .c8-trust-grid.trust-grid {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 16px;
    scrollbar-width: none;
    padding: 0 16px;
    margin: 0;
    grid-template-columns: none !important;
    overscroll-behavior-x: contain;
  }

  body[data-page="home"] .c8-trust-grid.trust-grid::-webkit-scrollbar {
    display: none;
  }

  body[data-page="home"] .trust-item {
    flex: 0 0 auto;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    height: 36px;
    min-height: 36px;
    max-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(14, 24, 42, 0.82);
    border: 1px solid rgba(210, 225, 245, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
    text-align: left;
    box-sizing: border-box;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    body[data-page="home"] .trust-item {
      background: rgba(16, 28, 48, 0.48);
      -webkit-backdrop-filter: blur(14px) saturate(1.3);
      backdrop-filter: blur(14px) saturate(1.3);
    }
  }

  body[data-page="home"] .trust-icon {
    width: 16px;
    height: 16px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(200, 215, 235, 0.82);
    line-height: 0;
    overflow: visible;
  }

  body[data-page="home"] .trust-icon-svg {
    width: 15px;
    height: 15px;
    display: block;
    flex-shrink: 0;
    overflow: visible;
  }

  body[data-page="home"] .trust-item h4 {
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(235, 240, 248, 0.92);
    white-space: nowrap;
    line-height: 1;
    display: inline-flex;
    align-items: center;
  }

  body[data-page="home"] .trust-item p,
  body[data-page="home"] .trust-label-long {
    display: none !important;
  }

  body[data-page="home"] .trust-label-short {
    display: inline !important;
  }

  /* Featured — M2 product tiles */
  .home-featured {
    padding: 24px 16px 16px;
  }

  .home-featured .section-title {
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    margin: 0 0 16px;
  }

  .home-featured .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px 12px !important;
    padding: 0 !important;
    max-width: none;
  }

  .home-product-card.home-product-tile {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }

  .home-product-card.home-product-tile:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .home-product-media.product-image-wrap {
    aspect-ratio: 1 / 1.05 !important;
    padding: 10px !important;
    border-radius: 22px !important;
    /* C8 M7 — dissolve packshot field into home navy */
    background: #02111f !important;
    border: 0 !important;
    box-shadow: inset 0 0 52px 30px var(--color-bg, #0a1425) !important;
    overflow: hidden !important;
    margin: 0 !important;
    isolation: isolate;
  }

  .home-product-hit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .home-product-card .product-image {
    object-fit: contain !important;
    transform: scale(1.04) !important;
    transform-origin: center center;
    filter: none !important;
    -webkit-mask-image:
      linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%) !important;
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%) !important;
    mask-composite: intersect;
  }

  .home-product-add {
    display: inline-flex !important;
    position: absolute;
    right: 8px;
    bottom: 8px;
    z-index: 2;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #f5f8fc;
    background: rgba(14, 24, 42, 0.88);
    border: 1px solid rgba(210, 225, 245, 0.16);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 4px 12px rgba(0, 0, 0, 0.22);
    padding: 0;
    cursor: pointer;
  }

  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .home-product-add {
      background: rgba(16, 28, 48, 0.55);
      -webkit-backdrop-filter: blur(12px) saturate(1.3);
      backdrop-filter: blur(12px) saturate(1.3);
    }
  }

  .home-product-add i {
    width: 18px;
    height: 18px;
  }

  .home-product-oos-badge {
    display: inline-flex !important;
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 1;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(235, 240, 248, 0.9);
    background: rgba(8, 12, 22, 0.72);
    border: 1px solid rgba(210, 225, 245, 0.1);
  }

  .home-product-card .product-info {
    padding: 12px 4px 0 !important;
    background: transparent !important;
  }

  .home-product-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .home-product-card .product-brand {
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    margin: 0 0 4px !important;
    color: rgba(180, 195, 215, 0.78) !important;
  }

  .home-product-card .product-name {
    font-family: var(--font-body), 'Montserrat', sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    margin: 0 0 4px !important;
    line-height: 1.25 !important;
    height: auto !important;
    max-height: 2.4em !important;
    letter-spacing: 0 !important;
  }

  .home-product-meta {
    display: block !important;
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 400;
    color: rgba(175, 190, 210, 0.72);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .home-price-tile {
    display: block !important;
    margin: 0 !important;
  }

  .home-price-tile .product-price {
    font-size: 17px !important;
    font-weight: 600 !important;
    margin: 0 !important;
  }

  .home-product-desktop-chrome {
    display: none !important;
  }

  .home-featured-more {
    margin-top: 24px;
  }

  .home-featured-more .btn {
    min-height: 44px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    padding: 0 16px;
  }

  /* Discovery — navigation tiles (icons + atmosphere), intentional 9th row */
  .home-discovery {
    padding: 24px 16px 16px;
  }

  .home-discovery .section-title {
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px;
    letter-spacing: 0;
  }

  .home-discovery .section-lead {
    text-align: left;
    font-size: 13px;
    font-weight: 400;
    margin: 0 0 16px;
    max-width: none;
  }

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

  .discovery-tile {
    min-height: 96px;
    height: 100%;
    border-radius: 16px;
    border-color: rgba(210, 225, 245, 0.1);
    padding: 14px 12px;
    gap: 8px;
  }

  .discovery-tile-icon {
    width: 20px;
    height: 20px;
  }

  .discovery-tile-label,
  .discovery-tile span.discovery-tile-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }

  /* Final row (9th): full-width intentional band, not orphaned half-cell */
  .discovery-tile--final {
    grid-column: 1 / -1;
    min-height: 72px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 14px 16px;
  }

  /* Advisor — breathing only; body already reserves bottom-nav (no double safe-area) */
  .home-advisor {
    padding: 16px 16px 28px;
  }

  body[data-page="home"] .site-footer {
    margin-top: 1.5rem;
    padding: 2.5rem 0 calc(1.25rem + env(safe-area-inset-bottom, 0px));
  }

  .advisor-panel {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 16px 16px;
    border-radius: 20px;
    text-align: left;
    background: rgba(14, 24, 42, 0.78);
    border: 1px solid rgba(210, 225, 245, 0.16);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 10px 28px rgba(0, 0, 0, 0.18);
  }

  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .advisor-panel.advisor-panel--feature {
      background: rgba(16, 28, 48, 0.52);
      -webkit-backdrop-filter: blur(16px) saturate(1.25);
      backdrop-filter: blur(16px) saturate(1.25);
    }
  }

  .advisor-panel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid rgba(210, 225, 245, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(210, 222, 240, 0.9);
    line-height: 0;
  }

  .advisor-panel-kicker {
    margin: 0 0 4px !important;
    font-size: 12px !important;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(180, 195, 220, 0.78);
  }

  .advisor-panel h2 {
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin: 0 0 6px;
    color: rgba(248, 250, 252, 0.98);
  }

  .advisor-panel-lead {
    font-size: 14px !important;
    margin: 0 0 4px !important;
    color: rgba(210, 220, 235, 0.88);
  }

  .advisor-panel-meta {
    font-size: 13px !important;
    margin: 0 0 14px !important;
    color: rgba(175, 190, 215, 0.78);
  }

  .advisor-panel p {
    font-size: 14px;
    margin: 0 0 16px;
    margin-left: 0;
    margin-right: 0;
  }

  .advisor-panel .btn.advisor-panel-cta,
  .advisor-panel .btn {
    min-height: 44px;
    height: 44px;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    width: auto;
    max-width: 100%;
  }

  .advisor-visual {
    display: none;
  }

  /* WA placement owned by css/style.css (bottom-right above nav).
     Do not park assist FAB over hero CTA / featured quick-add via top chrome. */

  .brand-logo img {
    transform: none !important;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-stage {
    width: min(54vw, 180px);
    max-width: 180px;
  }

  .hero-btns .btn {
    min-width: 0;
    width: 100%;
  }

  .home-featured .product-grid {
    gap: 20px 8px !important;
  }

  .home-product-card .product-name {
    font-size: 14px !important;
  }
}

@media (min-width: 769px) {
  .hero-secondary-link.mobile-only { display: none; }
}

@media (max-width: 768px) {
  .hero-secondary-link.mobile-only { display: inline-flex; }
}

@media (min-width: 769px) {
  .hero {
    min-height: auto;
    padding: 5.5rem 0 1.5rem;
  }
  .hero-copy { max-width: 36rem; }
  .hero-actions { gap: 0.85rem; }
  .hero-btns {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-btns .btn {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
    min-height: 46px;
    padding: 0.85rem 1.2rem;
    letter-spacing: 0.1em;
    font-size: 0.76rem;
    text-transform: uppercase;
  }
  .hero-btns .btn-primary { font-weight: 700; }
  .hero-btns .btn-outline { font-weight: 600; }
  .hero-subcopy { margin-bottom: 0; }

  .home-product-add,
  .home-product-oos-badge,
  .home-price-tile,
  .home-product-meta {
    display: none !important;
  }
  .home-product-copy {
    display: contents;
  }
  .home-product-desktop-chrome {
    display: block;
  }
  .trust-label-short {
    display: none !important;
  }
  .trust-label-long {
    display: inline;
  }
}
