:root {
  --primary-color: #d40055;
  --secondary-color: #f8bbd0;
  --bg-dark: #1a0000;
  --text-light: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.08);
  --font-title: 'Rouge Script', cursive;
  --font-text: 'Raleway', sans-serif;
}

body {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-color) 100%);
  background-attachment: fixed;
  font-family: var(--font-text);
  color: var(--text-light);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-height: 100dvh;
}

/* --- Typographie & Boutons --- */
h1, h2 {
  font-family: var(--font-title);
  font-weight: 400;
}

.btn-primary, .btn-secondary, .btn-add {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  margin-top: 20px;
}

.btn-primary:hover, .btn-secondary:hover {
  background-color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-add {
  background: transparent;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  width: 100%;
  margin-top: 15px;
}

.btn-add:hover {
  background: var(--secondary-color);
  color: var(--bg-dark);
}

/* --- Hero Section --- */
.hero-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: radial-gradient(circle at center, var(--primary-color) 0%, rgba(26,0,0,0.) 100%);
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 10px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  animation: fadeInDown 1.2s ease-out;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--secondary-color);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease-out 0.3s both;
}

/* --- Section Nouveautés --- */
.section-nouveautes {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-nouveautes h2 {
  font-size: 3.5rem;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.section-subtitle {
  margin-bottom: 50px;
  color: #ffd1dc;
  font-size: 1.1rem;
}

/* Layout Grid pour Desktop */
.products-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

/* L'image de présentation (remplace le position absolute) */
.presentation-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

.hero-image.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Grille des produits */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  width: 100%;
}

/* Cartes Produits (Glassmorphism) */
.product-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.product-image-placeholder {
  height: 150px;
  background: rgba(0,0,0,0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.product-info h3 {
  font-family: var(--font-text);
  font-size: 1.3rem;
  margin: 0 0 10px 0;
}

.price {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--secondary-color);
}

/* --- Section CTA --- */
.cta-section {
  padding: 80px 20px;
  text-align: center;
background: radial-gradient(circle at center, var(--primary-color) 0%, rgba(26,0,0,0.) 100%);
}
.cta-section h2{
  font-size: 2rem;
}
.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  margin-top: 20px;
}

/* --- Animations de base --- */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- MEDIA QUERIES (La magie pour le responsive) --- */
@media (min-width: 992px) {
  /* Sur grand écran, on met l'image à côté des produits */
  .products-container {
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    text-align: left;
  }
  
  .presentation-image {
    justify-content: flex-start;
  }
  
  .hero-image {
    max-width: 100%;
  }
}
/* Section Avis */
.section-avis {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.avis-card-public {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 25px;
  text-align: left;
  transition: all 0.3s ease;
}

.avis-card-public:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.avis-card-public .avis-etoiles {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.avis-card-public .avis-commentaire {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  color: #f0e6e6;
  margin-bottom: 12px;
}

.avis-card-public .avis-client {
  font-weight: 600;
  color: var(--secondary-color);
  text-align: right;
}

.avis-card-public .avis-produit {
  font-size: 0.8rem;
  color: #ffd1dc;
  margin-bottom: 8px;
}

.avis-hidden {
  display: none !important;
}