:root {
  --gold: #b08d57;
  --gold-deep: #9a7842;
  --ink: #2b2018;
}

.font-display { font-family: 'Cormorant Garamond', Georgia, serif; }
body, .font-body { font-family: 'Inter', system-ui, sans-serif; }

/* Hero carousel */
.carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.carousel-slide { flex: 0 0 100%; }

/* Card hover */
.product-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -18px rgba(43, 32, 24, 0.45);
}

/* Gold underline accent */
.accent-line::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin: 0.9rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Dots */
.dot { transition: all 0.3s ease; }
.dot.active { width: 26px; background: var(--gold); }

/* Modal */
.modal-backdrop { backdrop-filter: blur(3px); }

/* Smooth anchor scroll */
html { scroll-behavior: smooth; }

/* Fade-in on load */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }

/* Marquee for announcement bar */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
