/* EmberVault Store — Dark Luxury Theme */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Luxury Gold */
  --gold: #C9A96E;
  --gold-light: #D4B87A;
  --gold-glow: #E8D5A3;
  --gold-dark: #A88B52;
  --gold-muted: rgba(201, 169, 110, 0.15);

  /* Vibrant Accents */
  --accent-purple: #BF00FF;
  --accent-pink: #FF1493;
  --accent-bright-gold: #FFD700;
  --accent-cyan: #00D9FF;

  /* Deep Blacks & Purples */
  --vault-dark: #08070A;
  --vault-mid: #0F0D14;
  --vault-card: #14111C;
  --vault-card-hover: #1B1726;
  --vault-elevated: #1E1A28;

  /* Text */
  --cream: #F0ECE3;
  --smoke: #8B8193;
  --white: #FAF8F5;

  /* State */
  --danger: #C94040;
  --success: #5FA868;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Spacing rhythm */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 100px;
}

/* Vibrant glow animations */
@keyframes neon-glow-purple {
  0%, 100% { box-shadow: 0 0 10px rgba(191, 0, 255, 0.5), 0 0 20px rgba(191, 0, 255, 0.3); }
  50% { box-shadow: 0 0 20px rgba(191, 0, 255, 0.8), 0 0 40px rgba(191, 0, 255, 0.5); }
}

@keyframes neon-glow-pink {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 20, 147, 0.5), 0 0 20px rgba(255, 20, 147, 0.3); }
  50% { box-shadow: 0 0 20px rgba(255, 20, 147, 0.8), 0 0 40px rgba(255, 20, 147, 0.5); }
}

@keyframes neon-glow-gold {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3); }
  50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.5); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

body {
  font-family: var(--font-body);
  background: var(--vault-dark);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle grain overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.018'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
}

/* Selection */
::selection {
  background: rgba(201, 169, 110, 0.25);
  color: var(--white);
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover { color: var(--gold-glow); }

/* ===== NAVIGATION ===== */
.store-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(8, 7, 10, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(201, 169, 110, 0.06);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.25s ease;
}
.nav-logo:hover { color: var(--gold-glow); }

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--smoke);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--accent-pink); }
.nav-links a.active { color: var(--accent-purple); font-weight: 600; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink), transparent);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 10px;
  transition: all 0.25s ease;
}
.cart-link:hover {
  border-color: var(--accent-pink);
  color: var(--white);
  background: rgba(255, 20, 147, 0.08);
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

.cart-icon { font-size: 1rem; }

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gold);
  color: var(--vault-dark);
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-badge:empty { display: none; }

/* ===== NAV CATEGORIES DROPDOWN ===== */
.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--smoke);
  text-transform: uppercase;
  padding: 0 0 2px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.25s ease;
}
.nav-dropdown-trigger:hover { color: var(--cream); }
.nav-dropdown-trigger.active { color: var(--gold-light); }
.nav-dropdown-trigger.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.nav-dropdown-arrow {
  font-size: 0.65rem;
  transition: transform 0.22s ease;
  display: inline-block;
  line-height: 1;
}
.nav-dropdown-wrap:hover .nav-dropdown-arrow,
.nav-dropdown-wrap.open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(14, 12, 20, 0.97);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 16px;
  padding: 8px;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(201, 169, 110, 0.03) inset;
  z-index: 200;
}
.nav-dropdown-wrap:hover .nav-dropdown-menu,
.nav-dropdown-wrap.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--smoke);
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.nav-dropdown-item:hover {
  background: rgba(201, 169, 110, 0.08);
  color: var(--cream);
}
.nav-dropdown-item.active {
  background: rgba(201, 169, 110, 0.1);
  color: var(--gold-light);
}
.nav-dropdown-item-icon {
  font-size: 1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* Mobile menu section label */
.mobile-menu-section-label {
  font-size: 0.58rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.45;
  padding: 16px 16px 4px;
  font-weight: 600;
  pointer-events: none;
  display: block;
}

/* ===== AGE GATE ===== */
.age-gate {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.age-gate::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(45, 27, 78, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.age-gate-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.age-gate-tag {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 56px;
  opacity: 0.6;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.age-gate-box {
  background: var(--vault-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 24px;
  padding: 56px 56px 48px;
  max-width: 460px;
  width: 100%;
  position: relative;
  z-index: 1;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 169, 110, 0.04) inset;
}

.age-gate-box h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.age-gate-box p {
  color: var(--smoke);
  font-size: 0.92rem;
  font-weight: 400;
  margin-bottom: 36px;
  line-height: 1.7;
}

.age-gate-btn {
  display: block;
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.35s ease;
  margin-bottom: 18px;
  position: relative;
}
.age-gate-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 30px rgba(191, 0, 255, 0.6), 0 0 60px rgba(255, 20, 147, 0.4), 0 20px 50px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 100%);
}

.age-gate-exit {
  display: block;
  color: var(--smoke);
  font-size: 0.78rem;
  opacity: 0.5;
  transition: opacity 0.25s;
  letter-spacing: 0.5px;
}
.age-gate-exit:hover { opacity: 0.9; color: var(--smoke); }

.age-gate-legal {
  font-size: 0.68rem;
  color: var(--smoke);
  opacity: 0.35;
  margin-top: 32px;
  position: relative;
  z-index: 1;
  max-width: 400px;
  line-height: 1.6;
}

/* ===== PAGE WRAPPER ===== */
.page {
  padding-top: 80px;
  min-height: 100vh;
}

.page-header {
  padding: 56px 48px 36px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.page-header p {
  color: var(--smoke);
  font-size: 1rem;
  font-weight: 400;
}

.page-breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.78rem;
  color: var(--smoke);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.page-breadcrumb a { color: var(--smoke); }
.page-breadcrumb a:hover { color: var(--gold-light); }
.page-breadcrumb .sep { opacity: 0.3; }

/* ===== CATEGORY SECTION ===== */
.category-section {
  padding: 36px 48px 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.category-icon { font-size: 1.3rem; }

.category-title h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
}

.category-title .count {
  font-size: 0.7rem;
  color: var(--smoke);
  background: var(--vault-elevated);
  padding: 5px 14px;
  border-radius: 100px;
  margin-left: auto;
  letter-spacing: 0.5px;
  font-weight: 500;
  border: 1px solid rgba(201, 169, 110, 0.06);
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--vault-card);
  border: 2px solid rgba(201, 169, 110, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  border-color: var(--accent-purple);
  transform: translateY(-10px);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 0 2px var(--accent-purple),
    0 0 30px rgba(191, 0, 255, 0.4),
    0 0 60px rgba(191, 0, 255, 0.2);
}

/* Subtle shimmer line on card hover */
.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.6), transparent);
  transition: left 0.6s ease;
  z-index: 5;
}
.product-card:hover::after { left: 140%; }

