/* =====================================================
   GoldCup â€” Premium Shop CSS
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

/* â”€â”€ ROOT TOKENS â”€â”€ */
:root {
  --gold: #C9A84C;
  --gold-light: #F0CC6A;
  --gold-glow: #D4AF37;
  --gold-dark: #8B6914;
  --black: #090909;
  --dark: #0E0E0F;
  --dark2: #161618;
  --dark3: #1F1F22;
  --dark4: #2A2A2E;
  --gray: #6B6B72;
  --gray-light: #9999A8;
  --white: #FFFFFF;
  --white-soft: rgba(255,255,255,0.08);
  --white-med: rgba(255,255,255,0.15);
  --border: rgba(201,168,76,0.18);
  --border-soft: rgba(255,255,255,0.07);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-gold: 0 0 40px rgba(201,168,76,0.25);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.5);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

/* â”€â”€ SCROLLBAR â”€â”€ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* â”€â”€ UTILITIES â”€â”€ */
.text-gold { color: var(--gold-light); }

/* â”€â”€ NAVBAR â”€â”€ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(9,9,9,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.2rem; }
.logo-accent { color: var(--gold-light); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-light);
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-btn {
  position: relative;
  background: var(--white-soft);
  border: 1px solid var(--border-soft);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cart-btn:hover {
  background: var(--border);
  border-color: var(--gold);
}

.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 800;
  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-count.show { transform: scale(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: none;
  padding: 10px 22px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(9,9,9,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-soft);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-light);
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu a:hover { color: var(--white); }
.mobile-cta {
  margin-top: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

/* â”€â”€ HERO â”€â”€ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 50% 80% at 10% 50%, rgba(201,168,76,0.04) 0%, transparent 60%),
              var(--black);
  padding: 100px 48px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: calc(var(--s) * 120px);
  height: calc(var(--s) * 120px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12), transparent 70%);
  animation: float var(--d) ease-in-out infinite alternate;
}

@keyframes float {
  from { transform: translateY(0) scale(1); opacity: 0.4; }
  to { transform: translateY(-30px) scale(1.1); opacity: 0.8; }
}

.hero-content {
  max-width: 600px;
  z-index: 2;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.15s ease both;
}

.hero-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.75em;
  color: var(--gray-light);
}

.hero-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 400;
  animation: fadeUp 0.7s 0.25s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.7s 0.35s ease both;
}

/* â”€â”€ BUTTONS â”€â”€ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  background-size: 200% 200%;
  color: var(--black);
  border: none;
  padding: 15px 28px;
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,168,76,0.45);
  background-position: right center;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.pulse-gold {
  animation: pulseShadow 2.5s ease-in-out infinite;
}
@keyframes pulseShadow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white-soft);
  color: var(--white);
  border: 1px solid var(--border-soft);
  padding: 15px 28px;
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover {
  background: var(--white-med);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  animation: fadeUp 0.7s 0.45s ease both;
}

.stat { text-align: center; padding: 0 28px; }
.stat:first-child { padding-left: 0; }

.stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* HERO VISUAL */
.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

.hero-img-wrapper {
  position: relative;
  width: 400px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-trophy {
  max-height: 420px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(201,168,76,0.4)) drop-shadow(0 0 80px rgba(201,168,76,0.2));
  animation: trophyFloat 4s ease-in-out infinite, fadeUp 0.8s 0.2s ease both;
  z-index: 2;
  position: relative;
}

@keyframes trophyFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  animation: ringExpand 3s ease-out infinite;
}

.ring-1 { width: 240px; height: 240px; animation-delay: 0s; }
.ring-2 { width: 320px; height: 320px; animation-delay: 1s; }
.ring-3 { width: 420px; height: 420px; animation-delay: 2s; }

@keyframes ringExpand {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.1); opacity: 0; }
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-dot {
  width: 6px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 8px;
  background: var(--gold);
  border-radius: 1px;
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0% { top: 4px; opacity: 1; }
  100% { top: 24px; opacity: 0; }
}

/* â”€â”€ TRUST BAR â”€â”€ */
.trust-bar {
  background: var(--dark2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 16px 48px;
}

.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-light);
}
.trust-item svg { color: var(--gold); }
.trust-sep { color: var(--dark4); font-size: 1.2rem; }

/* â”€â”€ SECTION HEADER â”€â”€ */
.section-header {
  max-width: 1280px;
  margin: 0 auto 56px;
  padding: 0 48px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}
