:root {
  --primary-color: #2C3E50;
  --secondary-color: #d73c2c;
  --secondary-hover: #b62d1f;
  --accent-color: #ffd700;
  --text-color: #2c1810;
  --text-light: #666;
  --bg-light: #f8f4f0;
  --bg-pattern: #fcfaf7;
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --font-title: 'Playfair Display', serif;
  --font-text: 'Poppins', sans-serif;
  --border-decorative: 2px solid var(--secondary-color);
  
  /* Nouvelles tailles de texte */
  --text-xs: 0.875rem;
  --text-sm: 1rem;
  --text-base: 1.125rem;
  --text-lg: 1.375rem;
  --text-xl: 1.75rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;
  --text-4xl: 3.25rem;
}

/* Style italien général */
body {
  font-family: var(--font-text);
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
  background: var(--bg-pattern);
  background-image: 
    radial-gradient(circle at 100% 150%, var(--bg-pattern) 24%, white 24%, white 28%, var(--bg-pattern) 28%, var(--bg-pattern) 36%, white 36%, white 40%, transparent 40%, transparent),
    radial-gradient(circle at 0    150%, var(--bg-pattern) 24%, white 24%, white 28%, var(--bg-pattern) 28%, var(--bg-pattern) 36%, white 36%, white 40%, transparent 40%, transparent),
    radial-gradient(circle at 50%  100%, white 10%, var(--bg-pattern) 10%, var(--bg-pattern) 23%, white 23%, white 30%, var(--bg-pattern) 30%, var(--bg-pattern) 43%, white 43%, white 50%, var(--bg-pattern) 50%, var(--bg-pattern) 63%, white 63%, white 71%, transparent 71%, transparent),
    radial-gradient(circle at 100% 50%, white 5%, var(--bg-pattern) 5%, var(--bg-pattern) 15%, white 15%, white 20%, var(--bg-pattern) 20%, var(--bg-pattern) 29%, white 29%, white 34%, var(--bg-pattern) 34%, var(--bg-pattern) 44%, white 44%, white 49%, transparent 49%, transparent),
    radial-gradient(circle at 0    50%, white 5%, var(--bg-pattern) 5%, var(--bg-pattern) 15%, white 15%, white 20%, var(--bg-pattern) 20%, var(--bg-pattern) 29%, white 29%, white 34%, var(--bg-pattern) 34%, var(--bg-pattern) 44%, white 44%, white 49%, transparent 49%, transparent);
  background-size: 100px 50px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #241E20;
  z-index: 1000;
  transition: all 0.4s ease;
}

.header.scrolled {
  background: rgba(36, 30, 32, 0.95);
  backdrop-filter: blur(10px);
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: auto;
  height: clamp(40px, 8vw, 80px);
  object-fit: contain;
  transition: var(--transition);
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
}

.logo-text {
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: var(--text-base);
  transition: var(--transition);
  position: relative;
  font-family: var(--font-text);
  opacity: 0.9;
}

.nav-link:hover {
  color: var(--white);
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
  opacity: 0.8;
}

.nav-link:hover::after {
  width: 100%;
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 8px;
  border-radius: 4px;
  transition: var(--transition);
  background: #241E20;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hamburger:hover {
  background: rgba(36, 30, 32, 0.95);
  border-color: rgba(255, 255, 255, 0.4);
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, var(--secondary-color) 25%, transparent 25%) -50px 0,
    linear-gradient(-45deg, var(--secondary-color) 25%, transparent 25%) -50px 0,
    linear-gradient(45deg, transparent 75%, var(--secondary-color) 75%),
    linear-gradient(-45deg, transparent 75%, var(--secondary-color) 75%);
  background-size: 20px 20px;
  opacity: 0.03;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(5%, 5%) rotate(5deg);
  }
  50% {
    transform: translate(0, 10%) rotate(0deg);
  }
  75% {
    transform: translate(-5%, 5%) rotate(-5deg);
  }
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 20px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
  position: relative;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(215, 60, 44, 0.2);
}

