/* ============ P5 Pizza & Crêpe — Design ============ */

:root {
  --bg: #fdf9f0;
  --bg-soft: #f6efdd;
  --bg-alt: #ece1c9;
  --ink: #0d0d0d;
  --ink-soft: #2a2a2a;
  --mute: #837b6b;
  --line: #e4dac4;
  --red: #d62828;
  --red-deep: #a41d1d;
  --yellow: #f5c415;
  --accent: #c73e1d;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 116px; }
body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Texture papier subtile sur tout le site */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)' opacity='0.6'/%3E%3C/svg%3E");
}

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

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 34px; left: 0; right: 0;
  z-index: 100;
  padding: 14px 24px;
  background: rgba(253, 249, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.nav-logo img { width: 44px; height: 44px; object-fit: contain; }
.nav-logo-text {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }
.nav-links a.btn {
  background: var(--red);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.nav-links a.btn:hover {
  background: var(--red);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 5px 16px rgba(214,40,40,0.5);
}
.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
}

/* ============ HERO ============ */
.hero {
  min-height: 88vh;
  padding: 140px 24px 80px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-content { position: relative; }
.hero-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--ink);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(54px, 8.4vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; font-weight: 400; color: var(--red); }
.hero-tagline {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-tagline strong { color: var(--red); font-weight: 700; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 16px 30px;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(214,40,40,0.35);
}
.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgba(214,40,40,0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: #fff; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
/* Halo lumineux jaune qui pulse derrière le logo */
.hero-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 460px;
  height: 460px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245,196,21,0.55) 0%, rgba(245,196,21,0) 68%);
  z-index: 0;
  pointer-events: none;
  animation: logoGlow 4s ease-in-out infinite;
}
.hero-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
  transform-origin: center;
  will-change: transform;
  animation: logoBoing 4s ease-in-out infinite;
}
/* Wobble cartoon élastique au survol */
.hero-logo:hover {
  animation: logoWobble 0.55s cubic-bezier(0.36, 0.07, 0.19, 1.5) both;
}

/* Respiration douce + petit sursaut cartoon (squash & stretch) */
@keyframes logoBoing {
  0%   { transform: scale(1, 1)         rotate(0deg); }
  14%  { transform: scale(1.045, 0.985) rotate(0deg); }
  28%  { transform: scale(1, 1)         rotate(0deg); }
  42%  { transform: scale(1.025, 1)     rotate(0deg); }
  54%  { transform: scale(1, 1)         rotate(0deg); }
  61%  { transform: scale(1.07, 0.95)   rotate(-5deg); }
  69%  { transform: scale(0.97, 1.06)   rotate(5deg); }
  77%  { transform: scale(1.04, 0.98)   rotate(-3deg); }
  85%  { transform: scale(1, 1.01)      rotate(1.5deg); }
  92%  { transform: scale(1, 1)         rotate(-0.5deg); }
  100% { transform: scale(1, 1)         rotate(0deg); }
}
/* Halo : flambée lumineuse synchronisée avec le sursaut */
@keyframes logoGlow {
  0%, 100% { opacity: 0.4;  transform: translate(-50%, -50%) scale(0.9); }
  42%      { opacity: 0.68; transform: translate(-50%, -50%) scale(1.04); }
  66%      { opacity: 0.95; transform: translate(-50%, -50%) scale(1.14); }
  84%      { opacity: 0.58; transform: translate(-50%, -50%) scale(1.0); }
}
/* Wobble élastique cartoon au survol */
@keyframes logoWobble {
  0%   { transform: rotate(0deg)     scale(1, 1); }
  16%  { transform: rotate(-7deg)    scale(1.09, 0.93); }
  32%  { transform: rotate(6deg)     scale(0.95, 1.09); }
  48%  { transform: rotate(-4.5deg)  scale(1.07, 0.97); }
  64%  { transform: rotate(3deg)     scale(1.03, 1.02); }
  80%  { transform: rotate(-1.5deg)  scale(1.04, 1); }
  100% { transform: rotate(0deg)     scale(1.04, 1); }
}

