:root {
  --logo-scale: 0.5; /* Default scale, adjust this value to control the shrinking size */

  /* New tokens for this page */
  --apw-teal: #18B19C;
  --apw-ink-900: #e7ecf2;
  --apw-ink-700: #a8b0bb;
  --apw-metal: #d7dee7;
  --apw-bg-deep: #0b0e13;
  --apw-panel: rgba(255,255,255,0.08);
  --apw-panel-2: rgba(255,255,255,0.04);
  --apw-ring: rgba(127,212,255,0.6);
  --apw-glass-b: rgba(255,255,255,0.14);
  --apw-glass-sheen: rgba(255,255,255,0.07);
  --apw-radius-lg: 20px;
  --apw-radius-md: 14px;
  --apw-shadow: 0 10px 28px rgba(0,0,0,.28);
  --apw-shadow-lg: 0 16px 42px rgba(0,0,0,.34);
}

/* ===== FULL-BLEED PAGE FIX ===== */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #0b0e13; /* keep your dark base */
  overflow-x: hidden;   /* prevent side scroll */
}

main, .apw-theme, section {
  width: 100vw;           /* full viewport width */
  max-width: 100vw;
  box-sizing: border-box; /* padding doesn't shrink it */
  margin: 0;
  padding: 0;
}

/* ============================
   ANNOUNCEMENT BAR
=============================== */
.announcement-bar {
  width: 100%;
  background: #ffffff;
  padding: 10px 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #000;
  border-bottom: 1px solid #e5e5e5;
  z-index: 9999;
  position: fixed;   /* 🔁 was: sticky */
  top: 0;
  left: 0;
}


/* inner text styling */
.announcement-text strong {
  font-weight: 800;
}

.announcement-red {
  color: #C11C1C; /* bright sale red */
  font-weight: 700;
}

/* optional external link icon */
.announcement-link {
  margin-left: 8px;
  color: #000;
  font-size: 1rem;
  text-decoration: none;
}

/* 🔧 Mobile tweak: keep announcement bar to a single line */
@media (max-width: 600px) {
  .announcement-bar {
    font-size: 0.7rem;      /* smaller text on phones */
    padding: 4px 6px;       /* tighten vertical padding */
    line-height: 1.2;       /* keeps bar height compact */
    white-space: nowrap;    /* prevent wrapping */
  }

  /* If your text is wrapped in .announcement-text, this helps too */
  .announcement-text {
    white-space: nowrap;
  }
}



header {
  top: 40px; /* height of announcement bar */
}

/* ===================== KEEP: LOADING (unchanged) ===================== */
/* ===== SPLASH / LOADING OVERLAY ===== */
#loading{
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  opacity: 1;
  transition: opacity .6s ease;
}

#loading.hide{
  opacity: 0;
  pointer-events: none;
}

.loading-logo{
  width: 100px;
  will-change: transform;
  /* animation applied dynamically via .fly class */
}

/* spin then fly: we’ll set --fly-x / --fly-y from JS */
.loading-logo.fly{
  animation:
    splashSpin 1.2s ease-in-out 0s 1,
    flyToLogo 0.9s cubic-bezier(.2,.7,.2,1) 1.2s 1 forwards;
}

@keyframes splashSpin{
  from{ transform: translate(0,0) scale(1) rotate(0deg); }
  to  { transform: translate(0,0) scale(1) rotate(360deg); }
}

@keyframes flyToLogo{
  to{ transform: translate(var(--fly-x, 0px), var(--fly-y, -45vh)) scale(var(--logo-scale, .5)); }
}

/* ===== FORCE-CENTER THE LOGO (manual nudge ready) ===== */
:root{
  --logo-nudge-x: 0px; /* tweak this to slide logo left(-) / right(+) */
}

header { position: fixed; left: 0; right: 0; z-index: 2000; }

/* make navbar a positioning context */
.navbar{
  position: relative !important;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 16px;
}

/* hard center: independent of cart/menu widths */
.logo-link{
  position: absolute !important;
  left: 50%;
  transform: translateX(calc(-50% + var(--logo-nudge-x)));
  display: inline-flex;
  align-items: center;
  z-index: 2100;          /* stays above background */
  pointer-events: auto;   /* clickable */
}

/* keep cart on left and clickable */
#header-cart-btn{
  grid-column: 1;
  justify-self: start;
  position: relative;
  width: 36px; height: 36px; display: grid; place-items: center;
  z-index: 2100;
}
#header-cart-btn .cart-icon{ width:22px; height:22px; display:block; }

/* badge: smaller + higher so it doesn't cover icon */
#header-cart-btn .cart-count{
  position: absolute;
  top: -7px; right: -7px;      /* raise & tuck */
  min-width: 14px; height: 14px; line-height: 14px;
  font-size: 10px; padding: 0 4px; border-radius: 999px;
  background: var(--apw-teal,#18B19C); color:#fff; font-weight:700; text-align:center;
  box-shadow: 0 0 0 2px #fff;
}

/* keep hamburger on right and always clickable */
#menu-toggle{
  grid-column: 3;
  justify-self: end;
  position: relative;
  background: none; border: 0; cursor: pointer;
  z-index: 2100;
}

/* menu sheet sits under the header controls, over the page */
:root{ --header-h: 84px; }                 /* adjust if your header is taller */
#nav-menu{
  position: fixed; top: var(--header-h); left: 0; right: 0;
  z-index: 2050;                           /* below cart/menu (2100) */
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity .25s, transform .25s;
}
#nav-menu.active{ opacity:1; transform:none; pointer-events:auto; }

/* content offset so header doesn’t cover the top */
.apw-theme{ padding-top: var(--header-h); }

  
  /* =========================
   LUX THEME TOKENS
   ========================= */
