/* =======================================================
 *  RECIPES PAGES - Styles communs à toutes les pages de recettes
 *  ======================================================= */

/* =======================================================
 *  ESPACEMENT SPÉCIFIQUE AUX PAGES RECETTES
 *  ======================================================= */
body.recipe-page .fh5co-section {
  padding: var(--section-padding-y) 0;
}

body.recipe-page .recipe-header-section {
  margin-bottom: var(--spacing-2xl);
}

/* Responsive : espacement réduit sur mobile */
@media screen and (max-width: 768px) {
  body.recipe-page .fh5co-section {
    padding: var(--section-padding-y-mobile) 0;
  }

  body.recipe-page .recipe-header-section {
    margin-bottom: var(--spacing-xl);
  }
}

/* =======================================================
 *  RECETTE1 - Design moderne et premium
 *  ======================================================= */

/* Hero Section - Image en plein écran */
.recipe-hero-section {
  position: relative;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recipe-hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.recipe-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.recipe-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 2;
}

.recipe-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: var(--spacing-2xl) 0;
}

.recipe-hero-title {
  font-family: 'Satisfy', cursive;
  font-size: clamp(3rem, 6vw, 8rem);
  color: var(--gold);
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  letter-spacing: 2px;
}

.recipe-hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 2.5rem);
  color: rgba(255, 255, 255, 0.95);
  font-style: italic;
  margin-bottom: var(--spacing-xl);
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.recipe-hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.recipe-meta-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  background: rgba(255, 215, 0, 0.15);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 25px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
}

.recipe-meta-item i {
  color: var(--gold);
}

/* Section principale */
.recipe-main-section {
  padding: var(--spacing-3xl) 0;
  background: rgba(0, 0, 0, 0.2);
}

/* Sidebar - Ingrédients */
.recipe-sidebar {
  margin-bottom: var(--spacing-xl);
}

.recipe-sidebar-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: var(--spacing-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 100px;
}

.recipe-sidebar-title {
  font-family: 'Satisfy', cursive;
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  color: var(--gold);
  margin-bottom: var(--spacing-lg);
  text-align: center;
  padding-bottom: var(--spacing-md);
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.recipe-sidebar-title i {
  margin-right: var(--spacing-sm);
}

.recipe-ingredients-list-modern {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recipe-ingredient-modern {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
  transition: all 0.3s ease;
}

.recipe-ingredient-modern:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
  border-left-color: var(--gold-secondary);
}

.message-info {
  color: #ffa726;
  background-color: rgba(255, 167, 38, 0.1);

  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid #ffa726;
  text-align: center;
}

.ingredient-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.15rem, 1.6vw, 2rem);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.7;
}

/* Content - Préparation */
.recipe-content-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: var(--spacing-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.recipe-content-title {
  font-family: 'Satisfy', cursive;
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  color: var(--gold);
  margin-bottom: var(--spacing-xl);
  text-align: center;
  padding-bottom: var(--spacing-md);
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.recipe-content-title i {
  margin-right: var(--spacing-sm);
}

.recipe-steps-modern {
  margin-bottom: var(--spacing-xl);
}

.recipe-step-modern {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  transition: all 0.3s ease;
}

.recipe-step-modern:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.step-number-modern {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-secondary));
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.step-content-modern {
  flex: 1;
  padding-top: var(--spacing-xs);
}

.step-content-modern p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.15rem, 1.6vw, 1.8rem);
  line-height: 1.8;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
}

.recipe-step-image-wrapper {
  margin-top: var(--spacing-xl);
  text-align: center;
}

.recipe-step-image-modern {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 12px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Section Recette similaire */
.recipe-similar-section-modern {
  padding: var(--spacing-3xl) 0;
  background: rgba(0, 0, 0, 0.3);
}

.recipe-section-title-modern {
  font-family: 'Satisfy', cursive;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--gold);
  margin-bottom: var(--spacing-2xl);
}