.hero-title,
.hero-subtitle,
.hero-description {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.hero-title {
  animation-delay: 0.3s;
}

.hero-subtitle {
  animation-delay: 0.6s;
}

.hero-description {
  animation-delay: 0.9s;
}

.hero-buttons {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 1.5s;
}

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

.hero-content::before,
.hero-content::after {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  background: transparent;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: 35px 35px;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-content::before {
  content: '';
  background-image: url('./assets/farfalle (1).png');
  background-size: 45px 45px;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-content::after {
  content: '';
  background-image: url('./assets/penne.png');
  background-size: 40px 40px;
  background-repeat: no-repeat;
  background-position: center;
}


.hero-content::before {
  top: 15px;
  left: 15px;
  animation: fadeInUp 1s ease-out 0.3s forwards, pulse 3s ease-in-out infinite 1.3s;
}

.hero-content::after {
  bottom: 15px;
  right: 15px;
  animation: fadeInUp 1s ease-out 0.3s forwards, pulseReverse 3.5s ease-in-out infinite 1.3s;
}

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

@keyframes pulseReverse {
  0%, 100% { transform: scale(1.1); opacity: 1; }
  50% { transform: scale(1); opacity: 0.7; }
}

.hero-title {
  font-family: var(--font-title);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-style: italic;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-family: var(--font-title);
  font-size: var(--text-xl);
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  padding-bottom: 1.5rem;
}

.hero-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

/* Style pour mettre en avant le HALAL */
.halal-highlight {
  display: inline-block;
  color: #ea4335;
  font-weight: 700;
  font-size: 1.1em;
  padding: 0 8px;
  position: relative;
  text-shadow: 0 2px 4px rgba(234, 67, 53, 0.2);
  animation: halal-glow 2s ease-in-out infinite;
}

.halal-text {
  color: #ea4335;
  font-weight: 600;
}

@keyframes halal-glow {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-description {
  font-family: var(--font-text);
  font-size: var(--text-base);
  color: var(--text-color);
  margin-bottom: 3rem;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 1.5s;
}

.hero-buttons .btn:first-child {
  animation: btnGlow 3s ease-in-out infinite;
  animation-delay: 2.5s;
}

.hero-buttons .btn:last-child {
  animation: btnFloat 4s ease-in-out infinite;
  animation-delay: 2.5s;
}

@keyframes btnGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(215, 60, 44, 0.3);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 0 30px rgba(215, 60, 44, 0.6), 0 0 40px rgba(215, 60, 44, 0.4);
    transform: translateY(-2px);
  }
}

@keyframes btnFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-3px) rotate(1deg);
  }
  50% {
    transform: translateY(-1px) rotate(0deg);
  }
  75% {
    transform: translateY(-4px) rotate(-1deg);
  }
}

.hero-image {
  flex: 1;
  max-width: 500px;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-hover);
  object-fit: cover;
  aspect-ratio: 4/3;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
  text-align: center;
  font-family: var(--font-text);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn:hover::after {
  transform: scale(1);
}

/* Bouton petite taille */
.btn-sm {
  padding: 10px 20px;
  font-size: 0.95rem;
  margin-top: 10px;
}

.btn-primary {
  background: var(--secondary-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(215, 60, 44, 0.2);
}

.btn-primary:hover {
  background: var(--secondary-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(215, 60, 44, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(44, 62, 80, 0.1);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(44, 62, 80, 0.2);
}

.btn:active {
  transform: translateY(1px);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  padding-top: 2.5rem;
}

.section-header::before,
.section-header::after {
  content: '';
  position: absolute;
  top: 57%;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
  transform: translateY(-50%);
}

.section-header::before {
  left: calc(50% - 120px);
}

.section-header::after {
  right: calc(50% - 120px);
}

.section-title {
  font-family: var(--font-title);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  display: inline-block;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title::before {
  content: '🍝';
  font-size: 1.8rem;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-family: var(--font-text);
  font-size: var(--text-lg);
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.8;
}

/* Spécialités */
.specialites {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.specialites::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d73c2c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.specialites-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  position: relative;
}

.specialite-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: var(--border-decorative);
  position: relative;
  overflow: hidden;
}

.specialite-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), var(--secondary-hover), var(--secondary-color), transparent);
}

.specialite-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--secondary-color);
  position: relative;
}

.card-icon::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 1px dashed var(--secondary-color);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.specialite-card h3 {
  font-family: var(--font-title);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  font-style: italic;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.specialite-card p {
  font-family: var(--font-text);
  font-size: var(--text-base);
  color: var(--text-color);
  line-height: 1.8;
  font-style: italic;
}

/* Nouveautés */
.nouveautes {
  padding: 6rem 0;
  background: var(--bg-light);
}

.news-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.news-card {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(215, 60, 44, 0.1);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(215, 60, 44, 0.2);
}

.news-content {
  padding: 2.5rem;
  text-align: center;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary-color), #ff6b6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 1.8rem;
  position: relative;
  transition: transform 0.3s ease;
}

.news-card:hover .news-icon {
  transform: scale(1.1) rotate(5deg);
}