/* Bulles « 5€ » qui s'échappent du logo */
.logo-bubbles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.bubble {
  --sx: 0px; --sy: 0px; --dx: 0px; --rot: 0deg;
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2.5px solid var(--ink);
  color: var(--ink);
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.22);
  opacity: 0;
  will-change: transform, opacity;
  animation: bubbleFloat 5.5s ease-in-out infinite;
}
.bubble:nth-child(1) { --sx:-66px; --sy:24px;  --dx:-118px; --rot:-12deg; animation-duration:5.4s; animation-delay:0s; }
.bubble:nth-child(2) { --sx:58px;  --sy:-6px;  --dx:122px;  --rot:9deg;   animation-duration:6.2s; animation-delay:2.6s; }
.bubble:nth-child(3) { --sx:-26px; --sy:-38px; --dx:-58px;  --rot:6deg;   animation-duration:5.7s; animation-delay:0.3s; width:32px; height:32px; font-size:12px; }
.bubble:nth-child(4) { --sx:80px;  --sy:44px;  --dx:140px;  --rot:-8deg;  animation-duration:6.6s; animation-delay:0.8s; }
.bubble:nth-child(5) { --sx:8px;   --sy:58px;  --dx:-18px;  --rot:13deg;  animation-duration:5.5s; animation-delay:1.3s; width:32px; height:32px; font-size:12px; }
.bubble:nth-child(6) { --sx:-86px; --sy:-16px; --dx:-148px; --rot:-5deg;  animation-duration:6.4s; animation-delay:1.8s; }

/* Au repos : seules 2 bulles « 5€ » sont actives */
.bubble:nth-child(3),
.bubble:nth-child(4),
.bubble:nth-child(5),
.bubble:nth-child(6) { display: none; }

/* Au survol du logo : toutes les bulles « 5€ » jaillissent */
.hero-visual:hover .bubble:nth-child(3),
.hero-visual:hover .bubble:nth-child(4),
.hero-visual:hover .bubble:nth-child(5),
.hero-visual:hover .bubble:nth-child(6) { display: flex; }

@keyframes bubbleFloat {
  0%   { opacity: 0;   transform: translate(calc(-50% + var(--sx)), calc(-50% + var(--sy)))         scale(0.3)  rotate(var(--rot)); }
  16%  { opacity: 1;   transform: translate(calc(-50% + var(--sx)), calc(-50% + var(--sy) - 22px))  scale(1.06) rotate(var(--rot)); }
  34%  { opacity: 1;   transform: translate(calc(-50% + var(--sx)), calc(-50% + var(--sy) - 52px))  scale(1)    rotate(var(--rot)); }
  82%  { opacity: 0.9; }
  100% { opacity: 0;   transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--sy) - 220px)) scale(0.82) rotate(var(--rot)); }
}

/* Respect du réglage « réduire les animations » du système */
@media (prefers-reduced-motion: reduce) {
  .hero-logo,
  .hero-logo:hover { animation: none; }
  .hero-visual::before {
    animation: none;
    opacity: 0.5;
  }
  .logo-bubbles { display: none; }
}
/* (.hero-meta retiré — remplacé par le badge promo .hero-promo-badge) */

/* ============ SECTIONS génériques ============ */
section { padding: 90px 0; position: relative; }
.section-tag {
  display: inline-block;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 1.02;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; font-weight: 400; color: var(--red); }
.section-lead {
  font-size: 17px;
  max-width: 620px;
  color: var(--ink-soft);
}

/* ============ CATEGORIES (Faites votre choix) ============ */
.categories {
  background: #eac337;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 0 0 80px;
}
.categories .section-tag { color: var(--ink); font-weight: 800; }
.categories .section-title { color: var(--ink); }
.categories .section-title em { color: var(--red); }
.categories .section-lead { color: var(--ink); opacity: 0.85; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 48px;
}
/* Last card spans full width to balance 5 cards in 2 cols */
.cat-grid .cat-card:nth-child(5) {
  grid-column: span 2;
  aspect-ratio: 21 / 9;
  min-height: 200px;
}
.cat-grid .cat-card:nth-child(5) .cat-card-body {
  width: 60%;
}