.recipe-similar-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.recipe-similar-image-modern {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.recipe-similar-image-wrapper:hover .recipe-similar-image-modern {
  transform: scale(1.05);
}

.recipe-similar-content-modern {
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.recipe-similar-title-modern {
  font-family: 'Satisfy', cursive;
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--gold);
  margin-bottom: var(--spacing-md);
}

.recipe-similar-subtitle-modern {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  color: var(--golden-cocoa);
  margin-bottom: var(--spacing-md);
  font-style: italic;
}

.recipe-similar-description-modern {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
  font-family: 'Cormorant Garamond', serif;
}

.recipe-similar-btn-modern {
  background: linear-gradient(135deg, var(--gold), var(--gold-secondary));
  color: #000;
  border: none;
  padding: var(--spacing-md) var(--spacing-2xl);
  border-radius: 30px;
  font-weight: 600;
  font-size: clamp(1rem, 1.3vw, 1.8rem);
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.recipe-similar-btn-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, var(--gold-secondary), var(--gold));
}

/* Section Commentaires */
.recipe-comments-section-modern {
  padding: var(--spacing-3xl) 0;
  background: rgba(0, 0, 0, 0.2);
}

.recipe-comments-card-modern {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: var(--spacing-2xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin-bottom: var(--spacing-2xl);
}

.recipe-comments-title-modern {
  font-family: 'Satisfy', cursive;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--gold);
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-md);
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.recipe-comments-title-modern i {
  margin-right: var(--spacing-sm);
}

.recipe-comment-form-modern {
  margin-top: var(--spacing-lg);
}

.form-group-modern {
  margin-bottom: var(--spacing-lg);
}

.form-label-modern {
  display: block;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 1.5vw, 2.2rem);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.form-control-modern {
  width: 100%;
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 1.5vw, 1.8rem);
  resize: vertical;
  transition: all 0.3s ease;
}

.form-control-modern:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-control-modern::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.recipe-submit-btn-modern {
  background: linear-gradient(135deg, var(--gold), var(--gold-secondary));
  color: #000;
  border: none;
  padding: var(--spacing-md) var(--spacing-2xl);
  border-radius: 30px;
  font-weight: 600;
  font-size: clamp(1rem, 1.3vw, 2rem);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.recipe-submit-btn-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, var(--gold-secondary), var(--gold));
}

/* Liste des commentaires */
.recipe-comments-list-modern {
  margin-top: var(--spacing-xl);
}

.recipe-comment-item-modern {
  display: flex;
  gap: var(--spacing-md);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  transition: all 0.3s ease;
  word-break: break-all;
}

.recipe-comment-item-modern:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.4);
}

.comment-avatar-modern {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-secondary));
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.comment-content-wrapper-modern {
  flex: 1;
}

.comment-header-modern {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-sm);
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.comment-author-modern {
  color: var(--gold);
  font-family: 'Satisfy', cursive;
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  margin: 0;
}

.comment-rating-modern {
  display: flex;
  gap: 2px;
}

.comment-text-modern {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.15rem, 1.5vw, 1.3rem);
  line-height: 1.8;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
}

.recipe-no-comments-modern {
  padding: var(--spacing-2xl);
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

/* =======================================================
 *  RECETTE2 - Styles spécifiques (checkboxes et images)
 *  ======================================================= */

/* Images de recette */
.recipe-image-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin-bottom: var(--spacing-xl);
}

.recipe-image-modern {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.recipe-image-card:hover .recipe-image-modern {
  transform: scale(1.05);
}

/* Checkboxes de préparation */
.recipe-checkbox-steps {
  margin-top: var(--spacing-lg);
}

.recipe-checkbox-task {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.recipe-checkbox-task:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.recipe-checkbox-task input[type='checkbox']:checked + .recipe-checkbox-label {
  text-decoration: line-through;
  opacity: 0.6;
  color: var(--gold-secondary);
}

.recipe-checkbox-task
  input[type='checkbox']:checked
  ~ .recipe-checkbox-label::before {
  content: '✓';
  color: var(--gold);
}

.recipe-checkbox-input {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--gold);
  transform: scale(1.2);
}

.recipe-checkbox-label {
  flex: 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.15rem, 1.6vw, 1.8rem);
  line-height: 1.8;
  font-family: 'Cormorant Garamond', serif;
  transition: all 0.3s ease;
}