.news-icon::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px dashed rgba(215, 60, 44, 0.3);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.news-content h3 {
  font-family: var(--font-title);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  font-style: italic;
  position: relative;
  padding-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.news-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.news-content p {
  font-family: var(--font-text);
  font-size: var(--text-base);
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex: 1;
}

.news-date {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(215, 60, 44, 0.1);
  color: var(--secondary-color);
  font-weight: 500;
  border-radius: 20px;
  font-size: var(--text-sm);
  letter-spacing: 0.5px;
  transition: var(--transition);
  margin-top: auto;
  align-self: center;
}

.news-card:hover .news-date {
  background: rgba(215, 60, 44, 0.15);
  transform: scale(1.05);
}

/* Horaires */
.horaires {
  padding: 4rem 0;
  background: #fff;
}

.horaires-content {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 2px solid #e74c3c;
  position: relative;
}

.horaires-content::before {
  content: '\f017';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  background: white;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #e74c3c;
  color: #e74c3c;
}

.horaires-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.horaire-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.2rem;
  background: transparent;
  border-bottom: 1px dashed #e74c3c;
  transition: all 0.3s ease;
}

.horaire-item:last-child {
  border-bottom: none;
}

.horaire-item:hover {
  background: rgba(231, 76, 60, 0.05);
  transform: translateX(5px);
}

.jour {
  font-family: var(--font-title);
  font-weight: 600;
  color: #2c3e50;
  font-size: var(--text-base);
  font-style: italic;
}

.heure {
  color: #e74c3c;
  font-weight: 500;
  font-size: var(--text-base);
}

.horaires-info {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #e74c3c;
}

.horaires-info p {
  color: #7f8c8d;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: var(--text-base);
  font-style: italic;
}

.horaires-info a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
}

.horaires-info a:hover {
  text-decoration: underline;
}