.section-tag::before,
.section-tag::after {
  content: 'â€”';
  margin: 0 10px;
  opacity: 0.5;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* â”€â”€ PRODUCTS SECTION â”€â”€ */
.products-section {
  padding: 120px 0 80px;
  background: var(--dark);
}

.products-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* â”€â”€ PRODUCT CARD â”€â”€ */
.product-card {
  background: var(--dark2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  group: true;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.1), var(--shadow-gold);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.badge-new { background: rgba(201,168,76,0.2); color: var(--gold-light); border: 1px solid rgba(201,168,76,0.3); }
.badge-hot { background: rgba(255,80,80,0.15); color: #FF6B6B; border: 1px solid rgba(255,80,80,0.3); }
.badge-limited { background: rgba(160,100,255,0.15); color: #C084FC; border: 1px solid rgba(160,100,255,0.3); }
.badge-bestseller { background: rgba(52,211,153,0.15); color: #34D399; border: 1px solid rgba(52,211,153,0.3); }

.product-img-wrap {
  aspect-ratio: 1;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.product-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.12), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.product-card:hover .product-img-wrap::after { opacity: 1; }

.product-img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 12px 24px rgba(201,168,76,0.3));
}

.product-card:hover .product-img {
  transform: scale(1.08) translateY(-4px) rotate(2deg);
}

.product-info {
  padding: 20px 22px 24px;
}

.product-category {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-name {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 1px; }
.rating-count { font-size: 0.78rem; color: var(--gray); }

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

.product-price-group {}
.product-price-old {
  font-size: 0.8rem;
  color: var(--gray);
  text-decoration: line-through;
}
.product-price {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.add-to-cart {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none;
  color: var(--black);
  width: 42px; height: 42px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.add-to-cart:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(201,168,76,0.4);
}
.add-to-cart:active { transform: scale(0.95); }

/* â”€â”€ FEATURES SECTION â”€â”€ */
.features-section {
  padding: 120px 0;
  background: var(--black);
}

.features-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-text .section-tag { text-align: left; }
.features-text .section-tag::before { display: none; }

.features-text .section-title { text-align: left; }

.features-desc {
  color: var(--gray-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s, transform 0.5s;
}

.feature-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.feature-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.feature-text h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.6;
}

.features-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-img-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
}

.feat-img {
  border-radius: var(--radius-xl);
  object-fit: cover;
  width: 75%;
  box-shadow: var(--shadow-card);
}

.feat-img-back {
  position: absolute;
  bottom: 0;
  right: 0;
  filter: brightness(0.6);
  border: 1px solid var(--border-soft);
}

.feat-img-front {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-gold);
}

.feat-badge {
  position: absolute;
  bottom: 28px;
  right: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

.feat-badge-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}

.feat-badge-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(0,0,0,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* â”€â”€ TESTIMONIALS â”€â”€ */
.testimonials-section {
  padding: 120px 0;
  background: var(--dark);
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  padding: 0 48px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.testimonials-track:active { cursor: grabbing; }
.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  min-width: 340px;
  max-width: 340px;
  background: var(--dark2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  scroll-snap-align: start;
  transition: var(--transition);
  flex-shrink: 0;
}

.testimonial-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow-gold);
}

.test-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.test-text {
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}

.test-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}

.test-role {
  display: block;
  font-size: 0.77rem;
  color: var(--gray);
  margin-top: 2px;
}

.test-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  padding: 0 48px;
}

.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dark4);
  cursor: pointer;
  transition: var(--transition);
}

.test-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* â”€â”€ CTA BAND â”€â”€ */
.cta-band {
  padding: 80px 48px;
  background: linear-gradient(135deg, #0E0A00 0%, #1A1000 40%, #0E0A00 100%);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 70%);
  pointer-events: none;
}

.cta-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-band-text p {
  font-size: 0.9rem;
  color: var(--gray-light);
}

.cta-band-timer {
  display: flex;
  align-items: center;
  gap: 4px;
}

.timer-unit {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  min-width: 64px;
}

.timer-unit span {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.timer-unit label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gray);
  margin-top: 4px;
}

.timer-colon {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  padding: 0 2px;
  margin-bottom: 14px;
}

/* â”€â”€ FOOTER â”€â”€ */
.footer {
  background: var(--dark2);
  border-top: 1px solid var(--border-soft);
  padding: 64px 48px 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 16px 0 28px;
  line-height: 1.6;
  max-width: 300px;
}

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  background: var(--dark3);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
  color: var(--gold);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.87rem;
  color: var(--gray);
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--gray);
}

.payment-icons {
  display: flex;
  gap: 8px;
}

.pay-icon {
  background: var(--dark3);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray-light);
  letter-spacing: 0.5px;
}