/* =======================================================
 *  RECETTE3/RECETTE4 - Styles spécifiques (Tiramisu, Glace)
 *  ======================================================= */

/* Section showcase des ingrédients */
.recipe-ingredients-showcase {
  padding: var(--spacing-3xl) 0;
  background: rgba(0, 0, 0, 0.2);
}

.recipe-subtitle-desc-modern {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-style: italic;
  margin-bottom: var(--spacing-xl);
  font-family: 'Cormorant Garamond', serif;
}

.recipe-intro-text-modern {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
  font-family: 'Cormorant Garamond', serif;
}

/* Cards d'ingrédients avec images */
.ingredient-card-modern {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: var(--spacing-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: var(--spacing-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ingredient-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 215, 0, 0.4);
}

.ingredient-img-wrap-modern {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: var(--spacing-md);
  height: 200px;
  overflow: hidden;
}

.ingredient-img-wrap-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ingredient-card-modern:hover .ingredient-img-wrap-modern img {
  transform: scale(1.1);
}

.ingredient-card-title-modern {
  color: var(--gold);
  font-family: 'Satisfy', cursive;
  font-size: clamp(1.3rem, 2vw, 2.5rem);
  margin-bottom: var(--spacing-sm);
}

.ingredient-card-desc-modern {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.1rem, 1.5vw, 1rem);
  line-height: 1.6;
  font-family: 'Cormorant Garamond', serif;
  flex-grow: 1;
}

/* Catégories d'ingrédients */
.ingredient-category-block-modern {
  margin-bottom: var(--spacing-xl);
}

.category-name-modern {
  color: var(--golden-cocoa);
  font-size: clamp(1.2rem, 1.8vw, 1.9rem);
  margin-bottom: var(--spacing-md);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.recipe-ingredient-modern .qty {
  color: var(--gold);
  font-weight: 600;
  margin-right: var(--spacing-xs);
}



/* Titre des étapes */
.step-title-modern {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

/* Commentaires */
.comments-list-title-modern {
  color: var(--gold);
  font-family: 'Satisfy', cursive;
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  margin-bottom: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.comment-date-modern {
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.85rem, 1.1vw, 5rem);
  font-style: italic;
}

.recipe-alert-modern {
  margin-top: var(--spacing-md);
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.5);
  color: #ff6b6b;
  border-radius: 8px;
  padding: var(--spacing-md);
}

.info-badge-modern {
  display: block;
  padding: var(--spacing-md);
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.3vw, 1.6rem);
  text-align: center;
  transition: all 0.3s ease;
  font-family: 'Cormorant Garamond', serif;
}

.info-badge-modern:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--gold);
  transform: translateX(5px);
}

/* Captions d'images */
.image-caption-modern {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  text-align: center;
  font-style: italic;
  margin-top: var(--spacing-sm);
  font-family: 'Cormorant Garamond', serif;
}

/* =======================================================
 *  RECETTE5/RECETTE6 - Styles spécifiques (Cookies)
 *  ======================================================= */

/* Galerie d'images */
.recipe-gallery-section {
  padding: var(--spacing-2xl) 0;
  background: rgba(0, 0, 0, 0.2);
}

.recipe-gallery-item {
  margin-bottom: var(--spacing-md);
}

.recipe-gallery-img {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.recipe-gallery-main .recipe-gallery-img {
  height: 520px;
}

.recipe-gallery-img:hover {
  transform: scale(1.05);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.metadata-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--spacing-lg);
}

.metadata-item {
  text-align: center;
  padding: var(--spacing-lg);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.metadata-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.metadata-item i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: var(--spacing-sm);
  display: block;
}

.metadata-item h3 {
  color: var(--gold);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin: var(--spacing-sm) 0;
  font-family: 'Satisfy', cursive;
}

.metadata-item p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-family: 'Cormorant Garamond', serif;
}

