/*
Theme Name: Oh My Food Child
Template: twentytwentyone
Version: 1.0
Description: Тема ребёнок для Oh My Food
*/
/* ВАШ КОД CSS НАЧИНАЕТСЯ ЗДЕСЬ */
/* ==========================================================================
   Reset & personnalisation OHMYFOOD
   ========================================================================== */
/* --- Reset CSS для Twenty Twenty-One --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  line-height: 1;
  color: inherit;
  background: none;
}
ul, ol { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
img { max-width: 100%; height: auto; border: 0; }

/* --- Import Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;700&display=swap');

/* --- Variables de couleurs --- */
:root {
  --couleur-primaire: #900020;
  --couleur-secondaire: #EAB308;
  --couleur-accent: #DC2626;
  --noir-pur: #000000;
  --blanc-pur: #FFFFFF;
  --gris-noble: #78716C;
}

/* --- Styles de base --- */
body {
  font-family: 'Work Sans', sans-serif;
  color: var(--noir-pur);
  background: var(--blanc-pur);
  line-height: 1.6;
  font-weight: 400;
}

/* ==========================================================================
   HEADER Desktop (1440px)
   ========================================================================== */
.site-header {
  background: var(--blanc-pur);
  padding: 1px 0;
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center; /* Центрирование меню */
}

.site-logo img {
  max-width: 100px;  /* Размер логотипа */
  height: auto;
  margin-right: 0px; /* Расстояние между логотипом и «Accueil» */
}
.site-navigation .menu-list {
  display: flex;
  gap: 20px;         /* Расстояние между пунктами меню */
}
.site-navigation .menu-list li {
  position: relative;
}


.site-navigation .menu-list a {
  color: var(--noir-pur);
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 0;
  text-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
}

/* Hover/focus Mon compte — серый */
.site-navigation .menu-list li:last-child a:hover,
.site-navigation .menu-list li:last-child a:focus {
  color: var(--gris-noble);
}

/* Hover/focus всех пунктов, кроме Mon compte */
.site-navigation .menu-list a:hover,
.site-navigation .menu-list a:focus {
  color: var(--couleur-secondaire);
}


/* Стили для Mon compte */
.site-navigation .menu-list li:last-child a {
  color: #900020;  /* цвет Mon compte */
}
/* Hover/focus Mon compte — серый */
.site-navigation .menu-list li:last-child a:hover,
.site-navigation .menu-list li:last-child a:focus {
  color: var(--gris-noble);
}

/* ==========================================================================
   FOOTER - OhMyFood (WHITE BACKGROUND VERSION)
   ========================================================================== */
.site-footer {
  background: var(--blanc-pur);
  color: var(--noir-pur);
  padding: 20px 0;     /* добавляем верхний/нижний padding */
  margin-top: 0;       /* убираем auto, чтобы не толкало вниз */
  border-top: 1px solid #f0f0f0;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;  /* УМЕНЬШЕНО В 2 РАЗА с 30px до 15px */
}

/* Основная информация */
.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;  /* УМЕНЬШЕНО В 2 РАЗА с 20px до 10px */
}

.footer-title {
  font-family: 'Fira Code', monospace;
  font-size: 1.5rem;  /* УМЕНЬШЕНО с 2rem до 1.5rem */
  font-weight: 700;
  color: var(--noir-pur);  /* ЧЕРНЫЙ цвет для CONTACT */
  letter-spacing: 1px;
  margin: 0;
}

.contact-info {
  display: flex;
  flex-direction: row;  /* НА ДЕСКТОПЕ В ОДНУ СТРОКУ */
  gap: 30px;           /* РАССТОЯНИЕ МЕЖДУ ТЕЛЕФОНОМ И EMAIL */
  align-items: center;
  justify-content: center;
}

.phone, .email {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;     /* УМЕНЬШЕНО с 1.125rem до 1rem */
  font-weight: 600;    /* БОЛЕЕ ЖИРНЫЙ шрифт как вы просили */
  color: var(--gris-noble);  /* СЕРЫЙ ФИРМЕННЫЙ цвет */
  margin: 0;
  transition: color 0.3s ease;
}

.phone:hover, .email:hover {
  color: var(--couleur-secondaire);
}

/* Социальные сети */
.footer-social {
  display: flex;
  justify-content: center;
}

.social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--noir-pur);  /* ЧЕРНЫЙ фон для иконок */
  color: var(--blanc-pur);      /* БЕЛЫЕ иконки внутри */
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-link:hover,
.social-link:focus {
  background: var(--couleur-secondaire);  /* Желтый при наведении */
  color: var(--noir-pur);                 /* Черные иконки при наведении */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(234, 179, 8, 0.3);
}

.social-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
  transform: scale(1.1);
}

/* ==========================================================================
   Hero Section (Accueil)
   ========================================================================== */
.hero-section {
  background: var(--blanc-pur);
  padding: 5px 0 20px; /* верх 10px, низ 20px */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;     /* можно 60vh, чтобы секции были ближе */
  margin-bottom: 0;     /* на всякий случай */
}

.hero-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}
.hero-content {
  max-width: 700px;
  margin: 10 auto;
}
.hero-title {
  font-family: 'Fira Code', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--noir-pur);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.8rem;
  color: var(--gris-noble);
  margin-bottom: 40px;
}

/* Стиль кнопки Réserver Maintenant */
.hero-btn {
  background: var(--couleur-primaire);
  color: var(--blanc-pur);
  padding: 20px 45px;       /* чуть больше отступ по вертикали и горизонтали */
  font-family: 'Work Sans', sans-serif;
  font-size: 1.2rem;        /* увеличили размер текста */
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none !important; /* убрали подчёркивание */
  display: inline-block;
  transition: background 0.3s, transform 0.3s;
  border: none;
  cursor: pointer;
}
.hero-btn:hover,
.hero-btn:focus {
  background: var(--gris-noble); /* серый фирменный */
  color: var(--blanc-pur);
}
.hero-btn:active {
  background: var(--couleur-secondaire); /* жёлтый при нажатии */
  color: var(--noir-pur);
}
/* ==========================================================================
   Pour Qui Sommes-Nous Section
   ========================================================================== */
