/* Product Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.product-card {
  background: var(--color-surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.product-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  background: #0d172a;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.6s ease, opacity 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
  opacity: 1;
}

.product-info {
  padding: 1.15rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-brand {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.4rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.6em;
}

.product-details {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  display: flex;
  gap: 8px;
  align-items: center;
}

.product-details .badge {
  border: 1px solid var(--glass-border);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.02);
}

.product-price-block {
  margin-top: auto;
  margin-bottom: 1rem;
}

.product-price-block .product-price {
  margin-bottom: 0.2rem;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text);
}

.product-price--detail {
  font-size: 1.5rem;
  font-weight: 300;
}

.product-price--consult {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.product-price-block--detail {
  margin-bottom: 2rem;
}

.product-price-block--detail .cash-price {
  font-size: 0.95rem;
}

.product-price-block--quiz {
  margin-bottom: 1.5rem;
}

.product-price-block--quiz .product-price {
  font-size: 1.25rem;
  font-weight: 300;
}

.product-price-block--cart {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.product-price-block--cart .product-price {
  font-size: 0.9rem;
  font-weight: 500;
}

.product-price-block--cart .cash-price {
  font-size: 0.72rem;
}

.cash-price {
  font-size: 0.82rem;
  font-weight: 500;
  color: #8ec5e8;
  opacity: 0.9;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.product-actions {
  display: flex;
  gap: 8px;
  width: 100%;
}

.product-actions--compact {
  display: none;
}

.product-meta-line {
  display: none;
}

.product-tile-hit,
.product-tile-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%;
}

.product-tile-hit:focus-visible,
.product-tile-copy:focus-visible,
.product-tile-add:focus-visible {
  outline: 2px solid rgba(140, 180, 230, 0.55);
  outline-offset: 2px;
}

.product-tile-add {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.product-tile-oos {
  display: none;
}

.product-price-block--tile {
  display: none;
}

.product-card-price-desktop {
  display: block;
}

.product-stock-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 0.4rem;
  border-radius: 50%;
  background: #5ecf8e;
  vertical-align: middle;
  box-shadow: 0 0 0 2px rgba(94, 207, 142, 0.18);
}

.product-stock-label {
  margin-left: 0.35rem;
  font-size: inherit;
  color: rgba(160, 210, 180, 0.85);
}

.product-actions .btn {
  padding: 10px 0;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
  flex: 1;
}

.product-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.06);
  color: var(--color-text-muted);
}

.product-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
}

.product-actions .btn-primary {
  background: var(--color-text);
  color: var(--color-bg);
}

.product-actions .btn-primary:hover {
  background: var(--color-chrome);
}

@media (max-width: 600px) {
  /* Prevent main website content from being cut off by the navigation bar */
  body {
    padding-bottom: calc(var(--lpvp-bottom-nav-h, 48px) + env(safe-area-inset-bottom, 0px)) !important;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 4px !important;
  }
  
  .product-card {
    background: var(--color-surface) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
  }

  .product-image-wrap {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important; /* Uniform Pod layout */
    background: transparent !important;
    padding: 6px !important; /* Reduced padding to make bottle images ~20% larger */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .product-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important; /* Complete centered bottles */
    opacity: 1 !important;
    transform: none !important;
  }

  .product-info {
    padding: 12px 10px 10px 10px !important; /* Luxury compact padding */
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: left !important;
    flex-grow: 1 !important;
  }

  .product-brand {
    font-size: 0.65rem !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: var(--color-text-muted) !important;
    margin-bottom: 2px !important;
    text-align: left !important;
  }

  .product-name {
    font-family: var(--font-heading) !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    color: var(--color-text) !important;
    margin-bottom: 6px !important;
    line-height: 1.25 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    height: 2.5em !important; /* Exactly clamp to 2 lines */
    text-align: left !important;
  }

  .product-details {
    font-size: 0.6rem !important;
    color: var(--color-text-muted) !important;
    margin-bottom: 8px !important;
    display: flex !important;
    gap: 4px !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  .product-details .badge {
    border: 1px solid var(--glass-border) !important;
    padding: 2px 6px !important;
    border-radius: var(--radius-sm) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    font-size: 0.58rem !important;
    text-transform: capitalize !important;
    color: var(--color-text-muted) !important;
  }

  .product-price-block {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
    text-align: left !important;
  }

  .product-price {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--color-text) !important;
    margin-bottom: 4px !important;
    letter-spacing: 0.02em !important;
  }

  .cash-price {
    font-size: 0.75rem !important;
  }

  .product-actions {
    display: flex !important;
    gap: 6px !important;
    width: 100% !important;
    margin-top: auto !important;
  }

  .product-actions .btn {
    flex: 1 !important;
    padding: 0 2px !important;
    height: 32px !important;
    font-size: 0.6rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    border-radius: var(--radius-sm) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    transition: background var(--transition-fast), border-color var(--transition-fast) !important;
  }

  /* VER DETALLE: transparent outline */
  .product-actions .btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    background: transparent !important;
    color: #ffffff !important;
  }
  .product-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
  }

  /* AGREGAR: solid luxury white */
  .product-actions .btn-primary {
    background: #ffffff !important;
    color: #0A1425 !important;
    border: none !important;
  }
  .product-actions .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9) !important;
  }
  
  .badge-premium {
    top: 8px !important;
    right: 8px !important;
    font-size: 0.52rem !important;
    padding: 3px 6px !important;
    letter-spacing: 0.05em !important;
  }
}

/* Floating Bottom Mobile Navigation Bar
 *
 * C8 M1 stacking contract (mobile chrome):
 *   content
 *   < PDP sticky ATC        (--lpvp-z-sticky)
 *   < floating WhatsApp     (--lpvp-z-wa)
 *   < filter scrim / sheet  (--lpvp-z-filter-scrim / --lpvp-z-filter-sheet)
 *   < minicart overlay/drawer (--lpvp-z-minicart-overlay / --lpvp-z-minicart)
 *
 * Bottom nav is navigation chrome (not a global top layer). It stays below
 * minicart/filters and is suspended while those overlays are open.
 * --lpvp-bottom-nav-h: reserved height when nav is visible (≤600px).
 */
:root {
  --lpvp-z-sticky: 40;
  --lpvp-z-wa: 50;
  --lpvp-z-bottom-nav: 55;
  --lpvp-z-filter-scrim: 70;
  --lpvp-z-filter-sheet: 75;
  --lpvp-z-minicart-overlay: 90;
  --lpvp-z-minicart: 100;
  --lpvp-bottom-nav-h: 0px;
  --lpvp-chrome-gap: 8px;
}

@media (max-width: 600px) {
  :root {
    /* Compact phone nav band (icons+labels); safe-area added separately */
    --lpvp-bottom-nav-h: 48px;
  }
}

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(var(--lpvp-bottom-nav-h) + env(safe-area-inset-bottom, 0px)) !important;
  background: rgba(7, 14, 26, 0.9) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  display: none; /* hidden on desktop / wider than phone */
  justify-content: space-around;
  align-items: center;
  padding: 2px 8px calc(2px + env(safe-area-inset-bottom, 0px)) 8px !important;
  z-index: var(--lpvp-z-bottom-nav);
  box-shadow: 0 -2px 18px rgba(0, 0, 0, 0.35) !important;
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.18s ease !important;
  transform: translateY(0) !important;
  will-change: transform, opacity !important;
  backface-visibility: hidden !important;
  /* Always hittable when not suspended — no scroll-hide dead zone */
  pointer-events: auto !important;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.mobile-bottom-nav.nav-suspended,