/* Galerie */
.galerie {
  padding: 6rem 0;
  background: var(--bg-light);
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.gallery-item {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  aspect-ratio: 4/3;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.pagination-btn {
  width: 55px;
  height: 55px;
  border: 2px solid var(--primary-color);
  background: var(--white);
  color: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.pagination-btn:hover:not(:disabled) {
  background: var(--primary-color);
  color: var(--white);
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-dots {
  display: flex;
  gap: 0.5rem;
}

.pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.pagination-dot.active {
  background: var(--secondary-color);
}

/* Témoignages */
.temoignages {
  padding: 6rem 0;
  background: var(--white);
}

.google-rating-info {
  text-align: center;
  margin-bottom: 3rem;
}

.google-rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.rating-stars {
  color: #ffc107;
  font-size: 1.2rem;
  display: flex;
  gap: 0.1rem;
}

.rating-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
}

.view-all-reviews {
  display: inline-flex;
  align-items: center;
  background: #4285f4;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.view-all-reviews:hover {
  background: #357ae8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.testimonials-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  min-height: 350px;
}

.testimonial-item {
  display: none;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(20px);
  border: 1px solid #e8eaed;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-item.visible {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.google-review-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ea4335;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-letter {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
}

.review-meta {
  flex-grow: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.review-author strong {
  font-size: 1.1rem;
  color: #202124;
  font-weight: 600;
  font-style: normal;
  text-shadow: none;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #5f6368;
  font-size: 0.85rem;
}

.verified-badge i {
  color: #4285f4;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-rating .stars {
  color: #ffc107;
  font-size: 0.95rem;
  display: flex;
  gap: 0.1rem;
  margin-bottom: 0;
  justify-content: flex-start;
}

.rating-value {
  color: #5f6368;
  font-size: 0.95rem;
  font-weight: 500;
}

.testimonial-text {
  font-family: var(--font-text);
  font-size: 1.1rem;
  font-style: normal;
  color: #3c4043;
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  padding: 0;
  text-align: left;
}

.testimonial-text::before,
.testimonial-text::after {
  content: none;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e8eaed;
  flex-wrap: wrap;
  gap: 1rem;
}

.testimonial-date,
.helpful-count {
  color: #5f6368;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.helpful-count i {
  color: #4285f4;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(215, 60, 44, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.testimonial-dot:hover {
  background: rgba(215, 60, 44, 0.6);
  transform: scale(1.2);
}

.testimonial-dot.active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(215, 60, 44, 0.4);
}

.testimonial-btn {
  width: 55px;
  height: 55px;
  border: 2px solid var(--secondary-color);
  background: var(--white);
  color: var(--secondary-color);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.testimonial-btn:hover {
  background: var(--secondary-color);
  color: var(--white);
}

/* Contact Section - Full Responsive */
.contact {
  padding: 6rem 0;
  background: var(--bg-light);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
  opacity: 0.3;
}

.contact-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  justify-content: space-between;
}

.contact-map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  height: 320px;
  flex-shrink: 0;
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(215,60,44,0.06) 0%, rgba(139,69,19,0.06) 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: 12px;
}

.contact-map-container iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(215, 60, 44, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--secondary-color);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.contact-item:hover::before {
  transform: scaleY(1);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(215, 60, 44, 0.2);
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 3px 12px rgba(215, 60, 44, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(215, 60, 44, 0.4);
}

.contact-details {
  flex: 1;
}

.contact-details h3 {
  font-family: var(--font-text);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-style: italic;
}

.contact-details p {
  font-family: var(--font-text);
  font-size: var(--text-sm);
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
}

.contact-details a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.contact-details a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.contact-details a:hover::after {
  width: 100%;
}

.contact-details a:hover {
  color: var(--secondary-hover);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(215, 60, 44, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), var(--secondary-hover), var(--secondary-color), transparent);
  opacity: 0.8;
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid rgba(215, 60, 44, 0.1);
  border-radius: var(--border-radius);
  font-size: var(--text-sm);
  font-family: var(--font-text);
  background: var(--white);
  transition: all 0.3s ease;
  color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(215, 60, 44, 0.1);
  transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.btn-submit {
  width: 100%;
  padding: 0.8rem 1.2rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-text);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-submit::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 ease;
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(215, 60, 44, 0.3);
}

.btn-submit:active {
  transform: translateY(-1px);
}

/* Contact Section Responsive */
@media (max-width: 1200px) and (min-width: 1025px) {
  .contact-content {
    gap: 3rem;
  }
  
  .contact-left {
    gap: 1.5rem;
  }
  
  .contact-map-container {
    height: 300px;
  }
  
  .contact-item {
    padding: 2rem;
  }
  
  .contact-icon {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }
  
  .contact-details h3 {
    font-family: var(--font-text);
    font-size: var(--text-base);
    margin-bottom: 0.6rem;
  }
  
  .contact-details p {
    font-size: var(--text-xs);
  }
  
  .contact-form {
    padding: 2.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.8rem 1rem;
    font-size: var(--text-xs);
  }
  
  .btn-submit {
    padding: 0.8rem 1.2rem;
    font-size: var(--text-sm);
  }
}

@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-form {
    order: 1;
  }
  
  .contact-left {
    order: 2;
  }
  
  .contact-map-container {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .halal-highlight {
    font-size: 1.05em;
    padding: 0 7px;
    animation: halal-glow 2s ease-in-out infinite;
  }

  .contact {
    padding: 4rem 0;
  }
  
  .contact-content {
    gap: 2.5rem;
  }
  
  .contact-form {
    order: 1;
  }
  
  .contact-left {
    order: 2;
  }
  
  .contact-map-container {
    height: 280px;
    border-radius: 12px;
    order: 1;
  }
  
  .contact-info-wrapper {
    order: 2;
  }
  
  .contact-item {
    padding: 1.5rem;
  }
  
  .contact-icon {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 1rem 1.2rem;
  }
  
  .btn-submit {
    padding: 1rem 1.5rem;
    font-size: var(--text-base);
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 3rem 0;
  }
  
  .contact-content {
    gap: 2rem;
    padding: 0;
  }
  
  .contact-item {
    padding: 1.5rem;
    margin: 0;
  }
  
  .contact-icon {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }
  
  .contact-details h3 {
    font-family: var(--font-text);
    font-size: var(--text-lg);
    margin-bottom: 0.8rem;
  }
  
  .contact-details p {
    font-size: var(--text-sm);
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
    margin: 0;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.8rem 1rem;
    font-size: var(--text-sm);
  }
  
  .form-group textarea {
    min-height: 100px;
  }
  
  .btn-submit {
    padding: 0.6rem 0.8rem;
    font-size: var(--text-xs);
    white-space: nowrap;
    min-height: 40px;
    display: block;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
    width: 60%;
    margin: 0 auto;
  }
}

/* Centrage des sections spécialités et nouveautés en mobile */
@media (max-width: 480px) {
  .specialites .container,
  .nouveautes .container {
    padding: 0 20px;
  }
  
  .specialites-grid,
  .news-grid {
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }
  
  .specialite-card,
  .news-card {
    flex: none !important;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
    flex-basis: auto !important;
    min-width: unset !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 2rem 1.5rem !important;
    align-self: center !important;
    display: block !important;
    float: none !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
  }
  
  /* Reset forcé des règles de base */
  .specialites .specialite-card,
  .nouveautes .news-card {
    flex: none !important;
    min-width: unset !important;
    max-width: 100% !important;
    width: calc(100% - 20px) !important;
  }
  
  /* Horaires en colonne mobile */
  .horaires-info p {
    flex-direction: column !important;
    gap: 0.3rem !important;
    text-align: center !important;
  }
}

/* Footer */
.footer {
  background: #1c1c1c;
  color: var(--white);
  padding: 3rem 0 1.5rem;
  position: relative;
  background-image: 
    linear-gradient(45deg, rgba(215, 60, 44, 0.03) 25%, transparent 25%, transparent 75%, rgba(215, 60, 44, 0.03) 75%, rgba(215, 60, 44, 0.03)),
    linear-gradient(-45deg, rgba(215, 60, 44, 0.03) 25%, transparent 25%, transparent 75%, rgba(215, 60, 44, 0.03) 75%, rgba(215, 60, 44, 0.03));
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent,
    var(--secondary-color) 25%,
    var(--accent-color) 50%,
    var(--secondary-color) 75%,
    transparent
  );
  opacity: 0.8;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
  justify-content: space-around;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  padding: 0 1rem;
}

.footer-section h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--white);
  font-style: italic;
  position: relative;
  display: inline-block;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 55px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-section p {
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 0.8rem;
  font-size: var(--text-base);
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  border-color: var(--secondary-color);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: var(--text-base);
  color: var(--white);
}

