/* =========================================
   VIVAL LYON 6 — styles.css
   ========================================= */

:root {
  --green:       #1b5e20;
  --green-mid:   #2e7d32;
  --green-light: #e8f5e9;
  --red:         #c62828;
  --red-light:   #ffebee;
  --amber:       #f9a825;
  --dark:        #111111;
  --text:        #1c1c1c;
  --muted:       #666666;
  --light:       #f5f5f2;
  --white:       #ffffff;
  --border:      #e0e0e0;

  --font-body:   'Inter', system-ui, sans-serif;
  --font-head:   'Syne', system-ui, sans-serif;

  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow:      0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.14);
  --transition:  0.25s ease;
  --nav-h:       72px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--light { background: var(--light); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); background: var(--green-light);
  padding: 4px 14px; border-radius: 50px; margin-bottom: 16px;
}
.eyebrow--light { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.15); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15; margin-bottom: 12px; color: var(--dark);
}
.section-title strong { color: var(--green); }
.section-sub { color: var(--muted); margin-bottom: 48px; font-size: 1.05rem; }

/* ---- Boutons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  padding: 14px 26px; border-radius: 50px;
  cursor: pointer; transition: all var(--transition);
  border: 2px solid transparent; white-space: nowrap;
}
.btn-primary {
  background: var(--green); color: var(--white); border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-mid); border-color: var(--green-mid);
  transform: translateY(-2px); box-shadow: 0 6px 24px rgba(27,94,32,0.35);
}
.btn-outline-hero {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6);
}
.btn-outline-hero:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-white {
  background: var(--white); color: var(--green); border-color: var(--white);
}
.btn-white:hover {
  background: var(--green-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
/* Bouton avis Google */
.btn-google {
  background: var(--white); color: #3c4043;
  border: 1.5px solid #dadce0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  font-weight: 500;
  padding: 12px 22px;
}
.btn-google:hover {
  background: #f8f9fa; box-shadow: 0 3px 10px rgba(0,0,0,0.14);
  transform: translateY(-2px);
}
.google-icon { width: 20px; height: 20px; flex-shrink: 0; }
.btn-full { width: 100%; justify-content: center; }

/* =====================================
   NAVBAR — TOUJOURS BLANC ET FIXE
===================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px; height: 100%;
  display: flex; align-items: center; gap: 24px;
}

/* Logo Vival dans la navbar */
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; text-decoration: none;
}
.nav-logo-img {
  height: 40px; width: auto; object-fit: contain;
  /* Couleurs naturelles, navbar toujours blanche */
  filter: none;
  display: block;
}
.nav-brand-city {
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--green); background: var(--green-light);
  padding: 3px 10px; border-radius: 50px;
  white-space: nowrap;
}

.nav-links {
  display: flex; align-items: center; gap: 4px; margin-left: auto;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--text);
  padding: 7px 13px; border-radius: 8px; transition: all var(--transition);
}
.nav-links a:hover { color: var(--green); background: var(--green-light); }

.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white);
  font-weight: 600; font-size: 0.88rem;
  padding: 10px 20px; border-radius: 50px;
  transition: all var(--transition); flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--green-mid); transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27,94,32,0.35);
}

.hamburger {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  width: 40px; height: 40px; gap: 5px; padding: 6px;
  border-radius: 8px; margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all var(--transition); transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); z-index: 850;
  display: flex; flex-direction: column;
  padding: 16px 24px 24px; gap: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 3px solid var(--green);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-link {
  font-size: 1rem; font-weight: 500; color: var(--text);
  padding: 12px 8px; border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--green); }
.mobile-phone-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 12px; background: var(--green); color: var(--white);
  font-weight: 700; font-size: 1rem; padding: 14px 24px;
  border-radius: 50px; transition: background var(--transition);
}
.mobile-phone-btn:hover { background: var(--green-mid); }

/* =====================================
   HERO — avec padding-top pour compenser la navbar fixe
===================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  /* Compenser la navbar blanche en repoussant légèrement le contenu */
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1b5e20 0%, #0d2011 60%, #111 100%);
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.65) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  max-width: 820px; margin: 0 auto;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.9);
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 800; color: var(--white);
  line-height: 1.08; margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero-title em { font-style: italic; color: var(--amber); }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.72); margin-bottom: 40px; letter-spacing: 0.03em;
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.hero-actions .btn { font-size: 1rem; padding: 16px 30px; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.6); font-size: 1.3rem;
  animation: bounce 2s infinite;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.25);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- Barre info ---- */
.info-bar { background: var(--dark); color: var(--white); }
.info-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: stretch; flex-wrap: wrap; min-height: 50px;
}
.info-item {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px; font-size: 0.85rem; font-weight: 500;
}
.info-item a { color: var(--amber); }
.info-item a:hover { text-decoration: underline; }
.info-sep { width: 1px; background: rgba(255,255,255,0.1); align-self: stretch; }