:root {
    /* Palette */
    --lux-bg-deep: #0b0e13;
    --lux-bg: #0e1218;
    --lux-panel: #11161e;
    --lux-ink: #e8ebef;
    --lux-ink-dim: #a9b2bd;
    --lux-line: rgba(255,255,255,0.08);
  
    /* Accents */
    --lux-gold: #c8a96a;         /* champagne gold */
    --lux-gold-soft: #e6dcc7;    /* soft highlight */
    --lux-platinum: #d9dde4;     /* cool metal edge */
  
    /* Shadows / radiance */
    --lux-shadow-sm: 0 1px 3px rgba(0,0,0,0.25);
    --lux-shadow-md: 0 8px 24px rgba(0,0,0,0.35);
  
    /* Type scale */
    --title-size: clamp(2.4rem, 2.2rem + 1.2vw, 4rem);
    --subtitle-size: clamp(1.1rem, 1rem + 0.6vw, 1.6rem);
  
    /* Header spacing (assumes fixed header height ~84px) */
    --header-h: 84px;
  }
  
  /* =========================
     GENERIC FULL-BLEED SECTIONS
     ========================= */
  .section {
    position: relative;
    width: 100%;
    color: var(--lux-ink);
    text-align: center;
    padding: 0;
    overflow: hidden;
    background: radial-gradient(1200px 800px at 80% -10%, #151b25 0%, transparent 60%),
                radial-gradient(900px 700px at -10% 100%, #0f141c 0%, transparent 60%),
                linear-gradient(180deg, var(--lux-bg), var(--lux-bg-deep) 45%, var(--lux-bg) 100%);
  }
  
  .section.fullscreen {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .background-image {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .25;
    z-index: -1;
  }
  
  .text-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-inline: 16px;
  }
  
  .title {
    font-family: 'Montserrat', 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1.05;
    font-size: var(--title-size);
    margin: 0;
    color: var(--lux-ink);
    text-shadow: 0 6px 18px rgba(0,0,0,0.5);
    /* Subtle gold sheen */
    background: linear-gradient(180deg, var(--lux-ink) 60%, var(--lux-platinum));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .subtitle {
    font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: var(--subtitle-size);
    font-weight: 600;
    margin: 8px 0 0;
    color: var(--lux-gold);
    letter-spacing: .04em;
    text-shadow: 0 2px 10px rgba(0,0,0,.35);
  }
  
  @media (max-width: 768px) {
    .section.fullscreen { height: 60vh; }
  }
  
  /* ---------- Black divider, reimagined as deep luxury divider ---------- */
  .section.black-divider {
    width: 100%;
    height: 43vh;
    margin: 0 auto;
    padding: 24px;
    box-sizing: border-box;
    background:
      radial-gradient(700px 400px at 20% 0%, rgba(255,255,255,0.06), transparent 60%),
      linear-gradient(180deg, #0c1016, #0a0e14 70%, #0c1016);
    border-block: 1px solid var(--lux-line);
    display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
  }
  
  .section.black-divider h2 {
    font-size: clamp(1.8rem, 1.4rem + 1.2vw, 3rem);
    font-family: 'Montserrat', 'Lato', system-ui, sans-serif;
    font-weight: 800;
    color: var(--lux-gold);
    margin-bottom: 12px;
    letter-spacing: .03em;
  }
  
  .section.black-divider p {
    font-size: clamp(1rem, 0.95rem + .4vw, 1.25rem);
    font-family: 'Lato', system-ui, sans-serif;
    color: var(--lux-ink-dim);
    line-height: 1.6;
    max-width: 900px;
  }
  
  @media (max-width: 768px) {
    .section.black-divider {
      height: auto;
      padding: 20px 16px;
    }
  }
  
  /* ===================== HEADER CART: compact rounded + correct badge ===================== */
  .cart-button{
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 12px;
    padding: 0;
    display: inline-flex;
    align-items: center;
  }
  
  .cart-icon-wrapper{
    position: relative;
    width: 36px; height: 36px;
    border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.92);
    box-shadow: var(--lux-shadow-sm);
    transition: box-shadow .2s ease, transform .08s ease, background .2s ease;
  }
  
  .cart-icon-wrapper:hover{
    background: #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    transform: translateY(-1px);
  }
  
  .cart-icon{
    width: 22px; height: 22px; object-fit: contain; display: block;
  }
  
  /* Badge uses gold now */
  .cart-count{
    position: absolute;
    top: -4px; right: -4px;
    min-width: 18px; height: 18px; padding: 0 5px;
    border-radius: 999px;
    background: var(--lux-gold);
    color: #111;
    font-size: 11px; font-weight: 800; line-height: 18px; text-align: center;
    box-shadow: 0 0 0 2px #fff; /* white ring for separation */
  }
  
  @media (max-width: 480px){
    .cart-icon-wrapper{ width: 34px; height: 34px; }
    .cart-icon{ width: 20px; height: 20px; }
    .cart-count{ top: -3px; right: -3px; min-width: 16px; height: 16px; line-height: 16px; font-size: 10px; }
  }
  
  /* ===================== AP CUSTOM WATCHES – THEME WRAPPER ===================== */
  .apw-theme{
    position: relative;
    background:
      radial-gradient(1200px 800px at 70% -10%, #16202a 0%, transparent 50%),
      radial-gradient(900px 700px at -10% 100%, #10151c 0%, transparent 55%),
      linear-gradient(180deg, var(--lux-bg-deep), var(--lux-bg) 40%, var(--lux-bg-deep));
    color: var(--lux-ink);
    padding-top: var(--header-h);
  }
  
  /* Constrain base main content */
  main {
    font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.65;
    color: var(--lux-ink);
    padding: 12px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* ===================== PAGE TITLE ===================== */
  .page-title {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    padding: 72px 20px 36px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    border-bottom: 1px solid var(--lux-line);
    backdrop-filter: blur(2px);
    margin-bottom: 10px;
  }
  
  .animated-title {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: clamp(2rem, 1.6rem + 2.4vw, 3.5rem);
    margin: 0;
    background: linear-gradient(90deg, #fff, var(--lux-platinum), var(--lux-gold) 60%, var(--lux-platinum));
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: luxShimmer 6s ease-in-out infinite;
    text-shadow: 0 6px 22px rgba(0,0,0,0.35);
  }
  
  @keyframes luxShimmer {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
  }
  
  .tagline {
    font-size: clamp(1.1rem, 1rem + .5vw, 1.6rem);
    font-weight: 700;
    color: var(--lux-gold);
    margin: 6px 0 0;
    letter-spacing: .06em;
  }
  
  .subtitle {
    font-size: clamp(1rem, .95rem + .4vw, 1.3rem);
    font-weight: 700;
    color: var(--lux-ink-dim);
    margin-top: 6px;
  }
  
/* ===================== HERO + PRODUCT LAYOUT ===================== */
.page-title {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===================== 3 WATCH BOX + BUNDLE SECTION ===================== */

/* Layout container */
.product-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* LEFT: gallery column */
.left-photos {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
}

/* RIGHT: one big glass card with both offers */
.right-details {
  flex: 1 1 45%;
  margin-top: 20px;
  background: #0f1115;
  border: 1px solid rgba(194, 166, 113, 0.22); /* champagne line */
  color: #cfd3da;
  padding: 20px 22px;
  border-radius: 16px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
}

/* Top + bottom sections inside the card */
.box-only-section {
  margin-bottom: 18px;
}

.bundle-section {
  margin-top: 18px;
}

/* Divider between the two offers */
.product-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 10px 0 6px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .product-layout {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px 16px;
  }

  .left-photos,
  .right-details {
    width: 100%;
    max-width: 640px;
  }

  .right-details {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .product-layout {
    padding: 18px 12px;
    gap: 18px;
  }

  .right-details {
    padding: 16px;
  }
}

/* ===================== LEFT: THUMBNAILS / MAIN IMAGE ===================== */

.thumbnails {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.thumbnail {
  width: 64px;
  height: 64px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0f1115;
  transition:
    transform 0.15s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.thumbnail:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.thumbnail.active {
  border-color: #c2a671;
  box-shadow: 0 0 0 2px rgba(194, 166, 113, 0.22);
}

/* Main image container */
.main-photo {
  width: 100%;
  max-width: 520px;
  text-align: center;
  position: relative;
}

.main-image {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(194, 166, 113, 0.18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  background: radial-gradient(
    120% 100% at 50% 10%,
    rgba(194, 166, 113, 0.08),
    transparent 60%
  );
}

/* Arrow buttons (mobile only) */
.nav-button {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 17, 21, 0.7);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
}

.nav-button:hover {
  background: rgba(15, 17, 21, 0.9);
}

.left-button {
  left: 6px;
}

.right-button {
  right: 6px;
}

@media (max-width: 768px) {
  .nav-button {
    display: block;
  }

  .main-photo {
    width: 100%;
  }

  .left-photos {
    margin-top: 8px;
  }
}

/* ===================== PRICE / SALE LABELS ===================== */

.sale-label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ef4444;
  margin: 0 0 4px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

/* Original price (crossed out) */
.original-price {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1rem;
  color: #9ca3af;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  margin: 0;
}

/* Sale price (big red) */
.sale-price {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: #ef4444;
  letter-spacing: 0.04em;
  margin: 0;
}

/* ===================== COLOR PICKER ===================== */

.color-picker {
  margin: 12px 0 8px;
}

.color-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #cfd3da;
  margin-bottom: 6px;
}

.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.color-swatch {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(194, 166, 113, 0.35);
  background: #0f1115;
  color: #e6e1d6;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.08s ease;
}

.color-swatch:hover {
  border-color: #d5bf91;
  color: #d5bf91;
  transform: translateY(-1px);
}

.color-swatch.active {
  background: linear-gradient(135deg, #d8c290, #c2a671);
  color: #0a0c10;
  border-color: transparent;
}

/* ===================== QUANTITY SELECTOR ===================== */

.quantity-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 10px 0 6px;
}

.quantity-label {
  font-size: 1rem;
  font-weight: 700;
  color: #b8bfca;
}

.quantity-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(194, 166, 113, 0.35);
  background: #0f1115;
  font-size: 1.4rem;
  font-weight: 800;
  color: #e6e1d6;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.quantity-btn:hover {
  border-color: #d5bf91;
  color: #d5bf91;
  background: #151c26;
  transform: translateY(-1px);
}

.quantity-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/* Inputs for box + bundle (and compatible with your existing general quantity id) */
#quantity,
#quantity-box,
#quantity-bundle {
  font-size: 1.1rem;
  font-weight: 800;
  color: #e6e1d6;
  text-align: center;
  width: 44px;
  border: none;
  background: transparent;
  pointer-events: none;
}

/* ===================== BUTTONS: ADD TO CART / BUY NOW ===================== */

.button-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 14px 0 10px;
}

.add-to-cart-btn,
.buy-now-btn {
  width: 100%;
  padding: 14px 20px;
  font-weight: 800;
  letter-spacing: 0.4px;
  border-radius: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.06s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

/* Add to cart (dark) */
.add-to-cart-btn {
  background: #12141a;
  color: #eef1f6;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.add-to-cart-btn:hover {
  background: #1b1f27;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

/* Buy now (gold gradient) */
.buy-now-btn {
  background: linear-gradient(135deg, #d8c290, #c2a671);
  color: #0a0c10;
  border: none;
  box-shadow: 0 10px 28px rgba(194, 166, 113, 0.35);
}

.buy-now-btn:hover {
  background: linear-gradient(135deg, #e3d4ac, #c7ab79);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(194, 166, 113, 0.45);
}

/* ===================== DELIVERY / META TEXT ===================== */

.delivery-info {
  font-size: 0.96rem;
  line-height: 1.6;
  color: #b8bfca;
  margin-top: 4px;
}

.delivery-info ul {
  padding-left: 20px;
  margin: 4px 0 8px;
}

.delivery-green {
  color: #d5bf91;
  font-weight: 600;
}

.stock-status {
  color: #d5bf91;
  font-weight: 700;
  margin-top: 2px;
}

/* Extra text + links */
.extra-info {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #aeb5c2;
}

.return-policy-link,
.customer-service-link {
  color: #e9ecf2;
  text-decoration: none;
}

.return-policy-link:hover,
.customer-service-link:hover {
  color: #ffffff;
  text-decoration: underline;
}


/* ===================== FEATURES / EXPERIENCES ===================== */
.experiences-section {
  margin-top: 22px;
}

.experience-text {
  color: #cfd3da;
}

.product-features li {
  color: #d5bf91;
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}

/* ===================== TABS / TABLES (Specs) ===================== */
.product-info {
  background: linear-gradient(180deg,#0b0e13,#0f1115);
  border: 1px solid rgba(255,255,255,0.06);
  color: #cfd3da;
}

.product-info-title {
  color: #e9ecf2;
}

.tab-header {
  background: #0f1115;
  color: #e0e4eb;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.tab-header:hover {
  background: #141821;
}
.tab-header.active {
  background: linear-gradient(135deg,#c2a671,#a88b56);
  color: #0b0e13;
}

.tab-content {
  background: #0c0f14;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.tab-content table {
  color: #cfd3da;
}
.tab-content th {
  background: linear-gradient(135deg,#c2a671,#a88b56);
  color: #0a0c10;
  border-color: rgba(194,166,113,.35);
}
.tab-content td {
  background: #0f1115;
  border-color: rgba(255,255,255,.06);
}
.tab-content tr:nth-child(even) td {
  background: #12161d;
}

/* ===================== SUPPORT CALLOUT ===================== */
.support-section {
  background: radial-gradient(600px 300px at 50% 0, rgba(194,166,113,.12), transparent 70%), #0f1115;
  border: 1px solid rgba(194,166,113,.25);
  color: #dfe3ea;
}

.troubleshoot-btn {
  background: linear-gradient(135deg,#d8c290,#c2a671);
  color: #0a0c10;
  box-shadow: 0 10px 28px rgba(194,166,113,.35);
}
.troubleshoot-btn:hover {
  background: linear-gradient(135deg,#e3d4ac,#c7ab79);
}

/* ===================== OTHER PRODUCTS GRID + BADGES ===================== */
.other-products {
  margin: 40px auto 10px;
  padding: 10px 0 30px;
  background: transparent;
}

.other-products h2 {
  color: #e9ecf2;
  text-align: center;
  font-family: "Montserrat", system-ui, sans-serif;
  letter-spacing: .4px;
  margin-bottom: 18px;
}

/* 3-across on desktop, 1-column on phones */
.other-products .product-card-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .other-products .product-card-container {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 640px) {
  .other-products .product-card-container {
    grid-template-columns: 1fr;
  }
}

/* Card shell */
.other-products .product-card {
  background: #0f1115;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}
.other-products .product-card .product-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08);
  background: #0b0e13;
}

/* Title */
.other-products .product-card .product-title {
  font-family: "Montserrat", system-ui, sans-serif;
  color: #e9ecf2;
  margin: 4px 0 2px;
  font-size: 1.02rem;
  letter-spacing: .2px;
}

/* BADGES */
.other-products .product-card .badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 8px;
  margin: 6px 0 2px;
}
@media (max-width: 640px) {
  .other-products .product-card .badges {
    grid-template-columns: 1fr; /* vertical on phones */
  }
}
.other-products .product-card .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2px;
  color: #0b0e13;
  background: linear-gradient(135deg,#d8c290,#c2a671);
  box-shadow: 0 6px 16px rgba(194,166,113,.25), inset 0 1px 0 rgba(255,255,255,.35);
}

/* Buttons inside Other Products */
.other-products .view-details-btn,
.other-products .add-to-cart-btn {
  width: 100%;
  margin-top: 6px;
}
.other-products .view-details-btn {
  display: inline-block;
  text-align: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: #12141a;
  color: #eef1f6;
  border: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .35px;
  transition: transform .06s ease, background .25s ease, box-shadow .25s ease;
}
.other-products .view-details-btn:hover {
  background: #1b1f27;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}

.main-video {
  display: none;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

/* When a video thumb is active */
.main-photo.is-video-active .main-image {
  display: none;
}

.main-photo.is-video-active .main-video {
  display: block;
}

/* ====================== CART MODAL ====================== */

/* Prevent background scroll when modal is open */
body.modal-open {
    overflow: hidden;
  }
  
  /* Modal Overlay (hidden by default; doesn't steal clicks) */
  #cart-modal-overlay.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 1050;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  }
  #cart-modal-overlay.modal-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease;
  }
  
  /* Hidden by default */
  #cart-modal { right:-100%; }
  #cart-modal.modal { right:-100%; }          /* if you keep the class */
  
  /* Visible when active */
  #cart-modal.active { right:0; }
  #cart-modal.modal.active { right:0; }
  
  /* ===== FIX: Center "Other Products" Section Across All Pages ===== */
.other-products {
    max-width: 1200px;      /* Keep layout consistent with product page */
    margin: 0 auto 40px;    /* Centers horizontally */
    padding: 20px;
    text-align: center;
  }
  
  .other-products .product-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 24px;
    justify-content: center;   /* Center the grid contents */
    align-items: stretch;
    margin: 0 auto;            /* Ensures it’s centered in parent */
    width: 100%;
    max-width: 1100px;         /* Optional: keeps consistent width */
  }
  
  /* Center the title */
  .other-products h2 {
    text-align: center;
    margin-bottom: 24px;
    color: #e9ecf2;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 0.3px;
  }

  /* Keep "Other Products" buttons inside the card */
.other-products .product-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;              /* hides any tiny overflow on rounded corners */
}

/* Make buttons match the card width exactly */
.other-products .view-details-btn,
.other-products .add-to-cart-btn {
  display: block;
  width: 100%;
  box-sizing: border-box;        /* includes padding in width so they don't overshoot */
  margin: 8px 0 0;
}

  
  
  /* ====================== CART (OVERLAY + SIDE DRAWER) ====================== */
  
  /* Prevent background scroll when cart is open */
  body.modal-open { overflow: hidden; }
  
  /* Overlay: hidden by default; clickable when active */
  #cart-modal-overlay.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 2150;                           /* below cart (2200), above page */
    transition: opacity .3s ease, visibility 0s linear .3s;
  }
  #cart-modal-overlay.modal-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: opacity .3s ease;
  }
  
  /* ---------- Side Cart Drawer ---------- */
  /* Requires: <div id="cart-modal" class="side-cart"> */
  :root { --header-h: 84px; }                /* match your header height */
  
  .side-cart {
    position: fixed;
    top: var(--header-h, 84px);
    right: -100%;
    height: calc(100vh - var(--header-h, 84px));
    width: min(420px, 92vw);                 /* default width on tablets/desktop */
    background: #fff;
    color: #0d1116;
    z-index: 2200;
    display: flex;
    flex-direction: column;
    box-shadow: -18px 0 40px rgba(0,0,0,.35);
    border-left: 1px solid #e5e7eb;
    transition: right .3s ease;
  }
  .side-cart.active { right: 0; }
  
  /* ~1/3 screen on wide displays */
  @media (min-width: 1100px) {
    .side-cart { width: 33.333vw; max-width: 560px; }
  }
  
  /* Fullscreen on small phones */
  @media (max-width: 600px) {
    .side-cart {
      top: 0;
      height: 100vh;
      width: 100vw;
    }
  }
  
  /* ---------- Header / Content / Footer ---------- */
  .side-cart .cart-modal-header,
  .side-cart .cart-modal-content,
  .side-cart .cart-modal-footer {
    padding: 20px;
  }
  
  .side-cart .cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
  }
  .side-cart .cart-modal-header h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
  }
  .side-cart #cart-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    font-weight: 800;
    cursor: pointer;
    color: #111827;
    line-height: 1;
  }
  
  /* Scrollable items area */
  .side-cart .cart-modal-content {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    color: #374151;
  }
  
  /* Footer with subtotal + checkout */
  .side-cart .cart-modal-footer {
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
  }
  .side-cart .cart-subtotal-text {
    font-size: 1rem;
    font-weight: 700;
    color: #6b7280;
  }
  .side-cart .cart-subtotal-amount {
    font-size: 1rem;
    font-weight: 800;
    color: #374151;
    margin-left: 8px;
  }
  .side-cart .checkout-btn {
    margin-left: auto;
    background: #000;
    color: #fff;
    padding: 12px 16px;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .25s ease, background-color .2s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
    max-width: 50%;
  }
  .side-cart .checkout-btn:hover {
    background: #222;
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(0,0,0,.24);
  }
  
  /* ---------- Cart Item Rows ---------- */
  .side-cart .cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #f3f4f6;
  }
  .side-cart .cart-item:last-child { border-bottom: none; }
  
  .side-cart .cart-item-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
  }
  
  .side-cart .cart-item-details {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0; /* enable ellipsis */
  }
  
  .side-cart .cart-item-name {
    margin: 0 0 6px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .side-cart .cart-item-quantity {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #d1d5db;
    padding: 6px;
    border-radius: 8px;
    height: 36px;
    background: #fff;
  }
  .side-cart .quantity-btn {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    padding: 0 10px;
    line-height: 1;
  }
  .side-cart .quantity-value {
    width: 28px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
  }
  
  .side-cart .cart-item-price {
    margin-left: auto;
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
    white-space: nowrap;
  }
  
  .side-cart .remove-item-btn {
    font-size: .85rem;
    font-weight: 800;
    color: #111827;
    background: none;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    align-self: center;
    height: 36px;
    display: flex;
    align-items: center;
  }
  
  /* Optional: terms checkbox row (if you use it) */
  .side-cart .terms-checkbox-container {
    margin: 10px 0;
    font-size: 14px;
    align-self: flex-start;
  }
  .side-cart .terms-checkbox-container input[type="checkbox"] { margin-right: 6px; }
  
  /* ---------- Responsive tweaks ---------- */
  @media (max-width: 600px) {
    .side-cart .cart-item { flex-wrap: wrap; justify-content: flex-start; }
    .side-cart .cart-item-thumbnail {
      width: 64px; height: 64px; margin-bottom: 8px;
    }
    .side-cart .cart-item-name { font-size: .95rem; }
    .side-cart .cart-item-price { font-size: .95rem; margin-top: 4px; }
    .side-cart .cart-item-quantity { margin-top: 8px; }
    .side-cart .checkout-btn { max-width: 100%; }
    .side-cart .cart-modal-footer { flex-wrap: wrap; gap: 10px; }
  }

/* Customer Reviews Section */
#customer-reviews {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#customer-reviews h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #414141;
}

#review-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.review:last-child {
    border-bottom: none;
}

.review h3 {
    font-size: 1.2rem;
    margin: 0 0 5px;
    color: #555;
}

.review .rating {
    color: #18B19C;
    margin-bottom: 10px;
}

.review p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Testimonial Section */
.testimonial-container {
    width: 100%;
    text-align: center;
    overflow: hidden;
    padding: 20px;
    position: relative;
}

/* Fading Edges Effect */
.testimonial-container::before,
.testimonial-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonial-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.testimonial-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Testimonial Slider */
.testimonial-slider {
    overflow: hidden;
    width: 90%;
    margin: auto;
    white-space: nowrap;
}

/* Scrolling Track */
.testimonial-track {
    display: flex;
    gap: 15px; /* Adjust spacing between testimonials */
    width: max-content;
    will-change: transform;
}

/* Testimonial Box (Now Adjusts to Text Length) */
.testimonial {
    flex: 0 0 400px; /* Fixed width */
    max-width: 400px;
    min-height: 200px; /* Set a reasonable min height */
    height: auto; /* Automatically expands for longer text */
    padding: 20px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures proper spacing */
    align-items: center;
    text-align: center;
    overflow: hidden;
    word-wrap: break-word;
}

/* Ensure Text Stays Inside & Adjusts */
.testimonial p {
    margin: 0;
    padding: 5px 10px;
    font-size: 1rem;
    line-height: 1.5;
    word-wrap: break-word;
    white-space: normal; /* Ensures text wraps properly */
    flex-grow: 1; /* Allows text to expand while keeping user details at the bottom */
}

/* User Info Stays at Bottom */
.user {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

/* User Image */
.user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-bottom: 5px;
}

/* Hover Effect */
.testimonial:hover {
    background: #18B19C !important;
    color: white;
    border-color: #18B19C;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .testimonial {
        flex: 0 0 260px;
        max-width: 260px;
        padding: 15px;
        font-size: 0.9rem;
    }

    .testimonial p {
        font-size: 0.85rem;
        line-height: 1.4;
        padding: 4px 8px;
    }

    .user img {
        width: 32px;
        height: 32px;
    }

    .user h4 {
        font-size: 0.95rem;
    }

    .user p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .testimonial {
        flex: 0 0 240px;
        max-width: 240px;
        padding: 12px;
        font-size: 0.85rem;
    }

    .testimonial p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .user img {
        width: 28px;
        height: 28px;
    }

    .user h4 {
        font-size: 0.9rem;
    }

    .user p {
        font-size: 0.75rem;
    }
}


/* =========================================================
     Bottom CTA: Ready to Buy
     (matches HTML provided earlier: .cta-buy*)
     =======================================================*/
     .cta-buy{
        max-width: 1100px;
        margin: clamp(36px, 6vw, 88px) auto;
        padding: clamp(18px, 3.6vw, 28px);
        border-radius: calc(var(--radius) + 2px);
        background:
          linear-gradient(145deg, rgba(24,177,156,0.12), rgba(24,177,156,0.02)),
          rgba(255,255,255,0.75);
        border: 1px solid rgba(24,177,156,0.25);
        box-shadow: 0 18px 40px rgba(24,177,156,0.16);
        backdrop-filter: blur(14px);
      }
      .cta-buy__wrap{
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: clamp(18px, 3.4vw, 32px);
        align-items: center;
      }
      .cta-buy__title{
        font-size: clamp(1.6rem, 2.4vw, 2.1rem);
        color: var(--ink);
        margin: 0 0 6px;
        font-weight: 800;
        letter-spacing: .2px;
      }
      .cta-buy__subtitle{
        color: #334155;
        font-size: clamp(1rem, 1.6vw, 1.12rem);
        margin: 6px 0 12px;
      }
      .cta-buy__points{
        margin: 14px 0 18px;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
      }
      .cta-buy__points li{
        display: flex; align-items: center;
        gap: 10px;
        color: #374151;
        padding-left: 6px;
        position: relative;
        font-size: clamp(.98rem, 1.5vw, 1.06rem);
      }
      .cta-buy__points li::before{
        content: "";
        inline-size: 18px; block-size: 18px;
        border-radius: 50%;
        background: radial-gradient(circle at 35% 35%, #fff 0 30%, transparent 31%), var(--teal);
        border: 2px solid rgba(255,255,255,0.75);
        box-shadow: 0 0 0 2px rgba(24,177,156,0.15);
        flex: 0 0 auto;
      }
      
      .cta-buy__actions{
        display: flex; flex-wrap: wrap; gap: 10px 14px;
        align-items: center;
        margin: 6px 0 10px;
      }
      .buy-now-button.cta-buy__primary{
        padding: 12px 20px;
        border-radius: 12px;
        font-weight: 700;
        background: linear-gradient(180deg, var(--teal), var(--teal-800));
        box-shadow: 0 14px 28px rgba(24,177,156,0.25);
        border: 1px solid rgba(255,255,255,0.35);
      }
      .buy-now-button.cta-buy__primary:hover{
        filter: brightness(0.98);
        transform: translateY(-1px);
        transition: transform var(--t-fast), filter var(--t-fast);
      }
      .cta-buy__secondary{
        display: inline-block;
        padding: 11px 16px;
        border-radius: 12px;
        font-weight: 700;
        color: var(--teal-800);
        background: rgba(24,177,156,0.08);
        border: 1px solid rgba(24,177,156,0.25);
        text-decoration: none;
      }
      .cta-buy__secondary:hover{
        background: rgba(24,177,156,0.12);
      }
      .cta-buy__link{
        display: inline-block;
        font-weight: 700;
        color: #0b7768;
        text-decoration: underline;
        text-underline-offset: 3px;
      }
      .cta-buy__link:hover{ color: var(--teal-800); }
      
      .cta-buy__meta{
        margin-top: 6px;
        color: #374151;
        font-size: .98rem;
        display: flex; align-items: center; gap: 8px;
      }
      .cta-buy__meta span[aria-hidden="true"]{ letter-spacing: 1px; }
      
      .cta-buy__media{
        margin: 0; padding: 0; display: grid; place-items: center;
        background:
          radial-gradient(circle at 50% 30%, rgba(24,177,156,0.18), transparent 45%),
          radial-gradient(circle at 80% 80%, rgba(2,140,122,0.12), transparent 50%);
        border-radius: var(--radius);
        border: 1px solid rgba(24,177,156,0.18);
        box-shadow: 0 12px 24px rgba(24,177,156,0.12);
      }
      .cta-buy__media img{
        display: block;
        width: 100%;
        max-width: 480px;
        height: auto;
        border-radius: 14px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.08);
      }
      
      /* =========================================================
         Buttons: shared focus/hover polish
         =======================================================*/
      .buy-now-button,
      .cta-buy__secondary,
      .cta-buy__link{
        transition: transform var(--t-fast), filter var(--t-fast), background var(--t-fast), color var(--t-fast);
      }
      .buy-now-button:focus-visible,
      .cta-buy__secondary:focus-visible,
      .cta-buy__link:focus-visible{
        outline: none;
        box-shadow: 0 0 0 3px #67C1FF(24,177,156,0.35);
      }
      
      /* =========================================================
         Responsive
         =======================================================*/
      @media (max-width: 860px){
        .cta-buy__wrap{
          grid-template-columns: 1fr;
        }
        .cta-buy__media{
          order: -1;
        }
        .faq-section{
          max-width: 92%;
          padding: clamp(16px, 4vw, 24px);
        }
      }
      
      @media (max-width: 640px){
        .return-policy-btn,
        .contact-btn{
          font-size: .95rem;
          padding: 10px 16px;
        }
      }
      
      /* =========================================================
         Motion-Reduced
         =======================================================*/
      @media (prefers-reduced-motion: reduce){
        html { scroll-behavior: auto; }
        .faq-question,
        .return-policy-btn,
        .contact-btn,
        .buy-now-button,
        .cta-buy__secondary,
        .cta-buy__link,
        .faq-answer { transition: none !important; }
      }
      
      /* =========================================================
         Dark Mode (optional polish)
         =======================================================*/
      @media (prefers-color-scheme: dark){
        :root{
          --glass-bg: rgba(18,24,27,0.55);
          --glass-border: rgba(255,255,255,0.12);
          --glass-shadow: 0 10px 30px rgba(2, 140, 122, 0.22);
          --bg: #0f1416;
          --ink: #e5e7eb;
          --ink-2: #f3f4f6;
        }
        body{
          background:
            radial-gradient(1100px 1100px at 15% 8%, rgba(24,177,156,0.12), transparent 50%),
            radial-gradient(800px 800px at 85% 18%, rgba(2,140,122,0.1), transparent 55%),
            #0b1113;
        }
        .faq-answer{ background: rgba(22,30,33,0.7); }
        .faq-answer p{ color: #e5e7eb; }
        .cta-buy{
          background:
            linear-gradient(145deg, rgba(24,177,156,0.12), rgba(24,177,156,0.03)),
            rgba(10,14,16,0.6);
          border-color: rgba(24,177,156,0.22);
        }
        .cta-buy__subtitle,
        .cta-buy__points li,
        .cta-buy__meta{ color: #e5e7eb; }
        .cta-buy__points li::before{ border-color: rgba(24,177,156,0.4); }
        .contact-section{ background: rgba(15,20,22,0.6); }
      }

/* ✅ Leave Testimonial Button */
.leave-testimonial-btn {
    background-color: #18B19C; /* Green color */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 30px; /* Rounded edges */
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: block;
    margin: 20px auto;
}

.leave-testimonial-btn:hover {
    background-color: #026a59; /* Darker green on hover */
    transform: scale(1.05); /* Slight zoom effect */
}

/* ✅ Testimonial Modal (Hidden by Default) */
.testimonial-modal {
    display: none; /* Hidden initially */
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark background overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-modal-content {
    position: relative; /* This is key */
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
  }
  

/* ✅ Modal Title */
.testimonial-modal-content h2 {
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.close-testimonial-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
  }
  
  .close-testimonial-modal:hover {
    color: #000;
  }
  

/* ✅ Text Inputs */
.testimonial-modal-content textarea,
.testimonial-modal-content input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* ✅ Different Heights for Textarea and Name Input */
#testimonial-input {
    height: 100px; /* Taller text box */
}

#testimonial-name {
    height: 50px;
}

/* ✅ Green Glow Effect When Focused */
.testimonial-modal-content textarea:focus,
.testimonial-modal-content input:focus {
    border-color: #18B19C; /* Green border */
    box-shadow: 0 0 8px rgba(2, 145, 122, 0.6); /* Green glow */
    outline: none;
}

/* ✅ Submit Button */
#submit-testimonial-btn {
    background-color: #18B19C;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 15px;
    width: 100%;
}

#submit-testimonial-btn:hover {
    background-color: #026a59;
    transform: scale(1.05);
}

/* ✅ Modal Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

#testimonial-modal {
    display: none !important; /* Ensure the modal is completely hidden */
    opacity: 0; 
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

#testimonial-modal.modal-visible {
    opacity: 1;
    visibility: visible;
    display: flex !important;
}

.upsell-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 20px;
}