html.lpvp-chrome-overlay-open .mobile-bottom-nav {
  transform: translateY(110%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Legacy class kept inert — scroll-hide removed (iOS LOST_FIRST_TAP) */
.mobile-bottom-nav.nav-hidden {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
html.lpvp-chrome-overlay-open .mobile-bottom-nav.nav-hidden {
  transform: translateY(110%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 600px) {
  .mobile-bottom-nav {
    display: flex !important;
  }
}

/* Mobile menu sheet (bottom-nav Menú) — short transform overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: calc(var(--lpvp-z-bottom-nav) + 20);
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.16s ease, visibility 0.16s ease;
}
.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-overlay[hidden],
.minicart-overlay[hidden],
.catalog-filters-scrim[hidden] {
  display: none !important;
  pointer-events: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
.mobile-menu-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: calc(var(--lpvp-z-bottom-nav) + 21);
  max-height: min(78vh, 520px);
  padding: 16px 18px calc(18px + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 16, 28, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px 18px 0 0;
  transform: translateY(108%);
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu-sheet.is-open {
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.mobile-menu-head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}
.mobile-menu-close {
  appearance: none;
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-menu-close i {
  width: 18px;
  height: 18px;
}
.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu-list a {
  display: block;
  padding: 14px 12px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: 10px;
  min-height: 44px;
}
.mobile-menu-list a:active {
  background: rgba(255, 255, 255, 0.06);
}
.mobile-menu-list a.mobile-menu-legal {
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 220, 180, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0 0 10px 10px;
}

.mobile-nav-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgba(255, 255, 255, 0.38) !important;
  text-decoration: none !important;
  font-size: 0.55rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  transition: color 0.15s ease, transform 0.12s ease !important;
  flex: 1 !important;
  min-height: 44px !important; /* comfortable tap without tall chrome */
  padding: 4px 0 !important;
  gap: 2px !important;
  appearance: none !important;
  background: transparent !important;
  border: 0 !important;
  cursor: pointer !important;
  font-family: inherit !important;
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none !important;
  user-select: none !important;
}

.mobile-nav-icon-wrap {
  position: relative;
  display: inline-flex;
}

.mobile-nav-item i,
.mobile-nav-item .mobile-nav-icon {
  width: 20px !important;
  height: 20px !important;
  margin-bottom: 0 !important;
  stroke-width: 1.5px !important;
  display: block !important;
  flex-shrink: 0 !important;
}

.mobile-nav-item .mobile-nav-icon {
  overflow: visible;
}

/* Active Highlight - Solid elegant white, no gold */
.mobile-nav-item.active {
  color: #ffffff !important;
  font-weight: 500 !important;
  text-shadow: none !important;
}

.mobile-nav-item:active {
  transform: scale(0.96) !important;
}

/* Shopping Cart Badge */
.mobile-nav-badge {
  position: absolute !important;
  top: -6px !important;
  right: -8px !important;
  background: #ffffff !important; /* Premium monochrome white */
  color: #070e1a !important;
  font-size: 0.52rem !important;
  font-weight: 600 !important;
  padding: 1px 4px !important;
  border-radius: 10px !important;
  min-width: 13px !important;
  height: 13px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4) !important;
}


/* MiniCart Drawer — above filter sheet; below nothing critical for conversion */
.minicart-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: var(--lpvp-z-minicart-overlay, 90);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.minicart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.minicart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  height: 100dvh;
  background: var(--color-bg);
  border-left: 1px solid var(--glass-border);
  z-index: var(--lpvp-z-minicart, 100);
  display: flex;
  flex-direction: column;
  transform: translate3d(105%, 0, 0);
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.minicart-drawer.active {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.minicart-header {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  background: var(--color-bg);
}

.minicart-header h3 {
  font-size: 1.5rem;
}

.close-cart {
  position: relative;
  z-index: 3;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color var(--transition-fast);
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border-radius: 12px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  pointer-events: auto;
}

.close-cart i,
.close-cart svg {
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.close-cart:hover {
  color: var(--color-text);
}

.minicart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 1.5rem;
}

.cart-item-img {
  width: 70px;
  height: 90px;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-item-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.qty-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--color-text);
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover {
  border-color: var(--color-text);
}

.minicart-footer {
  padding: 1.5rem;
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--glass-border);
  background: var(--color-surface);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Split WhatsApp Actions */
.wa-split-action {
  border: 1px solid var(--glass-border);
  padding: 1rem;
  margin-bottom: 1rem;
}
.wa-split-action p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* C3 Checkout */
.chk-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.chk-step.is-current {
  color: var(--color-text);
  font-weight: 600;
}
.chk-step.is-done {
  color: var(--lpvp-blue, #4a7fd4);
}
.chk-step-sep { opacity: 0.4; }
.chk-order-id {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}
.chk-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.chk-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.chk-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  width: 100%;
  min-height: 44px;
  padding: 0.9rem 1rem;
  text-align: left;
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--color-text);
  cursor: pointer;
  border-radius: 0;
}
.chk-option.is-selected {
  border-color: var(--lpvp-blue, #4a7fd4);
  background: rgba(74, 127, 212, 0.08);
}
.chk-option-label {
  font-weight: 600;
  font-size: 0.95rem;
}
.chk-option-hint {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
.chk-error {
  color: #f07178;
  font-size: 0.8rem;
  margin: 0.35rem 0 0.75rem;
}
.chk-field.is-invalid {
  border-color: #f07178;
}
.chk-optional {
  color: var(--color-text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.chk-subtotal-block {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
}
.chk-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}
.chk-subtotal-note,
.chk-policy-note,
.chk-muted {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin-top: 0.5rem;
}
.chk-footer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.chk-primary-cta {
  width: 100%;
  min-height: 48px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
/* C8 M6.1 — WhatsApp checkout CTA: premium white + navy, brand-green icon only */
.chk-wa-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: #ffffff;
  color: #0a1425;
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
}
.chk-wa-cta:hover:not(:disabled) {
  background: #f3f6fb;
  color: #0a1425;
  transform: translateY(-1px);
}
.chk-wa-cta:disabled {
  opacity: 0.72;
}
.chk-wa-cta .chk-wa-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--color-whatsapp, #25d366);
  line-height: 0;
}
.chk-wa-cta .chk-wa-icon svg {
  display: block;
}
.chk-back-cta {
  width: 100%;
  min-height: 44px;
}
.chk-review-block {
  border: 1px solid var(--glass-border);
  padding: 1rem;
  margin-bottom: 1rem;
}
.chk-review-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.chk-review-subtotal {
  border-bottom: none;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}
.chk-review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.chk-edit-link {
  background: none;
  border: none;
  color: var(--lpvp-blue, #4a7fd4);
  font-size: 0.75rem;
  text-decoration: underline;
  cursor: pointer;
  min-height: 44px;
  padding: 0 0.35rem;
  vertical-align: middle;
}
.chk-handoff-done {
  text-align: center;
  padding: 2rem 0.5rem;
}
.chk-handoff-done h3 {
  margin-bottom: 0.75rem;
  color: var(--color-whatsapp, #25d366);
}
.cart-item-price-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.cart-unit { color: var(--color-text-muted); }
.cart-line { font-weight: 600; }

/* Form Elements */
.input-group { margin-bottom: 1.5rem; }
.input-group label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.input, .select, .textarea {
  width: 100%;
  background: var(--color-surface);
  border: 1px solid var(--glass-border);
  color: var(--color-text);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.3);
}

/* Badges */
.badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border: 1px solid var(--glass-border);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.badge-premium {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(10, 20, 37, 0.85);
  backdrop-filter: blur(8px);
  color: var(--color-gold);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(197, 168, 128, 0.2);
  z-index: 2;
}

/* Luxury Loader */
.luxury-loader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--color-bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
}

.luxury-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-content::before {
  content: '';
  position: absolute;
  width: 150%; height: 150%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
  filter: blur(20px);
  animation: loaderGlow 2s ease-in-out infinite alternate;
  z-index: 1;
}

.loader-logo {
  height: 80px;
  object-fit: contain;
  z-index: 2;
  animation: loaderPulse 2s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes loaderPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.05); opacity: 1; }
}

@keyframes loaderGlow {
  0% { opacity: 0.5; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.1); }
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: rgba(10, 20, 37, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast.hiding {
  animation: fadeOutDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpFade {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOutDown {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(20px); }
}

/* Floating WhatsApp Refinement */
.floating-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 20, 37, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-whatsapp);
  color: var(--color-whatsapp);
  width: 56px; height: 56px;
  border-radius: 50%;
  position: relative;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(37, 211, 102, 0.1);
}

.floating-wa i {
  width: 24px; height: 24px;
}

.floating-wa:hover {
  background: var(--color-whatsapp);
  color: #000;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(37, 211, 102, 0.3);
}

.wa-tooltip {
  position: absolute;
  right: calc(100% + 16px);
  background: rgba(10, 20, 37, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-wa:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.cart-icon-bump {
  animation: bump 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes bump {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); color: var(--color-gold); }
  100% { transform: scale(1); }
}

/* —— C4 PDP —— */
.pdp {
  padding-top: 100px;
  padding-bottom: 5rem;
}
.pdp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 2.5rem 3rem;
  align-items: start;
  margin-bottom: 2.75rem;
  max-width: 1120px;
}
.pdp-media {
  position: relative;
  background: var(--color-surface-light, var(--color-surface));
  border: 1px solid rgba(180, 200, 230, 0.14);
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.pdp-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-media-oos {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.72);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: var(--radius-lg);
}
.pdp-buy {
  padding-top: 0.25rem;
}
.pdp-brand {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(200, 210, 230, 0.78);
  margin-bottom: 0.45rem;
  font-weight: 500;
}
.pdp-title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.55rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.pdp-meta,
.pdp-descriptors {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0 0 0.85rem;
  line-height: 1.5;
}
.pdp-descriptors {
  color: rgba(220, 228, 240, 0.9);
}
.pdp-buy-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.95rem;
}
.pdp-audience {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(74, 127, 212, 0.4);
  background: rgba(74, 127, 212, 0.12);
  color: rgba(220, 230, 245, 0.96);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pdp-audience--unspecified {
  border-color: rgba(180, 200, 230, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-muted);
}
.pdp-commerce {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}
.pdp-commerce .product-price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}
.pdp-commerce .cash-price {
  margin: 0;
}
.pdp-stock {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border: 1px solid rgba(180, 200, 230, 0.18);
  border-radius: var(--radius-full);
  font-weight: 600;
}
.pdp-stock-dot {
  display: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7dba95;
  flex-shrink: 0;
}
.pdp-stock-text-short { display: none; }
.pdp-stock--in { color: #9ec7b0; }
.pdp-stock--out { color: rgba(255,255,255,0.55); }

/* Compact PDP trust — mobile only; desktop keeps full reassure list */
.pdp-trust-rail {
  display: none;
}
.pdp-reassure-desktop {
  display: block;
}
.pdp-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.pdp-qty-label {
  font-size: 0.88rem;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(220, 228, 240, 0.9);
  font-weight: 500;
}
.pdp-qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.pdp-qty-controls .qty-btn {
  min-width: 40px;
  min-height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(180, 200, 230, 0.2);
  background: rgba(8, 14, 28, 0.55);
  color: #fff;
}
.pdp-qty-input {
  width: 2.75rem;
  min-height: 40px;
  text-align: center;
  background: rgba(8, 14, 28, 0.65);
  border: 1px solid rgba(180, 200, 230, 0.2);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.98rem;
}
.pdp-cta {
  width: 100%;
  min-height: 52px;
  margin-bottom: 0.7rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-md);
}
.pdp-reassure {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: left;
  line-height: 1.45;
  margin: 0 0 1rem;
}
.pdp-reassure-list {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0.95rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border: 1px solid rgba(180, 200, 230, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(10, 18, 34, 0.28);
  box-sizing: border-box;
}
.pdp-reassure-list li {
  position: relative;
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(200, 210, 225, 0.88);
  box-sizing: border-box;
}
.pdp-reassure-list li::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.48em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(74, 127, 212, 0.72);
}
.pdp-assist {
  margin: 0 0 0.15rem;
  padding: 0;
  width: auto;
  min-height: 0;
  text-align: left;
}
.pdp-assist a {
  display: inline;
  color: rgba(170, 200, 240, 0.88);
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  border-bottom: 1px solid rgba(170, 200, 240, 0.28);
}
.pdp-assist a:hover,
.pdp-assist a:focus-visible {
  color: rgba(210, 225, 250, 0.98);
  border-bottom-color: rgba(210, 225, 250, 0.55);
}
.pdp-body {
  max-width: 760px;
  padding-bottom: 4rem;
}
.pdp-commercial-blurb {
  color: var(--color-text-muted);
  font-weight: 400;
  line-height: 1.65;
  margin: 0 0 1.75rem;
  font-size: 0.95rem;
}
.pdp-story {
  margin: 0 0 2.25rem;
  padding: 1.25rem 1.3rem 1.35rem;
  border: 1px solid rgba(180, 200, 230, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(10, 18, 34, 0.5);
}
.pdp-story-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1.15rem;
  color: #fff;
}
.pdp-story-block {
  margin-bottom: 1.25rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(180, 200, 230, 0.1);
}
.pdp-story-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.pdp-story-heading {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(180, 195, 220, 0.88);
  margin: 0 0 0.65rem;
}
.pdp-intel-summary {
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(235, 240, 250, 0.92);
  margin: 0;
}
.pdp-intel-block {
  margin-bottom: 1.75rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(180, 200, 230, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(10, 18, 34, 0.45);
}
.pdp-intel-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(180, 195, 220, 0.88);
  margin: 0 0 0.75rem;
}
.pdp-bundle-subtitle {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(210, 220, 235, 0.88);
}
.pdp-bundle-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.pdp-bundle-item {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(235, 240, 250, 0.92);
}
.pdp-bundle-link {
  color: rgba(235, 240, 250, 0.96);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-color: rgba(74, 127, 212, 0.45);
}
.pdp-bundle-link:hover {
  text-decoration-color: rgba(235, 240, 250, 0.85);
}
.pdp-bundle-name {
  color: rgba(235, 240, 250, 0.92);
}
.pdp-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.pdp-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(180, 195, 220, 0.22);
  border-radius: var(--radius-full);
  color: rgba(235, 240, 250, 0.92);
  font-size: 0.8rem;
  background: rgba(255,255,255,0.03);
}
.pdp-pyramid {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pdp-pyramid-tier {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.75rem;
  align-items: start;
}
.pdp-pyramid-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding-top: 0.15rem;
}
.pdp-pyramid-notes {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(230, 235, 245, 0.9);
}
.pdp-perf {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 320px;
}
.pdp-perf-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pdp-perf-row span { color: var(--color-text-muted); }

