@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --color-primary: #8B0000;
  --color-secondary: #FFD700;
  --color-bg: #FDF5E6;
  --color-text: #2c1a1a;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: 'Playfair Display', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

/* Texture overlay for that "traditional" feel */
.bg-pattern {
  background-image: radial-gradient(#8B0000 0.5px, transparent 0.5px);
  background-size: 20px 20px;
  opacity: 0.03;
}

.modal-open {
  overflow: hidden;
}

/* Card Hover Effect */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(139, 0, 0, 0.15);
}