/* Reviews section */
.reviews-header-modern {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.btn-toggle-reviews-modern {
  background: linear-gradient(135deg, var(--gold), var(--gold-secondary));
  color: #000;
  border: none;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: 30px;
  font-weight: 600;
  font-size: clamp(1rem, 1.3vw, 2rem);
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-toggle-reviews-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, var(--gold-secondary), var(--gold));
}

.reviews-container-modern {
  margin-top: var(--spacing-xl);
}

.review-modern {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  transition: all 0.3s ease;
  height: 100%;
}

.review-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.4);
}

.review-header-modern {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.review-author-modern {
  display: block;
  color: var(--gold);
  font-family: 'Satisfy', cursive;
  font-size: clamp(1.1rem, 1.6vw, 1.7rem);
  margin-bottom: var(--spacing-xs);
}

.review-date-modern {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.85rem, 1.1vw, 2rem);
  font-style: italic;
}

.review-stars-modern {
  margin: var(--spacing-sm) 0;
  display: flex;
  gap: 2px;
}

.review-text-modern {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-top: var(--spacing-sm);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 1.5vw, 1.3rem);
}

.comment-form-wrapper-modern {
  margin-top: var(--spacing-xl);
}

/* Responsive */
@media screen and (max-width: 992px) {
  .recipe-hero-section {
    height: 60vh;
    min-height: 400px;
  }

  .recipe-sidebar-card {
    position: static;
    margin-bottom: var(--spacing-xl);
  }

  .ingredient-img-wrap-modern {
    height: 180px;
  }

  .recipe-gallery-main .recipe-gallery-img {
    height: 300px;
  }

  .metadata-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Badge moderne */
.badge-modern-recipe {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 30px;
  color: var(--gold);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  font-family: 'Cormorant Garamond', serif;
}

.badge-modern-recipe i {
  margin-right: var(--spacing-xs);
}

/* Grille d'ingrédients */
.ingredients-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-lg);
}

.ingredient-column-modern {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
}

.ingredient-column-modern:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.ingredient-column-title {
  color: var(--gold);
  font-family: 'Satisfy', cursive;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}



@media screen and (max-width: 768px) {
  .recipe-gallery-img {
    height: 200px;
  }

  .recipe-gallery-main .recipe-gallery-img {
    height: 250px;
  }

  .metadata-grid {
    grid-template-columns: 1fr;
  }

  .reviews-header-modern {
    flex-direction: column;
    align-items: flex-start;
  }

  .ingredients-grid-modern {
    grid-template-columns: 1fr;
  }

}

