:root {
  --bg: #faf6f1; /* crème chaleureux */
  --white: #ffffff;
  --text: #111111;
  --muted: #6b7280;
  --accent: #d62828; /* rouge basque */
  --error: #dc2626;
  --success: #059669;
  --border: #e5e7eb;
  --shadow: 0 6px 16px rgba(0,0,0,.08);
  --shadow-hover: 0 8px 20px rgba(0,0,0,.12);
}

/* Reset et base */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Focus visible pour navigation clavier */
.keyboard-focus,
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid rgba(214, 40, 40, 0.5);
  outline-offset: 2px;
}

/* Skip link pour l'accessibilité */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--accent);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 100;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

/* Bandeau promotionnel moderne */
.promo-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  color: white;
  padding: 1rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--accent);
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(214, 40, 40, 0.1), transparent);
  animation: promo-flow 4s ease-in-out infinite;
}

.promo-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(214, 40, 40, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(214, 40, 40, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.promo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.promo-icon {
  font-size: 2.5rem;
  animation: bounce-gentle 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(214, 40, 40, 0.3));
}

.promo-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.promo-badge {
  background: linear-gradient(135deg, var(--accent) 0%, #ff4757 100%);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(214, 40, 40, 0.4);
  animation: pulse-badge 2s ease-in-out infinite;
}

.promo-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.promo-subtitle {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  max-width: 400px;
}

.promo-cta {
  background: linear-gradient(135deg, var(--accent) 0%, #c52a2a 100%);
  color: white;
  padding: 0.8rem 1.4rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 
    0 4px 15px rgba(214, 40, 40, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.promo-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.promo-cta:hover::before {
  left: 100%;
}

.promo-cta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 
    0 6px 25px rgba(214, 40, 40, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.4);
}

.promo-cta svg {
  transition: transform 0.3s ease;
}

.promo-cta:hover svg {
  transform: translateX(3px);
}

/* Réduire les animations pour les utilisateurs sensibles au mouvement */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Typographie */
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  margin: 0 0 0.6rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 0.5rem;
}

h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

p {
  line-height: 1.7;
  margin: 0 0 1rem;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 22px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.site-header .wrap {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.8;
}

.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 50%;
}

.brand-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.nav {
  display: flex;
  align-items: center;
}

.nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s ease;
}

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

.nav a:hover {
  color: var(--accent);
}

.nav a:hover::after {
  width: 100%;
}

.nav .has-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-right: 0.6rem;
}

.nav .nav-badge {
  background: linear-gradient(135deg, var(--accent) 0%, #ff4757 100%);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: 0 2px 6px rgba(214, 40, 40, 0.3);
  animation: pulse-badge 2s ease-in-out infinite;
}

.nav .cta-phone {
  border: 2px solid var(--accent);
  background: var(--white);
  color: var(--accent);
  padding: 0.6rem 1rem;
  border-radius: 25px;
  margin-left: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(214, 40, 40, 0.2);
  animation: pulse-border 2s infinite;
}

.nav .cta-phone:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(214, 40, 40, 0.4);
}

.nav .cta-contact {
  background: linear-gradient(135deg, var(--accent) 0%, #c52a2a 100%);
  color: white;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 25px;
  margin-left: 0.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(214, 40, 40, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: glow 3s ease-in-out infinite alternate;
}

.nav .cta-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}

.nav .cta-contact:hover::before {
  left: 100%;
}

.nav .cta-contact:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(214, 40, 40, 0.5);
}

.nav .cta-contact:active {
  transform: translateY(-1px) scale(1.02);
}

.basque-bar {
  height: 3px;
  background: var(--accent);
}

/* Hero */
.hero {
  padding: 60px 0 30px;
}

.hero-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero-media img {
  width: 100%;
  height: 52vh;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.hero-media img:hover {
  transform: scale(1.02);
}

.tagline {
  font-weight: 600;
  opacity: 0.95;
  color: var(--accent);
  font-size: 1.1rem;
}

.lede {
  opacity: 0.9;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

/* Boutons */
.btn {
  display: inline-block;
  font-weight: 600;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
  z-index: 1;
}

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

.btn.outline {
  border: 1px solid #111;
  padding: 0.8rem 1.1rem;
  background: var(--white);
  color: var(--text);
}

.btn.outline:hover {
  background: var(--text);
  color: var(--white);
  transform: translateY(-1px);
}

.btn.solid {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: white;
  padding: 0.85rem 1.2rem;
}

.btn.solid:hover {
  background: #c52a2a;
  border-color: #c52a2a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(214, 40, 40, 0.3);
}

/* Sections */
.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--white);
}

.muted {
  color: var(--muted);
}

.cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.cols.two {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

/* Médias dans les cartes produits */
.card-media {
  margin: -8px -8px 12px;
  border-radius: 12px;
  overflow: hidden;
}

.card-media img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.delivery-image {
  margin-top: 1.5rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 246, 241, 0.9));
}

