/* ===== HEADER STYLES ===== */
.header-topbar {
  background: var(--navy-dark);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-tagline {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1.5px;
  font-weight: 300;
}
.topbar-social {
  display: flex;
  gap: 14px;
}
.topbar-social a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.topbar-social a:hover { color: var(--gold); }

.header-main {
  background: var(--navy);
  padding: 20px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1;
}
.logo-tagline {
  font-size: 8px;
  color: var(--gold);
  letter-spacing: 2.5px;
  margin-top: 3px;
  font-weight: 400;
}

.header-search {
  flex: 1;
  max-width: 380px;
}
.header-search form {
  display: flex;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
}
.header-search input {
  flex: 1;
  padding: 10px 16px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
}
.header-search input::placeholder { color: rgba(255,255,255,0.35); }
.header-search button {
  padding: 10px 16px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.header-search button:hover { color: var(--gold); }

/* MAIN NAV */
.main-nav {
  background: var(--navy-light);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 3px solid var(--red);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-dark);
  border-top: 2px solid var(--red);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sub-menu li a {
  display: block;
  padding: 11px 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.sub-menu li a:hover {
  color: var(--gold);
  padding-left: 28px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 27, 48, 0.72);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 640px; padding: 80px 0; }
.hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--red);
  padding: 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-item {
  text-align: center;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  font-weight: 500;
}
.stat-label {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* ===== CUISINES GRID ===== */
.cuisines-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 12px;
}
.cuisine-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 16px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.cuisine-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--transition);
}
.cuisine-card:hover { transform: translateY(-4px); border-color: var(--navy); }
.cuisine-card:hover::before { transform: scaleX(1); }
.cuisine-card__emoji { font-size: 32px; margin-bottom: 12px; display: block; }
.cuisine-card__name {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}
.cuisine-card__desc {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.cuisine-card__arrow {
  font-size: 14px;
  color: var(--red);
  opacity: 0;
  transition: var(--transition);
}
.cuisine-card:hover .cuisine-card__arrow { opacity: 1; }

/* ===== RECIPE CARD EXTRAS ===== */
.recipe-card__excerpt {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}
.recipe-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--cream-dark);
  min-height: 200px;
}

/* ===== RECIPE LAYOUT ===== */
.recipe-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}
.recipe-intro {
  font-size: 18px;
  font-family: var(--font-elegant);
  color: var(--text-mid);
  border-left: 3px solid var(--red);
  padding-left: 20px;
  margin-bottom: 36px;
  font-style: italic;
}

