/* ═══════════════════════════════════════════════════════════
   LUXE GOLD JEWELLERS — Premium Landing Page Styles
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties (Design Tokens) ─── */
:root {
  /* Gold Palette */
  --gold-50: #FFF9E6;
  --gold-100: #FFF1C2;
  --gold-200: #FFE494;
  --gold-300: #FFD666;
  --gold-400: #E6B422;
  --gold-500: #B8860B;
  --gold-600: #9C6F06;
  --gold-700: #7A5704;
  --gold-800: #5C4103;
  --gold-900: #3D2B02;

  /* Neutrals */
  --cream: #FFFCF5;
  --cream-dark: #FFF8E7;
  --white: #FFFFFF;
  --charcoal: #1A1A1A;
  --dark: #0D0D0D;
  --gray-50: #F9F9F9;
  --gray-100: #F2F2F2;
  --gray-200: #E6E6E6;
  --gray-300: #CCCCCC;
  --gray-400: #999999;
  --gray-500: #737373;
  --gray-600: #595959;
  --gray-700: #404040;
  --gray-800: #2D2D2D;

  /* Accent */
  --burgundy: #800020;
  --burgundy-light: #A30028;
  --emerald: #2E7D32;
  --rose: #C4516E;

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;

  /* Spacing */
  --section-py: clamp(60px, 8vw, 120px);
  --container-px: clamp(16px, 4vw, 40px);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.08);
  --shadow-gold: 0 4px 20px rgba(184,134,11,0.2);
  --shadow-gold-lg: 0 8px 40px rgba(184,134,11,0.3);

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.35s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);

  /* Nav height */
  --nav-height: 100px;
  --top-bar-height: 40px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.icon-sm {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.text-gold {
  color: var(--gold-500);
}

/* ─── Shimmer Animation ─── */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,134,11,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(184,134,11,0); }
}

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

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

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

/* ═══════════════════════ TOP BAR ═══════════════════════ */
.top-bar {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark) 100%);
  color: var(--gold-200);
  height: var(--top-bar-height);
  display: flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(184,134,11,0.2);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gold-rate-label {
  color: var(--gray-400);
}

.gold-rate-value {
  color: var(--gold-300);
  font-weight: 700;
  font-size: 0.85rem;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-100), var(--gold-300));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

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

.top-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-300);
  transition: color var(--transition-fast);
}

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

/* ═══════════════════════ NAVIGATION ═══════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 252, 245, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(184,134,11,0.12);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 252, 245, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1001;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo-icon {
  color: var(--gold-500);
  font-size: 2.4rem;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--charcoal);
}

.logo-gold {
  color: var(--gold-500);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-600);
  background: var(--gold-50);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--gray-600);
  transition: all var(--transition-fast);
}

.nav-icon-btn:hover {
  background: var(--gold-50);
  color: var(--gold-600);
}

.nav-icon-btn svg {
  width: 20px;
  height: 20px;
}

.hamburger {
  display: none;
}

/* Search Overlay */
.search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 16px 0;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.search-overlay.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-50);
  padding: 12px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
}

.search-bar:focus-within {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.1);
}

.search-icon {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  flex-shrink: 0;
}

.search-bar input {
  flex: 1;
  border: none;
  background: none;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--charcoal);
  outline: none;
}

.search-bar input::placeholder {
  color: var(--gray-400);
}

.search-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--gray-500);
  transition: all var(--transition-fast);
}

.search-close:hover {
  background: var(--gray-200);
  color: var(--charcoal);
}

.search-close svg {
  width: 18px;
  height: 18px;
}

/* ═══════════════════════ HERO ═══════════════════════ */
.hero {
  position: relative;
  min-height: max(85vh, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(184,134,11,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(128,0,32,0.08) 0%, transparent 50%),
    linear-gradient(160deg, var(--dark) 0%, #1a1510 30%, #1e150d 60%, var(--charcoal) 100%);
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-400);
  border-radius: 50%;
  opacity: 0;
  animation: sparkle 3s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8860B' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 0;
  animation: fadeIn 1s var(--ease-out);
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(184,134,11,0.12);
  border: 1px solid rgba(184,134,11,0.25);
  border-radius: var(--radius-full);
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: slideUp 0.8s var(--ease-out) 0.2s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: slideUp 0.8s var(--ease-out) 0.4s both;
}

.hero-title-gold {
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-100) 40%, var(--gold-400) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: slideUp 0.8s var(--ease-out) 0.6s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: slideUp 0.8s var(--ease-out) 0.8s both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  letter-spacing: 0.02em;
}

.btn-icon {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%);
}

.btn-outline {
  border: 1.5px solid rgba(184,134,11,0.5);
  color: var(--gold-300);
  background: rgba(184,134,11,0.08);
}

.btn-outline:hover {
  background: rgba(184,134,11,0.15);
  border-color: var(--gold-400);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  animation: slideUp 0.8s var(--ease-out) 1s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold-300);
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(184,134,11,0.2);
}