.upsell-content {
  position: relative;
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  width: 100%;
}

.upsell-content h2 {
  white-space: nowrap; /* Prevent wrapping */
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #18B19C;
}

.upsell-content p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #333;
}

.upsell-content label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  justify-content: center;
}

/* ✅ Styled checkboxes */
.upsell-content input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #18B19C;
  cursor: pointer;
}

/* Close "X" button */
.upsell-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  font-weight: bold;
}

.upsell-close:hover {
  color: #18B19C;
}

.upsell-actions {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

#upsell-continue.checkout-btn {
  font-size: 1rem;
  font-weight: bold;
  background-color: #262626;
  color: white;
  padding: 12px 32px; /* Wider horizontal padding */
  min-width: 240px; /* Ensures it doesn't shrink too much */
  border: none;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap; /* Prevents text wrapping */
  text-align: center;
  display: inline-block;
}

#upsell-continue.checkout-btn:hover {
  background-color: #4f4f4f;
}

#upsell-continue::after {
  content: " →";
  font-weight: bold;
}

/* Responsive improvements */
@media (max-width: 480px) {
  .upsell-content {
    padding: 20px;
    max-width: 90vw;
  }

  .upsell-content h2 {
    font-size: 1.25rem;
  }

  .upsell-content label {
    font-size: 0.95rem;
  }
}