.cat-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 16 / 11;
  min-height: 260px;
  border: 3px solid var(--ink);
  box-shadow: 0 6px 0 var(--ink);
}
.cat-card:hover {
  transform: translate(-2px, -4px);
  box-shadow: 0 10px 0 var(--ink);
}
.cat-card:active {
  transform: translate(0, 2px);
  box-shadow: 0 2px 0 var(--ink);
}

/* Per-category colors */
.cat-card.c-pizzas       { background: #c73e1d; }
.cat-card.c-crepes       { background: #e8a923; }
.cat-card.c-pates        { background: #2d5f3f; }
.cat-card.c-desserts     { background: #c8547f; }
.cat-card.c-texmex       { background: #d95f18; }

/* Textured pattern overlay */
.cat-card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cat-card-media::before {
  content: attr(data-icon);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 300px;
  opacity: 0.08;
  line-height: 1;
  filter: grayscale(0.7);
  pointer-events: none;
  z-index: 1;
}
.cat-card-media img {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 65%;
  height: auto;
  max-height: 90%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.25));
  transition: transform 0.5s ease;
}
.cat-card:hover .cat-card-media img {
  transform: translate(-4px, -8px) scale(1.04);
}
/* When image is present, hide emoji watermark */
.cat-card-media:has(img)::before { display: none; }

/* P5 logo watermark badge */
.cat-card-logo {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 54px;
  height: 54px;
  background: var(--bg);
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 3px 0 var(--ink);
}
.cat-card-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Body / text block */
.cat-card-body {
  position: relative;
  z-index: 3;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 70%;
}
.cat-card-num {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 11px;
  font-weight: 900;
  color: var(--ink);
  background: #fffaf0;
  padding: 8px 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 12px;
  transform: rotate(-3deg);
  --r: 5px;
  -webkit-mask:
    radial-gradient(var(--r) at 50% 0, #0000 98%, #000) 0 0 / calc(2 * var(--r)) 100% repeat-x,
    radial-gradient(var(--r) at 50% 100%, #0000 98%, #000) 0 0 / calc(2 * var(--r)) 100% repeat-x;
  -webkit-mask-composite: source-in;
  mask:
    radial-gradient(var(--r) at 50% 0, #0000 98%, #000) 0 0 / calc(2 * var(--r)) 100% repeat-x,
    radial-gradient(var(--r) at 50% 100%, #0000 98%, #000) 0 0 / calc(2 * var(--r)) 100% repeat-x;
  mask-composite: intersect;
  filter: drop-shadow(1.5px 2.5px 0 rgba(13,13,13,0.45));
}
.cat-card-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.cat-card-title em { font-style: italic; font-weight: 400; }
.cat-card-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.95);
  line-height: 1.4;
  font-weight: 500;
}

/* CTA arrow button at bottom */
.cat-card-cta {
  position: absolute;
  bottom: 20px;
  left: 24px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--yellow);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.2s ease;
}
.cat-card:hover .cat-card-cta {
  background: #fff;
  color: var(--ink);
}

/* ============ LOCATIONS ============ */
.locations { background: var(--ink); color: #f5f5f0; }
.locations .section-title { color: #f5f5f0; }
.locations .section-title em { color: var(--yellow); }
.locations .section-lead { color: rgba(245,245,240,0.75); }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.location-card {
  background: #151515;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.location-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.location-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #000;
}
.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.location-card:hover .location-photo img { transform: scale(1.04); }
.location-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.location-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--yellow);
  color: var(--ink);
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  z-index: 2;
}
.location-info { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.location-city {
  display: inline-block;
  align-self: flex-start;
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 900;
  color: #fff;
  background: var(--red);
  padding: 6px 14px 7px;
  border-radius: 6px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.12;
  transform: rotate(-1.5deg);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.5);
}
.location-address {
  color: rgba(245,245,240,0.7);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
}
.location-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 16px;
  border: 1px solid var(--yellow);
  border-radius: 6px;
  transition: all 0.2s;
  align-self: flex-start;
}
.location-phone:hover { background: var(--yellow); color: var(--ink); }
.location-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-self: flex-start;
}
.location-map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(245,245,240,0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  transition: all 0.2s;
}
.location-map:hover { border-color: var(--yellow); color: var(--yellow); }
.location-hours {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #2a2a2a;
  color: rgba(245,245,240,0.6);
  font-size: 12.5px;
}
.location-hours strong { color: rgba(245,245,240,0.9); }
.location-hours .hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 3px 0;
}
.location-hours .hours-row span { white-space: nowrap; }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-soft);
  color: var(--ink);
  padding: 60px 24px 24px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img { width: 70px; height: 70px; margin-bottom: 16px; }
