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

body {
  font-family: 'Arial', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #c5a100; /* Accent doré */
}

/* Main container */
main {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
}

/* Hero section (si utilisée) */
.hero {
  text-align: center;
  padding: 3rem 1rem;
  background: #f8f8f8;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #666;
}

.hero .btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #c5a100;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.hero .btn:hover {
  background-color: #a88a00;
}

/* Grille pour catalogue / actualités */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: auto;
}

.card-content {
  padding: 1rem;
  text-align: center;
}

.card-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.card-content p {
  font-size: 0.95rem;
  color: #666;
}

.card-content a {
  display: inline-block;
  margin-top: 1rem;
  color: #c5a100;
  font-weight: bold;
  text-decoration: none;
}

.card-content a:hover {
  color: #a88a00;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #f8f8f8;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #ddd;
}


.product-detail {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
}

.product-detail img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.product-detail h2 {
  margin-top: 1.5rem;
  color: #333;
}

.product-detail ul {
  margin: 0.5rem 0 1rem 1.5rem;
}

.actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #c5a100;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.btn.secondary {
  background-color: #666;
}

.btn:hover {
  opacity: 0.9;
}