@media screen and (max-width: 768px) {
  .recipe-hero-section {
    height: 50vh;
    min-height: 350px;
    margin-top: 60px;
  }

  .recipe-hero-meta {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .recipe-main-section {
    padding: var(--spacing-xl) 0;
  }

  .recipe-sidebar-card,
  .recipe-content-card {
    padding: var(--spacing-lg);
  }

  .recipe-step-modern {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .step-number-modern {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .recipe-comment-item-modern {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .comment-avatar-modern {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* =======================================================
 *  RECETTE2 - Styles pour la page recette2
 *  ======================================================= */
.mainRecette2__container--spacing {
  margin-top: 25rem;
}

.mainRecette2__card__preparation-list--spacing img {
  width: 100%;
  height: 35vh;
  object-fit: cover;
  object-position: center;
}

.mainRecette2__card__ingredients-title--styled,
.mainRecette2__card__preparation-title--styled,
.mainRecette2__card__similary-title {
  color: gold;
  margin: 10rem 0;
  font-size: 3rem;
}

.mainRecette2__card__ingredients-list--spacing,
.mainRecette2__card__preparation-list--spacing {
  margin: 10rem 0;
}

.mainRecette2__comments--spacing {
  margin: 10rem 0;
}

.mainRecette2__comments__card--styled {
  max-width: 600px;
  width: 100%;
  border: 2px solid rgba(255, 217, 0, 0.292);
  padding: 5rem 3rem;
  border-radius: 15px;
  background-color: black;
  margin: auto;
}

.mainRecette2__comments__card__title--gold {
  color: gold;
}

.mainRecette2__comments__card__form__submit-wrapper--spacing {
  margin-top: 3rem;
}

.mainRecette2__comments--spacing {
  margin: 10rem 0;
}

.mainRecette2__comments__card--styled {
  max-width: 600px;
  width: 100%;
  border: 2px solid rgba(255, 217, 0, 0.292);
  padding: 5rem 3rem;
  border-radius: 15px;
  background-color: black;
  margin: auto;
}

.mainRecette2__comments__card__title--gold {
  color: gold;
}

.mainRecette2__comments__card__form__submit-wrapper--spacing {
  margin-top: 3rem;
}

.mainRecette2__card__preparation-image-wrapper {
  display: flex;
  justify-content: space-between;
}

.mainRecette2__card__similary-recipe {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: clamp(1rem, 2vw, 2.5rem);
  padding: 7rem 5rem;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.mainRecette2__card__similary-recipe > * {
  color: white;
  font-size: clamp(20%, 20vw, 100%);
}

.mainRecette2__card__similary-recipe h3 {
  color: gold;
}

.mainRecette2__card__similary-recipe h4 {
  color: var(--golden-cocoa);
}

.mainRecette2__card__similary-recipe a {
  background-color: white;
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-weight: bolder;
  transition: 0.3s ease;
}

.mainRecette2__card__similary-recipe a:hover {
  color: white;
  background-color: var(--golden-cocoa);
  font-weight: bolder;
}

@media (max-width: 769px) {
  .mainRecette2__card__preparation-image-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .mainRecette2__card__similary-recipe {
    width: 80%;
  }
  .card-img-top {
    width: 80%;
  }
}

.card-img-top {
  width: clamp(200px, 50%, 600px);
  height: auto;
  object-fit: cover;
}

/* =======================================================
 *  RECETTE3 - Styles pour la page recette3
 *  ======================================================= */
.mainRecette3 {
  width: min(92%, 1200px);
  margin: auto;
  margin-top: 25vh;
  padding: clamp(1.5rem, 2.5vw, 3rem);
  font-family: system-ui, sans-serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
}

/* TITRES */
.mainRecette3 h1,
.mainRecette3 h2 {
  color: #d4af37;
}

.mainRecette3 h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.mainRecette3 h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

/* TEXTES */
.mainRecette3 p,
.mainRecette3 li,
.mainRecette3 label {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.75;
  color: #f3f3f3;
}

/* HEADER */
.mainRecette3 header {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.mainRecette3__image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: #222;
}

.mainRecette3__main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* INGREDIENTS */
.mainRecette3__ingredients {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin: 10vh 0;
}

.mainRecette3__ingredients__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: #222;
}

.mainRecette3__ingredients__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mainRecette3__ingredients__desc {
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.mainRecette3__ingredients__desc > ul > li {
  font-size: 2rem;
}

.mainRecette3__ingredients__desc ul {
  padding-left: clamp(1rem, 2vw, 2rem);
}

/* PREPARATION */
.mainRecette3__preparation {
  margin: 10vh 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.mainRecette3__preparation__desc {
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.mainRecette3__preparation__desc ol {
  padding-left: clamp(1rem, 2vw, 2rem);
}

.mainRecette3__preparation__image {
  width: 90%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: #222;
}

.mainRecette3__preparation__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mainRecette3__preparation__tasks {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
}

.checkboxTask > span {
  font-size: 1.2rem;
  text-align: end;
}

.checkboxTask > input {
  transform: scale(1.5);
}

.mainRecette3__div > p {
  font-size: 1.5rem;
}

/* FORMULAIRE */
.mainRecette3__form {
  background: #272727;
  padding: clamp(1.8rem, 2.5vw, 3rem);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 1.5vw, 1.2rem);
  max-width: 500px;
  margin: auto;
}

.mainRecette3__form label {
  font-weight: 600;
  color: #d4af37;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
}

.mainRecette3__form input {
  padding: clamp(0.8rem, 1.2vw, 1.2rem);
  border-radius: 8px;
  border: 1px solid #555;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: #fff;
  background: #000;
}

.mainRecette3__form button {
  padding: clamp(0.9rem, 1.3vw, 1.3rem);
  background: #d4af37;
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: clamp(1.2rem, 1.7vw, 1.4rem);
  cursor: pointer;
  transition: 0.25s ease;
  font-weight: 600;
}

.mainRecette3__form button:hover {
  background: #b8902a;
}

/* COMMENTS */
.mainRecette3__comments,
.mainRecette3__comments,
.mainRecette3__image-wrapper {
  margin: 10vh 0;
}

.mainRecette3__comments > h2 {
  text-align: center;
}

.mainRecette3__comments > h2 {
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .mainRecette3 header,
  .mainRecette3__ingredients {
    grid-template-columns: 1fr;
  }
  .mainRecette3__preparation {
    grid-template-columns: 1fr;
  }

  .mainRecette3__preparation__image {
    aspect-ratio: 16 / 10;
  }

  .mainRecette3__image-wrapper,
  .mainRecette3__ingredients__image {
    aspect-ratio: 16 / 10;
  }
  .mainRecette3__ingredients__desc {
    margin: 0;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .mainRecette3__preparation__tasks {
    margin-top: 5rem;
  }
  #fh5co-footer > img {
    display: none;
  }
}

@media (max-width: 750px) {
  .fh5co-widget {
    text-align: center !important;
  }
}

/* =======================================================
 *  RECETTE4 - Styles pour la page recette4
 *  ======================================================= */
.recette4__section--gradient-light {
  background: linear-gradient(
    135deg,
    rgba(78, 52, 46, 0.03),
    rgba(201, 168, 106, 0.03)
  );
}

.recette4__section--gradient-medium {
  background: linear-gradient(
    135deg,
    rgba(78, 52, 46, 0.05),
    rgba(201, 168, 106, 0.05)
  );
}

/* =======================================================
 *  LIST GROUP - Styles pour les listes de tâches
 *  ======================================================= */
.list-group-numbered .list-group-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.list-group-numbered .list-group-item:hover {
  background-color: #ffd70033;
  transform: scale(1.05);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}

.list-group-numbered .list-group-item:not(.done) {
  animation: pulse 2s infinite;
}

/* =======================================================
 *  STARS - Styles pour les étoiles de notation
 *  ======================================================= */
.stars span {
  color: #f5c518 !important;
  font-size: 18px !important;
  margin: 0 4px !important;
}

.stars {
  text-align: center !important;
  line-height: 1 !important;
}

/* =======================================================
 *  RESTAURATION: Classes manquantes pour recette3 et recette4
 *  ======================================================= */

/* RESTAURATION: recipe-header-* pour recette3 et recette4 */
.recipe-header-row {
  align-items: center;
}

.recipe-header-item {
  padding: var(--spacing-md);
}

.recipe-header-title {
  color: #fff;
}

.recipe-main-title {
  font-family: 'Satisfy', cursive;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--spacing-md);
}

.recipe-subtitle-text {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.recipe-header-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* RESTAURATION: recipe-section-* pour recette4 */
.recipe-section-title {
  font-family: 'Satisfy', cursive;
  color: var(--gold);
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: var(--spacing-lg);
}

.recipe-subtitle-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  margin-bottom: var(--spacing-xl);
}

.recipe-intro-text {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--spacing-lg);
}

.recipe-meta-info {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
}

.recipe-meta-info .meta-item {
  color: var(--golden-cocoa);
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
}

/* RESTAURATION: ingredient-card pour recette4 */
.ingredient-card {
  text-align: center;
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.ingredient-card:hover {
  transform: translateY(-5px);
}

.ingredient-img-wrap {
  margin-bottom: var(--spacing-md);
  border-radius: 8px;
  overflow: hidden;
}

.ingredient-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ingredient-card h4 {
  color: var(--gold);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin: var(--spacing-sm) 0;
}

.ingredient-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
}

/* RESTAURATION: recipe-ingredients-box et preparation pour recette4 */
.recipe-ingredients-box,
.recipe-preparation-box {
  background: rgba(0, 0, 0, 0.3);
  padding: var(--spacing-xl);
  border-radius: 12px;
  border: 1px solid rgba(255, 217, 0, 0.2);
}

.ingredients-title,
.preparation-title {
  color: var(--gold);
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  margin-bottom: var(--spacing-lg);
  font-family: 'Satisfy', cursive;
}

.ingredient-category-block {
  margin-bottom: var(--spacing-lg);
}

.category-name {
  color: var(--golden-cocoa);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  margin-bottom: var(--spacing-md);
}

.ingredients-list {
  list-style: none;
  padding: 0;
}

.ingredients-list li {
  padding: var(--spacing-sm) 0;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ingredients-list .qty {
  color: var(--gold);
  font-weight: 600;
  margin-right: var(--spacing-sm);
}

.chef-note {
  margin-top: var(--spacing-lg);
  padding: var(--spacing-md);
  background: rgba(255, 217, 0, 0.1);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  font-size: clamp(1.15rem, 1.5vw, 1.3rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.preparation-steps {
  list-style: none;
  padding: 0;
}

.prep-step {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-details h5 {
  color: var(--gold);
  margin-bottom: var(--spacing-sm);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
}

.step-details p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.7;
}

/* RESTAURATION: comment-card-recipe pour recette4 */
.comment-form-wrapper {
  margin-top: var(--spacing-xl);
}

.comment-card-recipe {
  background: rgba(0, 0, 0, 0.3);
  padding: var(--spacing-lg);
  border-radius: 12px;
  margin-bottom: var(--spacing-md);
  border: 1px solid rgba(255, 217, 0, 0.2);
}

.comment-author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-right: var(--spacing-md);
}

.comment-author-name {
  color: var(--gold);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  margin: 0;
}

.comment-rating {
  margin: var(--spacing-sm) 0;
}

.comment-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.15rem, 1.5vw, 1.3rem);
  line-height: 1.7;
  margin-top: var(--spacing-sm);
}

.comments-list-title {
  color: var(--gold);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: var(--spacing-xl);
  font-family: 'Satisfy', cursive;
}

.no-comments-message {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: var(--spacing-xl);
  font-style: italic;
}

/* RESTAURATION: recipe-card pour recette4 */
.recipe-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(255, 217, 0, 0.2);
  overflow: hidden;
  margin-bottom: var(--spacing-lg);
}

.recipe-card-header {
  padding: var(--spacing-lg);
  border-bottom: 1px solid rgba(255, 217, 0, 0.2);
  background: rgba(255, 217, 0, 0.05);
}

.recipe-card-title {
  color: var(--gold);
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  margin: 0;
  font-family: 'Satisfy', cursive;
}

.recipe-card-body {
  padding: var(--spacing-lg);
}

.recipe-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: var(--spacing-sm);
}

.image-caption {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-align: center;
  font-style: italic;
}

.info-badge {
  display: block;
  padding: var(--spacing-sm);
  margin: var(--spacing-sm) 0;
  background: rgba(255, 217, 0, 0.1);
  border-radius: 6px;
  color: var(--gold);
}

.recipe-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: var(--spacing-2xl) 0;
}

.recipe-textarea {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 217, 0, 0.3);
  color: #fff;
  border-radius: 8px;
}

.recipe-submit-btn {
  background: var(--gold);
  color: #000;
  border: none;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.recipe-submit-btn:hover {
  background: var(--golden-cocoa);
  color: #fff;
}

/* RESTAURATION: recipe-gallery et recipe-container pour recette5 */
.recipe-gallery {
  margin: var(--spacing-2xl) 0;
}

.recipe-gallery-title {
  margin-bottom: var(--spacing-xl);
}

.recipe-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-lg);
}

.recipe-article {
  color: #fff;
}

.recipe-metadata {
  margin-bottom: var(--spacing-xl);
}

.metadata-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--spacing-md);
}

