/* ═══════════════════════════════════════════════════════════
   TILO & GO — Feuille de style principale
   Charte graphique : #7ea56a · #ecefdc · #06374c · #4e5b33
   Typographie : Changa One (display) · Dancing Script (script)
                 Inter (body)
═══════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --green:       #7ea56a;
  --green-light: #a8c496;
  --cream:       #ecefdc;
  --cream-dark:  #dde1c8;
  --navy:        #06374c;
  --navy-light:  #0a5070;
  --olive:       #4e5b33;
  --olive-light: #6a7a44;
  --black:       #111111;
  --white:       #ffffff;

  --font-display: 'Changa One', sans-serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:   12px;
  --radius-lg: 20px;
  --shadow:   0 4px 24px rgba(6, 55, 76, 0.10);
  --shadow-lg: 0 12px 48px rgba(6, 55, 76, 0.16);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden { display: none !important; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.2rem; font-weight: 400; }

.section-label {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 8px;
}
.section-label.light { color: var(--green-light); }

.section-title {
  margin-bottom: 16px;
}

.section-desc {
  max-width: 600px;
  color: #555;
  font-size: 1.05rem;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-desc { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--olive);
  border-color: var(--olive);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(126, 165, 106, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
}

.btn-large { padding: 18px 36px; font-size: 1rem; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.nav-header.scrolled {
  background: var(--white);
  padding: 12px 0;
  box-shadow: var(--shadow);
}

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

.nav-logo {
  flex-shrink: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-logo .logo-noir { display: none; }
.nav-header.scrolled .logo-blanc { display: none; }
.nav-header.scrolled .logo-noir  { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: color var(--transition);
}
.nav-header.scrolled .nav-links a { color: var(--navy); }
.nav-links a:hover { color: var(--green); }

.nav-links .nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
}
.nav-links .nav-cta:hover {
  background: var(--olive);
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-header.scrolled .nav-burger span { background: var(--navy); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 55, 76, 0.65) 0%,
    rgba(6, 55, 76, 0.45) 50%,
    rgba(6, 55, 76, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 120px 24px 80px;
  animation: fadeUp 1s ease 0.3s both;
}

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

.hero-logo {
  height: 90px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.hero-tagline {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--green-light);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero-headline {
  color: var(--white);
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-hint span {
  display: block;
  width: 2px;
  height: 40px;
  background: rgba(255,255,255,0.5);
  margin: 0 auto;
  border-radius: 2px;
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ═══════════════════════════════════════════════════════════
   TICKER
═══════════════════════════════════════════════════════════ */
.ticker-wrap {
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker {
  display: inline-flex;
  gap: 32px;
  animation: ticker 30s linear infinite;
}

.ticker span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   CONCEPT
═══════════════════════════════════════════════════════════ */
.concept {
  padding: 100px 0;
  background: var(--white);
}

.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.concept-text h2 {
  margin-bottom: 24px;
  color: var(--navy);
}

.concept-text p {
  color: #555;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.concept-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.concept-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.concept-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.concept-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.concept-card h3 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.concept-card p {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   BANDEAU MÉDITERRANÉEN
═══════════════════════════════════════════════════════════ */
.med-banner {
  background: var(--navy);
  overflow: hidden;
}

.med-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 480px;
}

.med-text {
  padding: 80px 64px 80px 48px;
  color: var(--white);
}

.med-text h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.med-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.75;
}

.med-illustration img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════
   MENU
═══════════════════════════════════════════════════════════ */
.menu-section {
  padding: 100px 0;
  background: var(--cream);
}