/* ===================== LUXE ICE-BLUE LINK SYSTEM ===================== */

/* Base link style (default state) */
a, 
.link {
  color: #67C1FF; /* icy blue */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

/* Hover & focus states */
a:hover,
a:focus,
.link:hover,
.link:focus {
  color: #F4E5C2; /* champagne glow */
  text-shadow: 0 0 6px rgba(244, 229, 194, 0.4);
}

/* Visited state stays consistent (no purple) */
a:visited {
  color: #67C1FF;
}

/* Footer-specific hover to make it feel illuminated */
.site-footer a:hover {
  color: #F4E5C2;
  text-shadow: 0 0 6px rgba(244, 229, 194, 0.35);
}

/* Optional: make link buttons or CTAs pop */
.button-link {
  display: inline-block;
  padding: 8px 14px;
  color: #0b0e13;
  background: linear-gradient(135deg, #67C1FF, #1A5F8E);
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}

.button-link:hover {
  background: linear-gradient(135deg, #F4E5C2, #C2A671);
  color: #0b0e13;
  box-shadow: 0 4px 20px rgba(244, 229, 194, 0.35);
}


/* Footer Styles */
.site-footer {
    background-color: #414141; /* Dark grey background */
    color: #fff; /* White text */
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
    position: relative; /* To ensure footer-bottom can align correctly */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Navigation, Social Media, and Info */
.footer-nav,
.footer-social,
.footer-info {
    flex: 1 1 calc(33.33% - 20px); /* Responsive grid */
    min-width: 200px;
}

.footer-nav h3,
.footer-social h3,
.footer-info h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}

.footer-nav ul,
.footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li,
.footer-social ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a,
.footer-social ul li a {
    color: #ccc; /* Light grey links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover,
.footer-social ul li a:hover {
    color: #C2A671; /* Green hover color */
}

/* Footer Info Section */
.footer-info {
    font-size: 0.9rem;
    color: #ccc; /* Light grey text */
    line-height: 1.6; /* Better readability */
}

.footer-info p {
    margin: 10px 0; /* Add spacing between lines */
}

.footer-info a {
    color: #C2A671; /* Replace with your brand's specific green color code */
    text-decoration: none; /* Optional: removes underline from the link */
}

.footer-info a:hover {
    color: #C2A671; /* Darker green for hover, adjust as needed */
    text-decoration: underline; /* Optional: adds underline on hover for better usability */
}


/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #bbb; /* Lighter grey for bottom text */
    width: 100%;
}

.footer-bottom p {
    margin: 0;
    font-size: 1rem; /* Slightly larger for clarity */
    font-weight: bold; /* Make Reel Free stand out */
    color: #fff;
}

.footer-brand {
    font-weight: 700; /* Bold */
    color: #fff;
}

.footer-year {
    font-weight: 500; /* Medium */
    color: #ccc;
}

.footer-rights {
    font-weight: 300; /* Light */
    color: #bbb;
}

.footer-divider {
    margin: 0 0.3rem;
    color: #999;
}

/* Media Query for Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack footer sections vertically */
        align-items: center;
        text-align: center;
    }

    .footer-nav,
    .footer-social,
    .footer-info {
        flex: 1 1 100%; /* Each section takes full width */
        margin-bottom: 20px; /* Add spacing between stacked sections */
    }

    .footer-bottom {
        margin-top: 20px; /* Adjust margin for smaller screens */
    }
}

/* ===========================
   Footer Chatbot Launcher
   =========================== */

   .footer-chat {
    /* mobile: flows under contact email */
    margin-top: 14px;
  }
  
  .rf-chatnote {
    margin-top: 6px;
    font-size: 0.78rem;
    color: #9fd8cf; /* subtle teal tint under dark footer */
  }
  
  /* The pill button with two words: Help • Chat */
  .rf-chatbtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 0;
    background: #18B19C;         /* brand teal */
    color: #0c2b27;               /* ink on teal */
    font-weight: 700;
    font-size: 0.98rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(2, 24, 43, 0.18);
    transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
  }
  
  .rf-chatbtn:hover { transform: translateY(-1px); }
  .rf-chatbtn:active { transform: translateY(0); box-shadow: 0 4px 12px rgba(2, 24, 43, 0.16); }
  .rf-chatbtn:focus-visible { outline: 3px solid #67C1FF; outline-offset: 2px; }
  
  .rf-chatbtn-help { opacity: 0.95; }
  .rf-chatbtn-dot  { opacity: 0.75; }
  .rf-chatbtn-chat {
    background: #ffffff;
    color: #09443c;
    padding: 6px 10px;
    border-radius: 999px;
    line-height: 1;
    font-weight: 800;
  }
  
  /* Desktop positioning: attach to bottom-right corner of the footer */
  @media (min-width: 768px) {
    .site-footer {
      position: relative; /* already present, ensures absolute positioning is relative */
    }
    .footer-chat {
      position: absolute;
      right: 18px;
      bottom: 18px;
      margin-top: 0; /* override mobile spacing */
      text-align: right;
    }
  }
  
  /* Respect reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .rf-chatbtn { transition: none !important; }
  }

  /* === Mobile centering + overflow fix === */
html, body {
  overflow-x: hidden;
}

.apw-theme,
main,
section {
  width: 100%;
  max-width: 100%;
}

/* === Early Black Friday Sale styling (inside right-details only) === */
.right-details .sale-label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ef4444;
  margin: 0 0 4px;
}