/* =====================================
   PRÉSENTATION
===================================== */
.pres-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.pres-text { display: flex; flex-direction: column; gap: 16px; }
.pres-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  line-height: 1.2; color: var(--dark);
}
.pres-text h2 strong { color: var(--green); }
.pres-text p { color: var(--muted); }
.pres-text .btn { align-self: flex-start; margin-top: 8px; }
.pres-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 10px;
}
.pres-photos img {
  border-radius: var(--radius); width: 100%; height: 100%;
  object-fit: cover; background: var(--border);
  transition: transform 0.4s ease;
}
.pres-photos img:hover { transform: scale(1.02); }
.pres-main { grid-column: 1 / -1; }

/* =====================================
   CATÉGORIES
===================================== */
.categories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.cat-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 24px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex; flex-direction: column; gap: 12px;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green); }
.cat-icon { font-size: 2.4rem; line-height: 1; margin-bottom: 4px; }
.cat-card h3 { font-family: var(--font-head); font-size: 1.05rem; color: var(--dark); }
.cat-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; }

/* =====================================
   BANDES PHOTOS
===================================== */
/* 3 photos côte à côte */
.photo-strip-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  height: 280px; gap: 3px;
}
.photo-strip-item { overflow: hidden; background: var(--light); }
.photo-strip-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-strip-item:hover img { transform: scale(1.05); }

/* 2 photos asymétriques */
.photo-split {
  display: grid; grid-template-columns: 3fr 2fr;
  height: 340px; gap: 3px;
}
.photo-split-item { overflow: hidden; background: var(--light); }
.photo-split-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-split-item:hover img { transform: scale(1.04); }

/* =====================================
   MARQUES — DOUBLE CAROUSEL AVEC VRAIS LOGOS
===================================== */
.marques { overflow: hidden; }
.marques .container { margin-bottom: 40px; }

.marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.marquee-track {
  display: flex; align-items: center; gap: 14px;
  width: max-content;
  animation: marquee-fwd 38s linear infinite;
  padding: 6px 0;
}
.marquee-track-rev {
  display: flex; align-items: center; gap: 14px;
  width: max-content;
  animation: marquee-rev 38s linear infinite;
  padding: 6px 0;
}
.marquee-wrapper:hover .marquee-track,
.marquee-wrapper:hover .marquee-track-rev { animation-play-state: paused; }

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

/* Carte de marque — fond blanc avec logo centré */
.brand-card {
  background: var(--white);
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 14px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 155px;
  height: 96px;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
/* Trait de couleur de la marque en bas */
.brand-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-accent, var(--green));
  opacity: 0.6;
  transition: height var(--transition), opacity var(--transition);
}
.brand-card:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.brand-card:hover::after { height: 5px; opacity: 1; }

/* Image du logo */
.brand-logo {
  max-height: 54px; max-width: 120px;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
}

/* Fallback texte quand le logo ne charge pas */
.brand-fallback {
  display: none;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: -0.01em;
  color: var(--brand-accent, #333);
}
.brand-card.logo-error .brand-logo { display: none; }
.brand-card.logo-error .brand-fallback { display: block; }

/* Carte CSS-only (pas de logo Wikimedia) */
.brand-card.brand-css {
  background: var(--brand-bg, #1a1a1a);
}
.brand-card.brand-css::after { background: rgba(255,255,255,0.3); }
.brand-card.brand-css .brand-fallback {
  display: block;
  color: var(--brand-text, #ffffff);
  font-size: 1.15rem;
}

/* =====================================
   GALERIE — 7 photos (9.jpg → 15.jpg)
===================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 48px;
}
.gallery-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 1;
  background: var(--border);
}
/* Les spans (2x2, 2-wide) sont gérés par JS */
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
}

/* =====================================
   LIVRAISON
===================================== */
.livraison { background: var(--green); color: var(--white); }
.livraison-card {
  display: grid; grid-template-columns: 1fr auto;
  gap: 80px; align-items: center;
}
.livraison-text { display: flex; flex-direction: column; gap: 16px; }
.livraison-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); line-height: 1.15;
}
.livraison-text h2 strong { color: var(--amber); }
.livraison-text p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.livraison-list { display: flex; flex-direction: column; gap: 8px; margin: 4px 0; }
.livraison-list li { color: rgba(255,255,255,0.82); font-size: 0.95rem; }
.livraison-text .btn { align-self: flex-start; margin-top: 8px; }
.livraison-visual {
  text-align: center; padding: 36px 48px;
  background: rgba(255,255,255,0.08); border-radius: var(--radius-xl);
  border: 2px solid rgba(255,255,255,0.15); min-width: 220px;
}
.livraison-icon { font-size: 4rem; margin-bottom: 16px; }
.livraison-tagline { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.livraison-num { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--amber); }