/* SIDEBAR */
.sidebar-recent { display: flex; flex-direction: column; gap: 16px; }
.sidebar-recent-item {
  display: flex;
  gap: 12px;
  align-items: center;
}
.sidebar-recent-img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  overflow: hidden;
}
.sidebar-recent-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-recent-title {
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.4;
  display: block;
  margin-bottom: 4px;
}
.sidebar-recent-title:hover { color: var(--red); }
.sidebar-recent-date { font-size: 11px; color: var(--text-light); }

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  padding: 0;
  background: var(--navy);
  width: 100%;
}
.newsletter-box {
  border-radius: 0;
  background: transparent;
}
.newsletter-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ===== FOOTER ===== */
.site-footer { background: var(--navy-dark); }
.footer-top { padding: 56px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo span {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
}
.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-recent { display: flex; flex-direction: column; gap: 14px; }
.footer-recent-item { display: flex; gap: 10px; align-items: center; }
.footer-recent-img { width: 50px; height: 50px; flex-shrink: 0; overflow: hidden; }
.footer-recent-img img { width: 100%; height: 100%; object-fit: cover; }
.footer-recent-item a {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  display: block;
  line-height: 1.4;
  margin-bottom: 2px;
}
.footer-recent-item a:hover { color: var(--gold); }
.footer-recent-item span { font-size: 10px; color: rgba(255,255,255,0.3); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .recipe-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .stats-inner { flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .header-inner { flex-direction: column; gap: 12px; }
  .header-search { max-width: 100%; width: 100%; }
  .nav-menu { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 48px 0; }
  .stat-item { padding: 16px 20px; }
}

/* ===== FLOATING FOOD ANIMATION ===== */
.hero-floats {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.float-item {
  position: absolute;
  left: var(--x);
  bottom: -60px;
  font-size: var(--size);
  animation: floatUp var(--duration) var(--delay) infinite ease-in-out;
  opacity: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
@keyframes floatUp {
  0%   { transform: translateY(0) rotate(-8deg) scale(0.8); opacity: 0; }
  10%  { opacity: 0.85; }
  50%  { transform: translateY(-45vh) rotate(8deg) scale(1.05); opacity: 0.7; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-100vh) rotate(-4deg) scale(0.9); opacity: 0; }
}
.hero .container { position: relative; z-index: 2; }

/* ===== HERO SLIDESHOW ===== */
.hero-slideshow { position:absolute; inset:0; z-index:0; }
.hero-slide {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0; transition:opacity 1.2s ease;
}
.hero-slide.active { opacity:1; }
.hero-overlay { position:absolute; inset:0; background:rgba(17,27,48,0.65); }
.slide-country-tag {
  position:absolute; bottom:24px; right:24px;
  background:rgba(255,255,255,0.12); backdrop-filter:blur(8px);
  color:#fff; font-size:12px; letter-spacing:1.5px;
  padding:6px 14px; border:1px solid rgba(255,255,255,0.2);
  opacity:0; transition:opacity 0.5s ease 0.8s;
}
.hero-slide.active .slide-country-tag { opacity:1; }
.slideshow-dots {
  position:absolute; bottom:24px; left:50%; transform:translateX(-50%);
  display:flex; gap:8px; z-index:3;
}
.slideshow-dot {
  width:8px; height:8px; border-radius:50%;
  background:rgba(255,255,255,0.35); border:none; cursor:pointer;
  transition:all 0.3s;
}
.slideshow-dot.active { background:#c8102e; width:24px; border-radius:4px; }

/* ===== CUISINES ONE LINE ===== */
.cuisines-row {
  display:flex; gap:12px; overflow-x:auto; padding-bottom:8px;
  scrollbar-width:none; -ms-overflow-style:none;
}
.cuisines-row::-webkit-scrollbar { display:none; }
.cuisines-row .cuisine-card {
  flex:0 0 120px; min-width:120px; padding:20px 12px 16px;
}
.cuisines-row .cuisine-card__emoji { font-size:26px; margin-bottom:8px; }
.cuisines-row .cuisine-card__name { font-size:13px; }
.cuisines-row .cuisine-card__desc { font-size:10px; }

/* ===== CAROUSEL ===== */
.carousel-wrapper { overflow:hidden; width:100%; }
.carousel-track {
  display:flex; gap:24px;
  transition:transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change:transform;
}
.carousel-item {
  flex:0 0 calc((100% - 48px) / 3);
  min-width:calc((100% - 48px) / 3);
}
.carousel-nav { display:flex; gap:8px; }
.carousel-btn {
  width:40px; height:40px; border:1px solid var(--navy);
  background:none; color:var(--navy); font-size:16px;
  cursor:pointer; transition:all 0.3s; display:flex;
  align-items:center; justify-content:center;
}
.carousel-btn:hover { background:var(--navy); color:#fff; }

@media(max-width:768px) {
  .carousel-item { flex:0 0 calc((100% - 24px) / 2); min-width:calc((100% - 24px) / 2); }
  .cuisines-grid { grid-template-columns: repeat(4, 1fr); }
}
@media(max-width:480px) {
  .carousel-item { flex:0 0 85%; min-width:85%; }
  .cuisines-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   NEW ADDITIONS — appended, existing styles untouched
   ============================================================ */

/* --- VEDETTES: 3×3 grid carousel (page-based) --- */
.vedettes-viewport {
  overflow: hidden;
  width: 100%;
}
.vedettes-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.vedettes-page {
  flex: 0 0 100%;
  min-width: 100%;
}
.vedettes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}
.vedettes-grid .recipe-card {
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
.vedettes-counter {
  font-size: 13px;
  color: var(--text-light);
  font-family: var(--font-body);
  min-width: 40px;
  text-align: center;
}

/* --- ABOUT MINI SECTION --- */
.section--about-mini {
  background: var(--navy);
  padding: 80px 0;
}
.about-mini-link {
  display: block;
  text-decoration: none;
  transition: opacity 0.2s;
}
.about-mini-link:hover { opacity: 0.92; }
.about-mini-inner {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 56px;
  align-items: center;
}
/* Left: globe + orbit */
.about-mini-left { text-align: center; }
.about-mini-globe-wrap {
  position: relative;
  display: inline-block;
  width: 160px;
  height: 160px;
}
.about-mini-globe {
  font-size: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  animation: floatGlobe 4s ease-in-out infinite;
}
@keyframes floatGlobe {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.about-mini-orbit {
  position: absolute;
  inset: 0;
  animation: spinOrbit 18s linear infinite;
}
@keyframes spinOrbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.about-mini-orbit span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 18px;
  transform-origin: 0 0;
  transform: rotate(var(--a)) translateX(80px) translateY(-50%) rotate(calc(-1 * var(--a)));
}
/* Center: text */
.about-mini-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  color: var(--white);
  line-height: 1.25;
  margin: 8px 0 16px;
}
.about-mini-title em { color: var(--gold); font-style: italic; }
.about-mini-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
/* Right: pillar cards */
.about-mini-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-pillar-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.2s;
}
.about-mini-link:hover .about-pillar-card { background: rgba(255,255,255,0.1); }
.about-pillar-card .about-pillar-icon { font-size: 26px; flex-shrink: 0; }
.about-pillar-card strong {
  display: block;
  font-size: 20px;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
}
.about-pillar-card span {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
}

/* --- SIDEBAR: other articles, cats, search --- */
.sidebar-widget-articles,
.sidebar-widget-cats,
.sidebar-widget-search {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 20px;
  margin-bottom: 20px;
}
.sidebar-articles-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-art-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.sidebar-art-thumb {
  flex-shrink: 0;
  width: 56px; height: 56px;
  overflow: hidden;
  display: block;
}
.sidebar-art-thumb img {
  width: 56px; height: 56px;
  object-fit: cover;
  display: block;
}
.sidebar-art-placeholder {
  width: 56px; height: 56px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.sidebar-art-info { display: flex; flex-direction: column; gap: 3px; }
.sidebar-art-title {
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s;
}
.sidebar-art-title:hover { color: var(--red); }
.sidebar-art-date { font-size: 11px; color: var(--text-light); }
.sidebar-cats-list { list-style: none; padding: 0; margin: 0; }
.sidebar-cats-list li { border-bottom: 1px solid var(--border); }
.sidebar-cats-list li:last-child { border-bottom: none; }
.sidebar-cat-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  font-size: 13px;
  color: var(--text);
  transition: color 0.2s;
}
.sidebar-cat-link:hover,
.sidebar-cat-link.is-active { color: var(--red); font-weight: 600; }
.sidebar-cat-count {
  background: var(--cream);
  color: var(--text-light);
  font-size: 11px;
  padding: 1px 7px;
  border-radius: 20px;
}
.sidebar-search-form { display: flex; border: 1px solid var(--border); overflow: hidden; }
.sidebar-search-input {
  flex: 1;
  padding: 9px 12px;
  border: none;
  outline: none;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--text);
}
.sidebar-search-btn {
  padding: 9px 14px;
  background: var(--navy);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.2s;
}
.sidebar-search-btn:hover { background: var(--red); }

/* --- STAR RATING --- */
.star-rating-block {
  margin-top: 48px;
  padding: 32px;
  background: var(--cream);
  border: 1px solid var(--border);
  text-align: center;
}
.star-rating-block__title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 16px;
}
.stars-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}
.star-btn {
  font-size: 38px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.12s, transform 0.12s;
  line-height: 1;
  user-select: none;
}
.star-btn.hover, .star-btn.selected { color: #f5a623; }
.star-btn:hover { transform: scale(1.2); }
.star-feedback {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  min-height: 18px;
  margin: 0;
}

/* --- COMMENTS --- */
.recipe-comments-section {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 2px solid var(--border);
}

/* ===== COMMENT SECTION — Styled & French ===== */
.recipe-comments-section {
  margin-top: 48px;
}

/* ── Comment list: beautiful cards ── */
.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.comment-list .comment {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 2px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.comment-list .comment:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }

/* Hide comments beyond first 3 — JS will reveal on "Voir plus" */
.comment-list .comment.comment-hidden { display: none; }

.comment-list .avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  border: 2px solid var(--gold);
  background: var(--cream);
}
.comment-content { flex: 1; min-width: 0; }
.comment-meta { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.comment-author b {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--navy);
  font-weight: 700;
}
.comment-metadata { font-size: 11px; color: var(--text-light); }
.comment-metadata a { color: var(--text-light); text-decoration: none; }
.comment-metadata .edit-link { margin-left: 6px; }
.comment-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0 0 10px 0;
}
.reply a {
  font-size: 11px;
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--red);
  padding: 4px 12px;
  display: inline-block;
  transition: all 0.2s;
}
.reply a:hover { background: var(--red); color: #fff; }

/* "Voir plus" button */
.comments-load-more {
  text-align: center;
  margin: 8px 0 32px;
}
.comments-load-more button {
  background: none;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 32px;
  cursor: pointer;
  transition: all 0.2s;
}
.comments-load-more button:hover { background: var(--navy); color: #fff; }

/* Reply form / main form */
#respond {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 36px;
  margin-top: 8px;
}
.comment-reply-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.comment-reply-title::before {
  content: '✉';
  font-size: 18px;
  color: var(--red);
}
.comment-reply-title small { font-size: 13px; font-family: var(--font-body); font-weight: 400; }
.comment-reply-title small a { color: var(--red); text-decoration: none; }
.comment-notes, .logged-in-as, .must-log-in {
  font-size: 13px;
  color: var(--text-light);
  margin: 0 0 20px 0;
  line-height: 1.5;
}
.logged-in-as a { color: var(--red); text-decoration: none; }
.comment-form { margin: 0; }
.comment-form p { margin: 0 0 16px 0; }
.comment-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.comment-form .required { color: var(--red); }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,160,96,0.12);
}
.comment-form textarea { min-height: 130px; }
.comment-form-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.comment-form-submit {
  margin-top: 8px;
}
.comment-form-submit .btn--primary {
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 14px 32px;
}
/* No comments message */
.no-comments {
  text-align: center;
  color: var(--text-light);
  font-style: italic;
  padding: 24px 0;
  font-size: 15px;
}
@media (max-width: 600px) {
  #respond { padding: 24px 20px; }
  .comment-form-fields-row { grid-template-columns: 1fr; }
}