.audience-section {
  background-image: url('https://ohmyfood.zenitswiss.ch/wp-content/uploads/2025/10/background_omf.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 0 30px;
  position: relative;
  margin-top: 0;        /* на всякий случай убираем возможный внешний отступ */
}

.audience-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
  text-align: center;
}
.audience-heading {
  font-family: 'Fira Code', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--couleur-primaire);
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 15px;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.audience-card {
  background: var(--couleur-secondaire);
  color: var(--couleur-primaire);
  padding: 10px;
  border-radius: 12px;
  width: 280px;
  text-align: center;
}
.audience-card h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blanc-pur);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.audience-card p {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--noir-pur);
  line-height: 1.4;
}


.restaurants-section {
  padding-top: 0px !important; /* ← УМЕНЬШАЕМ ОТСТУП СВЕРХУ */
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .header-inner { padding: 0 40px; }
  
  .footer-container {
    padding: 0 40px;
    gap: 12px;  /* УМЕНЬШЕНО В 2 РАЗА с 25px до 12px */
  }
  
  .footer-title {
    font-size: 1.35rem;  /* УМЕНЬШЕНО с 1.8rem до 1.35rem */
  }
  
  .footer-main {
    gap: 8px;  /* УМЕНЬШЕНО пропорционально */
  }
  
  /* ПЛАНШЕТ: КОНТАКТЫ ОСТАЮТСЯ В ОДНУ СТРОКУ */
  .contact-info {
    gap: 25px;  /* Немного меньше расстояние */
  }
  
  .phone, .email {
    font-size: 0.9rem;   /* УМЕНЬШЕНО с 1rem до 0.9rem */
    font-weight: 600;    /* Сохраняем жирность */
  }
  
  .social-icons {
    gap: 15px;
  }
  
  .social-link {
    width: 45px;
    height: 45px;
  }
  
  .social-icon {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 768px) {
  .header-inner { flex-direction: column; gap: 20px; padding: 0 20px; }
  .site-logo img { max-width: 80px; }
  .site-navigation .menu-list { flex-direction: column; gap: 20px; text-align: center; }
  
  .site-footer {
    padding: 30px 0;
  }
  
  .footer-container {
    padding: 0 20px;
    gap: 10px;  /* УМЕНЬШЕНО В 2 РАЗА с 20px до 10px */
  }
  
  .footer-title {
    font-size: 1.125rem;  /* УМЕНЬШЕНО с 1.5rem до 1.125rem */
  }
  
  .footer-main {
    gap: 6px;  /* УМЕНЬШЕНО пропорционально */
  }
  
  /* МОБИЛЬНЫЙ: КОНТАКТЫ В СТОЛБИК */
  .contact-info {
    flex-direction: column;  /* ПЕРЕХОДИМ В СТОЛБИК */
    gap: 3px;               /* УМЕНЬШЕНО В 2 РАЗА с 6px до 3px */
  }
  
  .phone, .email {
    font-size: 0.85rem;   /* УМЕНЬШЕНО с 0.95rem до 0.85rem */
    font-weight: 600;     /* Сохраняем жирность */
  }
  
  .social-icons {
    gap: 12px;
  }
  
  .social-link {
    width: 42px;
    height: 42px;
  }
  
  .social-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 5px 10px;   /* убрали лишний паддинг сверху/снизу */
    gap: 5px;            /* сократили расстояние между логотипом и меню */
    justify-content: center; /* выровняли всё по центру */
  }
  .site-navigation .menu-list {
    gap: 12px;
    justify-content: center; /* пункты по центру */
  }
}
.site-navigation .menu-list li a {
  font-size: 1.2rem;       
  line-height: 1;
  text-align: center;
  display: block;
}

.hero-title {
  font-size: 1.8rem !important;
}
  
  .footer-container {
    padding: 0 15px;
    gap: 9px;  /* УМЕНЬШЕНО В 2 РАЗА с 18px до 9px */
  }
  
  .footer-title {
    font-size: 1rem;  /* УМЕНЬШЕНО с 1.3rem до 1rem */
  }
  
  .footer-main {
    gap: 5px;  /* УМЕНЬШЕНО пропорционально */
  }
  
  /* ОЧЕНЬ МАЛЕНЬКИЙ ЭКРАН: КОНТАКТЫ В СТОЛБИК */
  .contact-info {
    flex-direction: column;  /* В СТОЛБИК */
    gap: 2px;               /* УМЕНЬШЕНО В 2 РАЗА с 5px до 2px */
  }
  
  .phone, .email {
    font-size: 0.8rem;    /* УМЕНЬШЕНО с 0.9rem до 0.8rem */
    font-weight: 600;     /* Сохраняем жирность */
  }
  
  .social-icons {
    gap: 10px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .social-icon {
    width: 18px;
    height: 18px;
  }
}

/* Десктопные экраны больше 1440px */
@media (min-width: 1441px) {
  .footer-container {
    padding: 0 80px;
  }
  
  .footer-title {
    font-size: 1.65rem;  /* УМЕНЬШЕНО с 2.2rem до 1.65rem */
  }
  
  /* БОЛЬШИЕ ЭКРАНЫ: КОНТАКТЫ В ОДНУ СТРОКУ С БОЛЬШИМ ЗАЗОРОМ */
  .contact-info {
    gap: 40px;  /* БОЛЬШЕ РАССТОЯНИЕ */
  }
  
  .phone, .email {
    font-size: 1.1rem;   /* УМЕНЬШЕНО с 1.2rem до 1.1rem */
    font-weight: 600;    /* Сохраняем жирность */
  }
  
  .social-icons {
    gap: 25px;
  }
  
  .social-link {
    width: 55px;
    height: 55px;
  }
  
  .social-icon {
    width: 26px;
    height: 26px;
  }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--noir-pur);
  color: var(--blanc-pur);
  padding: 8px 16px;
  text-decoration: none;
}
.skip-link:focus {
  left: 6px; top: 6px; z-index: 9999;
}

/* Дополнительные стили для доступности */
.social-link:focus-visible {
  outline: 2px solid var(--couleur-secondaire);
  outline-offset: 2px;
}