.product-card-image {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.product-card-image.cat-adult-novelties {
  background: linear-gradient(160deg, #221638 0%, #150F22 60%, #0E0A15 100%);
}
.product-card-image.cat-smoking-glass {
  background: linear-gradient(160deg, #172118 0%, #0F1910 60%, #0A100D 100%);
}

/* Bottom fade: blends image into card body */
.product-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: linear-gradient(to top, var(--vault-card) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* Real product images */
.product-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
  opacity: 0.9;
}
.product-card:hover .product-card-image img {
  transform: scale(1.06);
  opacity: 1;
}

.product-card-image .product-emoji {
  font-size: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.45;
  transition: all 0.4s ease;
  filter: saturate(0.8);
  position: relative;
  z-index: 1;
  gap: 0;
}
.product-card-image .product-emoji::after {
  content: 'NO IMAGE';
  display: block;
  font-size: 0.52rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: rgba(139, 129, 147, 0.65);
  margin-top: 10px;
  text-transform: uppercase;
}
.product-card:hover .product-emoji {
  opacity: 0.88;
  transform: scale(1.1);
  filter: saturate(1.1);
}

/* Quick View overlay on hover */
.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 10, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
  backdrop-filter: blur(2px);
}
.product-card:hover .card-overlay { opacity: 1; }

.card-overlay-text {
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 2px solid var(--accent-cyan);
  padding: 10px 28px;
  border-radius: 8px;
  background: rgba(8, 7, 10, 0.7);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3), inset 0 0 20px rgba(0, 217, 255, 0.1);
}

/* Category badge (top-right of image) */
.card-cat-badge {
  position: absolute;
  top: 13px;
  right: 13px;
  background: rgba(8, 7, 10, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 169, 110, 0.18);
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 7px;
  z-index: 4;
}

/* Save badge (top-left or over image) */
.card-save-badge {
  position: absolute;
  top: 13px;
  left: 13px;
  background: linear-gradient(135deg, var(--accent-bright-gold) 0%, var(--accent-pink) 100%);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 5px 11px;
  border-radius: 7px;
  z-index: 4;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.product-card-image .featured-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 8px;
  z-index: 4;
  box-shadow: 0 0 15px rgba(191, 0, 255, 0.5);
}

.product-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
  line-height: 1.3;
}
.product-card-name a { color: var(--white); transition: color 0.2s ease; }
.product-card-name a:hover { color: var(--gold-light); }

.product-card-desc {
  font-size: 0.82rem;
  color: var(--smoke);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 169, 110, 0.07);
  gap: 12px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
}

.product-price .current {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-bright-gold);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.product-price .compare {
  font-size: 0.78rem;
  color: var(--smoke);
  text-decoration: line-through;
  opacity: 0.45;
}

.btn-add-cart {
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.28s ease;
  font-family: var(--font-body);
  white-space: nowrap;
  text-transform: uppercase;
}
.btn-add-cart:hover {
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 100%);
  box-shadow: 0 0 20px rgba(191, 0, 255, 0.5), 0 0 40px rgba(255, 20, 147, 0.3), 0 6px 24px rgba(255, 20, 147, 0.25);
  transform: translateY(-3px);
}
.btn-add-cart:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}
.btn-add-cart.added {
  background: linear-gradient(135deg, var(--success) 0%, #488E50 100%);
  color: var(--white);
  box-shadow: 0 0 20px rgba(95, 168, 104, 0.4);
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 48px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-detail-image {
  background: var(--vault-card);
  border: 1px solid rgba(201, 169, 110, 0.09);
  border-radius: 28px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: sticky;
  top: 100px;
  align-self: start;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(201, 169, 110, 0.05),
    inset 0 0 80px rgba(201, 169, 110, 0.02);
  overflow: hidden;
}
.product-detail-image.cat-adult-novelties {
  background: linear-gradient(160deg, #221638 0%, #150F22 60%, #0E0A15 100%);
}
.product-detail-image.cat-smoking-glass {
  background: linear-gradient(160deg, #172118 0%, #0F1910 60%, #0A100D 100%);
}

/* Real product image on detail page */
.product-detail-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1;
}
.product-detail-image:hover img { transform: scale(1.035); }

/* No-image placeholder on detail page */
.product-detail-image .product-emoji {
  font-size: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.4;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}
.product-detail-image .product-emoji::after {
  content: 'NO IMAGE AVAILABLE';
  display: block;
  font-size: 0.6rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: rgba(139, 129, 147, 0.65);
  margin-top: 14px;
  text-transform: uppercase;
}

/* Radial ambient glow overlay on product image */
.product-detail-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 85%, rgba(201, 169, 110, 0.09) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
  border-radius: 28px;
}

.product-detail-image .featured-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--vault-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 10px;
  z-index: 3;
}

.product-detail-info h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

.product-detail-category {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.product-detail-price .current {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}

.product-detail-price .compare {
  font-size: 1.05rem;
  color: var(--smoke);
  text-decoration: line-through;
  opacity: 0.5;
}

.product-detail-price .save {
  font-size: 0.75rem;
  background: rgba(95, 168, 104, 0.12);
  color: var(--success);
  padding: 5px 12px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.product-detail-desc {
  color: var(--smoke);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
  margin-bottom: 36px;
}

.product-detail-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

.qty-btn {
  background: var(--vault-elevated);
  color: var(--cream);
  border: none;
  width: 44px;
  height: 48px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.qty-btn:hover { background: rgba(201, 169, 110, 0.1); color: var(--gold-light); }

.qty-input {
  width: 52px;
  text-align: center;
  background: var(--vault-dark);
  color: var(--cream);
  border: none;
  border-left: 1px solid rgba(201, 169, 110, 0.08);
  border-right: 1px solid rgba(201, 169, 110, 0.08);
  height: 48px;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
}
.qty-input:focus { outline: none; }

.btn-add-cart-lg {
  flex: 1;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.35s ease;
}
.btn-add-cart-lg:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 30px rgba(191, 0, 255, 0.5), 0 0 60px rgba(255, 20, 147, 0.4), 0 15px 40px rgba(255, 20, 147, 0.25);
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 100%);
}
.btn-add-cart-lg:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-add-cart-lg.added {
  background: linear-gradient(135deg, var(--success) 0%, #488E50 100%);
  color: var(--white);
  box-shadow: 0 0 20px rgba(95, 168, 104, 0.4);
}

.product-detail-meta {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.meta-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--smoke);
  font-weight: 400;
  background: rgba(201, 169, 110, 0.035);
  border: 1px solid rgba(201, 169, 110, 0.07);
  border-radius: 12px;
  padding: 12px 14px;
  line-height: 1.4;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.meta-item:hover {
  border-color: rgba(201, 169, 110, 0.14);
  background: rgba(201, 169, 110, 0.055);
}
.meta-item .icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ===== CART PAGE ===== */
.cart-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 36px 48px 96px;
}

.cart-empty {
  text-align: center;
  padding: 96px 24px;
}

.cart-empty h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.cart-empty p {
  color: var(--smoke);
  font-weight: 400;
  margin-bottom: 36px;
  font-size: 1rem;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.cart-item {
  background: var(--vault-card);
  border: 1px solid rgba(201, 169, 110, 0.05);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 22px;
  transition: all 0.25s ease;
}
.cart-item:hover { border-color: rgba(201, 169, 110, 0.12); }

.cart-item-image {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(201, 169, 110, 0.08);
}
.cart-item-image.cat-adult-novelties {
  background: linear-gradient(160deg, #221638 0%, #150F22 100%);
}
.cart-item-image.cat-smoking-glass {
  background: linear-gradient(160deg, #172118 0%, #0F1910 100%);
}
.cart-item-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
}

.cart-item-info { flex: 1; }

.cart-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}

.cart-item-price {
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 400;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 10px;
  overflow: hidden;
}

.cart-qty-btn {
  background: var(--vault-mid);
  color: var(--cream);
  border: none;
  width: 34px;
  height: 34px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.cart-qty-btn:hover { background: rgba(191, 0, 255, 0.2); color: var(--accent-purple); }

.cart-qty-val {
  width: 38px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--cream);
  background: var(--vault-dark);
  border: none;
  border-left: 1px solid rgba(201, 169, 110, 0.08);
  border-right: 1px solid rgba(201, 169, 110, 0.08);
  height: 34px;
  line-height: 34px;
  font-family: var(--font-body);
  font-weight: 500;
}

.cart-item-total {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  min-width: 72px;
  text-align: right;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--smoke);
  font-size: 1rem;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: all 0.2s;
  opacity: 0.6;
}
.cart-item-remove:hover {
  color: var(--danger);
  background: rgba(201, 64, 64, 0.08);
  opacity: 1;
}

/* Cart Summary */
.cart-summary {
  background: var(--vault-card);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.2);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.95rem;
}

.cart-summary-row.total {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  margin-top: 14px;
  padding-top: 20px;
}

.cart-summary-row.total .label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
}