.delivery-image img {
  display: block;
  width: 100%;
  height: auto;
}

.delivery-caption {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.8rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.9);
}

/* Carte marchés */
.map #markets-map {
  width: 100%;
  height: 360px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map .leaflet-container {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Galerie */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.gallery-item {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-item picture, .gallery-item img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 92vw;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 92vw;
  max-height: 76vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: var(--shadow-hover);
}

.lightbox-caption {
  color: #fff;
  margin-top: 8px;
  text-align: center;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 20px;
  line-height: 40px;
}

.lightbox-close { top: -10px; right: -10px; transform: none; }
.lightbox-prev { left: -54px; }
.lightbox-next { right: -54px; }

@media (max-width: 720px) {
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
}

/* Section headers avec badge */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  background: linear-gradient(135deg, var(--accent) 0%, #ff4757 100%);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(214, 40, 40, 0.3);
  animation: pulse-badge 2s ease-in-out infinite;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Sections spécialités avec motifs CSS */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.specialty-card {
  position: relative;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.specialty-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Version alternative avec motifs CSS et émojis */
.specialty-card.fromages-alt {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, var(--accent) 100%);
  position: relative;
  overflow: hidden;
}

.specialty-card.saucissons-alt {
  background: linear-gradient(135deg, #a55eea 0%, #8c7ae6 50%, #6c5ce7 100%);
  position: relative;
  overflow: hidden;
}

.specialty-card.plateaux-alt {
  background: linear-gradient(135deg, #ffa726 0%, #fb8c00 50%, #f57c00 100%);
  position: relative;
  overflow: hidden;
}

.specialty-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.15;
  overflow: hidden;
}

.specialty-bg-pattern::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.3) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.2) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: pattern-move 20s linear infinite;
}

.pattern-emoji {
  position: absolute;
  font-size: 8rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  opacity: 0.1;
  animation: emoji-float 6s ease-in-out infinite;
}

.specialty-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(
    135deg, 
    rgba(0,0,0,0.3) 0%, 
    rgba(0,0,0,0.1) 50%, 
    rgba(0,0,0,0.4) 100%
  );
  color: white;
  transition: all 0.3s ease;
}

.specialty-card:hover .specialty-overlay {
  background: linear-gradient(
    135deg, 
    rgba(0,0,0,0.2) 0%, 
    rgba(0,0,0,0.05) 50%, 
    rgba(0,0,0,0.3) 100%
  );
}

/* Amélioration de l'overlay pour la nouvelle version */
.specialty-card.fromages-alt .specialty-overlay,
.specialty-card.saucissons-alt .specialty-overlay,
.specialty-card.plateaux-alt .specialty-overlay {
  background: linear-gradient(
    135deg, 
    rgba(0,0,0,0.4) 0%, 
    rgba(0,0,0,0.2) 50%, 
    rgba(0,0,0,0.5) 100%
  );
  backdrop-filter: blur(1px);
}