/* Анимация появления при скролле (опционально) */
@media (prefers-reduced-motion: no-preference) {
  .site-footer {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Убираем анимации для пользователей с ограниченной подвижностью */
@media (prefers-reduced-motion: reduce) {
  .social-link,
  .social-icon,
  .phone,
  .email {
    transition: none;
  }
  
  .site-footer {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   Restaurants Carousel Section – только одна фотография и стрелки
   ========================================================================== */
.restaurants-section {
  padding: 0px;
  text-align: center;
}

.restaurants-heading {
  font-family: 'Fira Code', monospace;
  font-size: 2rem;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.85);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
}

.restaurants-carousel {
  position: relative;
  max-width: 600px;
  margin: 20px auto;
}

.carousel-slides {
  overflow: hidden;
}

.carousel-slide {
  width: 100%;
}

.carousel-slide img {
  width: 70%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
}

/* Стрелки карусели: одинаковый размер, ровно по центру по вертикали */
.carousel-arrow {
  position: absolute;
  top: 30%;                      /* центр по вертикали */
  transform: translateY(-50%);
  background: none !important;
  color: var(--couleur-secondaire); /* жёлтый цвет стрелок */
  font-size: 2.5rem;             /* единый размер стрелок */
  border: none;
  padding: 0;                    /* без внутренних отступов */
  cursor: pointer;
  z-index: 10;
}
.carousel-arrow.prev {
  left: 10px;   /* обе по 10px от краёв */
}
.carousel-arrow.next {
  right: 10px;
}

@media (max-width: 480px) {
  .carousel-arrow {
    font-size: 1rem;  /* уменьшаем размер стрелок на мобильных */
    left: 5px;
    right: 5px;
  }
}


.slide-dots {
  margin-top: 10px;
}

.slide-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--gris-noble);
  margin: 0 5px;
  border-radius: 50%;
}

.slide-dots .dot.active {
  background: var(--couleur-secondaire);
}

.restaurants-btn {
  background: var(--couleur-primaire); /* #900020 */
  color: var(--blanc-pur);
  font-weight: 700;
  padding: 20px 45px;  /* то же, что у .hero-btn */
  font-size: 1.2rem;
  border-radius: 50px;
  text-decoration: none !important;
}

.restaurants-btn:hover {
  background: var(--couleur-accent);
}
/* ==========================================================================
   Garanties Ohmyfood Section
   ========================================================================== */
.guarantees-section {
  background-image: url('https://ohmyfood.zenitswiss.ch/wp-content/uploads/2025/10/background_omf.png');
  background-size: cover;
  background-position: center;
  padding: 20px 0 20px;     /* уменьшаем нижний отступ */
  position: relative;
  width: 100vw;
  margin-left: 50%;            /* отступ 50% от левого края */
  transform: translateX(-50%); /* сдвиг блока обратно на половину ширины */
}

.guarantees-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.guarantees-heading {
  background: rgba(255, 255, 255, 0.85);  /* полупрозрачная белая плашка */
  color: var(--couleur-primaire);          /* красный цвет */
  font-family: 'Fira Code', monospace;
  font-size: 1.5rem;                         /* тот же размер, что у Pour Qui */
  font-weight: 700;                        /* жирный */
  display: inline-block;
  padding: 20px 30px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.guarantees-list {
  background: var(--couleur-secondaire);  /* жёлтый фон */
  padding: 20px 30px;                     /* чуть меньше вертикальный padding */
  border-radius: 20px;
  list-style: none;
  margin: 0 auto;
  max-width: 400px;                       /* поуже, чем раньше */
}

.guarantees-list li {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.guarantees-list li:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-slide img { width: 90%; max-width: 300px; }
}
@media (max-width: 480px) {
  .guarantees-list {
    max-width: 90%;      /* займет 90% от ширины экрана */
    padding: 15px 20px;  /* чуть меньше внутренние отступы */
    margin: 0 auto;      /* по центру */
  }
}

@media (max-width: 480px) {
  .carousel-slide img { width: 100%; }
}
.audience-section,
.guarantees-section {
  background-size: cover !important;
  background-position: center !important;
}
/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
  padding: 10px 0 10px;
  text-align: center;
  background: none;
}
.testimonials-heading {
  font-family: 'Fira Code', monospace;
  font-size: 2rem;
  margin-bottom: 30px;
  background: rgba(255,255,255,0.85);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
}
.testimonials-carousel {
  position: relative;
  max-width: 600px;
  margin: 20px auto;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none !important;
  color: var(--couleur-secondaire);
  font-size: 2.5rem;
  border: none;
  cursor: pointer;
  z-index: 10;
}
.carousel-arrow.prev { left: 10px; }
.carousel-arrow.next { right: 10px; }
.carousel-slides {
  overflow: hidden;
}
.carousel-slide {
  width: 100%;
}
.testimonial-text {
  display: block;
  background: #73706B; /* серый фон */
  color: #FFFFFF;
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 15px;
}
.testimonial-author {
  display: block;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.slide-dots {
  margin-bottom: 30px;
}
.slide-dots .dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--gris-noble);
  margin: 0 5px;
  border-radius: 50%;
}
.slide-dots .dot.active {
  background: var(--couleur-secondaire);
}
.testimonials-btn {
  background: var(--couleur-secondaire);
  color: var(--blanc-pur);
  padding: 15px 45px;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50px;
  text-decoration: none !important;
  transition: background 0.3s;
}
.testimonials-btn:hover {
  background: var(--couleur-accent);
}

/* Hide arrows on mobile, reduce button size */
@media (max-width: 480px) {
  .carousel-arrow { display: none; }
  .testimonials-heading { font-size: 1.5rem; }
  .testimonial-text { font-size: 0.9rem; padding: 20px; }
  .slide-dots .dot { width: 8px; height: 8px; }
  .testimonials-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}
/* 1. Удаляем лишний отступ под Garanties Ohmyfood */
.testimonials-section {
  margin-top: 0;          /* направление: нет отступа сверху */
  padding: 10px 0 40px;   /* чуть меньше сверху, норм снизу */
}

/* 2. Делаем заголовок жирным */
.testimonials-heading {
  font-weight: 700;       /* жирный шрифт */
}

/* 3. Узкая серая плашка на мобилах */
@media (max-width: 480px) {
  .testimonial-text {
    max-width: 90%;       /* плашка занимает 90% ширины экрана */
    margin: 0 auto 10px;  /* по центру, расстояние до точек 10px */
    padding: 20px;
  }
}


/* 5. Уменьшаем расстояние до футера */
footer.site-footer {
  margin-top: 20px;       /* меньше пустоты сверху футера */
}