/* â”€â”€ CART DRAWER â”€â”€ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(4px);
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--dark2);
  border-left: 1px solid var(--border-soft);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border-soft);
}
.cart-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.cart-close {
  background: var(--dark3);
  border: none;
  color: var(--gray-light);
  width: 36px; height: 36px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}
.cart-close:hover { background: var(--dark4); color: var(--white); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
}

.cart-empty {
  text-align: center;
  padding: 60px 0;
}
.cart-empty-icon { font-size: 3rem; margin-bottom: 16px; }
.cart-empty p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 24px;
}

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

.cart-item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--dark3);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 16px;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.cart-item-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(201,168,76,0.05);
  flex-shrink: 0;
}

.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.cart-item-price {
  font-size: 0.87rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-btn {
  background: var(--dark4);
  border: 1px solid var(--border-soft);
  color: var(--white);
  width: 28px; height: 28px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--border); color: var(--gold); }

.qty-val {
  font-size: 0.9rem;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
}

.remove-item {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 4px;
  margin-left: auto;
  transition: color 0.2s;
}
.remove-item:hover { color: #FF6B6B; }

.cart-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border-soft);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--gray-light);
  margin-bottom: 10px;
}

.cart-delivery { color: #34D399; font-size: 0.85rem; }

.cart-grand {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--border-soft);
}

.btn-checkout {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
  margin-top: 16px;
  border-radius: 14px;
}

.cart-secure {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 12px;
}

/* â”€â”€ PRODUCT MODAL â”€â”€ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(6px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.product-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: 90%;
  max-width: 860px;
  max-height: 90vh;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  z-index: 2200;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.34, 1.3, 0.64, 1);
  overflow-y: auto;
}
.product-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--dark3);
  border: 1px solid var(--border-soft);
  color: var(--gray-light);
  width: 40px; height: 40px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  z-index: 10;
  transition: var(--transition);
}
.modal-close:hover { background: var(--dark4); color: var(--white); }

.modal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.modal-img-side {
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.1), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-right: 1px solid var(--border-soft);
  min-height: 400px;
}

.modal-img {
  max-height: 300px;
  width: auto;
  filter: drop-shadow(0 16px 32px rgba(201,168,76,0.35));
  animation: trophyFloat 4s ease-in-out infinite;
}

.modal-info-side { padding: 36px 36px 36px 32px; }
.modal-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.modal-name {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.modal-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.modal-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.modal-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray-light);
}

.modal-feature::before {
  content: 'âœ“';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}

.modal-price-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 24px;
}

.modal-price {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.modal-price-old {
  font-size: 1rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.modal-btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
  border-radius: 14px;
}

/* â”€â”€ TOAST â”€â”€ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

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

.toast-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--black);
  font-weight: 700;
}

.toast-text {
  font-size: 0.9rem;
  font-weight: 600;
}

/* â”€â”€ ANIMATIONS â”€â”€ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 32px 80px;
    gap: 60px;
  }
  .hero-content { max-width: 100%; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { width: 100%; }
  .hero-img-wrapper { width: 300px; height: 360px; }
  .hero-trophy { max-height: 320px; }

  .features-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .features-text .section-tag,
  .features-text .section-title { text-align: center; }
  .features-text .section-tag::before { display: inline; }

  .modal-inner { grid-template-columns: 1fr; }
  .modal-img-side { border-right: none; border-bottom: 1px solid var(--border-soft); min-height: 260px; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .cart-btn { margin-left: auto; }
  .nav-actions .nav-cta { display: none; }

  .hero { padding: 100px 24px 64px; }
  .hero-title { font-size: 2.6rem; }

  .trust-inner { flex-direction: column; gap: 12px; }
  .trust-sep { display: none; }

  .section-header { padding: 0 24px; }

  .products-section { padding: 80px 0 60px; }
  .products-grid { padding: 0 24px; gap: 16px; }

  .features-inner { padding: 0 24px; }

  .cta-band { padding: 60px 24px; }
  .cta-band-inner { flex-direction: column; text-align: center; }

  .footer { padding: 48px 24px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cart-drawer { width: 100%; border-left: none; border-top: 1px solid var(--border-soft); top: auto; border-radius: 24px 24px 0 0; }

  .testimonials-track { padding: 0 24px; }
  .testimonial-card { min-width: 300px; max-width: 300px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-sep { width: 40px; height: 1px; }
  .stat { padding: 0; }
  .modal-info-side { padding: 24px 20px; }
}

/* -- LANGUAGE SWITCHER -- */
.lang-switcher { position: relative; }