.cart-summary-row.total .value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.cart-summary-row .label { color: var(--smoke); }
.cart-summary-row .value { color: var(--cream); font-weight: 500; }

.cart-checkout-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.72rem;
  color: var(--smoke);
  letter-spacing: 0.3px;
  margin-top: 24px;
  margin-bottom: 10px;
  opacity: 0.75;
}
.cart-checkout-trust::before,
.cart-checkout-trust::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201, 169, 110, 0.1);
}

.cart-free-ship-nudge {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.82rem;
  color: #86efac;
  text-align: center;
  margin: 10px 0 14px;
}

.cart-free-ship-nudge strong {
  color: #22c55e;
}

.btn-checkout {
  display: block;
  width: 100%;
  padding: 18px;
  margin-top: 0;
  background: linear-gradient(135deg, var(--accent-bright-gold) 0%, var(--accent-purple) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.35s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn-checkout::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}
.btn-checkout:hover::after { left: 150%; }
.btn-checkout:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4), 0 0 60px rgba(191, 0, 255, 0.3), 0 15px 50px rgba(0, 0, 0, 0.4);
  box-shadow: 0 14px 36px rgba(201, 169, 110, 0.3);
  color: var(--vault-dark);
  background: linear-gradient(135deg, var(--gold-glow) 0%, var(--gold) 100%);
}

.cart-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--smoke);
  margin-top: 12px;
  opacity: 0.6;
}

.btn-continue {
  display: block;
  width: 100%;
  padding: 15px;
  margin-top: 12px;
  background: transparent;
  color: var(--smoke);
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid rgba(139, 129, 147, 0.15);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  font-family: var(--font-body);
  letter-spacing: 0.3px;
}
.btn-continue:hover {
  border-color: rgba(201, 169, 110, 0.2);
  color: var(--cream);
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  text-align: center;
  padding: 96px 24px;
  max-width: 580px;
  margin: 0 auto;
}

.success-icon {
  font-size: 4.5rem;
  margin-bottom: 28px;
}

.success-page h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.success-page p {
  color: var(--smoke);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 8px;
}

.success-order-number {
  font-family: var(--font-display);
  color: var(--gold);
  font-weight: 600;
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 44px;
  letter-spacing: 0.5px;
}

/* ===== FOOTER ===== */
.store-footer {
  padding: 44px 48px 32px;
  border-top: 1px solid rgba(201, 169, 110, 0.05);
  max-width: 1200px;
  margin: 0 auto;
}

.store-footer .footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.store-footer .footer-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
}

.store-footer .footer-text {
  font-size: 0.72rem;
  color: var(--smoke);
  opacity: 0.35;
  letter-spacing: 0.5px;
}

.store-footer .footer-links {
  display: flex;
  gap: 20px;
}

.store-footer .footer-links a {
  font-size: 0.72rem;
  color: var(--smoke);
  opacity: 0.4;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease;
}

.store-footer .footer-links a:hover {
  opacity: 0.7;
  color: var(--gold-light);
}

.store-footer .footer-policy {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 169, 110, 0.04);
  flex-wrap: wrap;
}

.store-footer .footer-policy a {
  font-size: 0.68rem;
  color: var(--smoke);
  opacity: 0.28;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.store-footer .footer-policy a:hover {
  opacity: 0.6;
  color: var(--gold-light);
}

/* ===== TOAST ===== */
.toast-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--vault-elevated);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 14px;
  padding: 16px 22px;
  color: var(--cream);
  font-size: 0.85rem;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
  animation: toastIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  backdrop-filter: blur(16px);
}

.toast.success { border-color: rgba(95, 168, 104, 0.25); }
.toast.error { border-color: rgba(201, 64, 64, 0.25); }

@keyframes toastIn {
  from { opacity: 0; transform: translateY(24px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== SHARED BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--vault-dark);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.35s ease;
  text-align: center;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 169, 110, 0.25);
  color: var(--vault-dark);
  background: linear-gradient(135deg, var(--gold-glow) 0%, var(--gold) 100%);
}
.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid rgba(201, 169, 110, 0.45);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.35s ease;
  text-align: center;
  text-decoration: none;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.15);
  background: rgba(201, 169, 110, 0.06);
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.12), transparent);
}

/* ===== HAMBURGER BUTTON ===== */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.hamburger-btn:hover { background: rgba(201, 169, 110, 0.08); }
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8, 7, 10, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-overlay.active {
  display: block;
  opacity: 1;
}

/* ===== MOBILE MENU DRAWER ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  height: 100dvh;
  background: var(--vault-card);
  border-left: 1px solid rgba(201, 169, 110, 0.1);
  z-index: 300;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -16px 0 64px rgba(0, 0, 0, 0.5);
}
.mobile-menu.open { right: 0; }

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  flex-shrink: 0;
}

.mobile-menu-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--smoke);
  font-size: 1rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.mobile-menu-close:hover {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-menu-links {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-menu-links a {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--smoke);
  transition: all 0.2s ease;
}
.mobile-menu-links a:hover,
.mobile-menu-links a.active {
  color: var(--gold-light);
  background: rgba(201, 169, 110, 0.07);
}

.mobile-cart-link {
  margin-top: 12px;
  padding-top: 20px !important;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  color: var(--cream) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.5px !important;
  text-transform: none !important;
}
.mobile-cart-link:hover {
  color: var(--white) !important;
  background: rgba(201, 169, 110, 0.06) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .store-nav { padding: 16px 20px; }
  .nav-left { gap: 20px; }
  .nav-links { display: none; }
  .hamburger-btn { display: flex; }
  .page-header { padding: 36px 20px 28px; }
  .category-section { padding: 24px 20px 44px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
  .product-detail { grid-template-columns: 1fr; padding: 24px 20px 72px; gap: 28px; }
  .product-detail-image { height: 300px; position: relative; top: auto; }
  .product-detail-meta { grid-template-columns: 1fr 1fr; }
  .cart-page { padding: 24px 20px 72px; }
  .cart-item { flex-wrap: wrap; gap: 14px; }
  .cart-item-total { min-width: auto; }
  .store-footer { padding: 32px 20px 24px; }
  .store-footer .footer-main { flex-direction: column; gap: 12px; text-align: center; }
  .store-footer .footer-policy { gap: 16px; }
  .age-gate-box { padding: 40px 28px 36px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-card-image { height: 200px; }
  .product-detail-info h1 { font-size: 1.6rem; }
  .product-detail-price .current { font-size: 1.6rem; }
}

/* ===== PRODUCT URGENCY BADGE ===== */
.product-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(95, 168, 104, 0.1);
  color: #5FA868;
  border: 1px solid rgba(95, 168, 104, 0.25);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

/* ===== STICKY MOBILE CTA BAR ===== */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: #13101A;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  padding: 12px 20px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 -4px 28px rgba(0, 0, 0, 0.55);
}
.sticky-mobile-cta.visible {
  display: flex;
}
.sticky-cta-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.sticky-cta-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.sticky-cta-name {
  font-size: 0.7rem;
  color: var(--smoke);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}