/* ==========================================================================
   À Propos — Блок 1: OHMYFOOD Hero
   ========================================================================== */
.a-propos-hero {
  background: var(--blanc-pur);   /* белый фон */
  padding: 20px 20px;             /* отступ сверху/снизу по 20px */
  text-align: center;
}
.a-propos-hero .a-propos-title {
  font-family: 'Fira Code', monospace;
  font-size: 2.2rem;              /* размер заголовка */
  font-weight: 700;
  color: var(--noir-pur);
  margin: 0 auto 30px;            /* отступ снизу 15px */
  display: block;
}
.a-propos-hero-btn {
  background: var(--couleur-primaire); /* красная кнопка */
  color: var(--blanc-pur);
  font-family: 'Work Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 12px 15px;             /* чуть меньше отступов */
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none;          /* без подчёркивания */
  display: inline-block;
  transition: background 0.3s;
}
.a-propos-hero-btn:hover {
  background: var(--couleur-accent); /* при наведении бордовый */
}

/* Responsive */
@media (max-width: 768px) {
  .a-propos-hero { padding: 15px 10px; }
  .a-propos-title { font-size: 1.8rem; margin-bottom: 10px; }
  .a-propos-hero-btn { padding: 10px 25px; font-size: 1rem; }
}
@media (max-width: 480px) {
  /* Заголовки */
  .a-propos-hero .a-propos-title,
  .a-propos-engagements .a-propos-section-heading,
  .a-propos-process .a-propos-section-heading,
  .a-propos-stats .a-propos-section-heading {
    font-size: 1.6rem !important;     /* уменьшили размер шрифта вдвое */
    line-height: 1.2 !important;      /* межстрочный интервал вдвое меньше */
  }

  /* Основной текст */
  .a-propos-text p,
  .process-steps li,
  .stats-list li {
    font-size: 1rem !important;     /* текст вдвое мельче */
    line-height: 1 !important;      /* строки вдвое плотнее */
  }

  /* Кнопки крупнее */
  .a-propos-hero-btn,
  .a-propos-process-btn {
    padding: 20px 50px !important;    /* увеличили отступы */
    font-size: 1rem !important;       /* крупнее текст кнопки */
  }
}
/* ==========================================================================
   À PROPOS — Блок “NOS ENGAGEMENTS”
   ========================================================================== */
.a-propos-engagements {
  background: url('https://ohmyfood.zenitswiss.ch/wp-content/uploads/2025/10/background_omf.png') center top/cover no-repeat;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: -40px;   /* перекрывает зазор с предыдущим фоном */
  padding: 20px 0 20px;
  position: relative;
}