.right-details .price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

/* Fake “original” price with red strikethrough */
.right-details .fake-original-price {
  font-size: 1rem;
  color: #9ca3af;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  margin: 0;
}

/* Actual selling price */
.right-details .actual-price {
  font-size: 2.1rem;
  font-weight: 800;
  color: #d5bf91; /* matches your luxe gold */
  letter-spacing: .5px;
  margin: 0;
}


/* ============================================================
   VIDEO SUPPORT FOR PRODUCT GALLERY (NON-BREAKING)
   ============================================================ */

/* Video hidden by default */
.main-photo .main-video {
  display: none;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

/* When JS sets .is-video-active, swap image → video */
.main-photo.is-video-active .main-image {
  display: none;
}

.main-photo.is-video-active .main-video {
  display: block;
}

:root {
  --announce-h: 40px;   /* tweak to match actual bar height */
  --header-h: 84px;     /* your header height */
}

/* Keep the sale bar fixed at the very top */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3000;
}

/* Make sure the header sits just below the announcement bar */
header {
  position: fixed;
  top: var(--announce-h) !important;  /* override navbar.css */
  left: 0;
  right: 0;
  z-index: 2500;
}

/* Push content down so it’s not under the fixed header */
main {
  padding-top: calc(var(--announce-h) + var(--header-h));
}