.metadata-item {
  text-align: center;
  padding: var(--spacing-md);
  background: rgba(255, 217, 0, 0.1);
  border-radius: 8px;
}

.metadata-item i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: var(--spacing-sm);
}

.metadata-item h3 {
  color: var(--gold);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin: var(--spacing-sm) 0;
}

.metadata-item p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.recipe-section {
  margin-bottom: var(--spacing-2xl);
}

.section-title {
  color: var(--gold);
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  margin-bottom: var(--spacing-lg);
  font-family: 'Satisfy', cursive;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-md);
}

.ingredient-group {
  margin-bottom: var(--spacing-lg);
}

.group-title {
  color: var(--golden-cocoa);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  margin-bottom: var(--spacing-md);
}

.ingredient-qty {
  color: var(--gold);
  font-weight: 600;
  margin-right: var(--spacing-sm);
}

.ingredient-name {
  color: rgba(255, 255, 255, 0.85);
}

.tip-box {
  padding: var(--spacing-md);
  background: rgba(255, 217, 0, 0.1);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  margin-top: var(--spacing-lg);
}

.steps-list {
  list-style: none;
  padding: 0;
}

.step {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-content h3 {
  color: var(--gold);
  margin-bottom: var(--spacing-sm);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
}

.step-content p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.reviews-section {
  margin-top: var(--spacing-2xl);
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.btn-toggle-reviews {
  background: var(--gold);
  color: #000;
  border: none;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-toggle-reviews:hover {
  background: var(--golden-cocoa);
  color: #fff;
}

.reviews-container {
  margin-top: var(--spacing-lg);
}

.review {
  background: rgba(0, 0, 0, 0.3);
  padding: var(--spacing-lg);
  border-radius: 12px;
  margin-bottom: var(--spacing-md);
  border: 1px solid rgba(255, 217, 0, 0.2);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}

.review-header strong {
  color: var(--gold);
}

.review-stars {
  margin: var(--spacing-sm) 0;
}

.review-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.15rem, 1.5vw, 1.3rem);
  line-height: 1.7;
  margin-top: var(--spacing-sm);
}

/* RESTAURATION: hero-wrapper et modern-recipe pour recette6 */
.hero-wrapper {
  padding: var(--spacing-2xl) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.badge-modern {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(255, 217, 0, 0.2);
  border: 1px solid var(--gold);
  border-radius: 20px;
  color: var(--gold);
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  margin-bottom: var(--spacing-md);
}

.hero-wrapper h1 {
  color: var(--gold);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-family: 'Satisfy', cursive;
  margin-bottom: var(--spacing-lg);
}

.hero-wrapper p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
}

.hero-visual {
  position: relative;
}

.floating-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.floating-card img {
  width: 100%;
  height: auto;
  display: block;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.metric-card {
  text-align: center;
  padding: var(--spacing-md);
  background: rgba(255, 217, 0, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 217, 0, 0.2);
}

.metric-card span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-xs);
}