.a-propos-engagements .section {
  background: var(--couleur-secondaire);
  max-width: 400px;
  margin: 0 auto;
  padding: 30px 30px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.a-propos-engagements .section h2 {
  font-family: 'Fira Code', monospace;
  color: var(--couleur-primaire);
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1;
}

.a-propos-engagements .section h3 {
  font-family: 'Work Sans', sans-serif;
  color: var(--blanc-pur);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1;
}

.a-propos-engagements .section p {
  font-family: 'Work Sans', sans-serif;
  color: var(--noir-pur);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
  .a-propos-engagements { padding: 60px 0; }
  .a-propos-engagements .section { max-width: 80%; padding: 40px 20px; }
  .a-propos-engagements .section h2 { font-size: 1.9rem; }
  .a-propos-engagements .section h3 { font-size: 1rem; }
  .a-propos-engagements .section p  { font-size: 0.95rem; }
}
@media (max-width: 768px) {
  .a-propos-engagements { padding: 40px 0; }
  .a-propos-engagements .section { max-width: 80%; padding: 30px 15px; }
  .a-propos-engagements .section h2 { font-size: 1.6rem; }
  .a-propos-engagements .section h3 { font-size: 0.95rem; }
  .a-propos-engagements .section p  { font-size: 0.9rem; line-height: 1.4; }
}
@media (max-width: 480px) {
  .a-propos-engagements { padding: 30px 0; }
  .a-propos-engagements .section { max-width: 80%; padding: 25px 10px; }
  .a-propos-engagements .section h2 { font-size: 1.4rem; }
  .a-propos-engagements .section h3 { font-size: 0.9rem; }
  .a-propos-engagements .section p  { font-size: 0.85rem; line-height: 1.3; }
}
/* ==========================================================================
   À PROPOS — Блок “COMMENT ÇA MARCHE ?”
   ========================================================================== */
section.a-propos-process {
  background: url('https://ohmyfood.zenitswiss.ch/wp-content/uploads/2025/10/background_omf.png') center top/cover no-repeat;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: -40px;   /* перекрывает зазор с предыдущим фоном */
  padding: 20px 0 20px;
  position: relative;
}

section.a-propos-process .section,
section.a-propos-process .process-steps,
section.a-propos-process .a-propos-section-heading,
section.a-propos-process .btn {
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Белая плашка */
section.a-propos-process .section {
  background: var(--blanc-pur);
  padding: 30px 0px;
  border-radius: 15px;
  text-align: center;
}

/* Заголовок */
section.a-propos-process .a-propos-section-heading {
  font-family: 'Fira Code', monospace;
  color: var(--couleur-primaire);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* Список шагов */
section.a-propos-process .process-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  color: var(--noir-pur);
  font-size: 1rem;
  line-height: 1.6;
}

/* Красные номера */
section.a-propos-process .process-steps li strong {
  color: var(--couleur-accent);
  font-weight: 700;
  margin-right: 5px;
}

/* Кнопка */
section.a-propos-process .btn.a-propos-process-btn {
  background: var(--couleur-primaire);
  color: var(--blanc-pur);
  padding: 18px 50px;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
section.a-propos-process .btn.a-propos-process-btn:hover {
  background: var(--couleur-accent);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  section.a-propos-process { padding: 60px 0; }
  section.a-propos-process .section { max-width: 80%; padding: 40px 20px; }
  section.a-propos-process .a-propos-section-heading { font-size: 1.9rem; }
  section.a-propos-process .process-steps { font-size: 0.95rem; }
  section.a-propos-process .btn.a-propos-process-btn { padding: 15px 45px; font-size: 1rem; }
}
@media (max-width: 768px) {
  section.a-propos-process { padding: 40px 0; }
  section.a-propos-process .section { max-width: 90%; padding: 30px 15px; }
  section.a-propos-process .a-propos-section-heading { font-size: 1rem; }
  section.a-propos-process .process-steps { font-size: 0.9rem; }
  section.a-propos-process .btn.a-propos-process-btn { padding: 12px 35px; font-size: 0.9rem; }
}
@media (max-width: 480px) {
  section.a-propos-process {
    padding: 0;
  }
  section.a-propos-process .section {
    max-width: 80%;
    padding: 10px;
  }
  section.a-propos-process .a-propos-section-heading {
    font-size: 0.6rem;       /* заголовок ещё меньше */
    margin-bottom: 10px;      /* добавляем отступ под заголовком */
  }
  section.a-propos-process .process-steps {
    font-size: 0.5rem;
    line-height: 1.4;         /* чуть больше межстрочный */
  }
  section.a-propos-process .process-steps li {
    margin-bottom: 12px;      /* увеличиваем расстояние между пунктами */
  }
  section.a-propos-process .btn.a-propos-process-btn {
    padding: 6px 12px !important;        /* добавляем !important для уверенности */
    font-size: 1.2rem !important;
    line-height: 1.4 !important;         /* гарантируем достаточную высоту строки */
    height: auto !important;             /* авто-высота по содержимому */
    white-space: nowrap !important;
    display: inline-block !important;
  }
}
/* ==========================================================================
   À PROPOS — Блок “NOS CHIFFRES CLÉS”
   ========================================================================== */
section.a-propos-stats {
  background: url('https://ohmyfood.zenitswiss.ch/wp-content/uploads/2025/10/background_omf.png') center top/cover no-repeat;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: -40px;   /* перекрывает зазор с предыдущим фоном */
  padding: 20px 0 20px;
  position: relative;
}

section.a-propos-stats .stats-container {
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: var(--couleur-secondaire);
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  text-align: center;
}

section.a-propos-stats .stats-container h2 {
  font-family: 'Fira Code', monospace;
  color: var(--couleur-primaire);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

section.a-propos-stats .stats-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
}

section.a-propos-stats .stats-list li {
  margin-bottom: 12px;
}

section.a-propos-stats .stats-list li .white {
  color: var(--blanc-pur);
}

section.a-propos-stats .stats-list li .black {
  color: var(--noir-pur);
}

@media (max-width: 768px) {
  section.a-propos-stats {
    padding: 80px 0 40px;
  }
  section.a-propos-stats .stats-container {
    max-width: 90%;
    padding: 25px 15px;
  }
  section.a-propos-stats .stats-container h2 {
    font-size: 1.6rem;
  }
  section.a-propos-stats .stats-list {
    font-size: 0.95rem;
  }
  section.a-propos-stats .stats-list li {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  section.a-propos-stats {
    padding: 30px 0 30px;
  }
  section.a-propos-stats .stats-container {
    max-width: 80%;
    padding: 10px 10px;
  }
  section.a-propos-stats .stats-container h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  section.a-propos-stats .stats-list {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  section.a-propos-stats .stats-list li {
    margin-bottom: 8px;
  }
}
/* ==========================================================================
   À PROPOS — Блок "À PROPOS DE OHMYFOOD" 
   ========================================================================== */
section.a-propos-info {
  background: var(--blanc-pur);
  padding: 20px 0 40px;
  text-align: center;
}

section.a-propos-info .info-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--gris-noble);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

section.a-propos-info .info-container h2 {
  font-family: 'Fira Code', monospace;
  color: var(--couleur-secondaire);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0px;
  text-align: center;
}

section.a-propos-info .info-text p {
  font-family: 'Work Sans', sans-serif;
  color: var(--blanc-pur);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0px;
  text-align: left;
}

section.a-propos-info .info-text p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  section.a-propos-info {
    padding: 40px 0 30px;
  }
  section.a-propos-info .info-container {
    max-width: 80%;
    padding: 35px 25px;
  }
  section.a-propos-info .info-container h2 {
    font-size: 1.8rem;
  }
  section.a-propos-info .info-text p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  section.a-propos-info {
    padding: 40px 0 25px;
  }
  section.a-propos-info .info-container {
    max-width: 90%;
    padding: 30px 20px;
  }
  section.a-propos-info .info-container h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  section.a-propos-info .info-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 18px;
  }
}

@media (max-width: 480px) {
  section.a-propos-info {
    padding: 20px 0 20px;
  }
  section.a-propos-info .info-container {
    max-width: 100%;
    padding: 25px 15px;
  }
  section.a-propos-info .info-container h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  section.a-propos-info .info-text p {
    font-size: 0.85rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }
}
/* Убираем лишний отступ у последнего блока и контейнера перед футером */
section.a-propos-info {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.entry-content.a-propos-content {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.site-main {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
/* Убираем лишний нижний padding у основного контейнера */
.entry-content {
  padding-bottom: 0 !important;
}
/* ==========================================================================
   RESTAURANTS — новые разделы
   ========================================================================== */

.restaurants-content {
  width: 100%;
  box-sizing: border-box;
}

/* Блок 1 — Hero + карусель */
.restaurants-hero {
  background: var(--blanc-pur);
  padding: 20px 0 10px;
  text-align: center;
}
.restaurants-title {
  font-family: 'Fira Code', monospace;
  color: var(--noir-pur);
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 auto 10px;
}
.restaurants-carousel {
  position: relative;
  max-width: 600px;
  margin: 10px auto 0;
}
.carousel-slides { overflow: hidden; }
.carousel-slide img {
  width: 70%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}
.carousel-arrow {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  background: none !important;
  color: var(--couleur-secondaire);
  font-size: 2.5rem;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
}
.carousel-arrow.prev { left: 10px; }
.carousel-arrow.next { right: 10px; }
.slide-dots {
  margin: 10px 0 0;
  text-align: center;
}
.slide-dots .dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--gris-noble);
  border-radius: 50%;
  margin: 0 5px;
}
.slide-dots .dot.active { background: var(--couleur-secondaire); }
.restaurants-hero-meta { margin: 10px 0 0; }
.restaurant-name {
  font-family: 'Fira Code', monospace;
  font-weight: 800;
  color: var(--noir-pur);
  margin: 10px 0 6px;
}
.restaurant-meta {
  font-family: 'Work Sans', sans-serif;
  color: var(--noir-pur);
}

/* Блок 2 — Informations pratiques */
.restaurants-infos {
  background: url('https://ohmyfood.zenitswiss.ch/wp-content/uploads/2025/10/background_omf.png') center top/cover no-repeat;
  width: 100vw;                          /* оставляем */
  margin-left: calc(-50vw + 50%);        /* растягиваем за пределы контейнера */
  padding: 20px 0;                       /* вместо padding: 20px 0 20px */
  position: relative;
  text-align: center;
}
.restaurants-infos .infos-card {
  background: var(--couleur-secondaire);
  max-width: 400px;
  margin: 0 auto;
  padding: 10px 20px;  /* вместо 20px сверху/снизу */
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.restaurants-infos .infos-heading {
  font-family: 'Fira Code', monospace;
  color: var(--couleur-primaire);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.restaurants-infos .infos-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
}
.restaurants-infos .infos-list li { margin-bottom: 2px; }
.restaurants-infos .infos-list .white { color: var(--blanc-pur); }
.restaurants-infos .infos-list .black { color: var(--noir-pur); }

/* Блок 3 — Avis Clients */
.restaurants-avis {
  padding: 10px 0 10px;
  background: var(--blanc-pur);
  text-align: center;
}
.restaurants-avis .avis-title {
  font-family: 'Fira Code', monospace;
  color: var(--noir-pur);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 5px;    /* было 10px */
  line-height: 1.2;      /* новый параметр для плотности */
}
.restaurants-avis .avis-card {
  max-width: 400px;
  margin: 0 auto 10px;
  background: #73706B;
  color: var(--blanc-pur);
  padding: 15px;
  border-radius: 8px;
  text-align: left;
}
.restaurants-avis .avis-text {
  font-family: 'Work Sans', sans-serif;
  margin-bottom: 8px;
}
.restaurants-avis .avis-author {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  opacity: 0.95;
}

/* Блок 4 — Distinctions */
.restaurants-awards {
  background: url('https://ohmyfood.zenitswiss.ch/wp-content/uploads/2025/10/background_omf.png')
              center top/cover no-repeat;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 20px 0;
  text-align: center;
}
.restaurants-awards .awards-card {
  background: var(--couleur-secondaire);
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.restaurants-awards .awards-heading {
  font-family: 'Fira Code', monospace;
  color: var(--couleur-primaire);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1;      /* новый параметр для плотности */
}
.restaurants-awards .awards-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}
.restaurants-awards .awards-list li { margin-bottom: 8px; }
.restaurants-awards .awards-list .white { color: var(--blanc-pur); }
.restaurants-awards .awards-list .black { color: var(--noir-pur); }

/* Блок 5 — About */
.restaurants-about {
  background: var(--blanc-pur);
  padding: 10px 0 0;
  text-align: center;
}
.restaurants-about .about-card {
  max-width: 400px;
  margin: 0 auto;
  background: #73706B;
  color: var(--blanc-pur);
  padding: 16px;
  border-radius: 10px;
  text-align: left;
}
.restaurants-about .about-heading {
  font-family: 'Fira Code', monospace;
  color: var(--couleur-secondaire);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.restaurants-about .about-text p {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.45;
  margin-bottom: 10px;
}

/* Адаптивность для планшета и телефона */
@media (max-width: 1024px) {
  .restaurants-hero .carousel-arrow { font-size: 2rem; }
  .restaurants-avis .avis-title { font-size: 1.4rem; }
}
@media (max-width: 768px) {
  .carousel-slide img { width: 85%; max-width: 360px; }
  .infos-card, .awards-card, .avis-card, .about-card { max-width: 90%; }
  .restaurants-title { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .carousel-arrow { display: none; }
  .carousel-slide img { width: 100%; max-width: 320px; }
  .restaurants-avis .avis-title { font-size: 1.2rem; }
  .restaurants-about .about-text p { font-size: 0.85rem; line-height: 1.35; }
}
/* Шире плашка «About» на десктопе, но мобиле не трогаем */
@media (min-width: 1025px) {
  .restaurants-about .about-card {
    max-width: 800px;    /* вместо 400px */
    padding: 24px 32px;  /* чуть больше внутренних отступов */
  }
}
.footer-legal {
  text-align: center;
  margin: 20px 0 0;
}
.footer-legal a {
  font-weight: 700;
  font-size: 0.75rem; /* маленький размер на десктопе */
  color: var(--gris-noble);
  text-decoration: none;
}
@media (max-width: 768px) {
  .footer-legal a {
    font-size: 0.65rem; /* ещё меньше на мобильных */
  }
}
/* Ссылка на Mentions légales в футере */
.site-footer .footer-legal {
  text-align: center;
  margin-top: 20px !important;
}

.site-footer .footer-legal a {
  font-weight: bold !important;
  font-size: 0.75rem !important;    /* десктоп */
  color: var(--gris-noble) !important;
  text-decoration: none !important;
}

@media (max-width: 768px) {
  .site-footer .footer-legal a {
    font-size: 0.65rem !important;  /* мобильная версия */
  }
}
/* ===============================================
   ПОПАП РУЛЕТКИ - ПОЛНЫЙ КОД
   =============================================== */

/* Основной overlay (темный фон за попапом) */
#roulette-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: 'Work Sans', Arial, sans-serif;
}

/* Основной контейнер попапа */
#roulette-popup {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border-radius: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    max-width: 900px;
    width: 92vw;
    min-height: 360px;
    padding: 0;
    overflow: hidden;
    margin: 0 2vw;
    cursor: default;
    pointer-events: auto;
    position: relative;
}

/* Левая часть попапа (где рулетка/гиф) */
#popup-left {
    background: #f6f6f6;
    display: flex;
    flex: 1 1 80%;
    align-items: center;
    justify-content: center;
    min-width: 460px;
    min-height: 400px;
    max-width: 620px;
    padding: 32px 12px 36px 36px;
    border-radius: 90px 0 0 60px;
}

#popup-left img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    border-radius: 10%;
}

/* Правая часть попапа (текст и форма) */
#popup-right {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px 34px 44px 24px;
    background: #ffffff;
    border-radius: 0 60px 60px 0;
}

/* Кнопка закрытия X */
.popup-close {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 2.2rem;
    color: #900020;
    cursor: pointer;
    font-family: 'Work Sans', sans-serif;
    font-weight: bold;
    z-index: 100;
    transition: color 0.15s ease;
    pointer-events: auto;
    line-height: 1;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.popup-close:hover {
    color: #DC2626;
    transform: scale(1.1);
}

.popup-close:active {
    transform: scale(0.95);
}

/* Заголовок попапа "PARTICIPEZ À NOTRE JEU CONCOURS !" */
.popup-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #900020;
    margin-bottom: 12px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Основной текст описания */
#popup-right p {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.04rem;
    color: #000000;
    margin-bottom: 18px;
    line-height: 1.5;
}

/* Выделенный текст "Attention" жирным */
#popup-right p strong,
#popup-right b {
    font-weight: 700;
    color: #900020;
}

