/* Le Petit Break — feuille de style publique (design émeraude/or/orange) */
:root {
  --emeraude: #1b7a52; --emeraude-d: #14603f; --emeraude-dd: #0d4a31;
  --or: #e7a92b; --or-l: #f3c860; --orange: #e8801c;
  --creme: #fbefe2; --creme-2: #f6e4d0;
  --ink: #2a1f14; --ink-soft: #6b5a48; --line: #ecdcc8; --white: #fff;
  --shadow-sm: 0 2px 8px rgba(42,31,20,.06); --shadow-md: 0 12px 30px rgba(42,31,20,.10); --shadow-lg: 0 24px 60px rgba(13,74,49,.18);
  --radius: 18px; --radius-lg: 28px; --container: 1180px; --section-y: clamp(4rem,9vw,7.5rem);
  --font-body: 'Poppins',system-ui,-apple-system,'Segoe UI',sans-serif;
  --font-display: 'Fraunces','Georgia',serif;
}
* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--creme); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; color: var(--emeraude-dd); letter-spacing: -.01em; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); }
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--or); border-radius: 2px; }
.section-head { max-width: 640px; margin-bottom: clamp(2rem,4vw,3.25rem); }
.section-head h2 { font-size: clamp(2rem,4.6vw,3.1rem); margin-top: .6rem; }
.section-head p { margin-top: .9rem; color: var(--ink-soft); font-size: 1.05rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.textured { background-color: var(--creme); background-image: url('/brand/triangles.svg'); background-size: 260px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; font-family: var(--font-body); font-weight: 600; font-size: .98rem; padding: .9rem 1.6rem; border-radius: 999px; border: none; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; line-height: 1; }
.btn svg { width: 1.1em; height: 1.1em; }
.btn-primary { background: linear-gradient(135deg,var(--orange),#cf6a10); color: #fff; box-shadow: 0 10px 24px rgba(232,128,28,.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(232,128,28,.42); }
.btn-emeraude { background: var(--emeraude); color: #fff; box-shadow: 0 10px 24px rgba(27,122,82,.28); }
.btn-emeraude:hover { transform: translateY(-2px); background: var(--emeraude-d); }
.btn-ghost { background: transparent; color: var(--emeraude-dd); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--emeraude); background: #fff; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s, transform .7s; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; } }

/* Bandeau doré */
.wave { line-height: 0; width: 100%; }
.wave svg { width: 100%; height: clamp(32px,5vw,60px); display: block; }
.wave.flip svg { transform: scaleY(-1); }

/* Wordmark (quand pas de logo chargé) */
.brand-word { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--emeraude-dd); line-height: 1; letter-spacing: -.01em; }
.brand-word.light { color: var(--creme); }

/* Placeholders (tenant sans produits / sans photo) */
.ph-block { width: 100%; height: 100%; display: grid; place-items: center; text-align: center; background-color: var(--creme-2); background-image: url('/brand/triangles.svg'); background-size: 170px; color: var(--emeraude-dd); font-family: var(--font-display); font-size: 1.15rem; padding: 1rem; }

/* Bannière promo */
.promo-banner { background: linear-gradient(135deg,var(--or),var(--orange)); color: #fff; text-align: center; padding: .6rem 1rem; font-weight: 600; font-size: .92rem; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(251,239,226,.86); backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: box-shadow .25s, background .25s, border-color .25s; }
.site-header.scrolled { background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm); border-color: var(--line); }
.site-header .bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }
.site-header .brand img { height: 52px; width: auto; object-fit: contain; }
.site-header .nav { display: flex; align-items: center; gap: 1.6rem; }
.site-header .nav > a { font-weight: 500; font-size: .96rem; color: var(--ink); position: relative; padding: .2rem 0; }
.site-header .nav > a::after { content: ''; position: absolute; left: 0; bottom: -3px; width: 0; height: 2px; background: var(--orange); border-radius: 2px; transition: width .25s; }
.site-header .nav > a:hover { color: var(--emeraude); }
.site-header .nav > a:hover::after { width: 100%; }
.nav-cta { padding: .62rem 1.2rem; font-size: .92rem; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2.5px; background: var(--emeraude-dd); border-radius: 3px; transition: transform .3s, opacity .2s; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (max-width: 860px) {
  .burger { display: flex; }
  .site-header .nav { position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: #fff; padding: .5rem 1.25rem 1.5rem; box-shadow: var(--shadow-md); transform: translateY(-140%); transition: transform .32s cubic-bezier(.4,0,.2,1); border-bottom: 3px solid var(--or); }
  .site-header .nav.open { transform: translateY(0); }
  .site-header .nav > a { padding: .95rem .4rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-cta { margin-top: 1rem; justify-content: center; padding: .85rem; font-size: 1rem; }
}

/* Hero */
.hero { position: relative; background: radial-gradient(130% 120% at 15% 0%,#1f8a5d 0%,var(--emeraude-dd) 68%); color: var(--creme); padding-top: clamp(2.5rem,6vw,4.5rem); overflow: hidden; isolation: isolate; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: url('/brand/triangles.svg'); background-size: 240px; opacity: .22; mix-blend-mode: overlay; z-index: -1; }
.hero .glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: -1; }
.hero .glow-a { width: 380px; height: 380px; background: rgba(231,169,43,.5); top: -120px; right: -60px; }
.hero .glow-b { width: 300px; height: 300px; background: rgba(232,128,28,.4); bottom: 40px; left: -80px; }
.hero .grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4rem); align-items: center; padding-bottom: clamp(3rem,6vw,5rem); }
.hero .eyebrow { color: var(--or-l); } .hero .eyebrow::before { background: var(--or-l); }
.hero h1 { color: #fff; font-size: clamp(2.6rem,6.2vw,4.6rem); margin: .7rem 0 0; }
.hero h1 .accent { color: var(--or-l); font-style: italic; }
.hero .copy p { margin-top: 1.2rem; max-width: 42ch; font-size: 1.1rem; color: rgba(251,239,226,.9); }
.hero .cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.hero .chips { list-style: none; display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2.2rem; }
.hero .chips li { display: inline-flex; align-items: center; gap: .5rem; font-size: .9rem; font-weight: 500; color: rgba(251,239,226,.92); }
.hero .chips svg { color: var(--or-l); }
.hero .visual { position: relative; justify-self: center; width: min(100%,420px); aspect-ratio: 4/5; }
.hero .ring { position: absolute; inset: -6%; border-radius: 40% 60% 58% 42%/52% 44% 56% 48%; background: linear-gradient(150deg,rgba(231,169,43,.9),rgba(232,128,28,.75)); box-shadow: var(--shadow-lg); animation: morph 14s ease-in-out infinite; }
.hero .photo { position: absolute; inset: 5%; border-radius: 34% 66% 60% 40%/48% 44% 56% 52%; overflow: hidden; border: 6px solid rgba(255,255,255,.85); box-shadow: var(--shadow-lg); animation: morph 14s ease-in-out infinite; }
.hero .photo img { width: 100%; height: 100%; object-fit: cover; }
@keyframes morph { 0%,100% { border-radius: 40% 60% 58% 42%/52% 44% 56% 48%; } 50% { border-radius: 58% 42% 44% 56%/46% 58% 42% 54%; } }
.badge-price { position: absolute; right: -4%; bottom: 12%; background: #fff; color: var(--emeraude-dd); border-radius: 16px; padding: .7rem 1.1rem; box-shadow: var(--shadow-md); text-align: center; line-height: 1.1; border: 2px solid var(--or); }
.badge-price strong { display: block; font-family: var(--font-display); font-size: 1.25rem; color: var(--orange); }
.badge-price span { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.badge-star { position: absolute; left: -6%; top: 8%; display: inline-flex; align-items: center; gap: .35rem; background: var(--emeraude); color: #fff; font-size: .8rem; font-weight: 600; padding: .5rem .85rem; border-radius: 999px; box-shadow: var(--shadow-md); }
.badge-star svg { color: var(--or-l); }
@media (max-width: 860px) { .hero .grid { grid-template-columns: 1fr; text-align: center; } .hero .eyebrow, .hero .cta, .hero .chips { justify-content: center; } .hero .copy p { margin-inline: auto; } .hero .visual { order: -1; width: min(78%,320px); } }

/* About */
.about .grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem,6vw,5rem); align-items: center; }
.about .media { position: relative; }
.about .frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 8px solid #fff; aspect-ratio: 4/5; max-width: 460px; }
.about .frame img { width: 100%; height: 100%; object-fit: cover; }
.about .float-card { position: absolute; right: -8px; bottom: -20px; display: flex; align-items: center; gap: .75rem; background: #fff; padding: .85rem 1.15rem; border-radius: 16px; box-shadow: var(--shadow-md); border-left: 4px solid var(--or); }
.about .float-card svg { color: var(--emeraude); }
.about .float-card strong { display: block; color: var(--emeraude-dd); font-family: var(--font-display); font-size: 1.05rem; }
.about .float-card span { font-size: .82rem; color: var(--ink-soft); }
.about .copy {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(2px);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}
.about .copy p { color: var(--ink-soft); margin-bottom: 1.1rem; font-size: 1.05rem; }
.about .copy p strong { color: var(--emeraude-dd); }
.about .stats { display: flex; flex-wrap: wrap; gap: 2.2rem; margin-top: 2rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.about .stat strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--orange); line-height: 1; }
.about .stat span { font-size: .88rem; color: var(--ink-soft); }
@media (max-width: 860px) { .about .grid { grid-template-columns: 1fr; } .about .frame { margin-inline: auto; } .about .float-card { right: 12px; } }

/* Products */
.products .grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); gap: 1.6rem; }
.card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .28s, box-shadow .28s, opacity .7s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card figure { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #f3ede3; }
.card figure .zoom-trigger { display: block; width: 100%; height: 100%; padding: 0; margin: 0; border: none; background: none; cursor: zoom-in; position: relative; }
.card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card figure.contain { background-color: var(--creme); background-image: url('/brand/triangles.svg'); background-size: 180px; }
.card figure.contain img { object-fit: contain; padding: .5rem; }
.card:hover figure img { transform: scale(1.05); }
.zoom-hint { position: absolute; bottom: 10px; right: 10px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--emeraude-dd); box-shadow: var(--shadow-sm); opacity: 0; transform: translateY(6px); transition: opacity .25s, transform .25s; pointer-events: none; }
.card:hover .zoom-hint { opacity: 1; transform: none; }
.card .tag { position: absolute; top: 12px; left: 12px; background: linear-gradient(135deg,var(--or-l),var(--or)); color: var(--emeraude-dd); font-weight: 700; font-size: .78rem; padding: .35rem .7rem; border-radius: 999px; box-shadow: var(--shadow-sm); }
.card .body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card .body h3 { font-size: 1.28rem; }
.card .tagline { font-weight: 600; font-size: .92rem; margin-top: .25rem; }
.card .desc { color: var(--ink-soft); font-size: .93rem; margin-top: .7rem; }
.card .ingredients { font-size: .8rem; color: var(--ink-soft); margin-top: .9rem; padding-top: .9rem; border-top: 1px dashed var(--line); line-height: 1.5; }
.card .ingredients span { display: block; text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; font-weight: 700; color: var(--emeraude); margin-bottom: .15rem; }
.card .body .order { margin-top: 1.2rem; width: 100%; }
.cta-full { text-align: center; margin-top: 3rem; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1100; display: none; align-items: safe center; justify-content: safe center; overflow-y: auto; padding: clamp(3.5rem,6vw,4.5rem) clamp(1rem,4vw,3rem) clamp(1.5rem,4vw,3rem); background: rgba(13,74,49,.82); backdrop-filter: blur(6px); }
.lightbox.open { display: flex; animation: lbfade .25s; }
@keyframes lbfade { from { opacity: 0; } }
.lb-inner { margin: auto; max-width: 100%; aspect-ratio: auto; overflow: visible; background: none; display: flex; flex-direction: column; align-items: center; gap: .85rem; flex: 0 0 auto; }
.lb-inner img { max-width: min(92vw,860px); max-height: min(72vh,720px); width: auto; height: auto; object-fit: contain; border-radius: 14px; border: 5px solid rgba(255,255,255,.9); box-shadow: var(--shadow-lg); background: #fff; animation: lbpop .28s; }
@keyframes lbpop { from { transform: scale(.94); opacity: 0; } }
.lb-inner figcaption { color: var(--creme); font-family: var(--font-display); font-size: 1.15rem; text-align: center; }
.lb-close { position: absolute; top: 1rem; right: 1.2rem; width: 44px; height: 44px; border: none; border-radius: 50%; background: rgba(255,255,255,.15); color: #fff; font-size: 1.2rem; cursor: pointer; }
.lb-close:hover { background: var(--orange); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border: none; border-radius: 50%; background: rgba(255,255,255,.16); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background .2s; z-index: 2; }
.lb-nav:hover { background: var(--orange); }
.lb-prev { left: clamp(.6rem,3vw,2rem); } .lb-next { right: clamp(.6rem,3vw,2rem); }
@media (max-width: 520px) { .lb-nav { width: 44px; height: 44px; font-size: 1.6rem; background: rgba(255,255,255,.24); } }

/* Template services : carte devis (hero) + cartes prestation */
.hero .visual:has(.quote-card) { aspect-ratio: auto; display: grid; place-items: center; }
.quote-card { background: #fff; border-radius: var(--radius-lg); padding: 2.1rem 1.8rem; box-shadow: var(--shadow-lg); text-align: center; color: var(--ink); width: min(100%, 380px); }
.quote-card .qc-icon { width: 64px; height: 64px; margin: 0 auto 1rem; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--or-l), var(--or)); color: var(--emeraude-dd); }
.quote-card strong { display: block; font-family: var(--font-display); font-size: 1.4rem; color: var(--emeraude-dd); margin-bottom: .5rem; }
.quote-card p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.3rem; }
.card.service .body { padding: 1.6rem 1.5rem; }
.card.service .from-price { margin-top: .9rem; padding-top: .9rem; border-top: 1px dashed var(--line); font-size: .9rem; color: var(--ink-soft); }
.card.service .from-price strong { color: var(--orange); font-size: 1.08rem; }
.card.service .order { margin-top: 1.2rem; width: 100%; }
.overlay .prow { cursor: pointer; }

/* Quality */
.quality-wrap { position: relative; background: radial-gradient(120% 130% at 80% 10%,#1f8a5d 0%,var(--emeraude-dd) 70%); color: var(--creme); }
.quality { position: relative; isolation: isolate; }
.quality .pattern { position: absolute; inset: 0; background-image: url('/brand/triangles.svg'); background-size: 240px; opacity: .18; mix-blend-mode: overlay; z-index: -1; }
.quality .section-head h2 { color: #fff; }
.quality .section-head p { color: rgba(251,239,226,.85); }
.quality .eyebrow { color: var(--or-l); } .quality .eyebrow::before { background: var(--or-l); }
.quality .grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 1.4rem; }
.value { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 1.9rem 1.5rem; text-align: center; backdrop-filter: blur(4px); transition: transform .28s, background .28s; }
.value:hover { transform: translateY(-6px); background: rgba(255,255,255,.12); }
.value .ic { width: 62px; height: 62px; margin: 0 auto 1.1rem; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg,var(--or-l),var(--or)); color: var(--emeraude-dd); box-shadow: 0 8px 20px rgba(231,169,43,.35); }
.value h3 { color: #fff; font-size: 1.15rem; }
.value p { margin-top: .5rem; font-size: .92rem; color: rgba(251,239,226,.82); }

/* Contact */
.contact .grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.contact .cards { list-style: none; display: grid; gap: .9rem; margin-top: .5rem; }
.contact .cards li { display: flex; align-items: center; gap: .9rem; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: .85rem 1rem; box-shadow: var(--shadow-sm); }
.contact .ic { flex: none; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--creme-2); color: var(--emeraude); }
.contact .k { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); }
.contact .cards a, .contact .cards .v { font-weight: 600; color: var(--emeraude-dd); }
.contact .cards a:hover { color: var(--orange); }
.contact .socials { display: flex; gap: .7rem; margin-top: 1.4rem; }
.contact .socials a { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--emeraude); color: #fff; transition: transform .2s, background .2s; }
.contact .socials a:hover { transform: translateY(-3px); background: var(--orange); }
.contact .form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem,3vw,2.2rem); box-shadow: var(--shadow-md); display: grid; gap: 1rem; }
.contact .two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact .field { display: grid; gap: .35rem; }
.contact label { font-size: .82rem; font-weight: 600; color: var(--emeraude-dd); }
.contact input, .contact select, .contact textarea { font-family: inherit; font-size: .95rem; padding: .75rem .9rem; border: 1.5px solid var(--line); border-radius: 10px; background: #fffdfa; color: var(--ink); }
.contact input:focus, .contact select:focus, .contact textarea:focus { outline: none; border-color: var(--emeraude); box-shadow: 0 0 0 3px rgba(27,122,82,.12); }
.contact textarea { resize: vertical; }
.contact .form .btn { margin-top: .3rem; justify-content: center; }
@media (max-width: 860px) { .contact .grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .contact .two { grid-template-columns: 1fr; } }

/* Footer */
.footer { position: relative; background: var(--emeraude-dd); color: rgba(251,239,226,.82); isolation: isolate; padding-top: 3.5rem; }
.footer .pattern { position: absolute; inset: 0; background-image: url('/brand/triangles.svg'); background-size: 260px; opacity: .1; z-index: -1; }
.footer .top { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer .brand-col img { height: 62px; width: auto; margin-bottom: 1rem; }
.footer .brand-col p { max-width: 34ch; font-size: .92rem; }
.footer .col h3 { color: var(--or-l); font-size: 1.05rem; margin-bottom: 1rem; }
.footer .col a, .footer .col .line { display: flex; align-items: center; gap: .5rem; padding: .32rem 0; color: rgba(251,239,226,.82); font-size: .92rem; }
.footer .col a:hover { color: var(--or-l); }
.footer .socials { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer .socials a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); color: var(--creme); transition: transform .2s, background .2s; }
.footer .socials a:hover { transform: translateY(-3px); background: var(--orange); }
.footer .bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.4rem 0 2rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .84rem; }
.footer .powered { display: inline-flex; align-items: center; gap: .45rem; color: rgba(251,239,226,.7); }
.footer .powered svg { color: var(--or-l); } .footer .powered strong { color: var(--or-l); font-weight: 600; }
@media (max-width: 760px) { .footer .top { grid-template-columns: 1fr; gap: 2rem; } .footer .bottom { justify-content: center; text-align: center; } }

/* FAB + Order modal */
.fab { position: fixed; bottom: 1.6rem; right: 1.6rem; width: 60px; height: 60px; border-radius: 50%; border: none; background: linear-gradient(135deg,#25d366,#128c7e); color: #fff; display: grid; place-items: center; cursor: pointer; box-shadow: 0 8px 24px rgba(18,140,126,.5); z-index: 90; transition: transform .2s; }
.fab:hover { transform: scale(1.08); }
.overlay { position: fixed; inset: 0; background: rgba(13,74,49,.55); backdrop-filter: blur(3px); display: none; align-items: center; justify-content: center; padding: 1rem; z-index: 1000; }
.overlay.open { display: flex; }
.modal { background: #fff; border-radius: var(--radius-lg); width: 100%; max-width: 520px; max-height: 92vh; overflow-y: auto; padding: 2rem 1.8rem; position: relative; box-shadow: var(--shadow-lg); border-top: 5px solid var(--or); animation: pop .28s; }
@keyframes pop { from { transform: translateY(24px); opacity: 0; } }
.modal .close { position: absolute; top: 1rem; right: 1rem; width: 34px; height: 34px; border: none; border-radius: 50%; background: var(--creme-2); color: var(--ink); cursor: pointer; font-size: 1rem; }
.modal .close:hover { background: var(--or-l); }
.modal h2 { font-size: 1.35rem; margin-bottom: .4rem; }
.modal .hint { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.dots { display: flex; gap: .5rem; margin-bottom: 1.4rem; }
.dot { flex: 1; height: 5px; border-radius: 3px; background: var(--line); transition: background .3s; }
.dot.on { background: var(--emeraude); }
.step { display: none; } .step.on { display: block; }
.selector { display: grid; gap: .6rem; margin-bottom: 1.1rem; }
.prow { display: flex; align-items: center; gap: .6rem; background: #faf6ef; border: 2px solid transparent; border-radius: 12px; padding: .65rem .85rem; transition: border-color .2s, background .2s; }
.prow.on { border-color: var(--emeraude); background: #f0faf4; }
.prow label { flex: 1; font-weight: 600; font-size: .92rem; color: var(--ink); }
.pprice { font-size: .78rem; font-weight: 700; color: var(--orange); }
.qty { display: flex; align-items: center; gap: .5rem; }
.qty button { width: 30px; height: 30px; border: none; border-radius: 50%; background: var(--emeraude); color: #fff; font-size: 1.1rem; font-weight: 700; cursor: pointer; display: grid; place-items: center; }
.qty button:hover { background: var(--emeraude-d); }
.qty span { min-width: 22px; text-align: center; font-weight: 700; }
.total { display: flex; justify-content: space-between; align-items: center; background: linear-gradient(135deg,var(--emeraude),var(--emeraude-dd)); color: #fff; padding: .7rem 1rem; border-radius: 12px; font-weight: 700; }
.fields { display: grid; gap: .5rem; }
.fields input, .fields textarea { font-family: inherit; font-size: .95rem; padding: .75rem .9rem; border: 1.5px solid var(--line); border-radius: 10px; background: #fffdfa; width: 100%; }
.fields input:focus, .fields textarea:focus { outline: none; border-color: var(--emeraude); box-shadow: 0 0 0 3px rgba(27,122,82,.12); }
.err { color: #d7492e; font-size: .8rem; margin: -.15rem 0 .4rem; display: none; } .err.show { display: block; }
.recap { background: #f0faf4; border: 1.5px solid var(--emeraude); border-radius: 12px; padding: 1rem; font-size: .9rem; line-height: 1.7; margin-bottom: 1rem; }
.recap strong { color: var(--emeraude-dd); }
.nav-btns { display: flex; gap: .7rem; margin-top: 1.1rem; }
.nav-btns .btn { flex: 1; justify-content: center; }
.send { width: 100%; justify-content: center; }