.footer-brand p {
  color: var(--mute);
  max-width: 400px;
  line-height: 1.6;
  font-size: 14px;
}
.footer-col h4 {
  font-family: 'Fraunces', serif;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--mute);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--mute);
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom a {
  color: var(--mute);
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--red); }

/* ============ PAGE LÉGALE ============ */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 90px;
}
.legal-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 23px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p,
.legal-content li {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.legal-content p { margin-bottom: 12px; }
.legal-content ul { margin: 8px 0 16px 22px; }
.legal-content li { margin-bottom: 4px; }
.legal-content a { color: var(--red); }
.legal-todo {
  background: #fff6cc;
  border: 1px solid var(--yellow);
  padding: 1px 7px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.legal-note {
  background: var(--bg-alt);
  border-left: 3px solid var(--red);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  font-size: 14px;
}

/* ============ PAGE CATEGORIE (pizzas, desserts, etc.) ============ */
.category-hero {
  padding: 140px 24px 60px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.category-hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.category-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(44px, 6.6vw, 82px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.category-hero h1 em { font-style: italic; font-weight: 400; color: var(--red); }
.category-hero p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 17px;
}
.category-hero-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--mute);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 30px;
  transition: color 0.2s;
}
.category-hero-back:hover { color: var(--red); }

/* Subcategory navigation (sticky) */
.subcat-nav {
  position: sticky;
  top: 104px;
  z-index: 50;
  background: rgba(253,249,240,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.subcat-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.subcat-nav-inner::-webkit-scrollbar { display: none; }
.subcat-nav a {
  flex-shrink: 0;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--line);
  transition: all 0.2s;
  white-space: nowrap;
}
.subcat-nav a:hover, .subcat-nav a.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* Dishes grid */
.dishes-section { padding: 60px 0; border-bottom: 1px solid var(--line); }
.dishes-section:nth-of-type(even) { background: var(--bg-soft); }
.dishes-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  flex-wrap: wrap;
  gap: 12px;
}
.dishes-section-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.dishes-section-head h2 em { font-style: italic; color: var(--red); font-weight: 400; }
.dishes-section-head .price-note {
  font-size: 13px;
  color: var(--mute);
}
.dishes-section-head .price-note strong {
  font-family: 'Fraunces', serif;
  color: var(--red);
  font-weight: 700;
  font-size: 16px;
}

/* Dishes grid */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* ============ VUE LISTE (alternative à grille) ============ */
.category-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  align-items: start;
}

.category-main { min-width: 0; }