/* Поле ввода email "Votre email" */
#popup-email {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #78716C;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 12px;
    font-family: 'Work Sans', sans-serif;
    color: #111111;
    background: #ffffff;
    box-sizing: border-box;
    outline: none;
    transition: all 0.2s ease;
}

#popup-email:focus {
    border-color: #900020;
    box-shadow: 0 0 0 2px rgba(144, 0, 32, 0.1);
}

#popup-email::placeholder {
    color: #78716C;
    opacity: 0.8;
    font-style: italic;
}

/* Кнопка "VOIR MON CADEAU !" */
#popup-submit {
    width: 100%;
    padding: 14px 0;
    background: #900020;
    color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    margin-top: 6px;
    transition: all 0.2s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(144, 0, 32, 0.2);
}

#popup-submit:hover {
    background: #EAB308;
    color: #900020;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
}

#popup-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(144, 0, 32, 0.3);
}

/* Анимация появления попапа */
@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

#roulette-popup-overlay.show {
    animation: popupFadeIn 0.3s ease-out;
}

/* ===============================================
   АДАПТИВНОСТЬ ДЛЯ РАЗНЫХ ЭКРАНОВ
   =============================================== */

/* Планшеты */
@media (max-width: 768px) {
    #roulette-popup {
        max-width: 95vw;
        width: 95vw;
        border-radius: 40px;
    }
    
    #popup-left {
        padding: 30px 20px;
        border-radius: 40px 0 0 40px;
    }
    
    #popup-right {
        padding: 30px 25px;
        border-radius: 0 40px 40px 0;
    }
}