.footer-contact a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.dev-credit {
  font-size: 0.85rem;
  color: var(--white);
}

.dev-credit a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.dev-credit a:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 55px;
  height: 55px;
  background: var(--white);
  border: none;
  border-radius: 0 0 0 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition);
  z-index: 2001;
}

.lightbox-close:hover {
  background: var(--secondary-color);
  color: var(--white);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition);
  z-index: 2001;
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

.lightbox-nav:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
}

#lightboxImage {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--border-radius);
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* Force visibility for problematic images */
img[data-force-visible] {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* Responsive Design */
@media (max-width: 820px) {
  body {
    font-size: 1.1rem;
  }
  
  .nav-menu {
    position: fixed;
    left: -300px;
    top: calc(2rem + clamp(40px, 8vw, 80px));
    flex-direction: column;
    background-color: #241E20 !important;
    width: 280px;
    height: calc(100vh - (2rem + clamp(40px, 8vw, 80px)));
    text-align: left;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    z-index: 999;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
    padding: 0;
  }

  .nav-link {
    padding: 1rem 2rem;
    display: block;
    width: 100%;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: var(--secondary-color) !important;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 2rem 20px;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .btn {
    font-size: 1.1rem;
    padding: 16px 32px;
  }

  .section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .specialites-grid,
  .news-grid {
    flex-direction: column;
    align-items: center;
  }

  .specialite-card,
  .news-card {
    max-width: 100%;
    width: 100%;
  }

  .horaire-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .gallery-grid {
    flex-direction: column;
    align-items: center;
  }

  .gallery-item {
    max-width: 100%;
    width: 100%;
  }



  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .footer-section {
    text-align: center;
    align-items: center;
  }
  
  .footer-section h3 {
    text-align: center;
  }
  
  .footer-section h3::after {
    margin: 0.5rem auto 0;
  }
  
  .footer-section p {
    text-align: center;
  }
  
  .footer-contact {
    text-align: center;
    align-items: center;
  }
  
  .footer-contact p {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .lightbox-prev {
    left: -60px;
  }

  .lightbox-next {
    right: -60px;
  }

  .lightbox-close {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    top: 0;
    right: 0;
    border-radius: 0 0 0 40px;
  }
  
  /* Hide hero decorative elements */
  .hero-content::before,
  .hero-content::after {
    display: none !important;
  }

  .pagination-btn,
  .testimonial-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  /* Ensure all text is properly sized */
  .specialite-card h3,
  .news-content h3,
  .contact-details h3 {
    font-size: 1.4rem;
  }

  .specialite-card p,
  .news-content p,
  .contact-details p {
    font-size: 1.1rem;
  }

  .testimonial-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 100px;
  }

  .halal-highlight {
    font-size: 1em;
    padding: 0 6px;
    animation: halal-glow 2s ease-in-out infinite;
  }
}

  .hero-container {
    padding: 1rem 20px;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-content {
    border-radius: 0;
  }

  .hero::before {
    display: none !important;
  }

  /* Témoignages mobile */
  .temoignages {
    padding: 3rem 0;
  }

  .temoignages .container {
    padding: 0 15px;
  }

  .testimonials-container {
    max-width: 100%;
    margin: 0;
    min-height: auto;
  }

  .testimonial-item {
    padding: 1.5rem;
    margin: 0;
    position: relative !important;
    width: 100% !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
  }

  .google-review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .review-meta {
    width: 100%;
  }

  .review-author {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .verified-badge {
    font-size: 0.75rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .testimonial-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .testimonial-date,
  .helpful-count {
    font-size: 0.8rem;
  }

  .google-rating-info {
    margin-bottom: 2rem;
  }

  .google-rating-badge {
    flex-direction: column;
    gap: 0.5rem;
  }

  .view-all-reviews {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }

  .hero::after {
    display: none !important;
  }

  /* Masquer les traits latéraux des section-header */
  .section-header::before,
  .section-header::after {
    display: none !important;
  }

  /* Ajouter un seul trait centré uniquement pour les sections avec .section-header */
  .section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    display: block;
  }

  .section-header .section-title {
    position: relative;
    margin-bottom: 2rem;
  }




  .btn {
    width: 100%;
    max-width: 280px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-section {
    text-align: center;
    max-width: 100%;
    padding: 0 1rem;
  }

  .footer-section h3 {
    text-align: center;
  }

  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact p {
    justify-content: center;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .specialite-card,
  .news-card {
    margin: 0;
  }



  .lightbox-nav {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    border-radius: 0 0 0 35px;
  }
  
  /* Logo plus grand en mobile */
  .logo {
    height: clamp(50px, 12vw, 70px) !important;
  }
  
  /* Description hero plus petite en mobile */
  .hero-description {
    font-size: var(--text-sm) !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Scroll Indicator - Desktop only */
.scroll-indicator {
  position: fixed;
  bottom: 40px;
  left: 50%;
  margin-left: -50px;
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.5;
  z-index: 2;
  animation: fadeInUp 1s ease-out 1.2s both;
  transition: opacity 0.1s ease, transform 0.1s ease;
}

.scroll-indicator:hover {
  animation-play-state: paused;
}

.scroll-indicator .mouse {
  animation: simple-bounce 2s infinite 2s;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(215, 60, 44, 0.95);
  border-radius: 12px;
  position: relative;
  background: rgba(215, 60, 44, 0.25);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(215, 60, 44, 0.3);
}

.mouse-wheel {
  width: 3px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s infinite;
  box-shadow: 0 0 12px rgba(215, 60, 44, 0.8);
}

.scroll-text {
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  font-family: var(--font-text);
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.5;
    transform: translateX(-50%) translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes simple-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* Hide scroll indicator below desktop */
@media (max-width: 1100px) {
  .scroll-indicator {
    display: none;
  }
}

/* Scroll to Top Button - Desktop only */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(215, 60, 44, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.scroll-to-top.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(215, 60, 44, 0.5);
  background: linear-gradient(135deg, var(--secondary-hover), #a02318);
}

.scroll-to-top:active {
  transform: translateY(-2px);
}

.scroll-to-top i {
  animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-1px);
  }
}

/* Hide scroll to top button below desktop */
@media (max-width: 1100px) {
  .scroll-to-top {
    display: none;
  }
}

/* Remplacer l'icône fa-utensils par l'image farfalle (sauf dans nouveautés) */
.specialite-card .fas.fa-utensils {
  font-size: 0 !important;
  background-image: url('./assets/farfalle.png');
  background-size: 46px 46px;
  background-repeat: no-repeat;
  background-position: center;
  width: 46px;
  height: 46px;
  display: inline-block;
}

.specialite-card .fas.fa-utensils::before {
  content: '' !important;
}

/* Featured news card styling */
.featured-card {
  background: linear-gradient(135deg, var(--bg-light), #fff);
  border: 2px solid var(--secondary-color);
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(215, 60, 44, 0.2);
}

.featured-card .news-icon {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
}

.menu-btn {
  margin: 0.5rem 0 1rem;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.menu-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(215, 60, 44, 0.3);
}

/* Menu Modal Styles */
.menu-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.menu-card {
  background: linear-gradient(135deg, #fefefe, #f8f6f2);
  border-radius: 20px;
  width: 90%;
  max-width: 850px;
  height: 95vh;
  max-height: 800px;
  overflow-y: auto;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  animation: menuSlideIn 0.4s ease-out;
}

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

.menu-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  color: #333;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
  z-index: 10;
}

.menu-close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: rotate(90deg);
}

.menu-header {
  text-align: center;
  padding: 12px 20px;
  border-bottom: 1px solid #e8e3db;
}

.menu-header h1 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  font-style: italic;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.menu-content {
  flex: 1;
  padding: 10px 25px 20px 25px;
  display: flex;
  flex-direction: column;
}

/* Formats en haut sur une ligne */
.formats-row {
  margin-bottom: 20px;
}

.formats-row h2 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 12px 0;
  text-align: center;
  position: relative;
  font-style: italic;
}

.formats-row h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
  border-radius: 1px;
}

.format-list {
  display: flex;
  justify-content: space-around;
  gap: 15px;
}

.format-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 8px 10px 10px 10px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border: 2px solid rgba(215, 60, 44, 0.2);
  transition: all 0.3s ease;
  flex: 1;
  max-width: 200px;
  position: relative;
  z-index: 20;
  overflow: hidden;
}

.format-item:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(215, 60, 44, 0.15);
  border-color: var(--secondary-color);
}

.format-icon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: var(--secondary-color);
  height: 100px;
  width: 160px;
  overflow: hidden;
  position: relative;
}


.format-item:first-child .box-image {
  width: 100px;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
}

.format-item:nth-child(2) .box-image {
  width: 120px;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
  transform: translateY(10px);
}

.format-item:nth-child(3) .box-image {
  width: 140px;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
  transform: translateY(20px);
}

.box-image {
  width: 120px;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}


.format-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.format-weight {
  font-family: var(--font-text);
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

.format-price {
  font-family: var(--font-text);
  font-size: 1.2rem;
  color: var(--secondary-color);
  font-weight: 700;
  position: relative;
  z-index: 10;
}

/* Types de pâtes */
.pasta-section {
  margin-bottom: 20px;
}

.pasta-section h2 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 10px 0;
  text-align: center;
  font-style: italic;
  position: relative;
}

.pasta-section h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 2px;
  background: var(--secondary-color);
  border-radius: 1px;
}

.pasta-types {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pasta-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 5px;
  font-family: var(--font-text);
  font-size: 0.85rem;
  color: #555;
  transition: all 0.3s ease;
  min-width: 90px;
}

.pasta-type:hover {
  transform: translateY(-2px);
}

.pasta-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pasta-image:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(215, 60, 44, 0.3);
}

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

