body {
  font-family: 'Playfair Display', serif;
  margin: 0;
  padding: 0;
  background-color: #fdf8f6;
  color: #5f4c4c;
}

.logo {
  width: 180px;
  height: auto;
  display: block;
  margin: 20px auto;
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  background-color: #fff;
  border-bottom: 1px solid #e8c9c1;
  padding: 15px 0;
}

nav a {
  text-decoration: none;
  color: #5f4c4c;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #d4a5a5;
  border-bottom: 2px solid #d4a5a5;
}

.articles-section {
  padding: 40px 20px;
  text-align: center;
}

.articles-section h1 {
  font-size: 28px;
  color: #b9848c;
  margin-bottom: 40px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.article-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(212, 165, 165, 0.1);
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
}

.article-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
  object-fit: cover;
  height: 220px;
}

.article-card h3 {
  font-size: 18px;
  color: #a16c78;
  margin-bottom: 8px;
}

.article-card p {
  font-size: 14px;
  color: #6d5a5a;
  margin-bottom: 10px;
}

.prix {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  color: #d07fa5;
  font-size: 16px;
}

footer {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-top: 1px solid #e8c9c1;
}

footer p {
  font-size: 12px;
  color: #a18d8d;
}
.colors {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 10px 0;
}
.color-circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #ccc;
  cursor: pointer;
}

.tailles, .quantite {
  font-size: 14px;
  text-align: left;
  margin-top: 10px;
}

.tailles select,
.quantite input {
  width: 100%;
  padding: 6px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-top: 5px;
}

.ajouter-panier {
  background-color: #ff66a3;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  margin-top: 15px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}
.ajouter-panier:hover {
  background-color: #cc005f;
  transform: scale(1.03);
}
/* --- Style du logo Orchidrima --- */
header {
  text-align: center;
  padding: 20px 0;
  background-color: #fff0f5; /* خلفية ناعمة */
}

.logo {
  width: 220px; /* حجم متوسط */
  max-width: 90%;
  height: auto;
  display: inline-block;
  border-radius: 15px;
  padding: 10px;
  background-color: #fff7fb;
  box-shadow: 0 4px 10px rgba(240, 144, 197, 0.15); /* ظل هادئ */
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05); /* تأثير عند المرور */
}