/* --- "VOUS AIMEREZ AUSSI" horizontal carousel --- */
.youmay-viewport { overflow: hidden; width: 100%; }
.youmay-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  align-items: stretch;
}
.youmay-slide {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
  width: calc(33.333% - 16px);
  box-sizing: border-box;
}
.youmay-slide.recipe-card {
  min-width: 0;
}

/* Responsive additions */
@media (max-width: 960px) {
  .about-mini-inner { grid-template-columns: 1fr 1fr; }
  .about-mini-left { display: none; }
  .vedettes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .about-mini-inner { grid-template-columns: 1fr; }
  .about-mini-right { flex-direction: row; flex-wrap: wrap; }
  .about-pillar-card { flex: 1 1 140px; }
  .vedettes-grid { grid-template-columns: 1fr; }
  .youmay-slide { flex: 0 0 calc((100% - 24px) / 2); min-width: calc((100% - 24px) / 2); }
}
@media (max-width: 420px) {
  .youmay-slide { flex: 0 0 85%; min-width: 85%; }
}


/* ============================================================
   MOBILE — single clean block
   ============================================================ */

.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-toggle-bar { display: none !important; }

@media (max-width: 768px) {

  .header-topbar { display: none; }
  .header-main { padding: 8px 0; }

  .header-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    padding: 0 10px;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
  }

  /* Logo: keep full logo but smaller */
  .site-logo { flex-shrink: 0; }
  .site-logo a { gap: 6px; }
  .logo-mark svg { width: 20px; height: 20px; }
  .logo-name { font-size: 13px !important; white-space: nowrap; }
  .logo-tagline { font-size: 7px !important; letter-spacing: 1px !important; }

  /* Search: fixed small width, don't grow too much */
  .header-search {
    flex: 1;
    min-width: 0;
    max-width: 160px;
  }
  .header-search form { display: flex; }
  .header-search input {
    font-size: 11px;
    padding: 7px 8px;
    min-width: 0;
    width: 100%;
  }
  .header-search button { padding: 0 8px; flex-shrink: 0; }

  /* Hamburger always visible */
  .nav-toggle { display: flex; }

  .main-nav .container { padding: 0; }
  .nav-menu {
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    background: var(--navy-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-menu.open { display: flex !important; }
  .nav-menu > li > a {
    padding: 13px 18px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-menu .sub-menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    background: rgba(0,0,0,0.25);
    border-top: none;
    display: none;
  }
  .nav-menu li.open > .sub-menu { display: block; }
  .sub-menu li a { padding: 10px 30px; font-size: 12px; }

  .cuisines-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 10px !important; }
  .cuisine-card { padding: 14px 8px !important; }
  .cuisine-card__emoji { font-size: 28px !important; margin-bottom: 6px !important; }
  .cuisine-card__name { font-size: 12px !important; }
  .cuisine-card__desc { display: none !important; }

  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom-links { flex-wrap: wrap; gap: 10px 18px; }
  .footer-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .logo-name { font-size: 12px !important; }
  .logo-tagline { font-size: 6px !important; }
  .header-search { max-width: 130px; }
  .cuisines-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 8px !important; }
  .cuisine-card { padding: 12px 6px !important; }
  .cuisine-card__emoji { font-size: 24px !important; }
  .cuisine-card__name { font-size: 11px !important; }
}