.sticky-cta-btn {
  flex-shrink: 0;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--vault-dark);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.28s ease;
  white-space: nowrap;
}
.sticky-cta-btn:hover {
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.35);
}
.sticky-cta-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.sticky-cta-btn.added {
  background: linear-gradient(135deg, var(--success) 0%, #488E50 100%);
  color: var(--white);
}
body.sticky-cta-active {
  padding-bottom: 76px;
}
@media (min-width: 769px) {
  .sticky-mobile-cta { display: none !important; }
}
@media (max-width: 768px) {
  .btn-add-cart-lg {
    padding: 18px 24px;
    font-size: 0.95rem;
  }
}

/* ===== POLICY PAGES ===== */
.policy-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 48px 80px;
}

.policy-header {
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  padding-bottom: 32px;
}

.policy-back {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--smoke);
  text-decoration: none;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  opacity: 0.5;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.policy-back:hover {
  opacity: 0.9;
  color: var(--gold-light);
}

.policy-header h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.policy-updated {
  font-size: 0.75rem;
  color: var(--smoke);
  opacity: 0.4;
  letter-spacing: 0.3px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.policy-section {
  padding: 28px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.05);
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-section h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.policy-section p {
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.75;
  line-height: 1.75;
  margin-bottom: 12px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section strong {
  color: var(--cream);
  opacity: 1;
  font-weight: 600;
}

.policy-section a.policy-link {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  transition: border-color 0.2s ease;
}

.policy-section a.policy-link:hover {
  border-color: var(--gold);
}

.policy-list {
  list-style: none;
  margin: 8px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-list li {
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.75;
  line-height: 1.65;
  padding-left: 18px;
  position: relative;
}

.policy-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.5;
  font-size: 0.8rem;
}

.policy-section-accent {
  background: rgba(201, 169, 110, 0.03);
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid rgba(201, 169, 110, 0.08) !important;
  margin: 4px 0;
}

/* Policy Table */
.policy-table {
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin: 12px 0 16px;
}

.policy-table-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  padding: 12px 16px;
  gap: 12px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.05);
  font-size: 0.82rem;
}

.policy-table-row:last-child {
  border-bottom: none;
}

.policy-table-header {
  background: rgba(201, 169, 110, 0.06);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

.policy-table-row span {
  color: var(--cream);
  opacity: 0.7;
}

.policy-table-highlight {
  background: rgba(95, 168, 104, 0.06);
}

.policy-table-highlight span {
  color: var(--success) !important;
  opacity: 0.9 !important;
}

.policy-note {
  font-size: 0.78rem !important;
  opacity: 0.45 !important;
  font-style: italic;
}

/* Policy Footer CTA */
.policy-footer-cta {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.policy-footer-cta p {
  font-size: 0.82rem;
  color: var(--smoke);
  opacity: 0.5;
}

.policy-footer-cta a:not(.policy-shop-btn) {
  color: var(--gold-light);
  text-decoration: none;
  opacity: 0.7;
}

.policy-shop-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--vault-dark) !important;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  opacity: 1 !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.policy-shop-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.25);
}

@media (max-width: 768px) {
  .policy-page { padding: 32px 20px 60px; }
  .policy-header h1 { font-size: 1.8rem; }
  .policy-table-row { grid-template-columns: 1fr; gap: 4px; }
  .policy-table-header { display: none; }
  .policy-table-row span:first-child { font-weight: 600; color: var(--gold); opacity: 0.8; }
}

/* ===== FOOTER EMAIL SIGNUP ===== */
.footer-signup {
  padding: 28px 0;
  border-top: 1px solid rgba(201, 169, 110, 0.06);
  border-bottom: 1px solid rgba(201, 169, 110, 0.06);
  margin-bottom: 24px;
}

.footer-signup-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.footer-signup-sub {
  font-size: 0.82rem;
  color: var(--smoke);
  margin-bottom: 16px;
  opacity: 0.8;
}

.footer-signup-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  flex-wrap: wrap;
}

.footer-email-input {
  flex: 1;
  min-width: 180px;
  padding: 11px 16px;
  background: var(--vault-elevated);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 8px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.footer-email-input::placeholder { color: var(--smoke); opacity: 0.5; }
.footer-email-input:focus { border-color: rgba(201, 169, 110, 0.35); }

.footer-signup-btn {
  padding: 11px 22px;
  background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.footer-signup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(191, 0, 255, 0.4), 0 0 40px rgba(255, 20, 147, 0.2), 0 6px 20px rgba(255, 20, 147, 0.25);
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 100%);
}

.footer-signup-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.footer-signup-msg {
  margin-top: 10px;
  font-size: 0.82rem;
  padding: 8px 14px;
  border-radius: 6px;
}

.footer-signup-msg.success {
  color: var(--success);
  background: rgba(95, 168, 104, 0.08);
  border: 1px solid rgba(95, 168, 104, 0.2);
}

.footer-signup-msg.error {
  color: var(--danger);
  background: rgba(201, 64, 64, 0.08);
  border: 1px solid rgba(201, 64, 64, 0.2);
}

/* ===== EMAIL POPUP ===== */
.email-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeOverlay 0.3s ease;
}

@keyframes fadeOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

.email-popup {
  background: var(--vault-card);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 20px;
  padding: 44px 40px 36px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(201, 169, 110, 0.04);
  animation: slideUpPopup 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpPopup {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.email-popup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
  border-radius: 20px 20px 0 0;
}

.email-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--smoke);
  font-size: 1rem;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
}

.email-popup-close:hover {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
}

.email-popup-badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 5px 14px;
  border-radius: 100px;
  font-weight: 600;
  margin-bottom: 18px;
}

.email-popup-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.email-popup-title em {
  font-style: italic;
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}

.email-popup-sub {
  font-size: 0.88rem;
  color: var(--smoke);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.email-popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.email-popup-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--vault-elevated);
  border: 1px solid rgba(201, 169, 110, 0.14);
  border-radius: 10px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  text-align: center;
  transition: border-color 0.2s ease;
}

.email-popup-input::placeholder { color: var(--smoke); opacity: 0.5; }
.email-popup-input:focus { border-color: rgba(201, 169, 110, 0.4); }

.email-popup-btn {
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--accent-bright-gold) 0%, var(--accent-pink) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.email-popup-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4), 0 0 50px rgba(255, 20, 147, 0.3), 0 10px 30px rgba(255, 20, 147, 0.2);
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-bright-gold) 100%);
}

.email-popup-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.email-popup-msg {
  margin-top: 8px;
  font-size: 0.84rem;
  padding: 10px 16px;
  border-radius: 8px;
}

.email-popup-msg.success {
  color: var(--success);
  background: rgba(95, 168, 104, 0.08);
  border: 1px solid rgba(95, 168, 104, 0.2);
}

.email-popup-msg.error {
  color: var(--danger);
  background: rgba(201, 64, 64, 0.08);
  border: 1px solid rgba(201, 64, 64, 0.2);
}

.email-popup-disclaimer {
  margin-top: 14px;
  font-size: 0.7rem;
  color: var(--smoke);
  opacity: 0.45;
  letter-spacing: 0.3px;
}

@media (max-width: 480px) {
  .email-popup { padding: 36px 24px 28px; }
  .email-popup-title { font-size: 1.65rem; }
  .footer-signup-form { flex-direction: column; }
  .footer-email-input { min-width: unset; width: 100%; }
  .footer-signup-btn { width: 100%; }
}

/* ===== BLOG ===== */
.blog-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 100px;
}

.blog-header {
  text-align: center;
  margin-bottom: 64px;
}

.blog-header h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}