.category-gallery {
  position: sticky;
  top: 130px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gallery-head {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 2px;
}
.gallery-item {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.gallery-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 35%;
  display: block;
}
.gallery-item figcaption {
  padding: 9px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
}
/* Photos pizzas : fond noir avec nom intégré → plein cadre, sans bordure crème */
.gallery-item--full {
  background: transparent;
  border: none;
}
.gallery-empty {
  padding: 30px 20px;
  background: var(--bg-soft);
  border: 1px dashed var(--line);
  border-radius: 12px;
  text-align: center;
  font-size: 13px;
  color: var(--mute);
  font-style: italic;
  line-height: 1.5;
}

/* List view - dish rows */
.dishes-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dish-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  padding: 18px 8px;
  border-bottom: 1px dashed var(--line);
  align-items: start;
  transition: background 0.2s ease;
}
.dish-row:hover { background: var(--bg-soft); }
.dish-row:last-child { border-bottom: none; }
.dish-row-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 8px;
  flex-shrink: 0;
}
.dish-row-bullet.cream { background: #fff; border: 2px solid var(--ink); }
.dish-row-bullet.neutral { background: var(--ink); }
.dish-row-bullet.yellow { background: var(--yellow); }

/* Icônes de base tomate / crème fraîche (page pizzas) */
.base-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.dish-row .base-icon { margin-top: 1px; }
.base-tomate { background-image: url("images/icons/base-tomate.svg"); }
.base-creme  { background-image: url("images/icons/base-creme.svg"); }
.dish-row-content { min-width: 0; }
.dish-row-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 3px;
}
.dish-row-name em { font-style: italic; font-weight: 400; color: var(--red); }
.dish-row-desc {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.45;
}
.dish-row-price {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--red);
  font-size: 18px;
  white-space: nowrap;
  text-align: right;
  padding-top: 2px;
}
.dish-row-price small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.dish-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.dish-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}
.dish-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Placeholder when no photo */
.dish-image.placeholder {
  background:
    radial-gradient(circle at 30% 20%, rgba(214,40,40,0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(245,196,21,0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-alt), var(--bg-soft));
  position: relative;
}
.dish-image.placeholder::before {
  content: attr(data-icon);
  font-size: 60px;
  opacity: 0.22;
  filter: grayscale(0.3);
  line-height: 1;
}
.dish-image.placeholder::after {
  content: 'P5';
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 14px;
  color: rgba(13,13,13,0.25);
  letter-spacing: 0.1em;
}
.dish-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 100px;
  background: var(--ink);
  color: #fff;
  z-index: 2;
}
.dish-tag.tomate { background: var(--red); }
.dish-tag.creme { background: #fff; color: var(--ink); border: 1px solid var(--ink); }
.dish-tag.yellow { background: var(--yellow); color: var(--ink); }

.dish-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.dish-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.dish-name em { font-style: italic; font-weight: 400; color: var(--red); }
.dish-desc {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.45;
  flex: 1;
  margin-top: 2px;
}
.dish-prices {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-top: 12px;
}
.dish-prices .price {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
}
.dish-prices .price-alt {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--mute);
}
.dish-prices .price-label {
  font-size: 11px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 4px;
}

.compose-intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  margin-bottom: 48px;
}
.compose-option {
  padding: 28px 24px;
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  text-align: center;
}
.compose-option h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.compose-option .compose-price {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
}
.compose-option p { font-size: 13px; color: var(--mute); }