.specialty-overlay h3 {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.specialty-card:hover .specialty-overlay h3 {
  transform: translateY(-5px);
}

.specialty-overlay p {
  color: rgba(255,255,255,0.95);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  flex-grow: 1;
}

.specialty-cta {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: auto;
}

.price-indicator {
  background: rgba(214, 40, 40, 0.9);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.specialty-btn {
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.specialty-btn:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.2) 100%);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Animation d'apparition */
.specialty-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.specialty-card:nth-child(1) { animation-delay: 0.1s; }
.specialty-card:nth-child(2) { animation-delay: 0.2s; }
.specialty-card:nth-child(3) { animation-delay: 0.3s; }

/* Sections produits */
.product-category {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.product-category:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.product-category h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-list li {
  padding: 0.4rem 0;
  border-bottom: 1px dashed #eee;
  font-size: 0.95rem;
}

.product-list li:last-child {
  border-bottom: none;
}

.product-list li strong {
  color: var(--text);
  font-weight: 600;
}

.highlight-box {
  background: linear-gradient(135deg, var(--accent) 0%, #c52a2a 100%);
  color: white;
  padding: 2rem;
  border-radius: 18px;
  margin-top: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.highlight-box h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.highlight-box p {
  margin: 0;
  opacity: 0.95;
  line-height: 1.6;
}

/* Livraison */
.delivery-info {
  background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
}

.delivery-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #ff4757, var(--accent));
  animation: gradient-slide 3s ease-in-out infinite;
}

.delivery-list {
  margin: 1.5rem 0;
}

.delivery-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed #eee;
  transition: all 0.2s ease;
}

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

.delivery-item:hover {
  background: rgba(214, 40, 40, 0.02);
  border-radius: 8px;
  padding: 1rem 0.5rem;
}

.delivery-icon {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
}

.delivery-item strong {
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.2rem;
}

.delivery-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
}

.delivery-zone {
  background: rgba(214, 40, 40, 0.05);
  border: 1px solid rgba(214, 40, 40, 0.1);
  border-radius: 12px;
  padding: 1.2rem;
  margin-top: 1.5rem;
}

.delivery-zone h4 {
  color: var(--accent);
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
}

.delivery-zone p {
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
}

.delivery-note {
  font-style: italic;
  color: var(--muted);
  font-size: 0.85rem !important;
}

/* Horaires */
.schedule {
  display: grid;
  gap: 10px;
  margin: 16px 0 26px;
}

.schedule .row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 12px;
  align-items: center;
  border-bottom: 1px dashed #ddd;
  padding: 10px 0;
  transition: background-color 0.2s ease;
}

.schedule .row:hover {
  background-color: rgba(214, 40, 40, 0.05);
  border-radius: 8px;
  padding: 10px 8px;
}

.schedule .day {
  font-weight: 700;
}

.schedule .time {
  font-weight: 700;
  color: var(--accent);
}

.schedule .place {
  opacity: 0.95;
}

/* Mini vignettes pour la section marchés */
.market-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin: 16px 0 22px;
}