/* ── Hide default WP comment list, use custom one ── */
.recipe-comments-section .comment-list,
.recipe-comments-section #comments > h2,
.recipe-comments-section #comments > ol,
.recipe-comments-section #comments > ul,
.recipe-comments-section .comments-title { display: none !important; }

/* ── Custom comment cards ── */
.ms-comments-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.ms-comments-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }

.ms-comment {
  display: flex;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 18px 20px;
  transition: box-shadow 0.2s;
}
.ms-comment:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.ms-comment.ms-comment-hidden { display: none !important; }

.ms-comment-avatar-wrap img {
  width: 46px !important; height: 46px !important;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  display: block;
}
.ms-comment-body { flex: 1; min-width: 0; }
.ms-comment-header { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.ms-comment-author { font-family: var(--font-display); font-size: 15px; color: var(--navy); font-weight: 700; }
.ms-comment-date { font-size: 11px; color: var(--text-light); }
.ms-comment-text p { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin: 0 0 10px; }
.ms-comment-footer .comment-reply-link {
  font-size: 11px;
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--red);
  padding: 4px 12px;
  display: inline-block;
  transition: all 0.2s;
}
.ms-comment-footer .comment-reply-link:hover { background: var(--red); color: #fff; }

/* Load more button */
.ms-load-more { text-align: center; margin-bottom: 28px; }
.ms-load-more button {
  background: none;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 32px;
  cursor: pointer;
  transition: all 0.2s;
}
.ms-load-more button:hover { background: var(--navy); color: #fff; }