.blog-subtitle {
  font-size: 1.05rem;
  color: var(--smoke);
  font-weight: 400;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.blog-empty {
  color: var(--smoke);
  text-align: center;
  grid-column: 1 / -1;
  padding: 48px 0;
}

.blog-card {
  background: var(--vault-card);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 16px;
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
}

.blog-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(201, 169, 110, 0.1);
  transform: translateY(-2px);
}

.blog-card-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.35;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-title a:hover {
  color: var(--gold-light);
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--smoke);
  line-height: 1.6;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.blog-card-date {
  font-size: 0.78rem;
  color: var(--smoke);
  opacity: 0.7;
}

.blog-read-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.blog-read-more:hover {
  color: var(--gold-light);
}

/* ===== BLOG POST ===== */
.blog-post-main {
  padding: 48px 24px 100px;
}

.blog-post-container {
  max-width: 760px;
  margin: 0 auto;
}

.blog-breadcrumb {
  margin-bottom: 40px;
}

.blog-breadcrumb a {
  font-size: 0.85rem;
  color: var(--smoke);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-breadcrumb a:hover {
  color: var(--gold);
}

.blog-post-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.blog-post-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.blog-post-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 16px;
}

.blog-post-date {
  display: block;
  font-size: 0.82rem;
  color: var(--smoke);
  opacity: 0.75;
}

/* Article body typography */
.blog-post-body {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--smoke);
}

.blog-post-body h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cream);
  margin: 48px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.blog-post-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-light);
  margin: 36px 0 14px;
}

.blog-post-body p {
  margin-bottom: 20px;
  color: rgba(139, 129, 147, 0.95);
}

.blog-post-body p:first-child {
  font-size: 1.1rem;
  color: var(--cream);
  opacity: 0.85;
}

.blog-post-body strong {
  color: var(--cream);
  font-weight: 600;
}

.blog-post-body a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  transition: all 0.2s;
}

.blog-post-body a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.blog-post-body ul,
.blog-post-body ol {
  padding-left: 28px;
  margin-bottom: 20px;
}

.blog-post-body li {
  margin-bottom: 10px;
}

/* Product card in blog */
.blog-product-card {
  background: var(--vault-card);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 14px;
  padding: 28px 28px 24px;
  margin: 28px 0;
  transition: border-color 0.25s;
}

.blog-product-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
}

.blog-product-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.blog-product-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 10px 0;
}

.blog-product-card p {
  font-size: 0.9rem;
  color: var(--smoke);
  margin-bottom: 16px;
}

.blog-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.blog-product-link {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--vault-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  transition: all 0.25s;
}

.blog-product-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3);
  color: var(--vault-dark);
  background: linear-gradient(135deg, var(--gold-glow) 0%, var(--gold) 100%);
}

.blog-post-footer {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .blog-header h1 { font-size: 2rem; }
  .blog-post-title { font-size: 1.75rem; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ===== BLOG RELATED ARTICLES ===== */
.blog-related {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(201, 169, 110, 0.12);
}

.blog-related-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: 0.2px;
  position: relative;
  padding-bottom: 16px;
}

.blog-related-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  border-radius: 2px;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.blog-related-card {
  background: var(--vault-card);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.blog-related-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.blog-related-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-related-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}

.blog-related-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-related-card-title a:hover {
  color: var(--gold);
}

.blog-related-excerpt {
  font-size: 0.85rem;
  color: var(--smoke);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.blog-related-date {
  font-size: 0.75rem;
  color: rgba(160, 150, 140, 0.6);
  letter-spacing: 0.03em;
}

.blog-related-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-top: 4px;
  transition: opacity 0.2s;
}

.blog-related-link:hover { opacity: 0.7; }

@media (max-width: 640px) {
  .blog-related-grid { grid-template-columns: 1fr; }
}

/* ===== BLOG COMPARISON TABLE ===== */
.blog-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0 40px;
  font-size: 0.95rem;
  border-radius: 12px;
  overflow: hidden;
}

.blog-compare-table thead tr {
  background: rgba(201, 169, 110, 0.18);
}

.blog-compare-table thead th {
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.blog-compare-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.15s ease;
}

.blog-compare-table tbody tr:hover {
  background: rgba(201, 169, 110, 0.05);
}

.blog-compare-table tbody tr:last-child {
  border-bottom: none;
}

.blog-compare-table td {
  padding: 13px 16px;
  color: var(--cream);
  vertical-align: middle;
  line-height: 1.5;
}

.blog-compare-table td:first-child {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  width: 28%;
  min-width: 120px;
}

@media (max-width: 640px) {
  .blog-compare-table { font-size: 0.88rem; }
  .blog-compare-table td, .blog-compare-table th { padding: 10px 10px; }
  .blog-compare-table td:first-child { min-width: 90px; }
}

/* ===== PRODUCT BLOG GUIDES ===== */
.product-blog-guides {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 0 24px 48px;
}

.product-blog-guides-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.2px;
  position: relative;
  padding-bottom: 14px;
}

.product-blog-guides-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  border-radius: 2px;
}

.product-blog-guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.product-blog-guide-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(201, 169, 110, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 12px;
  padding: 20px 24px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.product-blog-guide-card:hover {
  border-color: rgba(201, 169, 110, 0.35);
  background: rgba(201, 169, 110, 0.08);
}

.product-blog-guide-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-blog-guide-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

.product-blog-guide-card p {
  font-size: 0.83rem;
  color: var(--smoke);
  line-height: 1.5;
  margin: 0;
}

.product-blog-guide-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

@media (max-width: 640px) {
  .product-blog-guides-grid { grid-template-columns: 1fr; }
}

/* ===== RELATED PRODUCTS ===== */
.related-products {
  max-width: 1200px;
  margin: 64px auto 0;
  padding: 0 24px 64px;
}

.related-products-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: 0.2px;
  position: relative;
  padding-bottom: 16px;
}

.related-products-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  border-radius: 2px;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.related-card .product-card-image {
  height: 180px;
}

.btn-view-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-view-link:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .related-products-title {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .related-products-grid {
    grid-template-columns: 1fr;
  }
  .related-products {
    padding: 0 16px 48px;
  }
}

/* ===== REVIEWS ===== */
.reviews-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 56px;
  border-top: 1px solid rgba(201,169,110,0.18);
}

.reviews-header {
  margin-bottom: 32px;
}

.reviews-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--cream);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.reviews-avg {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.reviews-avg-score {
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
}

.reviews-avg-count {
  color: var(--smoke);
  font-size: 13px;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.review-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 10px;
  padding: 20px 24px;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.review-author {
  color: var(--cream);
  font-weight: 600;
  font-size: 14px;
}

.review-verified {
  color: #5CA87A;
  font-size: 12px;
  font-weight: 500;
}

.review-date {
  color: var(--smoke);
  font-size: 12px;
  margin-left: auto;
}

.review-stars {
  margin-bottom: 8px;
}

.review-text {
  color: var(--smoke);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.reviews-empty {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  color: var(--smoke);
  font-size: 15px;
  margin-bottom: 40px;
}

/* Write a Review Form */
.review-form-wrapper {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 12px;
  padding: 28px 28px 24px;
}

.review-form-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--cream);
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.review-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.review-form-field label {
  font-size: 13px;
  color: var(--smoke);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.review-form-field .req { color: var(--gold); }
.review-form-field .optional { color: var(--smoke); font-weight: 400; text-transform: none; letter-spacing: 0; }

.review-form-field input[type="text"],
.review-form-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 8px;
  color: var(--cream);
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.review-form-field input[type="text"]:focus,
.review-form-field textarea:focus {
  border-color: var(--gold);
}

.review-char-count {
  font-size: 11px;
  color: var(--smoke);
  text-align: right;
}

/* Star Picker */
.star-picker {
  display: flex;
  gap: 4px;
}

.star-pick {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: #3A3347;
  padding: 2px;
  transition: color 0.15s, transform 0.1s;
  line-height: 1;
}

.star-pick:hover,
.star-pick.hover,
.star-pick.active {
  color: var(--gold);
  transform: scale(1.1);
}

.review-submit-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #08070A;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: opacity 0.2s, transform 0.15s;
  align-self: flex-start;
}

.review-submit-btn:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-1px);
}

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