.compose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.compose-category h4 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.compose-category h4 .tarif {
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.compose-list {
  list-style: none;
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
}
.compose-list li {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.compose-list li::before {
  content: '';
  width: 3px;
  height: 3px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Dessert special boxes */
.mojito-box {
  background: var(--ink);
  color: #fff;
  padding: 32px;
  border-radius: 12px;
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.mojito-box h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--yellow);
  font-style: italic;
}
.mojito-box p { color: rgba(255,255,255,0.75); font-size: 14px; margin-top: 4px; }
.mojito-price {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  color: var(--yellow);
  font-weight: 700;
}

/* CTA bloc */
.cta-section {
  padding: 80px 24px;
  background: var(--bg-soft);
  text-align: center;
  border-top: 1px solid var(--line);
}
.cta-section .section-title { margin-bottom: 10px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-visual::before { width: 320px; height: 320px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .compose-intro { grid-template-columns: 1fr; }
  .cat-card-body { max-width: 75%; }
  /* Category layout stacks on tablet */
  .category-layout { grid-template-columns: 1fr; gap: 32px; }
  .category-gallery { position: static; flex-direction: row; overflow-x: auto; gap: 12px; padding-bottom: 8px; scrollbar-width: thin; }
  .category-gallery::-webkit-scrollbar { height: 4px; }
  .category-gallery .gallery-head { flex-shrink: 0; display: flex; align-items: center; border-bottom: none; padding: 0; margin: 0; padding-right: 16px; border-right: 2px solid var(--ink); margin-right: 8px; }
  .gallery-item { flex: 0 0 220px; }
  .gallery-empty { flex: 0 0 260px; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 104px; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 20px 24px;
    gap: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 99;
    border-top: 1px solid var(--line);
  }
  .nav-burger { display: block; }
  section { padding: 60px 0; }
  .hero { padding: 120px 24px 60px; min-height: auto; }
  .hero-title { font-size: 48px; }
  .cat-grid { grid-template-columns: 1fr; gap: 18px; }
  .cat-grid .cat-card { aspect-ratio: 16 / 11; min-height: 220px; }
  .cat-grid .cat-card:nth-child(5) { grid-column: auto; aspect-ratio: 16 / 11; }
  .cat-grid .cat-card:nth-child(5) .cat-card-body { width: auto; max-width: 75%; }
  .cat-card-title { font-size: 28px; }
  .cat-card-logo { width: 48px; height: 48px; top: 14px; right: 14px; }
  .cat-card-logo img { width: 34px; height: 34px; }
  .cat-card-media img { width: 60%; }
  .dishes-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .dish-image { aspect-ratio: 1 / 1; }
  .dish-body { padding: 14px 16px 18px; }
  .dish-name { font-size: 18px; }
  .compose-list { grid-template-columns: 1fr; }
  .mojito-box { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 400px) {
  .dishes-grid { grid-template-columns: 1fr; }
  .dish-image { aspect-ratio: 4 / 3; }
}

/* ============ 1. BANDEAU SUPÉRIEUR DÉFILANT ============ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 34px;
  background: var(--ink);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.topbar-track {
  display: flex;
  flex-shrink: 0;
  white-space: nowrap;
  will-change: transform;
  animation: topbarScroll 32s linear infinite;
}
.topbar-msg {
  flex-shrink: 0;
  color: var(--yellow);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@keyframes topbarScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ 3. HERO — note Google + mosaïque ============ */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 9px 17px;
  background: var(--ink);
  border-radius: 100px;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}
.hero-rating .stars { color: var(--yellow); letter-spacing: 1px; }
.hero-rating strong { color: var(--yellow); font-weight: 800; }

.hero-mosaic {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}
.mosaic-photo {
  aspect-ratio: 1;
  border-radius: 22px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
  opacity: 0;
  animation: mosaicFade 0.7s ease-out forwards;
}
.mosaic-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  display: block;
}
.mp-1 { transform: rotate(-5deg) translateY(4px);   animation-delay: 0.15s; }
.mp-2 { transform: rotate(4deg)  translateY(-16px); animation-delay: 0.30s; }
.mp-3 { transform: rotate(5deg)  translateY(16px);  animation-delay: 0.45s; }
.mp-4 { transform: rotate(-4deg) translateY(-4px);  animation-delay: 0.60s; }
@keyframes mosaicFade { to { opacity: 1; } }

.hero-logo-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 172px;
  height: 172px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ 4. BADGE PROMO « DÈS 5€ » ============ */
.hero-promo-badge {
  position: absolute;
  bottom: -26px;
  right: -6px;
  z-index: 5;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 6px 0 var(--ink);
  transform: rotate(-8deg);
  animation: promoPulse 2.8s ease-in-out infinite;
}
.hero-promo-badge::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,196,21,0.65) 0%, rgba(245,196,21,0) 70%);
  z-index: -1;
  animation: promoHalo 2.8s ease-in-out infinite;
}
.promo-big {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 31px;
  line-height: 0.85;
  color: var(--ink);
}
.promo-small {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-top: 5px;
}
@keyframes promoPulse {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50%      { transform: rotate(-8deg) scale(1.07); }
}
@keyframes promoHalo {
  0%, 100% { opacity: 0.45; transform: scale(0.85); }
  50%      { opacity: 0.9;  transform: scale(1.12); }
}

