@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
}

.font-display {
  font-family: 'Playfair Display', serif;
}

.hero-bg {
  background: radial-gradient(circle at top right, #f6e4cf 0%, #f8ede0 45%, #fbf6ee 100%);
}

.product-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(107, 66, 38, 0.15);
}

.nav-link {
  position: relative;
}

.nav-link.active {
  color: #6b4226;
  font-weight: 600;
}