.review-form-msg {
  font-size: 14px;
  padding: 8px 0;
  min-height: 24px;
}

.review-form-msg.success { color: #5CA87A; }
.review-form-msg.error { color: #E87272; }

@media (max-width: 768px) {
  .reviews-section { padding: 40px 16px 48px; }
  .review-form-wrapper { padding: 20px 16px; }
  .review-date { margin-left: 0; }
}

/* ===== BLOG EMAIL CTA ===== */
.blog-email-cta {
  background: linear-gradient(135deg, #13101A 0%, #1A1625 100%);
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: 16px;
  padding: 36px 40px;
  margin: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-email-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C9A96E, transparent);
  opacity: 0.6;
}

.blog-email-cta-badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C9A96E;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 4px 14px;
  border-radius: 100px;
  font-weight: 600;
  margin-bottom: 16px;
}

.blog-email-cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FAF8F5;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-email-cta-sub {
  color: #8B8193;
  font-size: 0.9rem;
  margin-bottom: 24px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.blog-email-cta-sub strong { color: #C9A96E; }

.blog-email-cta-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-email-cta-input {
  flex: 1;
  min-width: 200px;
  padding: 13px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 10px;
  color: #F0ECE3;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}

.blog-email-cta-input:focus {
  border-color: rgba(201, 169, 110, 0.4);
}

.blog-email-cta-btn {
  padding: 13px 24px;
  background: linear-gradient(135deg, #C9A96E 0%, #A88B52 100%);
  color: #08070A;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.blog-email-cta-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(201, 169, 110, 0.25);
}

.blog-email-cta-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.blog-email-cta-msg {
  margin-top: 12px;
  font-size: 0.85rem;
  padding: 10px 16px;
  border-radius: 8px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.blog-email-cta-msg.success {
  color: #5CA87A;
  background: rgba(95, 168, 104, 0.08);
  border: 1px solid rgba(95, 168, 104, 0.2);
}

.blog-email-cta-msg.error {
  color: #E87272;
  background: rgba(232, 114, 114, 0.08);
  border: 1px solid rgba(232, 114, 114, 0.2);
}

.blog-email-cta-fine {
  margin-top: 12px;
  font-size: 0.68rem;
  color: #8B8193;
  opacity: 0.5;
  letter-spacing: 0.3px;
}

@media (max-width: 600px) {
  .blog-email-cta { padding: 28px 20px; }
  .blog-email-cta-title { font-size: 1.25rem; }
  .blog-email-cta-form { flex-direction: column; }
  .blog-email-cta-input, .blog-email-cta-btn { width: 100%; min-width: unset; }
}

/* ===== BUNDLE PAGES ===== */

/* Bundle Index Grid */
.bundle-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.bundle-card {
  background: var(--vault-card);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.bundle-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.1);
}

.bundle-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.bundle-card-images {
  display: flex;
  height: 200px;
  background: var(--vault-dark);
}

.bundle-card-img-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.bundle-card-img-item:first-child {
  border-right: 1px solid rgba(201, 169, 110, 0.1);
}

.bundle-card-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bundle-card:hover .bundle-card-img-item img {
  transform: scale(1.04);
}

.bundle-card-body {
  padding: 20px;
}

.bundle-card-badge {
  display: inline-block;
  background: rgba(201, 169, 110, 0.12);
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bundle-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}

.bundle-card-tagline {
  font-size: 0.88rem;
  color: var(--smoke);
  margin-bottom: 14px;
  line-height: 1.45;
}

.bundle-card-items {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.bundle-card-item-name {
  font-size: 0.78rem;
  color: #8B8193;
  background: rgba(255,255,255,0.04);
  padding: 3px 8px;
  border-radius: 6px;
}

.bundle-card-sep {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

.bundle-card-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.bundle-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
}

.bundle-compare {
  font-size: 1rem;
  color: var(--smoke);
  text-decoration: line-through;
}

.bundle-save-badge {
  background: rgba(92, 168, 122, 0.12);
  color: #5CA87A;
  border: 1px solid rgba(92, 168, 122, 0.25);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 600;
}

.bundle-card-cta {
  display: inline-block;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  transition: border-color 0.2s;
}

.bundle-card:hover .bundle-card-cta {
  border-color: var(--gold);
}

.bundle-index-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 169, 110, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 0.85rem;
  color: var(--smoke);
}

.bundle-note-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Bundle Hero */
.bundle-hero-badge {
  display: inline-block;
  background: rgba(201, 169, 110, 0.12);
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 24px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Bundle Products Section */
.bundle-products-section {
  margin-bottom: 32px;
}

.bundle-products-grid {
  display: flex;
  gap: 0;
  align-items: stretch;
  background: var(--vault-card);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.bundle-product-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
  min-width: 0;
}

.bundle-product-card + .bundle-plus-separator + .bundle-product-card {
  border-left: 1px solid rgba(201, 169, 110, 0.1);
}

.bundle-plus-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  background: var(--vault-card);
  border-left: 1px solid rgba(201, 169, 110, 0.1);
  border-right: 1px solid rgba(201, 169, 110, 0.1);
  min-width: 44px;
}

.bundle-plus-separator span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}

.bundle-product-img-link {
  display: block;
  text-decoration: none;
}

.bundle-product-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vault-dark);
}

.bundle-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.bundle-product-img:hover img {
  transform: scale(1.04);
}

.bundle-product-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}

.bundle-product-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.bundle-product-name a:hover {
  color: var(--gold);
}

.bundle-product-desc {
  font-size: 0.82rem;
  color: var(--smoke);
  line-height: 1.5;
  margin-bottom: 12px;
  flex-grow: 1;
}

.bundle-product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
}

/* Bundle CTA / Pricing Box */
.bundle-cta-section {
  margin-bottom: 48px;
}

.bundle-pricing-box {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.06) 0%, rgba(14, 11, 21, 0.8) 100%);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 16px;
  padding: 28px 32px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.bundle-pricing-items {
  margin-bottom: 20px;
}

.bundle-pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
}

.bpi-name {
  color: var(--smoke);
}

.bpi-price {
  font-weight: 600;
  color: var(--cream);
}

.bundle-pricing-divider {
  height: 1px;
  background: rgba(201, 169, 110, 0.15);
  margin: 8px 0;
}

.bundle-pricing-discount .bpi-name,
.bundle-pricing-discount .bpi-save {
  color: #5CA87A;
}

.bundle-pricing-total {
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  padding-top: 12px;
  margin-top: 4px;
}

.bundle-pricing-total .bpi-name {
  color: var(--cream);
  font-weight: 600;
  font-size: 1rem;
}

.bpi-total {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold) !important;
}

.btn-add-bundle {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #E8D5A3 0%, #C9A96E 100%);
  color: #08070A;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: opacity 0.2s, transform 0.15s;
  margin-top: 8px;
  margin-bottom: 14px;
}

.btn-add-bundle:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-add-bundle:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.bundle-cta-note {
  font-size: 0.78rem;
  color: var(--smoke);
  opacity: 0.7;
}