/* Мобильные устройства - переход на вертикальный макет */
@media (max-width: 700px) {
    #roulette-popup {
        flex-direction: column;
        min-width: unset;
        max-width: 95vw;
        width: 95vw;
        border-radius: 30px;
    }
    
    #popup-left {
        flex: none;
        max-width: 100%;
        min-width: unset;
        padding: 25px 20px 15px 20px;
        min-height: 200px;
        border-radius: 30px 30px 0 0;
    }
    
    #popup-right {
        flex: none;
        max-width: 100%;
        min-width: unset;
        padding: 15px 25px 30px 25px;
        border-radius: 0 0 30px 30px;
    }
    
    .popup-title {
        font-size: 1.2rem;
    }
    
    #popup-right p {
        font-size: 1rem;
    }
    
    #popup-left img {
        max-width: 250px;
    }
}

/* Очень маленькие экраны */
@media (max-width: 440px) {
    #popup-right, #popup-left {
        padding: 16px 20px;
    }
    
    .popup-title {
        font-size: 1rem;
    }
    
    #popup-right p {
        font-size: 0.95rem;
    }
    
    .popup-close {
        font-size: 2rem;
        top: 15px;
        right: 20px;
        width: 30px;
        height: 30px;
    }
    
    #popup-email {
        font-size: 0.95rem;
        padding: 10px 12px;
    }
    
    #popup-submit {
        font-size: 1rem;
        padding: 12px 0;
    }
}

/* ===============================================
   ДОПОЛНИТЕЛЬНЫЕ УТИЛИТЫ
   =============================================== */

/* Класс для принудительного скрытия */
.popup-hidden {
    display: none !important;
}

/* Обеспечиваем правильный box-sizing для всех элементов попапа */
#roulette-popup *,
#roulette-popup *::before,
#roulette-popup *::after {
    box-sizing: border-box;
}

/* Стили для canvas рулетки (если используется) */
#wheel-canvas {
    border-radius: 50%;
    border: 6px solid #EAB308;
    background: #ffffff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

/* Убираем стандартные стили браузера */
#popup-email::-webkit-outer-spin-button,
#popup-email::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#popup-email[type=number] {
    -moz-appearance: textfield;
}

/* Запрещаем выделение текста в кнопке закрытия */
.popup-close {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Фокус для доступности */
#popup-email:focus,
#popup-submit:focus,
.popup-close:focus {
    outline: 2px solid #900020;
    outline-offset: 2px;
}

/* ===============================================
   КОНЕЦ КОДА ПОПАПА РУЛЕТКИ
   =============================================== */
/* СКРЫТЬ ПОПАП НА ВСЕХ СТРАНИЦАХ ПО УМОЛЧАНИЮ */
#roulette-popup-overlay {
    display: none;
}

/* ПОКАЗАТЬ ТОЛЬКО НА ГЛАВНОЙ СТРАНИЦЕ */
body.home #roulette-popup-overlay,
body.front-page #roulette-popup-overlay,
body.page-template-accueil #roulette-popup-overlay,
body[class*="accueil"] #roulette-popup-overlay {
    display: flex;
}

/* ПОЗВОЛИТЬ JAVASCRIPT ЗАКРЫВАТЬ ПОПАП */
#roulette-popup-overlay.popup-hidden,
#roulette-popup-overlay.popup-closed {
    display: none !important;
}

/* УБЕДИТЬСЯ ЧТО КНОПКА ЗАКРЫТИЯ КЛИКАБЕЛЬНА */
.popup-close {
    position: absolute !important;
    top: 18px !important;
    right: 24px !important;
    font-size: 2.2rem !important;
    color: #900020 !important;
    cursor: pointer !important;
    z-index: 99999 !important;
    pointer-events: auto !important;
    background: rgba(255,255,255,0.9) !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    user-select: none !important;
}