.metric-card strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.sections-shell {
  padding: var(--spacing-2xl) 0;
}

.panel-modern {
  background: rgba(0, 0, 0, 0.3);
  padding: var(--spacing-xl);
  border-radius: 12px;
  border: 1px solid rgba(255, 217, 0, 0.2);
  margin-bottom: var(--spacing-xl);
}

.panel-modern h2 {
  color: var(--gold);
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: var(--spacing-xl);
  font-family: 'Satisfy', cursive;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
}

.ingredient-column h3 {
  color: var(--golden-cocoa);
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  margin-bottom: var(--spacing-md);
}

.ingredient-column ul {
  list-style: none;
  padding: 0;
}

.ingredient-column ul li {
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

.ingredient-column ul li span:first-child {
  color: var(--gold);
  font-weight: 600;
}

.steps-flow {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.step-item {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.step-item .step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-item h3 {
  color: var(--gold);
  margin-bottom: var(--spacing-sm);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
}

.step-item p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.timeline-card {
  padding: var(--spacing-md);
  background: rgba(255, 217, 0, 0.1);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}

.timeline-card strong {
  color: var(--gold);
  display: block;
  margin-bottom: var(--spacing-xs);
}

.timeline-card p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive pour les nouvelles classes */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
  }

  .metadata-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