/* Bundle Why / How To sections */
.bundle-why-section,
.bundle-howto-section,
.bundle-included-section {
  margin-bottom: 48px;
}

.bundle-section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 24px;
}

.bundle-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.bundle-why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--vault-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 12px;
  padding: 20px;
}

.bundle-why-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.bundle-why-title {
  display: block;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.bundle-why-text {
  font-size: 0.85rem;
  color: var(--smoke);
  line-height: 1.55;
}

.bundle-howto-text {
  font-size: 0.95rem;
  color: var(--smoke);
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: 12px;
}

.bundle-content-note {
  font-size: 0.78rem;
  color: #8B8193;
  opacity: 0.6;
  max-width: 680px;
}

.bundle-back-link {
  margin-top: 16px;
  margin-bottom: 32px;
}

.bundle-back-link a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.bundle-back-link a:hover {
  opacity: 0.75;
}

/* Product Bundle Callout (on product detail pages) */
.product-bundle-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(201, 169, 110, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 10px;
}

.product-bundle-callout-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.product-bundle-callout-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.product-bundle-callout-text strong {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 600;
}

.product-bundle-callout-text span {
  font-size: 0.82rem;
  color: var(--smoke);
  line-height: 1.5;
}

.product-bundle-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.product-bundle-link:hover {
  opacity: 0.75;
  text-decoration: underline;
}

/* Responsive bundle pages */
@media (max-width: 768px) {
  .bundle-index-grid {
    grid-template-columns: 1fr;
  }

  .bundle-products-grid {
    flex-direction: column;
  }

  .bundle-plus-separator {
    padding: 12px 0;
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    min-width: unset;
  }

  .bundle-plus-separator span {
    font-size: 1.4rem;
  }

  .bundle-product-card + .bundle-plus-separator + .bundle-product-card {
    border-left: none;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
  }

  .bundle-pricing-box {
    padding: 20px;
  }

  .bundle-why-grid {
    grid-template-columns: 1fr;
  }

  .bundle-card-images {
    height: 160px;
  }

  .bpi-total {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .bundle-hero-badge {
    font-size: 0.72rem;
    padding: 4px 10px;
  }
}

/* ===== CATEGORY HERO BANNER ===== */
.page--category {
  padding-top: 0;
}
.page--category .page {
  padding-top: 0;
}

.cat-hero {
  position: relative;
  overflow: hidden;
  padding-top: 80px; /* nav height */
}

.cat-hero--adult {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(80, 20, 100, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
    var(--vault-mid);
}
.cat-hero--glass {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(20, 55, 110, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
    var(--vault-mid);
}

.cat-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.12), transparent);
}

.cat-hero-bg-glyph {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22rem;
  font-family: var(--font-display);
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.05);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.cat-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 48px 56px;
  position: relative;
  z-index: 1;
}

.cat-hero-breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.75rem;
  color: var(--smoke);
  margin-bottom: 24px;
  opacity: 0.6;
  letter-spacing: 0.3px;
}
.cat-hero-breadcrumb a { color: var(--smoke); transition: color 0.25s; }
.cat-hero-breadcrumb a:hover { color: var(--gold-light); }
.cat-hero-sep { opacity: 0.4; }

.cat-hero-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  opacity: 0.8;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cat-hero-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.6;
  flex-shrink: 0;
}

.cat-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.cat-hero-icon {
  color: var(--gold);
  opacity: 0.75;
  font-size: 0.7em;
}

.cat-hero-sub {
  color: var(--smoke);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 32px;
}

.cat-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cat-hero-count {
  display: flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(201, 169, 110, 0.07);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 10px;
  padding: 9px 18px;
}
.cat-hero-count-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.cat-hero-count-label {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--smoke);
  font-weight: 500;
}

.cat-hero-keywords {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cat-hero-kw {
  font-size: 0.62rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--smoke);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 110, 0.07);
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 500;
  opacity: 0.65;
}

/* Category section header (inside category page) */
.cat-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}
.cat-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cat-section-title h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
}
.cat-section-count {
  font-size: 0.68rem;
  color: var(--smoke);
  background: var(--vault-elevated);
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  font-weight: 500;
  border: 1px solid rgba(201, 169, 110, 0.06);
}
.cat-section-breadcrumb a {
  font-size: 0.78rem;
  color: var(--smoke);
  opacity: 0.55;
  transition: all 0.25s;
  letter-spacing: 0.3px;
}
.cat-section-breadcrumb a:hover {
  color: var(--gold-light);
  opacity: 1;
}

/* ===== SHOP PAGE HERO ===== */
.page--shop {
  padding-top: 0;
}

.shop-hero {
  padding-top: 80px;
  background:
    radial-gradient(ellipse at 90% 0%, rgba(201, 169, 110, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 100%, rgba(45, 27, 78, 0.1) 0%, transparent 50%),
    var(--vault-mid);
  border-bottom: 1px solid rgba(201, 169, 110, 0.07);
  position: relative;
  overflow: hidden;
}
.shop-hero::before {
  content: '♦';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18rem;
  font-family: var(--font-display);
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.04);
  pointer-events: none;
  user-select: none;
}

.shop-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 48px 48px;
  position: relative;
  z-index: 1;
}