.menu-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-tab {
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid var(--navy);
  background: transparent;
  font-family: var(--font-display);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
}
.menu-tab:hover, .menu-tab.active {
  background: var(--navy);
  color: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.menu-card-img {
  height: 220px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }

.menu-card-body {
  padding: 24px;
}
.menu-card-body h3 {
  color: var(--navy);
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.menu-card-body p {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.menu-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--cream);
  color: var(--olive);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.menu-note {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
}
.menu-note a {
  color: var(--green);
  font-weight: 500;
}
.menu-note a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   CLICK & COLLECT CTA
═══════════════════════════════════════════════════════════ */
.cta-section {
  padding: 100px 0;
  background: var(--olive);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-text {
  color: var(--white);
}

.cta-emblem {
  height: 80px;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.cta-text h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.75;
}

.cta-hint {
  margin-top: 16px;
  font-size: 0.85rem !important;
  color: rgba(255,255,255,0.5) !important;
  font-style: italic;
}

.cta-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tile {
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.tile-icon { font-size: 1.8rem; flex-shrink: 0; }
.tile-text { font-size: 0.92rem; line-height: 1.5; }
.tile-text strong { display: block; font-size: 0.95rem; }

.tile-dark  { background: var(--navy); color: var(--white); }
.tile-green { background: var(--green); color: var(--white); }
.tile-cream { background: var(--cream); color: var(--navy); }
.tile-olive { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════════════════════════
   ÉPICERIE
═══════════════════════════════════════════════════════════ */
.epicerie-section {
  padding: 100px 0;
  background: var(--white);
}

.epicerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Carte avec photo */
.epicerie-card--photo {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.epicerie-card--photo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.epicerie-card-img {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.epicerie-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.epicerie-card--photo:hover .epicerie-card-img img { transform: scale(1.06); }

.epicerie-card-body {
  padding: 22px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.epicerie-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 10px;
}

.epicerie-card-body h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.08rem;
  font-family: var(--font-display);
}
.epicerie-card-body p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
}

/* ═══════════════════════════════════════════════════════════
   RÉSEAUX SOCIAUX
═══════════════════════════════════════════════════════════ */
.social-section {
  padding: 100px 0;
  background: var(--navy);
}

.social-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.social-text {
  color: var(--white);
}
.social-text h2 {
  color: var(--white);
  margin-bottom: 20px;
}
.social-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.75;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  max-width: 260px;
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}
.social-btn.facebook {
  background: #1877f2;
  color: var(--white);
}
.social-btn:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.social-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 180px;
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.mosaic-item:hover img { transform: scale(1.06); }
.mosaic-item { overflow: hidden; }

.mosaic-large {
  grid-row: 1 / 3;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact-section {
  padding: 100px 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  color: var(--navy);
  margin-bottom: 40px;
}

.info-block {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-block strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 4px;
}

.info-block p, .info-block a {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.7;
}
.info-block a:hover { color: var(--green); text-decoration: underline; }

.horaires { margin-top: 4px; }
.horaire-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 6px 0;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--navy);
  font-size: 0.95rem;
}
.horaire-row:last-child { border-bottom: none; }

.contact-map {
  position: sticky;
  top: 100px;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: var(--radius-lg);
  display: block;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
}
.map-link:hover { color: var(--green); text-decoration: underline; }

.horaire-ferme span { color: #999; font-style: italic; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-logo {
  height: 56px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transition: background var(--transition);
}
.footer-socials a:hover { background: var(--green); }

.footer-nav h4, .footer-contact h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-light);
  margin-bottom: 20px;
}

.footer-nav ul li {
  margin-bottom: 12px;
}
.footer-nav ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-nav ul li a:hover { color: var(--green-light); }

.horaires-footer li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}
.horaires-footer li:last-child { border: none; }

.footer-contact p {
  margin-bottom: 10px;
}
.footer-contact a {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--green-light); }

.footer-bottom {
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLETTE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .concept-grid    { grid-template-columns: 1fr; gap: 48px; }
  .med-banner-inner { grid-template-columns: 1fr; }
  .med-illustration { display: none; }
  .med-text { padding: 72px 32px; }
  .cta-inner   { grid-template-columns: 1fr; gap: 48px; }
  .social-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 32px;
    gap: 24px;
    box-shadow: -8px 0 32px rgba(0,0,0,0.15);
    transition: right var(--transition);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--navy) !important; font-size: 1.1rem; }

  /* Hero */
  .hero-logo { height: 70px; }
  .hero-actions { flex-direction: column; align-items: center; }

  /* Sections */
  .concept { padding: 72px 0; }
  .concept-cards { grid-template-columns: 1fr; }
  .menu-section, .epicerie-section, .cta-section,
  .social-section, .contact-section { padding: 72px 0; }

  /* Tiles */
  .cta-tiles { grid-template-columns: 1fr; }

  /* Mosaic */
  .social-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
  }
  .mosaic-large { grid-row: 1; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 1024px) {
  .epicerie-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
  .epicerie-grid { grid-template-columns: 1fr; }
  .menu-tabs { flex-direction: column; align-items: stretch; }
  .menu-tab { text-align: center; }
  .social-btn { max-width: 100%; }
}