/* =====================================
   LOCALISATION
===================================== */
.localisation-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 40px; align-items: start; margin-top: 48px;
}
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); line-height: 0; }
.map-wrap iframe { display: block; }
.contact-panel { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 18px;
}
.contact-card h3 {
  font-family: var(--font-head); font-size: 1.3rem; color: var(--green);
  padding-bottom: 14px; border-bottom: 2px solid var(--border);
}
.contact-row { display: flex; gap: 14px; align-items: flex-start; font-size: 0.9rem; }
.contact-row span:first-child { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.contact-row a { color: var(--green); font-weight: 600; }
.contact-row a:hover { text-decoration: underline; }
.reviews-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border);
  text-align: center; display: flex; flex-direction: column; gap: 12px;
  align-items: center;
}
.reviews-stars { font-size: 1.5rem; }
.reviews-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.55; }

/* =====================================
   FOOTER
===================================== */
.footer { background: #0d1a0e; color: rgba(255,255,255,0.8); }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 72px 24px 48px;
  display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 60px;
}
.footer-col { display: flex; flex-direction: column; gap: 14px; }

/* Logo Vival dans le footer — inversé blanc sur fond sombre */
.footer-logo-img {
  height: 42px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 4px;
}
.footer-address { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--amber); font-weight: 600; font-size: 0.95rem; width: fit-content; }
.footer-phone:hover { text-decoration: underline; }
.footer-official { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.45); font-size: 0.85rem; transition: color var(--transition); width: fit-content; }
.footer-official:hover { color: var(--white); }
.footer-heading { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--white); }

/* Mention alcool — uniquement dans le footer */
.alcool-mention {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(198,40,40,0.12); border: 1px solid rgba(198,40,40,0.28);
  border-radius: var(--radius); padding: 16px;
}
.alcool-mention-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.alcool-mention-text { font-size: 0.82rem; line-height: 1.6; color: rgba(255,255,255,0.65); }
.alcool-mention-text strong { color: #ff8a80; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 8px;
}

/* =====================================
   BOUTON FLOTTANT TÉLÉPHONE
===================================== */
.float-phone {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  display: flex; align-items: center; gap: 10px;
  background: var(--green); color: var(--white);
  font-weight: 700; font-size: 0.95rem;
  padding: 16px 24px; border-radius: 50px;
  box-shadow: 0 6px 28px rgba(27,94,32,0.45);
  opacity: 0; transform: translateY(80px);
  transition: opacity 0.4s ease, transform 0.4s ease, background var(--transition);
  pointer-events: none;
}
.float-phone.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-phone:hover { background: var(--green-mid); box-shadow: 0 8px 36px rgba(27,94,32,0.55); transform: translateY(-3px); }
.float-icon { font-size: 1.1rem; animation: ring 5s ease infinite; }
@keyframes ring {
  0%, 82%, 100% { transform: rotate(0); }
  84% { transform: rotate(-15deg); }
  87% { transform: rotate(15deg); }
  90% { transform: rotate(-10deg); }
  93% { transform: rotate(10deg); }
}

/* =====================================
   SCROLL REVEAL
===================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* =====================================
   RESPONSIVE — Tablette ≤ 1024px
===================================== */
@media (max-width: 1024px) {
  .pres-grid { grid-template-columns: 1fr; gap: 40px; }
  .pres-photos { grid-template-rows: 170px 170px; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }

  .livraison-card { grid-template-columns: 1fr; gap: 40px; }
  .livraison-visual { display: none; }

  .localisation-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-legal-col { grid-column: 1 / -1; }

  .photo-strip-3 { height: 210px; }
  .photo-split { height: 260px; }
}

/* =====================================
   RESPONSIVE — Mobile ≤ 768px
===================================== */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 64px 0; }

  .nav-links { display: none; }
  .nav-phone-num { display: none; }
  .nav-cta { padding: 10px 14px; }
  .hamburger { display: flex; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .info-bar-inner { flex-direction: column; }
  .info-sep { display: none; }
  .info-item { padding: 10px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }

  .pres-photos { display: none; }

  .categories-grid { grid-template-columns: 1fr; gap: 14px; }

  .photo-strip-3 { grid-template-columns: 1fr 1fr; height: 160px; }
  .photo-strip-item:last-child { display: none; }
  .photo-split { grid-template-columns: 1fr; height: 200px; }
  .photo-split-item:last-child { display: none; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .livraison-text .btn { width: 100%; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .float-phone { right: 16px; bottom: 16px; padding: 14px 20px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .float-text { display: none; }
  .float-phone { border-radius: 50%; width: 56px; height: 56px; padding: 0; justify-content: center; }
  .float-icon { font-size: 1.4rem; animation: none; }
  .photo-strip-3 { height: 130px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
}