.shop-hero-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  opacity: 0.75;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.shop-hero-sub {
  color: var(--smoke);
  font-size: 0.98rem;
  font-weight: 400;
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.shop-hero-cats {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.shop-hero-cat-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.1);
  padding: 7px 16px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.shop-hero-cat-link:hover {
  background: rgba(201, 169, 110, 0.12);
  border-color: rgba(201, 169, 110, 0.25);
  color: var(--gold-glow);
  transform: translateY(-1px);
}
.shop-hero-cat-sep {
  color: var(--smoke);
  opacity: 0.3;
  font-size: 0.9rem;
}

/* ===== NEW CATEGORY HERO THEMES ===== */
.cat-hero--lube {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(20, 80, 100, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
    var(--vault-mid);
}
.cat-hero--protection {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(20, 90, 60, 0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
    var(--vault-mid);
}
.cat-hero--kink {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(50, 10, 10, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
    var(--vault-mid);
}
.cat-hero--couples {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(80, 30, 80, 0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(201, 169, 110, 0.05) 0%, transparent 50%),
    var(--vault-mid);
}
.cat-hero--wellness {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(20, 70, 50, 0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
    var(--vault-mid);
}

/* ===== PRODUCT CARD IMAGE BACKGROUNDS (new categories) ===== */
.product-card-image.cat-lubricants-enhancement {
  background: linear-gradient(160deg, #0D1F2A 0%, #091318 60%, #060D10 100%);
}
.product-card-image.cat-condoms-protection {
  background: linear-gradient(160deg, #0D2217 0%, #091610 60%, #060F0A 100%);
}
.product-card-image.cat-kink-bondage {
  background: linear-gradient(160deg, #1A0808 0%, #100505 60%, #0A0303 100%);
}
.product-card-image.cat-games-couples {
  background: linear-gradient(160deg, #1C1028 0%, #130A1C 60%, #0D0713 100%);
}
.product-card-image.cat-wellness {
  background: linear-gradient(160deg, #0D1D12 0%, #08120D 60%, #050D08 100%);
}

/* ===== SHOP FILTER BAR ===== */
.shop-filter-bar {
  background: var(--vault-mid);
  border-bottom: 1px solid rgba(201, 169, 110, 0.07);
  position: sticky;
  top: 64px; /* nav height */
  z-index: 90;
}
.shop-filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.shop-filter-inner::-webkit-scrollbar { display: none; }

.shop-filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--smoke);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.shop-filter-tab:hover {
  color: var(--cream);
  border-bottom-color: rgba(201, 169, 110, 0.3);
}
.shop-filter-tab.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}
.shop-filter-icon {
  font-size: 0.9rem;
  line-height: 1;
}
.shop-filter-count {
  background: var(--vault-elevated);
  border: 1px solid rgba(201, 169, 110, 0.08);
  color: var(--smoke);
  font-size: 0.62rem;
  padding: 2px 7px;
  border-radius: 100px;
  font-weight: 600;
}
.shop-filter-tab.active .shop-filter-count {
  background: rgba(201, 169, 110, 0.1);
  border-color: rgba(201, 169, 110, 0.2);
  color: var(--gold);
}

/* ===== CATEGORY VIEW-ALL LINK ===== */
.cat-section-view-all {
  margin-top: 28px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 169, 110, 0.06);
}
.cat-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: 12px;
  color: var(--smoke);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}
.cat-view-all-btn:hover {
  border-color: rgba(201, 169, 110, 0.45);
  color: var(--gold-light);
  background: rgba(201, 169, 110, 0.05);
  transform: translateY(-1px);
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 169, 110, 0.07);
}
.pagination-btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 24px;
  background: var(--vault-card);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 10px;
  color: var(--smoke);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.22s ease;
}
.pagination-btn:hover {
  border-color: rgba(201, 169, 110, 0.4);
  color: var(--gold-light);
  background: rgba(201, 169, 110, 0.05);
  transform: translateY(-1px);
}
.pagination-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.pagination-info {
  font-size: 0.75rem;
  color: var(--smoke);
  opacity: 0.55;
  letter-spacing: 0.5px;
}

/* ===== SHOP EMPTY STATE ===== */
.shop-empty {
  padding: 80px 48px;
  text-align: center;
}
.shop-empty p {
  color: var(--smoke);
  font-size: 1rem;
  opacity: 0.5;
}

/* Responsive category hero */
@media (max-width: 768px) {
  .cat-hero-inner {
    padding: 44px 24px 40px;
  }
  .cat-hero-bg-glyph {
    font-size: 10rem;
    right: -5%;
    opacity: 0.5;
  }
  .cat-hero-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
  .cat-hero-meta {
    gap: 12px;
  }
  .cat-hero-keywords {
    display: none;
  }
  .shop-hero-inner {
    padding: 40px 24px 36px;
  }
  .cat-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .shop-filter-inner {
    padding: 0 16px;
  }
  .shop-filter-bar {
    top: 56px;
  }
}

/* ===== FAQ PAGE ===== */
.faq-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 48px 80px;
}

.faq-header {
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
  padding-bottom: 32px;
}

.faq-header h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.faq-subtitle {
  font-size: 0.9rem;
  color: var(--smoke);
  line-height: 1.7;
  opacity: 0.7;
}

.faq-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-group-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-group-icon {
  font-style: normal;
  font-size: 1rem;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(201, 169, 110, 0.07);
  background: rgba(255, 255, 255, 0.015);
  transition: background 0.2s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item[open] {
  background: rgba(201, 169, 110, 0.04);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  outline: none;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-question:hover .faq-q-text {
  color: var(--cream);
}

.faq-q-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(240, 236, 227, 0.82);
  line-height: 1.5;
  transition: color 0.2s ease;
}

.faq-chevron {
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  display: inline-block;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px 18px 22px;
  border-top: 1px solid rgba(201, 169, 110, 0.05);
}

.faq-answer p {
  font-size: 0.875rem;
  color: var(--cream);
  opacity: 0.72;
  line-height: 1.78;
  margin: 0;
  padding-top: 14px;
}

.faq-inline-link {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.25);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.faq-inline-link:hover {
  color: var(--gold-glow);
  border-bottom-color: rgba(201, 169, 110, 0.6);
}

.faq-cta {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  text-align: center;
}

.faq-cta p {
  font-size: 0.88rem;
  color: var(--smoke);
  opacity: 0.7;
  margin-bottom: 20px;
  line-height: 1.6;
}

.faq-cta-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-cta-btn {
  display: inline-block;
  padding: 11px 26px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1A1025;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.faq-cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  color: #1A1025;
}

.faq-cta-btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.35);
}

.faq-cta-btn--ghost:hover {
  color: var(--gold-light);
  border-color: rgba(201, 169, 110, 0.65);
  background: rgba(201, 169, 110, 0.06);
}

/* ===== PRODUCT TRUST BADGES (below Add to Cart) ===== */
.product-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding: 16px 18px;
  background: rgba(201, 169, 110, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.09);
  border-radius: 14px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  color: #8B8193;
  font-weight: 400;
  line-height: 1.4;
}

.trust-badge .trust-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.trust-badge .trust-text strong {
  color: #C9A96E;
  font-weight: 600;
}

/* ===== PRODUCT PAYMENT ICONS ===== */
.product-payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 169, 110, 0.06);
}

.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 28px;
  background: rgba(201, 169, 110, 0.07);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 5px;
  overflow: hidden;
}

.payment-icon svg {
  width: 100%;
  height: 100%;
}

.payment-label {
  font-size: 0.68rem;
  color: #8B8193;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-left: 4px;
}

/* ===== POPULAR BADGE (product cards) ===== */
.card-popular-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  display: inline-block;
  padding: 4px 10px;
  background: rgba(201, 169, 110, 0.18);
  color: #C9A96E;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .faq-page { padding: 32px 20px 60px; }
  .faq-header h1 { font-size: 1.85rem; }
  .faq-question { padding: 16px 16px; }
  .faq-answer { padding: 0 16px 16px; }
  .product-trust-badges { padding: 14px; gap: 7px; }
  .product-payment-icons { flex-wrap: wrap; }
}

/* ===== MOTHER'S DAY PROMOTION (May 10, 2026 only) ===== */
.mothers-day-banner {
  background: linear-gradient(135deg, #FF1493 0%, #C71585 50%, #FF1493 100%);
  color: #fff;
  text-align: center;
  padding: 12px 40px 12px 16px;
  position: relative;
  z-index: 1000;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.mdb-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}
.mdb-text {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  animation: mdb-pulse 2.5s ease-in-out infinite;
}
@keyframes mdb-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.88; }
}
.mdb-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.25);
  border: none;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.mdb-close:hover { background: rgba(255,255,255,0.4); }

/* Promo price in hot pink */
.promo-price { color: #FF1493 \!important; font-weight: 700; }
.promo-save { color: #FF1493 \!important; }

/* Mother's Day badge on product cards */
.card-save-badge.promo-badge {
  background: linear-gradient(135deg, #FF1493, #C71585);
  color: #fff;
  border-color: rgba(255,20,147,0.5);
}

/* Cart promo banner */
.cart-promo-banner {
  background: linear-gradient(135deg, rgba(255,20,147,0.12), rgba(199,21,133,0.12));
  border: 1.5px solid rgba(255,20,147,0.4);
  border-radius: 10px;
  color: #FF1493;
  text-align: center;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 0.92rem;
  font-weight: 600;
}

/* Cart promo discount row */
.cart-summary-row.promo-row { border-bottom: none; }
.promo-savings { color: #FF1493 \!important; font-weight: 700; }

/* Cart promo code note */
.cart-promo-code-note {
  background: rgba(255,20,147,0.07);
  border: 1px dashed rgba(255,20,147,0.4);
  border-radius: 8px;
  color: #FF1493;
  text-align: center;
  padding: 10px 14px;
  font-size: 0.82rem;
  margin-bottom: 14px;
}