.pasta-image i {
  color: var(--secondary-color);
  font-size: 18px;
}

/* Sauces en deux colonnes */
.sauces-row {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
}

.sauce-category {
  flex: 1;
}

.sauce-category h2 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 10px 0;
  text-align: center;
  position: relative;
  font-style: italic;
}

.sauce-category h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 2px;
  background: var(--secondary-color);
  border-radius: 1px;
}

.sauce-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sauce-item {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  font-family: var(--font-text);
  font-size: 0.95rem;
  color: #444;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.halal-badge,
.new-badge {
  font-family: var(--font-text);
  font-size: 0.65rem;
  padding: 2px 5px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.halal-badge {
  background: #22c55e;
  color: white;
}

.new-badge {
  background: #22c55e;
  color: white;
}

.menu-footer {
  border-top: 1px solid #e8e3db;
  padding: 12px 0 0;
  text-align: center;
}

.supplements h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 6px 0;
  font-style: italic;
}

.supplement-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-family: var(--font-text);
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

/* Mobile responsiveness */
@media (max-width: 800px) {
  .format-item {
    z-index: 30 !important;
  }
  
  .format-item:first-child .box-image,
  .format-item:nth-child(2) .box-image,
  .format-item:nth-child(3) .box-image {
    z-index: 10 !important;
  }
}

@media (max-width: 768px) {
  .format-item {
    z-index: 40 !important;
  }
  
  .format-item:first-child .box-image,
  .format-item:nth-child(2) .box-image,
  .format-item:nth-child(3) .box-image {
    z-index: 5 !important;
  }
  
  .menu-card {
    width: 100%;
    height: 100vh;
    max-height: none;
    border-radius: 0;
  }
  
  .menu-content {
    padding: 0px 20px 15px 20px;
  }
  
  .menu-header {
    padding: 24px 24px 10px;
  }
  
  .menu-header h1 {
    font-size: 1.4rem;
  }
  
  .formats-row {
    margin-bottom: 8px;
  }
  
  .format-list {
    gap: 10px;
  }
  
  .format-item {
    padding: 10px 8px;
    max-width: 100px;
    z-index: 20;
  }
  
  .pasta-section {
    margin-bottom: 8px;
  }
  
  .pasta-types {
    gap: 12px;
  }
  
  .sauces-row {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 8px;
  }
  
  .sauce-list {
    gap: 4px;
  }
  
  .sauce-item {
    padding: 5px 8px;
    font-size: 0.8rem;
  }
  
  .halal-badge,
  .new-badge {
    font-size: 0.55rem;
    padding: 1px 3px;
  }
  
  .menu-footer {
    padding: 10px 0 0;
  }
  
  .supplement-list {
    flex-direction: column;
    gap: 8px;
    font-size: 0.75rem;
  }
}

/* Event Modal Styles */
.event-types {
  margin-bottom: 30px;
}

.event-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .event-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .event-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .event-item {
    padding: 8px 6px;
    font-size: 0.85rem;
  }
}

