body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f7f7;
    color: #222;
  }
  
  header {
    background: #fafafa;
    color: #000000;
    padding: 40px 20px;
    text-align: center;
  }
  
  header p {
    margin-top: 10px;
    font-size: 18px;
    color: #000000;
  }
  
  .main-nav {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #ddd;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .main-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 10px;
  }
  
  .main-nav li {
    margin: 5px 0;
    width: 100%;
  }
  
  .main-nav a {
    display: block;
    text-decoration: none;
    color: #111;
    font-weight: bold;
    font-size: 18px;
    padding: 12px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
  
  .main-nav a:hover {
    background: #1976d2;
    color: #fff;
  }

  @media (min-width: 768px) {
    .main-nav ul {
      flex-direction: row;
      flex-wrap: wrap;
      padding: 15px;
    }
    
    .main-nav li {
      margin: 0 20px;
      width: auto;
    }
    
    .main-nav a {
      width: auto;
    }
  }
  
  nav {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #ddd;
    z-index: 10;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 10px;
  }
  
  nav li {
    margin: 5px 10px;
  }
  
  nav a {
    text-decoration: none;
    color: #111;
    font-weight: bold;
  }

  .menu-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }

  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    min-height: 200px;
    background-size: cover;
    background-position: center;
  }

  .menu-btn::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: -1;
    opacity: 0.7;
  }

  .menu-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
  }

  .menu-btn span {
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }

  .menu-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }

  .menu-btn:hover::after {
    background: rgba(0, 0, 0, 0.2);
  }

  .formulas-container {
    display: flex;
    gap: 20px;
    max-width: 1100px;
    margin: 30px auto;
    flex-wrap: wrap;
  }

  .formula-section {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
  }

  .formula-title {
    font-size: 24px;
    font-weight: bold;
    color: #1976d2;
    margin-bottom: 20px;
    text-align: center;
  }

  .formula-price {
    font-size: 36px;
    font-weight: bold;
    font-style: italic;
    color: #1976d2;
    text-align: center;
    margin: 20px 0;
  }

  .formula-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px 0;
    color: #333;
    text-align: center;
  }

  .formula-section p {
    text-align: center;
    margin: 15px 0;
  }

  .formula-list {
    margin: 10px 0;
    padding-left: 20px;
    list-style-position: inside;
  }

  .formula-list li {
    margin: 5px 0;
    line-height: 1.6;
  }
  
  section {
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  section.contact-info,
  section.formula-section {
    padding: 30px;
  }

  .hero {
    text-align: center;
  }

  .address {
    text-align: center;
  }

  .hours {
    text-align: center;
  }

  .transport {
    text-align: center;
  }

  .contact-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 20px;
  }

  .contact-left,
  .contact-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  @media (min-width: 768px) {
    .contact-layout {
      flex-direction: row;
      align-items: flex-start;
    }

    .contact-left {
      flex: 1;
      min-width: 0;
    }

    .contact-right {
      flex: 1;
      min-width: 0;
    }
  }

  .contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0;
    max-width: 100%;
  }

  .contact-info h3 {
    margin-top: 0;
    color: #111;
    text-align: center;
  }

  .contact-info.compact {
    padding: 15px 30px;
    max-width: 500px;
    margin: 20px auto;
  }

  .mention-info {
    margin-top: 0;
    color: #111;
  }

  .phone {
    font-size: 24px;
    font-weight: bold;
    color: #1976d2;
    margin: 15px 0;
    text-align: center;
  }

  .hours {
    margin: 15px 0;
  }

  .hours p {
    margin: 8px 0;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
  }

  .hours p.today {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid #1976d2;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .hours p.open {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 4px solid #4caf50;
  }

  .hours p.open.today {
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
    border-left: 4px solid #2e7d32;
    animation: pulse 2s ease-in-out infinite;
  }

  .hours p.closed {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-left: 4px solid #f44336;
    opacity: 0.7;
  }

  .hours p.closed.today {
    background: linear-gradient(135deg, #ffcdd2 0%, #ef9a9a 100%);
    border-left: 4px solid #c62828;
  }

  .hours .status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
    text-transform: uppercase;
  }

  .hours .status-badge.open {
    background: #4caf50;
    color: #fff;
  }

  .hours .status-badge.closed {
    background: #f44336;
    color: #fff;
  }

  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.02);
    }
  }

  .address {
    margin: 15px 0;
    line-height: 1.6;
  }

  .transport {
    margin: 15px 0;
  }

  .transport p {
    margin: 5px 0;
  }

  .map-container {
    width: 100%;
    height: 400px;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .delivery-zones {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 1100px;
    text-align: center;
  }

  .delivery-zones h3 {
    margin-top: 0;
    color: #111;
    text-align: center;
  }

  .delivery-zone {
    margin: 15px 0;
    padding: 10px;
    background: #f7f7f7;
    border-left: 4px solid #1976d2;
    border-radius: 4px;
  }

  .delivery-zone strong {
    color: #1976d2;
    display: block;
    margin-bottom: 5px;
  }

  .payment-section {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 1100px;
    text-align: center;
  }

  .payment-desktop {
    display: none;
  }

  .payment-mobile {
    display: block;
  }

  @media (min-width: 768px) {
    .payment-desktop {
      display: block;
    }

    .payment-mobile {
      display: none;
    }
  }

  .payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
  }

  .payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: #f7f7f7;
    border-radius: 8px;
    min-width: 120px;
    transition: all 0.3s ease;
  }

  .payment-method:hover {
    background: #e3f2fd;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .payment-method-icon {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .payment-method-name {
    font-weight: 600;
    color: #333;
    font-size: 14px;
  }

  .payment-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
  }
  
  h3 {
    margin-top: 40px;
  }
  
  .menu-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px dotted #ddd;
  }
  
  .menu-item span {
    font-weight: bold;
    white-space: nowrap;
  }
  
  .desc {
    font-size: 14px;
    color: #555;
    margin: 0 0 10px;
  }
  
  footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
  }

  .btn-home,
  .btn-menu {
    display: block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    text-align: center;
    width: fit-content;
    animation: wave 3s ease-in-out infinite;
  }

  @keyframes wave {
    0%, 100% {
      transform: scale(1);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(25, 118, 210, 0.4);
    }
    50% {
      transform: scale(1.05);
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 0 0 10px rgba(25, 118, 210, 0), 0 0 0 20px rgba(25, 118, 210, 0);
    }
  }

  .btn-home::before,
  .btn-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }

  .btn-home:hover,
  .btn-menu:hover {
    background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .btn-home:hover::before,
  .btn-menu:hover::before {
    left: 100%;
  }

  .btn-home:active,
  .btn-menu:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .slider-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 30px auto 40px auto;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  height: 350px;
}

.slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slider img.active {
  opacity: 1;
}

/* Flèches */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 32px;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 5;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
  left: 15px;
}

.slider-btn.next {
  right: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .slider {
    height: 220px;
  }
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 30px auto 40px auto;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  height: 350px;
}

.slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slider img.active {
  opacity: 1;
}

/* Flèches */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 32px;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 5;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
  left: 15px;
}

.slider-btn.next {
  right: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .slider {
    height: 220px;
  }
}