/* ============ 5. MARQUEE « NOS SPÉCIALITÉS » ============ */
.specialites-marquee {
  overflow: hidden;
  padding: 15px 0;
  background: #eac337;
  border-bottom: 3px solid var(--ink);
  margin-bottom: 44px;
}
.specialites-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  animation: specScroll 26s linear infinite;
}
.specialites-track span {
  flex-shrink: 0;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(22px, 3.2vw, 32px);
  color: var(--ink);
  padding: 0 26px;
}
@keyframes specScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ 6. PAGE PIZZAS — galerie fond noir ============ */
.pizza-photos {
  background: var(--ink);
  padding: 58px 24px 64px;
  border-bottom: 3px solid var(--ink);
}
.pizza-photos-head { text-align: center; margin-bottom: 36px; }
.pizza-photos-head .eyebrow {
  display: inline-block;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pizza-photos-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 46px);
  color: #fff;
  letter-spacing: -0.02em;
}
.pizza-photos-head h2 em { color: var(--yellow); font-style: normal; }
.pizza-photos-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.pizza-photo {
  position: relative;
  grid-column: span 2;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pizza-photo:nth-child(4) { grid-column: 2 / span 2; }
.pizza-photo:nth-child(5) { grid-column: 4 / span 2; }
.pizza-photo img { width: 100%; height: auto; display: block; }
.pizza-photo:hover {
  transform: scale(1.04);
  box-shadow: 0 0 0 3px var(--red), 0 16px 34px rgba(214,40,40,0.45);
  z-index: 2;
}

/* sidebar pizzas — 3 mini-photos en quinconce */
.gallery-mini { display: flex; flex-direction: column; gap: 16px; }
.gallery-mini figure {
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.16);
  transition: transform 0.3s ease;
}
.gallery-mini img { width: 100%; height: auto; display: block; }
.gallery-mini figure:nth-child(1) { transform: rotate(-3deg); }
.gallery-mini figure:nth-child(2) { transform: rotate(2.5deg); }
.gallery-mini figure:nth-child(3) { transform: rotate(-2deg); }
.gallery-mini figure:hover { transform: rotate(0deg) scale(1.03); }

/* ============ 7. PAGE PÂTES & SALADES — galerie ============ */
.ps-gallery { margin-top: 56px; }
.ps-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 280px));
  justify-content: center;
  gap: 20px;
}
.ps-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ps-photo img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.ps-photo:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0,0,0,0.15);
  z-index: 1;
}
.ps-photo-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: var(--ink);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 13px;
  border-radius: 7px;
}
.ps-photo-price {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: var(--yellow);
  color: var(--ink);
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 7px;
  border: 2px solid var(--ink);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.ps-photo:hover .ps-photo-price { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE — nouveaux composants ============ */
@media (max-width: 900px) {
  .hero-mosaic { max-width: 380px; }
  .hero-logo-wrap { width: 150px; height: 150px; }
  .pizza-photos-grid { grid-template-columns: repeat(2, 1fr); }
  .pizza-photo,
  .pizza-photo:nth-child(4),
  .pizza-photo:nth-child(5) { grid-column: auto; }
  .gallery-mini { flex-direction: row; }
  .gallery-mini figure { flex: 0 0 200px; }
}
@media (max-width: 700px) {
  .hero-promo-badge { width: 100px; height: 100px; bottom: -12px; right: 6px; }
  .promo-big { font-size: 25px; }
  .promo-small { font-size: 8.5px; }
  /* 8. Numéros de téléphone géants sur mobile */
  .location-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .location-phone {
    justify-content: center;
    font-size: 23px;
    font-weight: 800;
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    padding: 16px 14px;
    width: 100%;
  }
  .location-phone:hover { background: var(--red); color: #fff; }
  .location-map { justify-content: center; width: 100%; padding: 13px; }
}

/* Nouveaux composants — respect de prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .topbar-track,
  .specialites-track,
  .hero-promo-badge,
  .hero-promo-badge::before { animation: none; }
  .mosaic-photo { opacity: 1; animation: none; }
}