.event-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(215, 60, 44, 0.2);
  transition: all 0.3s ease;
}

.event-item:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--secondary-color);
  transform: translateX(5px);
}

.event-item i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.formules-section {
  margin: 0 0 30px 0;
}

.formule-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.formule-card.featured {
  border-color: var(--secondary-color);
  box-shadow: 0 4px 15px rgba(215, 60, 44, 0.1);
}

.formule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.formule-header h3 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin: 0;
}

.formule-header .badge {
  background: var(--secondary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.formule-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.formule-content li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.formule-content li i {
  color: #4CAF50;
  font-size: 0.95rem;
}

.event-cta {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.event-cta .btn {
  min-width: 200px;
}

/* Texte responsive pour les boutons */
.btn-text-mobile {
  display: none;
}

.btn-text-desktop {
  display: inline;
}

@media (max-width: 480px) {
  .btn-text-mobile {
    display: inline;
  }

  .btn-text-desktop {
    display: none;
  }

  .event-cta .btn {
    min-width: auto;
    padding: 12px 24px;
  }
}

/* Texte description responsive */
.event-desc-mobile {
  display: none;
}

.event-desc-desktop {
  display: inline;
}

@media (max-width: 480px) {
  .event-desc-mobile {
    display: inline;
  }

  .event-desc-desktop {
    display: none;
  }
}

@media (max-width: 480px) {
  .formule-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .formule-header .badge {
    margin-top: 5px;
  }
}

/* Livraison section */
.livraison-info {
  background: linear-gradient(135deg, rgba(215, 60, 44, 0.1), rgba(215, 60, 44, 0.05));
  border: 2px solid rgba(215, 60, 44, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin: 25px 0;
}

.livraison-info h3 {
  color: var(--secondary-color);
  font-family: var(--font-title);
  font-size: 1.4rem;
  margin-bottom: 8px;
  text-align: center;
}

.livraison-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.livraison-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.livraison-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.livraison-item i {
  color: var(--secondary-color);
  font-size: 1.1rem;
  min-width: 16px;
}

@media (max-width: 768px) {
  .livraison-details {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .livraison-item {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .livraison-info h3 {
    font-size: 1.6rem;
  }

  .livraison-item {
    font-size: 1rem;
    padding: 10px 14px;
  }

  .livraison-item i {
    font-size: 1.2rem;
  }
}

/* Form select styling */
select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(215, 60, 44, 0.3);
  border-radius: var(--border-radius);
  background: white;
  font-family: var(--font-text);
  font-size: 1.1rem;
  color: var(--text-color);
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d73c2c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
  padding-right: 50px;
}

select:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(215, 60, 44, 0.1);
}

select option {
  color: var(--text-color);
  background: white;
}

/* Ajustement taille cartes contact */
@media (min-width: 768px) {
  .contact-info-wrapper {
    max-height: 450px;
    overflow: hidden;
  }
  
  .contact-item {
    padding: 24px 24px;
    margin-bottom: 8px;
  }
  
  .contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
  
  .contact-item p {
    font-size: 0.95rem;
  }
  
  .contact-icon {
    width: 55px;
    height: 55px;
  }
  
  .contact-icon i {
    font-size: 1.4rem;
  }
}

/* Styles pour les onglets de tarification */
.pricing-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 15px 30px;
  font-family: var(--font-text);
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  position: relative;
}

.tab-btn.active {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}

.tab-btn:hover {
  color: var(--secondary-color);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Styles pour l'onglet formule maison */
.home-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.pricing-section h3 {
  color: var(--secondary-color);
  font-family: var(--font-title);
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-align: center;
}

.sauce-pricing {
  background: white;
  border-radius: 12px;
  padding: 20px;
  border: 2px solid rgba(215, 60, 44, 0.1);
}

.sauce-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.sauce-price-item:last-child {
  border-bottom: none;
}

.sauce-name {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.3;
}

.price {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-left: 15px;
}

.halal-badge {
  background: var(--secondary-color);
  color: white;
  padding: 2px 6px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 5px;
}

.pasta-info, .extras-info {
  background: rgba(215, 60, 44, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.pasta-info h3, .extras-info h3 {
  color: var(--secondary-color);
  font-family: var(--font-title);
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .tab-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .home-pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sauce-price-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .price {
    margin-left: 0;
    align-self: flex-end;
  }
}

/* Masquer les sections onglet 1 quand onglet 2 est actif */
#tab2.active ~ .tab-1-only {
  display: none;
}

.tab-1-only {
  display: block;
}

/* Quand onglet 2 est actif, masquer les éléments onglet 1 */
.tab-content:not(.active) ~ .tab-1-only {
  display: none;
}

#tab2.active ~ .pasta-section,
#tab2.active ~ .sauces-row,
#tab2.active ~ .menu-footer {
  display: none;
}

/* Styles pour les pictos mini dans l'onglet 2 */
.pasta-types-mini {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.pasta-type-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pasta-image-mini {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.pasta-image-mini img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.pasta-type-mini span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-color);
  text-align: center;
}

@media (max-width: 480px) {
  .pasta-types-mini {
    gap: 15px;
  }
  
  .pasta-image-mini {
    width: 50px;
    height: 50px;
  }
  
  .pasta-image-mini img {
    width: 40px;
    height: 40px;
  }
  
  .pasta-type-mini span {
    font-size: 0.7rem;
  }
}
