/* ═══════════════════════════════════════════════════════════
   THE GENTRY — Luxury Dark & Gold Theme
   Premium black & gold aesthetic with scroll sequence hero
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ──────────────────────────────── */
:root {
  --black: #0a0a0a;
  --black-rich: #050505;
  --black-soft: #111111;
  --black-card: #141414;
  --black-elevated: #1a1a1a;
  --black-border: #222222;

  --gold: #C8A96E;
  --gold-light: #E8D5A8;
  --gold-dark: #9C7E4A;
  --gold-dim: #7A6340;
  --gold-muted: rgba(200, 169, 110, 0.5);
  --gold-subtle: rgba(200, 169, 110, 0.15);
  --gold-glow: rgba(200, 169, 110, 0.25);

  --white: #F5F0E8;
  --white-pure: #FFFFFF;
  --white-muted: #B8B0A0;
  --white-dim: #8A8275;
  --white-faint: #5A554D;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
}

/* ─── Base Reset & Body ──────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Scrollbar Styling ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ─── Gold Text Gradients ────────────────────────────────── */
.text-gold {
  color: var(--gold);
}

.text-gold-gradient {
  background: linear-gradient(135deg, #E8D5A8 0%, #C8A96E 40%, #9C7E4A 70%, #C8A96E 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 6s ease-in-out infinite;
}

.text-gold-static {
  background: linear-gradient(135deg, #E8D5A8 0%, #C8A96E 50%, #9C7E4A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Keep legacy classes for Tailwind compat */
.text-metallic-static {
  background: linear-gradient(135deg, #E8D5A8 0%, #C8A96E 50%, #9C7E4A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-metallic-dynamic, .text-metallic {
  background: linear-gradient(135deg, #E8D5A8 0%, #C8A96E 40%, #9C7E4A 70%, #C8A96E 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 6s ease-in-out infinite;
}

@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ─── Header / Navigation ────────────────────────────────── */
.nav-header {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(200, 169, 110, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.nav-header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(32px) saturate(1.6);
  -webkit-backdrop-filter: blur(32px) saturate(1.6);
  border-bottom-color: rgba(200, 169, 110, 0.15);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.nav-link {
  position: relative;
  color: var(--white-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  width: 100%;
}

/* TG Logo */
.tg-logo-img {
  height: 50px;
  width: auto;
  mix-blend-mode: lighten;
  filter: brightness(1.2) sepia(0.3) saturate(1.5) hue-rotate(-10deg);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.tg-logo-img:hover {
  filter: brightness(1.5) sepia(0.3) saturate(1.5) hue-rotate(-10deg);
  transform: scale(1.05);
}

.tg-logo-blend {
  mix-blend-mode: lighten;
}

/* ─── Cart Badge ─────────────────────────────────────────── */
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cart-badge.visible {
  transform: scale(1);
}

.cart-badge.bump {
  animation: cartBump 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cartBump {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* ─── Hero Section with Looping Sequence ─────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

/* Video for image sequence — absolute inside hero */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Gradient overlay on the sequence canvas */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(5, 5, 5, 0.7) 0%,
    rgba(5, 5, 5, 0.45) 40%,
    rgba(5, 5, 5, 0.6) 70%,
    rgba(5, 5, 5, 0.95) 100%
  );
  pointer-events: none;
}



.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--gold-light);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(200, 169, 110, 0.15);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--white);
  font-style: italic;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

.hero-product-image {
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
  will-change: transform;
}

.hero-product-image:hover {
  transform: scale(1.03);
}

/* ─── CTA Buttons — Gold Luxury Style ────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.btn-primary:hover {
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 169, 110, 0.2);
}

.btn-primary:hover::before {
  transform: scaleX(1);
}

.btn-whatsapp {
  border-color: #25D366;
  color: #25D366;
}

.btn-whatsapp::before {
  background: #25D366;
}

.btn-whatsapp:hover {
  color: var(--black);
  border-color: #25D366;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.15);
}

.btn-accent {
  padding: 0.65rem 1.4rem;
  font-size: 0.68rem;
}

/* All product accent buttons now use gold */
.btn-accent.sage,
.btn-accent.teal,
.btn-accent.violet,
.btn-accent.steel {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-accent.sage::before,
.btn-accent.teal::before,
.btn-accent.violet::before,
.btn-accent.steel::before {
  background: var(--gold);
}

.btn-accent.sage:hover,
.btn-accent.teal:hover,
.btn-accent.violet:hover,
.btn-accent.steel:hover {
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 8px 25px var(--gold-glow);
}

/* ─── Section Styling ────────────────────────────────────── */
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-light);
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1rem 0;
}

/* ─── Gold Circular Icon (matching reference) ────────────── */
.gold-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 169, 110, 0.05);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.gold-icon-circle:hover {
  background: rgba(200, 169, 110, 0.12);
  box-shadow: 0 0 30px var(--gold-glow);
}

.gold-icon-circle svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  stroke: var(--gold);
}

.gold-icon-circle img {
  width: 36px;
  height: 36px;
  filter: sepia(1) saturate(2) hue-rotate(-10deg) brightness(0.8);
}

/* Smaller variant */
.gold-icon-circle-sm {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 169, 110, 0.05);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.gold-icon-circle-sm svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  stroke: var(--gold);
}

/* ─── Product Cards ──────────────────────────────────────── */
.product-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(200, 169, 110, 0.1);
  background: var(--black-card);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

/* Override per-accent colors — all gold now */
.product-card[data-accent="sage"]::before,
.product-card[data-accent="teal"]::before,
.product-card[data-accent="violet"]::before,
.product-card[data-accent="steel"]::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.product-card:hover {
  border-color: rgba(200, 169, 110, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(200, 169, 110, 0.05);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover .product-image {
  transform: scale(1.08);
}

/* Product image area */
.product-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--black-soft) 0%, var(--black-card) 100%);
}

.product-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 10, 10, 0.1) 0%,
    rgba(10, 10, 10, 0.05) 30%,
    rgba(10, 10, 10, 0.15) 70%,
    rgba(20, 20, 20, 0.95) 100%
  );
  pointer-events: none;
}

