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

/* Typographie globale */
body, p, a, span, div, li, button, input {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6,
.logo, #header .logo a,
.product-title, .h1, .h2, .h3 {
  font-family: 'Playfair Display', serif;
}

/* Couleurs globales */
body {
  background-color: #faf7f2;
  color: #2c1f0e;
}

/* Header */
#header {
  background-color: #f5f0e8 !important;
  border-bottom: 1px solid #d4c9b0;
}

#header .logo a {
  color: #2c1f0e !important;
  font-size: 26px;
  font-weight: 600;
}

/* Navigation */
#header nav a,
.top-menu a {
  color: #5a4a35 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#header nav a:hover,
.top-menu a:hover {
  color: #8b5e2c !important;
}

/* Boutons */
.btn-primary, button.btn-primary {
  background-color: #2c1f0e !important;
  border-color: #2c1f0e !important;
  color: #f5f0e8 !important;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 3px;
}

.btn-primary:hover {
  background-color: #8b5e2c !important;
  border-color: #8b5e2c !important;
}

/* Prix */
.price, .product-price {
  font-family: 'Playfair Display', serif;
  color: #8b5e2c;
  font-weight: 600;
}

/* Cartes produits */
.product-miniature {
  background: #ffffff;
  border: 0.5px solid #e8dfc8;
  border-radius: 4px;
}

.product-miniature:hover {
  border-color: #c4a06a;
}

/* Footer */
#footer {
  background-color: #2c1f0e !important;
  color: #f5f0e8;
}

#footer a {
  color: #a08060 !important;
}

#footer a:hover {
  color: #f5f0e8 !important;
}

/* Mobile */
@media (max-width: 768px) {
  #header .logo a {
    font-size: 20px;
  }
  .top-menu {
    font-size: 14px;
  }
}