:root {
  --gold: #B3883B;
  --gold-dark: #8C6A2E;
  --brown: #3B2A1A;
  --cream: #F8F5F0;
  --cream-dark: #EFE7DA;
  --text: #222222;
  --text-light: #5e5448;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

.heading-font {
  font-family: 'Cinzel', serif;
}

.gold-text { color: var(--gold); }
.gold-bg { background: var(--gold); }
.gold-border { border-color: var(--gold); }

.luxury-gradient {
  background: linear-gradient(135deg, #3B2A1A 0%, #6B4A22 50%, #B3883B 100%);
}

.glass {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.85);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Product Card Hover */
.product-card {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.product-card:hover {
  transform: translateY(-10px);
}

.btn-premium {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}
.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
  z-index: -1;
}
.btn-premium:hover::before {
  left: 100%;
}

/* Navigation Link Hover */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