.product-image {
  position: relative;
  z-index: 1;
  max-height: 250px;
  max-width: 75%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5));
}

.product-card-body {
  background: var(--black-card);
  position: relative;
  z-index: 1;
}

.product-category-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid;
  color: var(--gold) !important;
  border-color: rgba(200, 169, 110, 0.3) !important;
  background: rgba(10, 10, 10, 0.7) !important;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-light);
}

.product-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--white-dim);
  font-size: 0.95rem;
}

.product-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--white-muted);
}

.product-feature svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--gold) !important;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold) !important;
}

.product-size {
  font-size: 0.72rem;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── Trust Badges ───────────────────────────────────────── */
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: rgba(200, 169, 110, 0.03);
  border: 1px solid rgba(200, 169, 110, 0.1);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.trust-badge:hover {
  border-color: rgba(200, 169, 110, 0.25);
  background: rgba(200, 169, 110, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(200, 169, 110, 0.08);
}

.trust-badge svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  stroke: var(--gold);
}

.trust-badge span {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-muted);
  text-align: center;
}

/* ─── Usage Guide Tabs ───────────────────────────────────── */
.tab-btn {
  position: relative;
  padding: 1rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(200, 169, 110, 0.12);
  color: var(--white-dim);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: 0;
}

.tab-btn:hover {
  color: var(--gold-light);
  border-color: rgba(200, 169, 110, 0.3);
}

.tab-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.06);
}

/* Override per-accent tab active states — all gold now */
.tab-btn.active[data-accent="sage"],
.tab-btn.active[data-accent="teal"],
.tab-btn.active[data-accent="violet"] {
  border-color: var(--gold);
  color: var(--gold);
}

.tab-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(200, 169, 110, 0.02);
  border: 1px solid rgba(200, 169, 110, 0.08);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.step-card:hover {
  border-color: rgba(200, 169, 110, 0.18);
  background: rgba(200, 169, 110, 0.04);
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold) !important;
  opacity: 0.4;
  flex-shrink: 0;
  width: 40px;
}

/* ─── Philosophy Section ─────────────────────────────────── */
.philosophy-section {
  position: relative;
  overflow: hidden;
  background: var(--black-soft);
}

.philosophy-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--gold-light);
}

.philosophy-serif {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--white-dim);
  letter-spacing: 0.04em;
}

/* ─── Feature Cards (3-column matching reference) ────────── */
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(200, 169, 110, 0.02);
  border: 1px solid rgba(200, 169, 110, 0.1);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  border-color: rgba(200, 169, 110, 0.25);
  background: rgba(200, 169, 110, 0.05);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(200, 169, 110, 0.06);
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-top: 1.25rem;
  letter-spacing: 0.02em;
}

.feature-card p {
  font-size: 0.82rem;
  color: var(--white-dim);
  line-height: 1.7;
  margin-top: 0.75rem;
}

/* ─── Gold Divider Lines ─────────────────────────────────── */
.gold-divider {
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.gold-divider-thin {
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin: 0.75rem auto 0;
}

/* ─── Cart Drawer ────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  border-left: 1px solid rgba(200, 169, 110, 0.12);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(200, 169, 110, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(200, 169, 110, 0.1);
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(200, 169, 110, 0.06);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  background: rgba(200, 169, 110, 0.06);
  border: 1px solid rgba(200, 169, 110, 0.15);
  color: var(--gold-light);
  border-radius: 0;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.cart-item-qty button:hover {
  background: rgba(200, 169, 110, 0.15);
  border-color: var(--gold);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--white-dim);
  cursor: pointer;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition-fast);
}

.cart-item-remove:hover {
  color: #EF4444;
}

/* ─── Hamburger Menu Icon ────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 998;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold-light);
  transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Mobile Menu ────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 997;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .nav-link {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
}

/* ─── Toast Notification ─────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--black-elevated);
  border: 1px solid rgba(200, 169, 110, 0.2);
  color: var(--gold-light);
  padding: 0.875rem 1.5rem;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  z-index: 1000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--black-rich);
  border-top: 1px solid rgba(200, 169, 110, 0.08);
}

.footer-link {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 0.78rem;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold);
}

/* Social icon circles in footer */
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  color: var(--gold);
}

.social-icon:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ─── Animations ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.4s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .product-image-wrapper { height: 240px; }
  .product-image { max-height: 200px; }
  .cart-drawer { max-width: 100%; }
  .tg-logo-img { height: 40px; }
  .gold-icon-circle { width: 64px; height: 64px; }
  .gold-icon-circle svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .product-image-wrapper { height: 200px; }
  .tg-logo-img { height: 34px; }
  .gold-icon-circle { width: 56px; height: 56px; }
  .gold-icon-circle svg { width: 22px; height: 22px; }
}