/* PDP enter: opacity-only so position:fixed sticky is not trapped by a transform containing block */
@keyframes pdpEnter {
  from { opacity: 0; }
  to { opacity: 1; }
}
.pdp.pdp-enter {
  animation: pdpEnter 0.55s var(--transition-smooth, ease) forwards;
}

.pdp-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  /* Default: phone with bottom nav reservation; overridden in 601–860 */
  bottom: calc(var(--lpvp-bottom-nav-h) + env(safe-area-inset-bottom, 0px) + var(--lpvp-chrome-gap));
  z-index: var(--lpvp-z-sticky, 40);
  transform: translateY(110%);
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  /* Compact purchase bar (~68–82px visual before safe-area) */
  padding: 5px 12px;
  background: transparent;
}
.pdp-sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.pdp-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  max-width: 640px;
  margin: 0 auto;
  min-height: 58px;
  padding: 5px 14px;
  border: 1px solid rgba(180, 200, 230, 0.16);
  border-radius: var(--radius-md, 12px);
  background: rgba(14, 24, 44, 0.96);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}
.pdp-sticky-info {
  min-width: 0;
  flex: 1 1 auto;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pdp-sticky-inner .btn {
  flex-shrink: 0;
  min-height: 48px;
  height: 48px;
  padding: 0 0.95rem;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-md, 12px);
  white-space: nowrap;
}