/* ═══════════════════════ SECTION HEADER (shared) ═══════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  padding: 6px 20px;
  background: var(--gold-50);
  border: 1px solid var(--gold-200);
  border-radius: var(--radius-full);
  color: var(--gold-600);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

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

/* ═══════════════════════ COLLECTIONS ═══════════════════════ */
.collections {
  padding: var(--section-py) 0;
  background: var(--white);
}

.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.collection-large {
  grid-row: 1 / 3;
}

.collection-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 280px;
  overflow: hidden;
}

.collection-large .collection-img-wrap {
  min-height: 100%;
}

.collection-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.collection-card:hover .collection-img-wrap img {
  transform: scale(1.05);
}

.collection-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  color: var(--white);
}

.collection-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(184,134,11,0.25);
  border: 1px solid rgba(184,134,11,0.4);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-200);
  margin-bottom: 8px;
}

.collection-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.collection-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  line-height: 1.4;
}

.collection-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-300);
  transition: gap var(--transition-fast);
}

.collection-link:hover {
  gap: 10px;
  color: var(--gold-200);
}

/* ═══════════════════════ PRODUCTS SECTION ═══════════════════════ */
.products-section {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

/* Category Filter */
.category-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--gold-400);
  color: var(--gold-600);
  background: var(--gold-50);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--white);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-gold);
}

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

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ─── Product Card ─── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(184,134,11,0.08);
  transition: all var(--transition-base);
  position: relative;
  animation: scaleIn 0.5s var(--ease-out) both;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(184,134,11,0.2);
}

.product-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-50) 0%, var(--cream) 100%);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 14px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  z-index: 2;
}

.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  color: var(--gray-400);
  transition: all var(--transition-fast);
  z-index: 2;
  border: none;
  cursor: pointer;
}

.product-wishlist:hover {
  color: var(--rose);
  transform: scale(1.1);
}

.product-wishlist.liked {
  color: var(--rose);
  background: rgba(196, 81, 110, 0.1);
}

.product-wishlist svg {
  width: 18px;
  height: 18px;
}

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

.product-purity {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gold-50);
  border: 1px solid var(--gold-200);
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
  line-height: 1.3;
}

.product-weight {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.product-weight svg {
  width: 14px;
  height: 14px;
  color: var(--gold-500);
}

.product-desc {
  font-size: 0.83rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-alteration {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-600);
  background: var(--gold-50);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(184,134,11,0.3);
}

.product-alteration svg {
  color: var(--gold-500);
}

.product-card-footer {
  padding: 0 20px 20px;
  margin-top: auto;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.02em;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  background: linear-gradient(135deg, #20c35e 0%, #0f7a6e 100%);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
}

/* ─── Special Product Card ─── */
.product-card-special {
  background: linear-gradient(135deg, var(--gold-100) 0%, var(--gold-200) 100%);
  border: 1.5px solid var(--gold-400);
  box-shadow: 0 10px 30px rgba(184, 134, 11, 0.15);
  position: relative;
  overflow: hidden;
}

.product-card-special::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 55%
  );
  transform: rotate(45deg);
  transition: all 0.6s;
  opacity: 0;
  pointer-events: none;
}

.product-card-special:hover::after {
  animation: shimmer-swipe 1.5s infinite;
  opacity: 1;
}

@keyframes shimmer-swipe {
  0% { transform: translate(-30%, -30%) rotate(45deg); }
  100% { transform: translate(30%, 30%) rotate(45deg); }
}

.product-card-special:hover {
  border-color: var(--gold-600);
  box-shadow: var(--shadow-gold-lg);
  transform: translateY(-8px) scale(1.02);
}

.product-card-special .product-badge {
  background: linear-gradient(135deg, var(--gold-700), var(--gold-600));
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4);
}

.product-card-special .product-name {
  color: var(--gold-900);
}

.product-card-special .product-purity {
  background: var(--gold-300);
  border-color: var(--gold-500);
  color: var(--gold-900);
}

.products-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-500);
}

.products-empty h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin: 16px 0 8px;
}

/* ═══════════════════════ WHATSAPP INVITE ═══════════════════════ */
.whatsapp-invite {
  padding: 40px 0 20px;
  background: var(--cream-dark);
}

/* ═══════════════════════ INSTAGRAM INVITE ═══════════════════════ */
.instagram-invite {
  padding: 20px 0;
  background: var(--cream-dark);
}

/* ═══════════════════════ FACEBOOK INVITE ═══════════════════════ */
.facebook-invite {
  padding: 20px 0 var(--section-py);
  background: var(--cream-dark);
}

.btn-facebook {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, #1877F2 0%, #0C51AB 100%);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.02em;
}

.btn-facebook:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.35);
}