.lang-current {
  display: flex; align-items: center; gap: 6px;
  background: var(--white-soft); border: 1px solid var(--border-soft);
  color: var(--white); padding: 8px 14px; border-radius: 10px;
  cursor: pointer; font-family: 'Outfit', sans-serif;
  font-size: 0.82rem; font-weight: 600; transition: var(--transition); white-space: nowrap;
}
.lang-current:hover { background: var(--white-med); border-color: rgba(201,168,76,0.35); }
.lang-current svg { opacity: 0.6; transition: transform 0.3s; }

.lang-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--dark2); border: 1px solid var(--border); border-radius: 16px;
  padding: 8px; min-width: 170px; display: none; flex-direction: column; gap: 2px;
  z-index: 500; box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.08);
}
.lang-dropdown.open { display: flex; animation: dropIn 0.22s cubic-bezier(0.34,1.3,0.64,1); }
@keyframes dropIn { from { opacity:0; transform:translateY(-10px) scale(0.96); } to { opacity:1; transform:translateY(0) scale(1); } }

.lang-option {
  display: flex; align-items: center; gap: 10px;
  background: none; border: none; color: var(--gray-light);
  padding: 10px 14px; border-radius: 10px; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 500;
  transition: var(--transition); text-align: left; width: 100%;
}
.lang-option:hover { background: var(--white-soft); color: var(--white); transform: translateX(3px); }
.lang-option.active { background: rgba(201,168,76,0.12); color: var(--gold-light); font-weight: 700; }

@media (max-width: 768px) {
  .lang-current span:last-of-type { display: none; }
  .lang-dropdown { right: -8px; }
}

/* ---------------------------------------
   CRO OPTIMIZATION STYLES
   --------------------------------------- */

/* -- ANNOUNCEMENT BAR -- */
.announcement-bar {
  background: linear-gradient(90deg, #0a0700, #1a1200, #0a0700);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  height: 38px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.ann-track { flex: 1; overflow: hidden; }

.ann-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: annScroll 28s linear infinite;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-light);
  padding: 0 16px;
}

.ann-inner strong { color: var(--gold-light); }
.ann-dot { color: var(--gold-dark); }
@keyframes annScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ann-close {
  background: none; border: none; color: var(--gray);
  font-size: 0.8rem; cursor: pointer; padding: 0 14px;
  flex-shrink: 0; transition: color 0.2s; height: 100%;
}
.ann-close:hover { color: var(--white); }

/* -- DOMAIN IN LOGO -- */
.logo-domain {
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 0.5px;
  display: block;
  line-height: 1;
  margin-top: 2px;
  opacity: 0.7;
}
.logo { flex-direction: column; align-items: flex-start; }

/* -- FOOTER DOMAIN -- */
.footer-domain {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px !important;
  margin-top: 12px !important;
}

/* -- LIVE VIEWERS BADGE -- */
.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.live-dot {
  width: 8px; height: 8px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.3);
  animation: livePulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(34,197,94,0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* -- PRODUCT CARD URGENCY -- */
.product-viewers {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: #22C55E;
  margin-bottom: 6px;
  font-weight: 600;
}
.product-viewers::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: #22C55E;
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}

.product-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.stock-bar-wrap {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.stock-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ef4444, #f97316);
  border-radius: 2px;
  transition: width 0.5s ease;
}

.stock-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #f97316;
  white-space: nowrap;
}

/* -- SOCIAL PROOF POPUP -- */
.sp-popup {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 1500;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.34, 1.3, 0.64, 1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.sp-popup.show { transform: translateX(0); }

.sp-avatar-wrap {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.sp-info { flex: 1; }
.sp-action { font-size: 0.82rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.sp-product { font-size: 0.75rem; color: var(--gray-light); margin-bottom: 2px; }
.sp-time { font-size: 0.7rem; color: var(--gray); }

.sp-close {
  background: none; border: none; color: var(--gray);
  cursor: pointer; font-size: 0.75rem; align-self: flex-start;
  padding: 2px; transition: color 0.2s;
}
.sp-close:hover { color: var(--white); }

/* -- MOBILE STICKY CTA -- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  padding: 12px 16px;
  background: linear-gradient(to top, var(--black), rgba(9,9,9,0.95));
  border-top: 1px solid var(--border-soft);
  backdrop-filter: blur(10px);
}

.btn-sticky {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
  border-radius: 14px;
}

@media (max-width: 768px) {
  .mobile-sticky-cta { display: block; }
  .sp-popup { bottom: 100px; }
  body { padding-bottom: 80px; }
}