.market-thumbs .thumb {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.market-thumbs img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

/* Carte */
.map {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.map:hover {
  transform: scale(1.01);
}

.map iframe {
  width: 100%;
  height: 340px;
  border: 0;
}

/* Histoire */
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.history-media img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.history-media img:hover {
  transform: scale(1.02);
}

/* Formulaire */
.form {
  max-width: 400px;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--error);
}

.error-msg {
  display: block;
  color: var(--error);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

.form-feedback {
  margin-top: 1rem;
}

.form-success {
  color: var(--success);
  font-weight: 500;
  padding: 0.5rem;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 6px;
  border-left: 3px solid var(--success);
}

.form-error {
  color: var(--error);
  font-weight: 500;
  padding: 0.5rem;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 6px;
  border-left: 3px solid var(--error);
}

/* Contact */
.contact .card a.link,
.socials .link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: all 0.2s ease;
}

.contact .card a.link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

.socials {
  margin: 1rem 0;
}

.sep {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* Boutons flottants pour mobile */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.floating-phone,
.floating-contact {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.floating-phone {
  background: #25D366;
  color: white;
  animation-delay: 0s;
}

.floating-contact {
  background: linear-gradient(135deg, var(--accent) 0%, #c52a2a 100%);
  color: white;
  animation-delay: 0.5s;
}

.floating-phone:hover,
.floating-contact:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Footer */
.site-footer {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.to-top {
  text-decoration: none;
  color: inherit;
  font-size: 1.2rem;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.to-top:hover {
  color: var(--accent);
  background: rgba(214, 40, 40, 0.1);
  transform: translateY(-2px);
}

/* Animations */
@keyframes promo-flow {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

@keyframes bounce-gentle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
}

@keyframes pulse-badge {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(214, 40, 40, 0.4);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(214, 40, 40, 0.6);
  }
}

@keyframes pulse-border {
  0%, 100% {
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(214, 40, 40, 0.2);
  }
  50% {
    border-color: #c52a2a;
    box-shadow: 0 2px 12px rgba(214, 40, 40, 0.4);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.3);
  }
  100% {
    box-shadow: 0 4px 20px rgba(214, 40, 40, 0.6), 0 0 30px rgba(214, 40, 40, 0.3);
  }
}

@keyframes pattern-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

@keyframes emoji-float {
  0%, 100% { 
    transform: translate(-50%, -50%) rotate(-15deg) scale(1);
  }
  50% { 
    transform: translate(-50%, -50%) rotate(-10deg) scale(1.1);
  }
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes gradient-slide {
  0%, 100% { 
    background: linear-gradient(90deg, var(--accent), #ff4757, var(--accent));
  }
  50% { 
    background: linear-gradient(90deg, #ff4757, var(--accent), #ff4757);
  }
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-media img {
    height: 40vh;
  }
  
  .history-grid {
    grid-template-columns: 1fr;
  }
  
  .schedule .row {
    grid-template-columns: 1fr;
    gap: 4px;
    text-align: center;
  }
  
  .nav {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  
  .nav a {
    margin-left: 0.3rem;
    font-size: 0.9rem;
  }
  
  .nav .cta-phone,
  .nav .cta-contact {
    margin-left: 0.5rem;
  }
  
  /* Cartes spécialités responsive */
  .specialties-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .specialty-card {
    height: 250px;
  }
  
  .specialty-overlay {
    padding: 1.2rem;
  }
  
  .specialty-overlay h3 {
    font-size: 1.2rem;
  }
  
  .specialty-overlay p {
    font-size: 0.85rem;
  }
  
  /* Afficher les boutons flottants sur mobile */
  .floating-cta {
    display: flex;
  }
  
  /* Bandeau promotionnel responsive */
  .promo-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .promo-main {
    align-items: center;
  }
  
  .promo-icon {
    font-size: 2rem;
  }
  
  .promo-title {
    font-size: 1rem;
  }
  
  .promo-subtitle {
    font-size: 0.8rem;
    text-align: center;
  }
  
  .promo-cta {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .wrap {
    padding: 0 16px;
  }
  
  .site-header .wrap {
    flex-direction: column;
    height: auto;
    padding: 1rem 16px;
    gap: 1rem;
  }
  
  .hero {
    padding: 40px 0 20px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .cta-row {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Masquer les CTA du header sur très petit écran */
  .nav .cta-phone,
  .nav .cta-contact {
    display: none;
  }
  
  /* Les boutons flottants prennent le relais */
  .floating-cta {
    display: flex;
  }
}

/* États de focus pour l'accessibilité */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Réduction des animations pour ceux qui préfèrent */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}