.popup-close:hover {
    background: rgba(255,255,255,1) !important;
    color: #DC2626 !important;
    transform: scale(1.1) !important;
}
/* === КАСТОМНАЯ ФОРМА КОНКУРСА В ПОПАПЕ === */
.custom-contest-form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Скрываем стандартные <p> обертки */
.custom-contest-form .wpcf7-form p {
    margin: 0;
    padding: 0;
}

/* Стилизуем поле email точно как было */
.custom-contest-form input[type="email"] {
    width: 100% !important;
    padding: 12px 14px !important;
    border: 1.5px solid #78716C !important;
    border-radius: 6px !important;
    font-size: 1rem !important;
    margin-bottom: 12px !important;
    font-family: 'Work Sans', sans-serif !important;
    color: #111111 !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
    outline: none !important;
    transition: all 0.2s ease !important;
}

.custom-contest-form input[type="email"]:focus {
    border-color: #900020 !important;
    box-shadow: 0 0 0 2px rgba(144, 0, 32, 0.1) !important;
}

.custom-contest-form input[type="email"]::placeholder {
    color: #78716C !important;
    opacity: 0.8 !important;
    font-style: italic !important;
}

/* Стилизуем кнопку точно как была */
.custom-contest-form input[type="submit"] {
    width: 100% !important;
    padding: 3px 0 !important;
    background: #900020 !important;
    color: #ffffff !important;
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 200 !important;
    font-size: 1rem !important;
    border: none !important;
    border-radius: 2px !important;
    cursor: pointer !important;
    margin-top: 2px !important;
    transition: all 0.2s ease !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    box-shadow: 0 2px 8px rgba(144, 0, 32, 0.2) !important;
}

.custom-contest-form input[type="submit"]:hover {
    background: #EAB308 !important;
    color: #900020 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3) !important;
}

.custom-contest-form input[type="submit"]:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 6px rgba(144, 0, 32, 0.3) !important;
}

/* Красивое сообщение об успехе */
.custom-contest-form .wpcf7-response-output {
    margin: 15px 0 0 0 !important;
    padding: 15px 20px !important;
    border-radius: 8px !important;
    background: #EAB308 !important;
    color: #900020 !important;
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 600 !important;
    text-align: center !important;
    font-size: 1rem !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3) !important;
}

.custom-contest-form .wpcf7-mail-sent-ok {
    background: #EAB308 !important;
    color: #900020 !important;
    border: 2px solid #900020 !important;
}

/* Убираем стандартные обертки CF7 */
.custom-contest-form .wpcf7-form-control-wrap {
    width: 100% !important;
    display: block !important;
}
/* === ФОРМА БРОНИРОВАНИЯ === */
.omf-reservation-section {
  background: #FFFFFF;
  padding: 60px 0 70px;
}

.omf-reservation-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.omf-reservation-heading {
  font-family: 'Fira Code', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: #900020;
  text-align: center;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.omf-reservation-intro {
  text-align: center;
  color: #78716C;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.05rem;
  margin: 0 0 28px;
}

.omf-reservation-card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
  border: 2px solid #900020;
  max-width: 820px;
  margin: 0 auto 16px;
}

.omf-reservation-card-inner {
  padding: 28px 26px;
}

/* ПОЛЯ ФОРМЫ - БОРДОВЫЕ РАМКИ */
.omf-reservation-card input[type="text"],
.omf-reservation-card input[type="email"],
.omf-reservation-card input[type="tel"],
.omf-reservation-card input[type="date"],
.omf-reservation-card input[type="number"],
.omf-reservation-card select,
.omf-reservation-card textarea {
  width: 100%;
  background: #FFFFFF !important;
  border: 3px solid #900020 !important;
  color: #1A1A1A;
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 10px;
  outline: none;
  box-sizing: border-box;
  margin: 8px 0;
}

.omf-reservation-card textarea {
  min-height: 120px;
  resize: vertical;
}

/* ФОКУС НА ПОЛЯХ - ЗОЛОТОЙ */
.omf-reservation-card input:focus,
.omf-reservation-card select:focus,
.omf-reservation-card textarea:focus {
  border-color: #EAB308 !important;
  box-shadow: 0 0 0 3px rgba(234,179,8,0.35);
}

/* КНОПКА ОТПРАВКИ */
.omf-reservation-card .wpcf7-submit {
  background: #900020;
  color: #FFFFFF;
  border: 2px solid #900020;
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.2s ease;
}
/* КНОПКА ОТПРАВКИ */
.omf-reservation-card .wpcf7-submit {
  display: block;
  margin: 0 auto;
  background: #900020;
  color: #FFFFFF;
  border: 2px solid #900020;
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.2s ease;
}
/* Центрирование и фирменный цвет кнопки */
.omf-reservation-card .wpcf7-submit {
  background: #900020 !important;
  color: #FFFFFF !important;
}


.omf-reservation-card .wpcf7-submit:hover,
.omf-reservation-card .wpcf7-submit:focus {
  background: #EAB308;
  color: #1A1A1A;
}

.omf-reservation-note {
  text-align: center;
  color: #78716C;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  margin: 6px 0 0;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 767px) {
  .omf-reservation-section { 
    padding: 36px 0 44px; 
  }
  .omf-reservation-heading { 
    font-size: 1.5rem; 
  }
  .omf-reservation-card-inner { 
    padding: 20px 18px; 
  }
  .omf-reservation-card .wpcf7-submit { 
    width: 100%; 
  }
}
/* Подчёркивание активного пункта меню в–верхнем навбаре */
.site-navigation .menu-list li.current-menu-item > a {
  border-bottom: 2px solid #D40F4B !important;
  padding-bottom: 4px;
  color: inherit; /* чтоб цвет ссылки не менялся */
}
/* При активном состоянии всех кнопок фон и текст */
.hero-btn:active,
.btn:active,
.restaurants-btn:active,
.cta-btn:active {
  /* если фон кнопки светлый (жёлтый или серый), текст делаем чёрным */
  background-color: #FFC300 !important;
  color: #000 !important;
}

/* Для остальных кнопок (тёмных) при активном состоянии белый текст */
.hero-btn:not(.light):active,
.btn:not(.light):active,
.restaurants-btn:not(.light):active,
.cta-btn:not(.light):active {
  background-color: #7F092F !important;
  color: #fff !important;
}
/* Отступ под блоком кнопок на странице À propos */
.a-propos-hero .buttons-container {
  margin-bottom: 3em; /* увеличьте величину при необходимости */
}