@media (max-width: 360px) {
  .pdp-sticky-cta {
    padding: 4px 8px 5px;
  }
  .pdp-sticky-inner {
    gap: 0.4rem;
    min-height: 52px;
    padding: 3px 8px 3px 10px;
  }
  .pdp-sticky-info {
    font-size: 0.68rem;
    max-width: 38%;
  }
  .pdp-sticky-inner .btn {
    min-height: 48px;
    height: 48px;
    padding: 0 0.7rem;
    font-size: 0.64rem;
  }
}

/* ——— C8 M4 mobile PDP (≤860) — desktop ≥861 unchanged ——— */
@media (max-width: 860px) {
  .pdp {
    padding-top: 72px;
    padding-bottom: calc(5.5rem + var(--lpvp-bottom-nav-h) + env(safe-area-inset-bottom, 0px));
    overflow-x: clip;
  }

  .pdp-hero {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
    max-width: none;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .pdp-media {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    max-height: min(34vh, 248px);
    margin: 0 auto;
    border: 0;
    border-radius: 16px;
    background: #02111f;
    /* ONE restrained ~8% softer stage blend — bottle stays sharp */
    box-shadow: inset 0 0 48px 26px var(--color-bg, #0a1425);
    overflow: hidden;
    isolation: isolate;
  }

  .pdp-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    padding: 0;
    box-sizing: border-box;
    transform: scale(1.08);
    transform-origin: center center;
    filter: none;
    -webkit-mask-image:
      linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-composite: intersect;
  }

  .pdp-media::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
    background:
      radial-gradient(
        ellipse 74% 72% at 50% 45%,
        transparent 40%,
        rgba(10, 20, 37, 0.18) 64%,
        rgba(10, 20, 37, 0.52) 84%,
        var(--color-bg, #0a1425) 100%
      ),
      linear-gradient(
        to bottom,
        var(--color-bg, #0a1425) 0%,
        transparent 10%,
        transparent 90%,
        var(--color-bg, #0a1425) 100%
      ),
      linear-gradient(
        to right,
        var(--color-bg, #0a1425) 0%,
        transparent 9%,
        transparent 91%,
        var(--color-bg, #0a1425) 100%
      );
  }

  .pdp-media-oos {
    z-index: 2;
  }

  .pdp-buy {
    padding-top: 0;
    min-width: 0;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pdp-brand {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    color: rgba(200, 210, 230, 0.78);
    margin: 0 0 4px;
  }

  .pdp-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 4px;
  }

  .pdp-meta {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    margin: 0 0 4px;
    color: rgba(180, 195, 220, 0.82);
  }

  .pdp-buy-facts {
    margin: 0 0 4px;
    gap: 8px;
    justify-content: center;
  }

  .pdp-audience {
    min-height: 26px;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    border-radius: 999px;
    border-color: rgba(180, 200, 230, 0.2);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(220, 228, 240, 0.92);
  }

  .pdp-descriptors {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 12px;
    color: rgba(210, 220, 235, 0.88);
    max-width: 22rem;
  }

  .pdp-commerce {
    gap: 8px;
    margin-bottom: 12px;
    width: 100%;
    align-items: center;
  }

  .pdp-commerce .product-price-block--detail {
    align-items: center;
    text-align: center;
  }

  .pdp-commerce .product-price {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .pdp-cash-deal {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding: 10px 14px;
    border-radius: 16px;
    border: 1px solid rgba(120, 180, 150, 0.22);
    background: rgba(28, 48, 40, 0.42);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    max-width: 100%;
  }

  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .pdp-cash-deal {
      background: rgba(32, 56, 46, 0.38);
      -webkit-backdrop-filter: blur(12px) saturate(1.15);
      backdrop-filter: blur(12px) saturate(1.15);
    }
  }

  .pdp-commerce .cash-price {
    font-size: 17px;
    font-weight: 600;
    color: rgba(210, 235, 220, 0.96);
    letter-spacing: 0;
  }

  .cash-price-suffix {
    font-weight: 500;
    font-size: 0.92em;
    opacity: 0.9;
  }

  .cash-save {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(140, 200, 165, 0.28);
    background: rgba(90, 160, 120, 0.14);
    color: rgba(200, 230, 210, 0.95);
    font-size: 12px;
    font-weight: 500;
  }

  .pdp-stock {
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    min-height: 0;
  }

  .pdp-stock-dot {
    display: inline-block;
  }

  .pdp-stock-text-long {
    display: none;
  }

  .pdp-stock-text-short {
    display: inline;
  }

  .pdp-qty-row {
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
    width: 100%;
  }

  .pdp-qty-label {
    font-size: 14px;
    font-weight: 500;
  }

  .pdp-qty-controls {
    gap: 4px;
    padding: 2px;
    border-radius: 14px;
    border: 1px solid rgba(210, 225, 245, 0.12);
    background: rgba(14, 24, 42, 0.55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .pdp-qty-controls {
      background: rgba(16, 28, 48, 0.42);
      -webkit-backdrop-filter: blur(12px) saturate(1.2);
      backdrop-filter: blur(12px) saturate(1.2);
    }
  }

  .pdp-qty-controls .qty-btn {
    min-width: 44px;
    min-height: 44px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    font-size: 18px;
    line-height: 1;
  }

  .pdp-qty-input {
    width: 2.5rem;
    min-height: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
  }

  .pdp-cta {
    min-height: 52px;
    height: 52px;
    margin-bottom: 10px;
    border-radius: 16px;
    letter-spacing: 0;
    text-transform: none;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    max-width: 22rem;
  }

  .pdp-social-proof {
    margin: 0 0 10px;
    padding: 0 8px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    color: rgba(190, 205, 225, 0.82);
    text-align: center;
  }

  .pdp-advisor-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 22rem;
    margin: 0 0 4px;
    padding: 14px 14px 12px;
    border-radius: 18px;
    border: 1px solid rgba(210, 225, 245, 0.14);
    background: rgba(14, 24, 42, 0.55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    text-align: center;
  }

  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .pdp-advisor-feature {
      background: rgba(16, 28, 48, 0.42);
      -webkit-backdrop-filter: blur(14px) saturate(1.2);
      backdrop-filter: blur(14px) saturate(1.2);
    }
  }

  .pdp-advisor-feature-icon {
    color: rgba(200, 215, 235, 0.88);
    line-height: 0;
  }

  .pdp-advisor-feature-kicker {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: rgba(180, 195, 220, 0.78);
  }

  .pdp-advisor-feature-title {
    margin: 2px 0 0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: rgba(245, 248, 252, 0.96);
  }

  .pdp-advisor-feature-meta {
    margin: 4px 0 0;
    font-size: 12px;
    font-weight: 400;
    color: rgba(175, 190, 215, 0.78);
  }

  .pdp-advisor-feature-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: 4px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(210, 225, 245, 0.2);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(230, 238, 248, 0.95);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
  }

  .pdp-assist {
    display: none;
  }

  .pdp-reassure-desktop {
    display: none;
  }

  .pdp-trust-rail {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0;
    padding: 0 0 2px;
    max-width: 100%;
    min-width: 0;
  }

  .pdp-trust-rail::-webkit-scrollbar {
    display: none;
  }

  .pdp-trust-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 34px;
    max-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(210, 225, 245, 0.12);
    background: rgba(14, 24, 42, 0.82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    white-space: nowrap;
    box-sizing: border-box;
  }

  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .pdp-trust-chip {
      background: rgba(16, 28, 48, 0.5);
      -webkit-backdrop-filter: blur(12px) saturate(1.25);
      backdrop-filter: blur(12px) saturate(1.25);
    }
  }

  .pdp-trust-icon {
    display: inline-flex;
    width: 15px;
    height: 15px;
    color: rgba(200, 215, 235, 0.82);
    line-height: 0;
  }

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

  .pdp-trust-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    color: rgba(235, 240, 248, 0.92);
    line-height: 1;
  }

  .pdp-body {
    max-width: none;
    padding-bottom: 3rem;
  }

  .pdp-commercial-blurb {
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 24px;
  }

  /* Progressive story — separators, not nested cards */
  .pdp-story {
    margin: 0 0 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .pdp-story-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 16px;
  }

  .pdp-story-block {
    margin-bottom: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(180, 200, 230, 0.1);
  }

  .pdp-story-block:first-of-type {
    padding-top: 0;
  }

  .pdp-story-heading {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(200, 210, 230, 0.88);
    margin: 0 0 8px;
  }

  .pdp-intel-summary {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
  }

  .pdp-intel-block {
    margin-bottom: 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .pdp-intel-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: none;
    color: #fff;
    margin: 0 0 12px;
  }

  .pdp-bundle-subtitle {
    font-size: 14px;
    margin: 0 0 12px;
  }

  .pdp-chip-row {
    gap: 8px;
  }

  .pdp-chip {
    min-height: 32px;
    max-height: 36px;
    height: auto;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    border-radius: 999px;
    border-color: rgba(180, 195, 220, 0.18);
    background: rgba(255, 255, 255, 0.03);
  }

  .pdp-pyramid {
    gap: 12px;
  }

  .pdp-pyramid-tier {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pdp-pyramid-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    padding-top: 0;
    color: rgba(180, 195, 220, 0.78);
  }

  .pdp-pyramid-notes {
    font-size: 14px;
    line-height: 1.5;
  }

  .pdp-perf {
    max-width: none;
    gap: 0;
  }

  .pdp-perf-row {
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .pdp-perf-row:last-child {
    border-bottom: 0;
  }

  /* Sticky ATC — soft glass polish only (M1 geometry frozen) */
  .pdp-sticky-inner {
    border-radius: 16px;
    border-color: rgba(210, 225, 245, 0.14);
    background: rgba(14, 24, 44, 0.92);
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .pdp-sticky-inner {
      background: rgba(14, 24, 44, 0.72);
      -webkit-backdrop-filter: blur(16px) saturate(1.25);
      backdrop-filter: blur(16px) saturate(1.25);
    }
  }

  .pdp-sticky-inner .btn {
    letter-spacing: 0;
    text-transform: none;
    border-radius: 14px;
    font-weight: 600;
  }

  /* Alternatives rail overrides live after C7 .alt-card rules (cascade). */
}

@media (max-width: 360px) {
  .pdp-media {
    max-height: min(32vh, 232px);
    border-radius: 16px;
  }

  .pdp-title {
    font-size: 26px;
  }

  .pdp-commerce .product-price {
    font-size: 24px;
  }
}

/* Wider mobile / compact tablet: no bottom nav — tighten sticky offset */
@media (min-width: 601px) and (max-width: 860px) {
  .pdp-sticky-cta {
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 861px) {
  .pdp-sticky-cta { display: none; }
  .alt-card-hit { display: none; }
}

.pdp-advisor-hint {
  margin: 0 0 1rem;
  font-size: 0.88rem;
}
.pdp-advisor-hint a {
  color: rgba(160, 195, 240, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ——— C7 Intelligent alternatives ——— */
.pdp-alternatives {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(180, 195, 220, 0.14);
}
.pdp-alt-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #fff;
  margin: 0 0 1rem;
}
.pdp-alt-hint {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-weight: 400;
}
.pdp-alt-primary {
  margin-bottom: 1.85rem;
}
.pdp-alt-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.pdp-alt-tab {
  min-height: 40px;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(180, 195, 220, 0.22);
  border-radius: var(--radius-full);
  background: transparent;
  color: rgba(220, 228, 240, 0.85);
  font-family: Montserrat, sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  font-synthesis: none;
  letter-spacing: 0.04em;
  text-transform: none;
  cursor: pointer;
}
.pdp-alt-tab.is-active {
  border-color: rgba(74, 127, 212, 0.55);
  color: #fff;
  background: rgba(74, 127, 212, 0.16);
}
.alt-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 640px) {
  .alt-card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}
.alt-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0.75rem;
  border: 1px solid rgba(180, 200, 230, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(10, 18, 34, 0.45);
}
.alt-card-media {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: calc(var(--radius-lg) - 4px);
  cursor: pointer;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.alt-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.alt-card-body {
  padding: 0.75rem 0.15rem 0.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  min-height: 0;
}
.alt-card-brand {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.alt-card-name {
  margin: 0;
  min-height: 2.6em;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
}
.alt-card-name-btn {
  all: unset;
  cursor: pointer;
  color: inherit;
}
.alt-card-name-btn:hover,
.alt-card-name-btn:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.alt-card-facts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  margin: 0.1rem 0 0.15rem;
  min-height: 3.4rem;
}
.alt-card-audience,
.alt-card-relation {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.alt-card-audience {
  border: 1px solid rgba(74, 127, 212, 0.35);
  background: rgba(74, 127, 212, 0.12);
  color: rgba(220, 230, 245, 0.95);
}
.alt-card-audience--unspecified {
  border-color: rgba(180, 200, 230, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-muted);
}
.alt-card-relation {
  border: 1px solid rgba(180, 200, 230, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text-muted);
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.alt-card-desc {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(200, 210, 225, 0.82);
  font-weight: 400;
  line-height: 1.4;
}
.alt-card-commerce {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.28rem;
  margin-top: 0.1rem;
  min-height: 4.1rem;
}
.alt-card-commerce .product-price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}
.alt-card-commerce .cash-price {
  margin: 0;
  font-size: 0.78rem;
}
.alt-card-stock {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.alt-card-stock--in {
  color: rgba(140, 200, 170, 0.95);
}
.alt-card-stock--out {
  color: rgba(220, 160, 150, 0.9);
}
.alt-card-spacer {
  flex: 1 1 auto;
  min-height: 0.65rem;
}
.alt-card-cta {
  margin-top: 0;
  width: 100%;
  min-height: 42px;
  font-size: 0.8rem;
  border-radius: var(--radius-md);
}

/* ——— C8 M4 mobile alternatives (after C7 base — wins cascade ≤860) ——— */
@media (max-width: 860px) {
  .pdp-alternatives {
    margin-top: 24px;
    padding-top: 24px;
    /* Do not clip child rails — negative-margin bleed + overflow:clip was
       clipping the first card on WebKit (upper + lower rails). */
    overflow-x: visible;
  }

  .pdp-alt-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
  }

  .pdp-alt-hint {
    font-size: 13px;
    margin: 0 0 12px;
  }

  .pdp-alt-tabs {
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .pdp-alt-tabs::-webkit-scrollbar {
    display: none;
  }

  .pdp-alt-tab {
    flex: 0 0 auto;
    box-sizing: border-box;
    min-height: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(180, 195, 220, 0.18);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(200, 210, 225, 0.78);
    font-family: Montserrat, sans-serif;
    font-size: 13px;
    font-weight: 500;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1;
    white-space: nowrap;
  }

  .pdp-alt-tab.is-active {
    border-color: rgba(74, 127, 212, 0.42);
    color: rgba(245, 248, 252, 0.98);
    font-weight: 600;
    background: rgba(48, 92, 168, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .pdp-alt-tab.is-active {
      background: rgba(58, 108, 196, 0.22);
      -webkit-backdrop-filter: blur(12px) saturate(1.2);
      backdrop-filter: blur(12px) saturate(1.2);
    }
  }

  /*
   * Shared rail geometry (upper similar + lower directional):
   * keep first card flush to the 16px container inset — no left negative margin.
   * Right-only bleed gives a next-card peek without clipping card 1.
   */
  .alt-card-grid {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 0 16px;
    scrollbar-width: none;
    margin: 0 -16px 0 0;
    padding: 0 16px 4px 0;
    width: auto;
    max-width: none;
    box-sizing: border-box;
  }

  .alt-card-grid::-webkit-scrollbar {
    display: none;
  }

  .alt-card {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 0 172px;
    width: 172px;
    max-width: 172px;
    min-width: 0;
    scroll-snap-align: start;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    gap: 0;
    box-sizing: border-box;
  }

  .alt-card-hit {
    position: absolute;
    inset: 0;
    z-index: 3;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
  }

  .alt-card-media,
  .alt-card-name-btn,
  .alt-card-cta {
    pointer-events: none;
  }

  .alt-card-media {
    border-radius: 18px;
    background: #02111f;
    border: 0;
    box-shadow: inset 0 0 40px 22px var(--color-bg, #0a1425);
    isolation: isolate;
  }

  .alt-card-image {
    object-fit: contain;
    transform: scale(1.04);
    transform-origin: center center;
    filter: none;
    -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%);
    -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%);
    mask-composite: intersect;
  }

  .alt-card-body {
    padding: 8px 0 0;
    gap: 4px;
    min-width: 0;
  }

  .alt-card-brand {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .alt-card-name {
    min-height: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .alt-card-facts {
    min-height: 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0;
  }

  .alt-card-audience {
    min-height: 22px;
    padding: 0 8px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  /* Relation intent lives in section/tab headings — hide per-tile relation pills */
  .alt-card-relation {
    display: none !important;
  }

  .alt-card-commerce {
    min-height: 0;
    margin-top: 2px;
    gap: 0;
  }

  .alt-card-commerce .product-price {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }

  .alt-card-commerce .cash-price,
  .alt-card-stock,
  .alt-card-spacer,
  .alt-card-cta {
    display: none !important;
  }
}

@media (max-width: 360px) {
  .pdp .alt-card {
    flex-basis: 165px;
    width: 165px;
    max-width: 165px;
  }
}

/* ——— C8 conversion foundation ——— */
.c8-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .c8-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .c8-trust-grid { grid-template-columns: 1fr; }
}
/* Desktop: secondary legal utility — utility-integrated, not boxed CTA */
.nav-legal-utility {
  display: none;
  max-width: 9.4rem;
  margin-right: 0.6rem;
  padding: 0.15rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(210, 222, 238, 0.9);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: right;
  text-decoration: none;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: color var(--transition-fast);
}
.nav-legal-utility:hover,
.nav-legal-utility:focus-visible {
  color: rgba(245, 248, 252, 0.98);
  background: transparent;
  outline: none;
}
.nav-legal-utility:focus-visible {
  outline: 2px solid rgba(158, 182, 216, 0.55);
  outline-offset: 3px;
}
@media (min-width: 769px) {
  .nav-legal-utility { display: inline-flex; align-items: center; justify-content: flex-end; }
}

/* Mobile: legal utility — visible, secondary, unboxed (M1.1 / Advisor v2 final) */
.c8-withdrawal-access {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 6.75rem;
  min-width: 0;
  padding: 0.15rem 0.1rem;
  margin-right: 0.35rem;
  border: 0;
  background: transparent;
  color: rgba(175, 192, 214, 0.72);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.25;
  text-align: right;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 0;
  flex-shrink: 1;
  white-space: normal;
  overflow: visible;
}
.c8-withdrawal-access:hover,
.c8-withdrawal-access:focus-visible {
  color: rgba(230, 238, 248, 0.95);
  background: transparent;
}
.c8-withdrawal-access:focus-visible {
  outline: 2px solid rgba(158, 182, 216, 0.5);
  outline-offset: 3px;
}
@media (min-width: 769px) {
  .c8-withdrawal-access {
    display: none;
  }
}
.c8-page {
  padding: 6.5rem 24px 7rem;
  max-width: 720px;
}
.c8-page-title {
  font-family: var(--font-heading, Montserrat, sans-serif);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
}
.c8-page-lead {
  color: rgba(200, 210, 225, 0.85);
  margin: 0 0 1.75rem;
  line-height: 1.5;
}
.c8-card {
  border: 1px solid rgba(180, 200, 230, 0.18);
  background: rgba(16, 28, 52, 0.55);
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
  border-radius: 6px;
}
.c8-card h2 {
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.c8-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.4rem;
  color: rgba(210, 220, 235, 0.92);
  line-height: 1.45;
}
.c8-note {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: rgba(180, 195, 215, 0.8);
  line-height: 1.4;
}
.c8-cta-label {
  margin: 1rem 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d7e2f2;
}
.c8-form {
  display: grid;
  gap: 0.85rem;
}
.c8-form-fields {
  display: grid;
  gap: 0.85rem;
}
.c8-form--submitted .c8-form-fields[hidden] {
  display: none !important;
}
.c8-field label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
  color: rgba(210, 220, 235, 0.9);
}
.c8-field input,
.c8-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 0.75rem;
  border-radius: 4px;
  border: 1px solid rgba(180, 200, 230, 0.28);
  background: rgba(8, 14, 28, 0.75);
  color: #f2f5fa;
  font: inherit;
}
.c8-field textarea {
  min-height: 88px;
  resize: vertical;
}
.c8-form-status {
  min-height: 1.25rem;
  font-size: 0.82rem;
  color: rgba(210, 220, 235, 0.95);
}
.c8-form-status--loading { color: rgba(180, 200, 220, 0.95); }
.c8-form-status--error { color: rgba(230, 170, 160, 0.98); }
/* Success must not tint/dim the whole receipt via inherited muted green */
.c8-form-status--success {
  color: #eef3fa;
  opacity: 1;
  pointer-events: auto;
}
.c8-form--submitting {
  /* loading copy only — never dim/scrim the page */
  opacity: 1;
  pointer-events: auto;
}
.c8-form--submitted {
  opacity: 1;
  pointer-events: auto;
  filter: none;
}
.c8-form--submitted [data-c8-fields][hidden] {
  display: none !important;
}
.c8-receipt,
.c8-error {
  margin-top: 0.35rem;
  display: grid;
  gap: 0.45rem;
}
.c8-receipt {
  background: rgba(18, 30, 52, 0.96);
  border: 1px solid rgba(200, 215, 240, 0.22);
  color: #eef3fa;
  opacity: 1;
}
.c8-receipt-title {
  font-weight: 600;
  margin: 0;
  color: #ffffff;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.c8-receipt-line,
.c8-receipt-ref,
.c8-receipt-date {
  margin: 0;
  color: #e8eef8;
  font-size: 0.95rem;
  opacity: 1;
}
.c8-receipt .c8-note {
  color: rgba(200, 210, 228, 0.92);
}
.c8-action-lead {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(230, 236, 246, 0.92);
}
.c8-card--action .c8-cta-label {
  color: #f2f5fa;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.c8-card--secondary {
  /* editorial / legal — same route, quieter visual weight */
  opacity: 1;
}
.c8-ref-id {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.04em;
  word-break: break-all;
}
.c8-wa-coord,
.c8-wa-alt {
  margin-top: 0.35rem;
  width: 100%;
  max-width: 100%;
  min-height: 44px;
}
.c8-reset-link {
  margin-top: 0.25rem;
  padding: 0.35rem 0;
  border: 0;
  background: transparent;
  color: rgba(180, 195, 215, 0.85);
  font: inherit;
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  min-height: 44px;
  text-align: left;
}
@media (max-width: 430px) {
  .c8-page {
    padding-left: 16px;
    padding-right: 16px;
  }
  .c8-card {
    padding: 1rem 1rem;
  }
  .c8-form .btn {
    width: 100%;
    min-height: 44px;
  }
}
.c8-back {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}
.c8-back a { color: #b9c9e0; }
/* Legacy class kept inert — legal access is .nav-legal-utility / .c8-withdrawal-access */
.nav-link-rights { display: none !important; }

/* ——— Cart item helpers (shared) ——— */
.cart-item-media {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-bg, #0a1425);
  box-shadow: inset 0 0 24px 14px var(--color-bg, #0a1425);
}
.cart-item-media .cart-item-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(1.06);
  transform-origin: center center;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 16%, #000 84%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 16%, #000 84%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 16%, #000 84%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 16%, #000 84%, transparent 100%);
  mask-composite: intersect;
}
.cart-item-brand {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}
.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cart-qty-value {
  min-width: 1.25rem;
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
}
.cart-item-remove {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(170, 190, 220, 0.72);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 40px;
  padding: 0.25rem 0.15rem;
  cursor: pointer;
}
.cart-item-remove i {
  width: 14px;
  height: 14px;
}
.cart-item-remove:hover,
.cart-item-remove:focus-visible {
  color: rgba(220, 200, 200, 0.95);
}
.cart-empty {
  text-align: center;
  padding: 2.5rem 0.5rem 1.5rem;
}
.cart-empty-icon {
  width: 40px;
  height: 40px;
  color: rgba(200, 210, 230, 0.55);
  margin-bottom: 1rem;
}
.cart-empty-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}
.cart-empty-copy {
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 0;
}
.cart-empty-cta {
  margin-top: 1.5rem;
  min-height: 48px;
  width: 100%;
  max-width: 280px;
}
.cart-shipping-note {
  margin: 0 0 1rem;
  text-align: left;
}
.cart-checkout-cta {
  width: 100%;
  min-height: 50px;
}
.cart-continue-link,
.chk-back-link {
  appearance: none;
  border: 0;
  background: transparent;
  width: 100%;
  min-height: 44px;
  margin-top: 0.35rem;
  color: rgba(170, 200, 240, 0.88);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: none;
  cursor: pointer;
}
.cart-continue-link:hover,
.chk-back-link:hover {
  color: rgba(210, 225, 250, 0.98);
}
.chk-back-link {
  order: 2;
}
.chk-delivery-fields {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.75rem;
}

/* ——— C8 M6 mobile cart + checkout + rights (≤860) — desktop ≥861 unchanged ——— */
@media (max-width: 860px) {
  .minicart-drawer {
    max-width: none;
    width: 100%;
    border-left: 0;
    background: var(--color-bg);
  }

  .minicart-drawer.active {
    transform: translate3d(0, 0, 0);
  }

  .minicart-header {
    padding: 12px 12px 12px 16px;
    border-bottom: 1px solid rgba(180, 200, 230, 0.1);
    padding-top: max(12px, env(safe-area-inset-top, 0px));
  }

  .minicart-header h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: none;
  }

  .close-cart {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
  }

  .minicart-body {
    padding: 12px 16px 16px;
    gap: 0;
  }

  .cart-item {
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(180, 200, 230, 0.1);
  }

  .cart-item:last-child {
    border-bottom: 0;
  }

  .cart-item-media {
    width: 68px;
    height: 68px;
    border-radius: 14px;
  }

  .cart-item-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 4px;
  }

  .cart-item-price-row {
    margin-bottom: 8px;
  }

  .cart-line {
    font-size: 0.95rem;
    font-weight: 600;
  }

  .cart-unit {
    font-size: 0.75rem;
  }

  .cart-item-controls {
    gap: 12px;
    flex-wrap: wrap;
  }

  .qty-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 14px;
    border-color: rgba(210, 225, 245, 0.14);
    background: rgba(16, 28, 48, 0.45);
    font-size: 1rem;
  }

  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .qty-btn {
      -webkit-backdrop-filter: blur(10px) saturate(1.15);
      backdrop-filter: blur(10px) saturate(1.15);
    }
  }

  .minicart-footer {
    padding: 12px 16px calc(16px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(180, 200, 230, 0.1);
    background: rgba(10, 20, 37, 0.92);
  }

  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .minicart-footer {
      background: rgba(10, 20, 37, 0.72);
      -webkit-backdrop-filter: blur(16px) saturate(1.2);
      backdrop-filter: blur(16px) saturate(1.2);
    }
  }

  .cart-total {
    font-size: 1rem;
    margin-bottom: 8px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
  }

  .cart-total-label {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text-muted);
  }

  .cart-checkout-cta,
  .chk-primary-cta {
    min-height: 52px;
    border-radius: 16px;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 600;
    font-size: 0.95rem;
  }

  .chk-wa-cta {
    min-height: 52px;
    border-radius: 17px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    background: #ffffff !important;
    color: #0a1425 !important;
    padding-inline: 1rem;
  }

  .chk-wa-cta:hover:not(:disabled),
  .chk-wa-cta:focus-visible {
    background: #ffffff !important;
    color: #0a1425 !important;
  }

  .chk-wa-cta .chk-wa-icon {
    color: var(--color-whatsapp, #25d366);
  }

  .chk-wa-cta.btn-primary::after {
    display: none;
  }
}

/* C8 M6.1 — narrow phones: keep WA CTA readable without overflow */
@media (max-width: 360px) {
  .chk-wa-cta {
    font-size: 0.84rem;
    gap: 0.4rem;
    padding-inline: 0.7rem;
  }
  .chk-wa-cta .chk-wa-icon svg {
    width: 16px;
    height: 16px;
  }
}

/* ——— C8 M6 mobile cart + checkout + rights (continued ≤860) ——— */
@media (max-width: 860px) {
  .cart-empty {
    padding: 48px 8px 24px;
  }

  /* Checkout in drawer */
  .chk-steps {
    gap: 0.25rem 0.4rem;
    margin-bottom: 12px;
    font-size: 0.68rem;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 500;
  }

  .chk-order-id {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }

  .chk-title {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: 12px;
  }

  .chk-options {
    gap: 8px;
    margin-bottom: 12px;
  }

  .chk-option {
    min-height: 52px;
    padding: 12px 14px;
    border-radius: 16px;
    border-color: rgba(210, 225, 245, 0.14);
    background: rgba(14, 24, 42, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .chk-option {
      background: rgba(16, 28, 48, 0.42);
      -webkit-backdrop-filter: blur(12px) saturate(1.2);
      backdrop-filter: blur(12px) saturate(1.2);
    }
  }

  .chk-option.is-selected {
    border-color: rgba(74, 127, 212, 0.55);
    background: rgba(74, 127, 212, 0.16);
  }

  .chk-option-label {
    font-weight: 600;
    font-size: 0.92rem;
  }

  .chk-option-hint {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.35;
  }

  .chk-field-group label,
  .input-group.chk-field-group label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }

  .chk-field.input,
  .chk-field.textarea,
  .input.chk-field {
    min-height: 50px;
    border-radius: 16px;
    font-size: 16px;
    border-color: rgba(210, 225, 245, 0.14);
    background: rgba(14, 24, 42, 0.72);
  }

  @supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .chk-field.input,
    .chk-field.textarea,
    .input.chk-field {
      background: rgba(16, 28, 48, 0.42);
      -webkit-backdrop-filter: blur(12px) saturate(1.15);
      backdrop-filter: blur(12px) saturate(1.15);
    }
  }

  .chk-review-block {
    border: 0;
    border-radius: 0;
    padding: 0;
    margin-bottom: 12px;
    background: transparent;
  }

  .chk-review-line {
    padding: 10px 0;
    border-bottom: 1px solid rgba(180, 200, 230, 0.1);
  }

  .chk-review-subtotal {
    border-bottom: 0;
    padding-top: 12px;
  }

  .chk-footer-actions {
    gap: 4px;
  }

  .chk-back-cta {
    display: none;
  }

  /* Rights / arrepentimiento */
  .c8-page {
    padding: 88px 16px calc(2rem + var(--lpvp-bottom-nav-h, 48px) + env(safe-area-inset-bottom, 0px));
  }

  .c8-page-title {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .c8-page-lead {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .c8-action-lead {
    font-size: 0.92rem;
    margin-bottom: 1rem;
    color: rgba(232, 238, 248, 0.94);
  }

  .c8-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 16px 0;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(180, 200, 230, 0.1);
    box-shadow: none;
  }

  .c8-card--action {
    padding-top: 8px;
    border-bottom: 0;
    margin-bottom: 4px;
  }

  .c8-card--secondary {
    padding-top: 12px;
  }

  .c8-card--secondary h2 {
    font-size: 0.98rem;
    font-weight: 600;
    color: rgba(210, 220, 235, 0.9);
  }

  .c8-card--secondary .c8-list,
  .c8-card--secondary p {
    font-size: 0.86rem;
    color: rgba(190, 205, 225, 0.88);
  }

  .c8-card h2 {
    font-size: 1.05rem;
    font-weight: 600;
  }

  .c8-cta-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: none;
    color: #f2f5fa;
    margin-bottom: 0.5rem;
  }

  .c8-card--action .c8-cta-label {
    font-size: 0.82rem;
    margin-bottom: 0.65rem;
  }

  .c8-list {
    font-size: 0.88rem;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
  }

  .c8-field input,
  .c8-field textarea {
    min-height: 50px;
    border-radius: 16px;
    font-size: 16px;
    border-color: rgba(210, 225, 245, 0.14);
    background: rgba(14, 24, 42, 0.72);
  }

  .c8-form .btn {
    min-height: 52px;
    border-radius: 16px;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 600;
  }

  .c8-form-status--success,
  .c8-form--submitted,
  .c8-receipt {
    opacity: 1 !important;
    filter: none !important;
    pointer-events: auto !important;
  }

  .c8-receipt {
    border-radius: 16px;
    padding: 18px 16px;
    border: 1px solid rgba(200, 215, 240, 0.28);
    background: rgba(22, 36, 60, 0.98);
    color: #eef3fa;
  }

  .c8-receipt-title {
    font-size: 1.28rem;
    font-weight: 600;
    color: #ffffff;
  }

  .c8-receipt-ref .c8-ref-id {
    color: #ffffff;
    font-weight: 600;
  }

  .c8-wa-coord.btn-outline {
    background: transparent;
    color: #eef3fa;
    border-color: rgba(200, 215, 240, 0.35);
    min-height: 48px;
    border-radius: 14px;
    font-weight: 500;
  }

  .c8-reset-link {
    appearance: none;
    border: 0;
    background: transparent;
    color: rgba(170, 200, 240, 0.88);
    font-size: 0.88rem;
    font-weight: 500;
    min-height: 44px;
    margin-top: 8px;
    cursor: pointer;
  }
}

@media (min-width: 861px) {
  .cart-item-media {
    width: 70px;
    height: 90px;
    border-radius: 8px;
    box-shadow: none;
  }
  .cart-item-media .cart-item-img {
    object-fit: cover;
    transform: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .cart-item-remove span {
    display: none;
  }
}
