/* ============================================================
   Cactus Café — style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* ---- Variables ---- */
:root {
  --green:       #326e3a;
  --green-dark:  #254f2b;
  --green-light: #4a8d54;
  --cream:       #f3e5c3;
  --cream-dark:  #e0cc9e;
  --white:       #fcfefe;
  --text:        #2c2a25;
  --text-light:  #6b6457;
  --ff-title:    'Playfair Display', Georgia, serif;
  --ff-body:     'Lato', Arial, sans-serif;
  --radius:      4px;
  --shadow:      none;
  --trans:       .25s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--green-dark); }
address { font-style: normal; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { font-family: var(--ff-title); line-height: 1.2; color: var(--green-dark); }
h1 { font-size: clamp(2.1rem, 6vw, 3.2rem); }
h2 { font-size: clamp(1.65rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.55rem); }
p  { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }
/* Justify all body text */
.section p, .traiteur-block p, .actu-body p, .tl-body p, .card p, .hl-box p { text-align: justify; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
  background: var(--green);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: .9rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { width: 36px; height: 44px; flex-shrink: 0; }
.logo-text {
  font-family: var(--ff-title);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  letter-spacing: .02em;
}
.logo-sub {
  display: block;
  font-family: var(--ff-body);
  font-size: .65rem;
  color: var(--cream);
  opacity: .75;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: .15rem;
  flex-wrap: wrap;
}
.main-nav a {
  font-size: .82rem;
  font-weight: 700;
  color: var(--cream);
  padding: .45rem .7rem;
  border-radius: var(--radius);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background var(--trans), color var(--trans);
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(243,229,195,.18);
  color: var(--white);
}
.btn-reserve {
  background: var(--cream) !important;
  color: var(--green) !important;
  border-radius: 50px !important;
  padding: .5rem 1.2rem !important;
  margin-left: .5rem;
  white-space: nowrap;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans) !important;
}
.btn-reserve:hover {
  background: var(--white) !important;
  color: var(--green-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--trans);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: rgba(50,110,58,0.85);
  color: var(--cream);
  padding: 5.5rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,255,255,.18), rgba(255,255,255,.08));
  pointer-events: none;
}
.hero-deco {
  position: absolute;
  right: -1rem;
  top: -2rem;
  font-family: var(--ff-title);
  font-size: 22rem;
  color: var(--cream);
  opacity: .04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.hero h1 { color: var(--cream); max-width: 820px; margin: 0 auto 1.5rem; }
.hero .lead {
  font-size: 1.08rem;
  color: rgba(243,229,195,.82);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: .9rem 2.2rem;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans), color var(--trans);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn-primary  { background: #1e3d22; color: var(--cream); border-color: #1e3d22; }
.btn-primary:hover  { background: #152b18; color: var(--cream); }
.btn-outline  { background: transparent; color: var(--cream); border-color: rgba(243,229,195,.7); }
.btn-outline:hover  { background: rgba(243,229,195,.12); color: var(--cream); border-color: var(--cream); }
.btn-green    { background: #1e3d22; color: var(--cream); border-color: #1e3d22; }
.btn-green:hover    { background: #152b18; color: var(--cream); }

/* ============================================================
   PAGE HERO (pages intérieures)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1e3d22;
  color: var(--cream);
  text-align: center;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.page-hero-pattern {
  position: absolute;
  inset: 0;
  background: #1e3d22;
  background-image: radial-gradient(circle, rgba(243,229,195,.11) 1px, transparent 1px);
  background-size: 22px 22px;
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,28,14,.15) 0%, rgba(10,28,14,.72) 55%, rgba(10,28,14,.90) 100%);
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 2.75rem;
}
.page-hero h1 { color: #fff; position: relative; text-shadow: 0 2px 16px rgba(0,0,0,.45); }
.page-hero p  { color: rgba(255,255,255,.82); max-width: 600px; margin: .75rem auto 0; position: relative; }
.breadcrumb {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .75rem;
  position: relative;
}
.breadcrumb a { color: rgba(255,255,255,.68); text-decoration: underline; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section        { padding: 5rem 1.5rem; }
.section-cream  { background: var(--cream); }
.section-green  { background: #1e3d22; color: var(--cream); }
.section-green h2,
.section-green h3 { color: var(--cream); }
.section-dark   { background: #111c12; color: var(--cream); }
.section-dark h2,
.section-dark h3 { color: var(--cream); }

.section-title         { text-align: center; margin-bottom: 3rem; }
.section-title h2      { margin-bottom: .6rem; }
.section-title .sub    { color: var(--text-light); font-style: italic; font-size: 1rem; }
.section-green .section-title .sub { color: rgba(243,229,195,.7); }

.divider       { width: 56px; height: 3px; background: var(--green); margin: .85rem auto; border-radius: 2px; }
.divider-cream { background: var(--cream); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: #f9f6f0;
  border-radius: 0;
  padding: 1.75rem;
  border-top: 2px solid var(--green);
}
.card-icon   { font-size: 1.5rem; margin-bottom: .6rem; display: block; }
.card h3     { color: var(--green-dark); margin-bottom: .5rem; font-size: 1.05rem; }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-block    { background: #fff; border-radius: 0; padding: 1.75rem; margin-bottom: 2rem; border-left: 3px solid var(--green); }
.menu-block-title {
  font-family: var(--ff-title);
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 1.25rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(50,110,58,.06);
  gap: 1rem;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-left  { flex: 1; }
.menu-item-name  { font-weight: 700; font-size: .97rem; }
.menu-item-desc  { font-size: .84rem; color: var(--text-light); margin-top: .1rem; display: block; }
.menu-item-price { font-family: var(--ff-title); font-weight: 600; color: var(--green); white-space: nowrap; font-size: 1.05rem; flex-shrink: 0; }
/* Menu item with thumbnail */
.menu-item-with-img { align-items: center; padding: .85rem 0; }
.menu-thumb {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 0;
  flex-shrink: 0;
  display: block;
}
.badge {
  display: inline-block;
  padding: .08rem .4rem;
  border-radius: 2px;
  font-size: .68rem;
  font-weight: 700;
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-left: .35rem;
  vertical-align: middle;
  white-space: nowrap;
}
.badge-halal     { background: transparent; color: var(--green); border: 1px solid var(--green); }
.badge-vege      { background: transparent; color: var(--green); border: 1px solid var(--green); }
.badge-poisson   { background: transparent; color: var(--green); border: 1px solid var(--green); }
.badge-bestseller{ background: var(--green); color: var(--cream); border: none; }

/* ============================================================
   BRUNCH PAGE
   ============================================================ */
.horaires-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(243,229,195,.2);
  border: 1.5px solid var(--cream);
  padding: .45rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  color: var(--cream);
  font-size: .92rem;
  margin-bottom: 1.5rem;
}
.brunch-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.brunch-card {
  background: #fff;
  border-radius: 0;
  padding: 0;
  border: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.brunch-card h3 {
  background: #1e3d22;
  color: rgba(243,229,195,.65);
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .25em;
  padding: 1.25rem 1.75rem .25rem;
  margin: 0;
}
.brunch-price {
  background: #1e3d22;
  color: var(--cream);
  font-family: var(--ff-title);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 1.75rem 1.5rem;
  margin: 0;
}
.brunch-price sup { display: none; }
.brunch-card .check-list {
  padding: 1.5rem 1.75rem;
  flex: 1;
  background: #fff;
}
.check-list { list-style: none; padding: 0; }
.check-list li {
  padding: .45rem 0;
  font-size: .9rem;
  color: var(--text);
  border-bottom: 1px solid rgba(50,110,58,.07);
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: none; }

/* ============================================================
   TRAITEUR PAGE
   ============================================================ */
.traiteur-block {
  background: #fff;
  border-radius: 0;
  padding: 0 0 3rem;
  border: none;
  border-bottom: 1px solid #ece8e0;
  margin-bottom: 3rem;
}
.traiteur-block h2 {
  color: var(--green-dark);
  margin-bottom: .75rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group   { margin-bottom: 1.25rem; }
label         { display: block; font-weight: 700; margin-bottom: .4rem; font-size: .88rem; color: var(--text); }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 1rem;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--trans);
  -webkit-appearance: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--green); }
textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.btn-submit {
  background: var(--green);
  color: var(--cream);
  border: none;
  padding: .85rem 2.2rem;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background var(--trans), transform var(--trans);
}
.btn-submit:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.ci-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; padding-top: .1rem; }
.ci-label { display: block; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--green); margin-bottom: .2rem; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 2rem; }
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ============================================================
   HISTOIRE PAGE
   ============================================================ */
.timeline { margin: 0; padding: 0; }
.timeline-item { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; }
.tl-year {
  font-family: var(--ff-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green);
  min-width: 72px;
  padding-top: .2rem;
  flex-shrink: 0;
}
.tl-body { border-left: 3px solid var(--cream-dark); padding-left: 1.5rem; }
.tl-body h3 { margin-bottom: .4rem; }

.values-grid { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 2rem; }
.value-card  {
  text-align: left;
  padding: 1.5rem 0;
  background: transparent;
  border-radius: 0;
  border-top: 1px solid #ece8e0;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.value-icon  { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.value-card h3 { color: var(--green-dark); margin-bottom: .3rem; font-size: 1rem; }

/* ============================================================
   ACTUALITÉS
   ============================================================ */
.actu-card { background: #f9f6f0; border-radius: 0; overflow: hidden; border-top: 3px solid var(--green); }
.actu-thumb {
  background: #1e3d22;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.actu-body { padding: 1.75rem; }
.actu-tag {
  display: inline-block;
  background: var(--green);
  color: var(--cream);
  padding: .12rem .6rem;
  border-radius: 2px;
  font-size: .68rem;
  font-weight: 700;
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}
.actu-meta { font-size: .84rem; color: var(--text-light); margin-bottom: .6rem; font-style: italic; }
.actu-body h2 { font-size: 1.3rem; margin-bottom: .75rem; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .88rem;
  color: var(--green);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: .75rem;
  transition: gap var(--trans);
}
.read-more:hover { gap: .7rem; }

/* ============================================================
   HIGHLIGHT BOX
   ============================================================ */
.hl-box {
  background: var(--cream);
  border-left: 3px solid var(--green);
  padding: 1.25rem 1.5rem;
  border-radius: 0;
  margin: 1.5rem 0;
}
.hl-box p { margin: 0; }
.hl-box-green {
  background: rgba(50,110,58,.1);
  border-left-color: var(--green);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #326e3a; color: var(--cream); padding: 3.5rem 1.5rem 1.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(243,229,195,.15);
}
.footer-logo { display: inline-block; margin-bottom: 1rem; background: transparent; }
.footer-logo img { height: 60px; display: block; background: transparent; }
.footer-col h4 { font-family: var(--ff-title); font-size: 1.05rem; color: var(--cream); margin-bottom: .9rem; }
.footer-col p,
.footer-col a { color: rgba(243,229,195,.72); font-size: .88rem; line-height: 1.9; }
.footer-col a:hover { color: var(--cream); }
.footer-nav   { list-style: none; padding: 0; }
.footer-nav li { margin-bottom: .25rem; }
.social-links { display: flex; flex-direction: column; gap: .6rem; margin-top: .5rem; }
.social-link  { display: flex; align-items: center; gap: .6rem; color: rgba(243,229,195,.72) !important; font-size: .88rem; transition: color var(--trans); }
.social-link:hover { color: var(--cream) !important; }
.social-ic {
  width: 30px; height: 30px;
  background: rgba(243,229,195,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
  transition: background var(--trans);
}
.social-link:hover .social-ic { background: rgba(243,229,195,.25); }
.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: .78rem;
  color: rgba(243,229,195,.4);
}
.footer-bottom a { color: rgba(243,229,195,.5); }
.footer-bottom a:hover { color: var(--cream); }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 600px) {
  .grid-3       { grid-template-columns: repeat(2, 1fr); }
  .values-grid  { grid-template-columns: repeat(2, 1fr); }
  .brunch-grid  { grid-template-columns: repeat(2, 1fr); }
  .form-row     { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .grid-2      { grid-template-columns: repeat(2, 1fr); }
  .grid-3      { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .brunch-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .header-inner { position: relative; flex-wrap: wrap; gap: .5rem; }
  .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    background: var(--green-dark);
    padding: .75rem 1rem 1.25rem;
    gap: .15rem;
    border-top: 1px solid rgba(243,229,195,.1);
    order: 3;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .75rem 1rem; border-radius: var(--radius); text-align: left; font-size: .9rem; }
  .btn-reserve { margin-left: 0 !important; text-align: center; margin-top: .35rem; }
  .logo img { height: 48px !important; }
  .traiteur-block { padding: 1.25rem; }
  .section { padding: 3rem 1rem; }
  .hero { padding: 3.5rem 1rem 3rem; }
  .plat-img { aspect-ratio: 16/9; }
  .grid-2, .grid-3 { gap: 1.25rem; }
}

/* ============================================================
   CARTE PAGE — sections jump nav & badges
   ============================================================ */
.section-jump {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.jump-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .97rem;
  text-decoration: none;
  border: 2px solid;
  transition: transform var(--trans), box-shadow var(--trans);
}
.jump-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.12); }
.jump-semaine  { background: #e8f5e9; color: #2e7d32; border-color: #2e7d32; }
.jump-brunch   { background: #fff8e1; color: #c97000; border-color: #c97000; }

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 1.5rem;
  letter-spacing: .03em;
}
.pill-semaine { background: #e8f5e9; color: #2e7d32; border: 1.5px solid #a5d6a7; }
.pill-brunch  { background: #fff8e1; color: #c97000; border: 1.5px solid #ffe082; }

.section-brunch-bg { background: #fffbf0; }

/* Best seller badge */
.bestseller {
  display: inline-block;
  background: var(--green);
  color: var(--cream);
  padding: .08rem .4rem;
  border-radius: 2px;
  font-size: .68rem;
  font-weight: 700;
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-left: .35rem;
  vertical-align: middle;
}

/* Offre spéciale */
.offre-box {
  background: #1e3d22;
  color: var(--cream);
  border-radius: 0;
  padding: 2rem 2.5rem;
  text-align: center;
  margin: 2.5rem 0;
}
.offre-box h3   { color: var(--cream); font-size: 1.3rem; margin-bottom: .35rem; }
.offre-price {
  font-family: var(--ff-title);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin: .4rem 0;
}
.offre-price sup { font-size: 1.3rem; }
.offre-detail { font-size: .95rem; color: rgba(243,229,195,.82); max-width: 480px; margin: .5rem auto 0; }

/* Formule inline note */
.formule-note {
  background: var(--cream);
  border-radius: 0;
  padding: .85rem 1.25rem;
  font-size: .88rem;
  margin-top: 1rem;
  font-style: italic;
  color: var(--green-dark);
  border-left: 3px solid var(--green);
}
.formule-note strong { font-style: normal; }

/* Extras grid */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: .6rem;
}
.extra-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 1rem;
  background: #fff;
  border-radius: 0;
  border-bottom: 1px solid rgba(50,110,58,.1);
  font-size: .9rem;
  gap: .5rem;
}
.extra-price { color: var(--green); font-weight: 700; white-space: nowrap; flex-shrink: 0; }

/* Plats brunch (rich cards) */
.plat-card {
  background: #fff;
  border: none;
  border-radius: 0;
  padding: 0;
  border-bottom: 1px solid #ece8e0;
  margin-bottom: 0;
  display: grid;
  grid-template-areas:
    "photo photo"
    "name  price"
    "desc  desc";
  grid-template-columns: 1fr auto;
}
.plat-card h3 {
  grid-area: name;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  padding: .85rem 0 0 1rem;
  margin: 0;
  align-self: start;
  line-height: 1.35;
}
.plat-desc {
  grid-area: desc;
  font-size: .83rem;
  color: var(--text-light);
  padding: .3rem 1rem 1.25rem;
  margin: 0;
  line-height: 1.6;
}
.plat-price {
  grid-area: price;
  font-family: var(--ff-title);
  font-weight: 700;
  color: var(--green);
  font-size: 1.35rem;
  padding: .85rem 1rem 0 .5rem;
  margin: 0;
  white-space: nowrap;
  align-self: start;
}
.plat-card.sucre h3 { color: var(--text); }
.plat-card.sucre .plat-price { color: var(--green); }

/* Dish photos */
.plat-img {
  grid-area: photo;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 0;
  display: block;
  margin: 0;
}

/* Equal-height actu cards — links pinned to bottom */
.grid-3 .actu-card { display: flex; flex-direction: column; }
.grid-3 .actu-card .actu-body { flex: 1; display: flex; flex-direction: column; }
.grid-3 .actu-card .actu-body .read-more { margin-top: auto; padding-top: .75rem; }
.grid-3 .actu-card .actu-body > p:last-of-type { flex: 1; }

/* Formule box (bagel/poke) — same visual as offre-box */
.formule-offre {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-top: 1.25rem;
  box-shadow: 0 4px 16px rgba(50,110,58,.2);
  font-size: .92rem;
}
.formule-offre p { color: var(--cream); margin: 0; text-align: left; }
.formule-offre strong { color: var(--white); }