.facebook-invite .invite-icon {
  background: linear-gradient(135deg, #1877F2, #0C51AB);
}

.facebook-invite .invite-card .btn-facebook {
  width: auto;
  min-width: 280px;
  padding: 18px 48px;
  font-size: 1.05rem;
  border-radius: var(--radius-full);
  margin-top: 10px;
}

.btn-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.02em;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(188, 24, 136, 0.35);
}

.instagram-invite .invite-icon {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.instagram-invite .invite-card .btn-instagram {
  width: auto;
  min-width: 280px;
  padding: 18px 48px;
  font-size: 1.05rem;
  border-radius: var(--radius-full);
  margin-top: 10px;
}

.invite-card {
  position: relative;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark) 100%);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(184, 134, 11, 0.2);
  text-align: center;
  animation: scaleIn 0.8s var(--ease-out) both;
}

.invite-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.invite-icon-wrap {
  width: 84px;
  height: 84px;
  background: rgba(184, 134, 11, 0.1);
  border-radius: 50%;
  padding: 10px;
  border: 1px solid rgba(184, 134, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.invite-icon {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.invite-icon svg {
  width: 32px;
  height: 32px;
}

.invite-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  max-width: 800px;
  margin: 0 auto;
}

.invite-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 640px;
  margin: 0 auto;
  font-family: var(--font-accent);
  font-style: italic;
}

.invite-card .btn-whatsapp {
  width: auto;
  min-width: 280px;
  padding: 18px 48px;
  font-size: 1.05rem;
  border-radius: var(--radius-full);
  margin-top: 10px;
}

/* Decorations */
.invite-decoration {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.dec-1 {
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.12) 0%, transparent 70%);
}

.dec-2 {
  bottom: -60px;
  left: -40px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(128, 0, 32, 0.08) 0%, transparent 70%);
}

/* Tablet & Mobile adjustment for WhatsApp Invite */
@media (max-width: 768px) {
  .invite-card {
    padding: 60px 24px;
    margin: 0 10px;
  }
}

/* ═══════════════════════ WHY US ═══════════════════════ */
.why-us {
  padding: var(--section-py) 0;
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184,134,11,0.08);
  transition: all var(--transition-base);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,134,11,0.2);
}

.trust-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-50));
  border-radius: var(--radius-md);
  color: var(--gold-500);
  transition: all var(--transition-base);
}

.trust-card:hover .trust-icon-wrap {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.trust-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.trust-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ═══════════════════════ TESTIMONIALS ═══════════════════════ */
.testimonials {
  padding: var(--section-py) 0;
  background: linear-gradient(160deg, var(--dark) 0%, #1a1510 50%, var(--charcoal) 100%);
  color: var(--white);
}

.testimonials .section-tag {
  background: rgba(184,134,11,0.15);
  border-color: rgba(184,134,11,0.3);
  color: var(--gold-300);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-subtitle {
  color: rgba(255,255,255,0.5);
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,134,11,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(184,134,11,0.3);
  transform: translateY(-4px);
}

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

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ═══════════════════════ FOOTER ═══════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}

.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-about p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 16px 0 20px;
  color: rgba(255,255,255,0.5);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--gold-500);
  color: var(--white);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--gold-400);
  padding-left: 4px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.contact-list li .icon-sm {
  color: var(--gold-500);
  margin-top: 3px;
}

.contact-list li a {
  color: rgba(255,255,255,0.5);
}

.contact-list li a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  padding: 20px 0;
}

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

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

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

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--gold-400);
}

/* ═══════════════════════ FLOATING WHATSAPP ═══════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all var(--transition-base);
  animation: pulse-gold 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.wa-icon {
  width: 32px;
  height: 32px;
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--charcoal);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all var(--transition-fast);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--charcoal);
}

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

/* ═══════════════════════ BACK TO TOP ═══════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 100px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  color: var(--gold-500);
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-500);
  color: var(--white);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ═══════════════════════ REVEAL ANIMATIONS ═══════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */

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

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

  .testimonials-track .testimonial-card:last-child {
    display: none;
  }

  .footer-grid {
    gap: 30px;
  }

  .collections-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .collection-large {
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .top-bar-right {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 40px;
    gap: 4px;
    border-left: 1px solid var(--gray-200);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: 1000;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    padding: 12px 16px;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-track {
    grid-template-columns: 1fr;
  }

  .testimonials-track .testimonial-card:last-child {
    display: block;
  }

  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .back-to-top {
    right: 80px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }

  .collection-img-wrap {
    min-height: 220px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .category-filter {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .category-filter::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Mobile Nav Overlay ─── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ─── Google Translate Overrides ─── */
.goog-te-banner-frame.skiptranslate, 
.goog-te-gadget-icon,
#goog-gt-tt, 
.goog-tooltip {
    display: none !important;
}

body {
    top: 0px !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* ─── Translation BTN State ─── */
#langToggle.active {
  background: var(--gold-50);
  color: var(--gold-600);
  box-shadow: inset 0 0 0 1px var(--gold-300);
}
