/* ============================================================
   LOS BUD CBD — design system (navigation + pages complémentaires)
   Construit AUTOUR du système 3D existant (index.7d544b17.css
   reste la référence pour l'expérience 3D). Ajouté en complément.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --lb-vert: #266A13;
  --lb-vert-fonce: #16380B;
  --lb-vert-foret: #1E4F0E;
  --lb-orange: #FD7400;
  --lb-orange-fonce: #E06600;
  --lb-creme: #F6F2E9;
  --lb-papier: #FFFDF8;
  --lb-encre: #16220F;
  --lb-gris: #5C6652;
  --lb-sable: #EDE6D8;
  --lb-border: #E2DACA;
  --lb-vert-clair: #E8F1E2;
  --lb-shadow: 0 20px 45px rgba(22, 34, 15, .12);
  --lb-radius: 18px;
  --lb-font-display: 'Fraunces', Georgia, serif;
  --lb-font-body: 'Inter', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--lb-font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Logo (navbar) : mot LOS BUD CBD à côté du visuel ---------- */
#logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
#logo .lb-brand-text {
  font-family: var(--lb-font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  color: currentColor;
}
/* Sur l'accueil 3D, le thème sombre passe le texte du logo en blanc */
html.dark #logo,
.dark #logo { color: #fff; }
html.dark .menu ul.links li a,
.dark .menu ul.links li a { text-shadow: 0 1px 10px rgba(0, 0, 0, .5); }

/* Burger + voile : base (le panneau mobile est géré plus bas) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 13px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 14px rgba(38, 106, 19, .2);
  cursor: pointer;
  position: relative;
  z-index: 35;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--lb-vert);
  transition: transform .3s ease, opacity .3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(38, 106, 19, .45);
  z-index: 28;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
body.menu-open { overflow: hidden; }


/* ---------- Navigation top-droite ---------- */
.menu ul.links li a {
  border-bottom: 2px solid transparent;
  transition: border-color .3s ease, color .3s ease, background .3s ease;
}
.menu ul.links li a:hover,
.menu ul.links li a.is-active { border-bottom-color: var(--lb-orange); }
.menu ul.links li a.is-active { font-weight: 600; }

/* Sélecteur de langue : vestige technique conservé mais masqué */
.menu ul.links li.lb-lang-ghost { display: none !important; }

/* CTA principal « Nous trouver » */
.menu ul.links li a.menu-cta {
  display: inline-block;
  margin-left: .9rem;
  padding: .55rem 1.2rem;
  border-radius: 999px;
  border: 2px solid var(--lb-orange);
  background: var(--lb-orange);
  color: #fff !important;
  font-family: var(--lb-font-body);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.2;
  transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.menu ul.links li a.menu-cta:hover {
  background: var(--lb-orange-fonce);
  border-color: var(--lb-orange-fonce);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(253, 116, 0, .35);
}
.menu ul.links li a.menu-cta:active { transform: translateY(0); }

/* En-tête du panneau mobile + pied de panneau (masqués sur desktop) */
.menu ul.links li.lb-mobile-only { display: none; }

/* ---------- Chip « boutique » sur la page d'accueil ---------- */
.lb-chip {
  position: fixed;
  top: 8.6rem;
  left: 1.5rem;
  z-index: 18;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .95rem;
  border-radius: 999px;
  background: rgba(10, 20, 8, .55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  pointer-events: none;
  animation: lbChipIn .9s ease .9s both;
}
.lb-chip .lb-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7CF54F;
  animation: lbPulse 2.4s ease-out infinite;
}
.lb-chip .lb-chip-sep { opacity: .45; }
.lb-chip .lb-chip-live { opacity: .75; }
.lb-chip a { color: #fff; text-decoration: underline; text-underline-offset: 3px; pointer-events: auto; }
.lb-chip a:hover { color: var(--lb-orange); }

@keyframes lbPulse {
  0% { box-shadow: 0 0 0 0 rgba(124, 245, 79, .55); }
  70% { box-shadow: 0 0 0 9px rgba(124, 245, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(124, 245, 79, 0); }
}
@keyframes lbChipIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 768px) {
  .lb-chip { top: 9.6rem; left: 4rem; }
}

/* ============================================================
   MENU MOBILE — panneau immersif premium (accueil + pages)
   ============================================================ */
@media (max-width: 991px) {
  .menu-toggle { display: flex; }

  .menu ul.links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 86vw);
    margin: 0;
    padding: 5.4rem 2.2rem 2rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: .15rem;
    list-style: none;
    color: #fff;
    background: linear-gradient(165deg, var(--lb-vert-fonce) 0%, var(--lb-vert) 58%, var(--lb-vert-fonce) 100%);
    box-shadow: -16px 0 46px rgba(0, 0, 0, .4);
    transform: translateX(105%);
    transition: transform .48s cubic-bezier(.77, 0, .18, 1);
    z-index: 30;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .menu ul.links.visible { transform: translateX(0); }

  .menu ul.links li {
    margin: 0;
    opacity: 0;
    transform: translateX(26px);
    transition: opacity .45s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
  }
  .menu ul.links.visible li { opacity: 1; transform: none; }
  .menu ul.links.visible li:nth-child(2) { transition-delay: .06s; }
  .menu ul.links.visible li:nth-child(3) { transition-delay: .11s; }
  .menu ul.links.visible li:nth-child(4) { transition-delay: .16s; }
  .menu ul.links.visible li:nth-child(5) { transition-delay: .21s; }
  .menu ul.links.visible li:nth-child(6) { transition-delay: .26s; }
  .menu ul.links.visible li:nth-child(7) { transition-delay: .31s; }
  .menu ul.links.visible li:nth-child(8) { transition-delay: .36s; }

  .menu ul.links li a {
    display: block;
    padding: .5rem 0;
    border: none;
    color: #fff;
    font-family: var(--lb-font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 1.4;
  }
  .menu ul.links li a:hover,
  .menu ul.links li a.is-active { color: var(--lb-orange); border-bottom: none; }

  /* CTA en tête de panneau */
  .menu ul.links li.lb-menu-cta-item { order: -1; margin: 1.6rem 0 1.1rem; }
  .menu ul.links li.lb-menu-cta-item a.menu-cta {
    display: inline-flex;
    margin: 0;
    padding: .95rem 1.4rem;
    width: 100%;
    justify-content: center;
    font-size: 15px;
    font-family: var(--lb-font-body);
  }

  /* Titre du panneau */
  .menu ul.links li.lb-menu-head { order: -2; display: block; margin-bottom: .2rem; }
  .menu ul.links li.lb-menu-head span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
  }

  /* Pied de panneau : coordonnées boutique */
  .menu ul.links li.lb-menu-foot {
    order: 99;
    display: flex;
    flex-direction: column;
    gap: .35rem;
    margin-top: 2.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, .22);
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .85);
  }
  .menu ul.links li.lb-menu-foot .lb-menu-foot-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--lb-orange);
    margin-bottom: .3rem;
  }
  .menu ul.links li.lb-menu-foot a {
    display: inline-block;
    width: auto;
    padding: 0;
    color: #fff;
    font-family: var(--lb-font-body);
    font-size: 13.5px;
    font-weight: 600;
    border: none;
  }
  .menu ul.links li.lb-menu-foot a:hover { color: var(--lb-orange); }

  /* Sélecteur de langue : reste masqué (vestige) */
  .menu ul.links li.lb-lang-ghost { display: none !important; }
}

/* Burger accessible */
.menu-toggle:focus-visible,
.menu ul.links li a:focus-visible {
  outline: 3px solid var(--lb-orange);
  outline-offset: 3px;
}
/* ============================================================
   PAGES COMPLÉMENTAIRES — composants (lb-page)
   ============================================================ */
body.lb-page {
  min-height: 100vh;
  background: var(--lb-creme);
  color: var(--lb-encre);
  line-height: 1.6;
}

body.lb-page #logo {
  width: auto;
  color: var(--lb-vert);
}
body.lb-page #logo img { height: 52px; }
body.lb-page #logo .lb-brand-text { color: var(--lb-vert); }

body.lb-page .menu { color: var(--lb-vert); }
body.lb-page .menu ul.links li a { color: var(--lb-vert); }
body.lb-page .menu ul.links li a:hover,
body.lb-page .menu ul.links li a.is-active { color: var(--lb-vert-fonce); }

.lb-container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.lb-container-narrow { max-width: 860px; }

.lb-main { padding-top: 2rem; }

/* ---------- Hero ---------- */
.lb-hero {
  position: relative;
  padding: clamp(7.5rem, 13vh, 10.5rem) 1.5rem 4rem;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -12%, rgba(253, 116, 0, .16), transparent 60%),
    radial-gradient(900px 480px at 0% 0%, rgba(38, 106, 19, .2), transparent 55%),
    var(--lb-creme);
  border-bottom: 1px solid var(--lb-border);
}
.lb-hero h1 {
  margin-bottom: 1.1rem;
  color: var(--lb-vert-fonce);
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  font-weight: 500;
  letter-spacing: .05em;
}
.lb-hero .lb-hero-sub {
  margin: 0 auto;
  max-width: 640px;
  color: var(--lb-gris);
  font-size: 17px;
  line-height: 1.65;
}
.lb-hero .lb-hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; margin-top: 2.2rem; }

.lb-eyebrow {
  display: inline-block;
  margin-bottom: .9rem;
  color: var(--lb-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

/* ---------- Boutons ---------- */
.lb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.8rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--lb-font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.lb-btn svg { width: 18px; height: 18px; fill: currentColor; }
.lb-btn-primary { background: var(--lb-vert); color: #fff; }
.lb-btn-primary:hover { background: var(--lb-vert-fonce); transform: translateY(-2px); box-shadow: 0 14px 26px rgba(38, 106, 19, .28); }
.lb-btn-accent { background: var(--lb-orange); color: #fff; }
.lb-btn-accent:hover { background: var(--lb-orange-fonce); transform: translateY(-2px); box-shadow: 0 14px 26px rgba(253, 116, 0, .3); }
.lb-btn-ghost { border-color: var(--lb-vert); color: var(--lb-vert); background: transparent; }
.lb-btn-ghost:hover { background: var(--lb-vert); color: #fff; transform: translateY(-2px); }

/* ---------- Sections ---------- */
.lb-section { padding: 4.2rem 0; }
.lb-section-alt { background: var(--lb-papier); border-block: 1px solid var(--lb-border); }
.lb-section-head { max-width: 720px; margin: 0 auto 2.8rem; text-align: center; }
.lb-section-head h2 { margin-bottom: .7rem; color: var(--lb-vert-fonce); }
.lb-section-head p { margin: 0; color: var(--lb-gris); font-size: 16.5px; }

/* ---------- Grilles & cartes ---------- */
.lb-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .lb-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .lb-grid.lb-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.lb-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.8rem;
  background: var(--lb-papier);
  border: 1px solid var(--lb-border);
  border-radius: var(--lb-radius);
  box-shadow: var(--lb-shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.lb-card:hover { transform: translateY(-6px); box-shadow: 0 30px 55px rgba(22, 34, 15, .18); }
.lb-card .lb-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.2rem;
  border-radius: 15px;
  background: var(--lb-vert-clair);
  color: var(--lb-vert);
}
.lb-card .lb-card-icon svg { width: 27px; height: 27px; fill: currentColor; }
.lb-card h3 { margin-bottom: .55rem; color: var(--lb-vert-fonce); font-family: var(--lb-font-display); font-size: 1.4rem; font-weight: 500; }
.lb-card p { margin-bottom: .75rem; color: var(--lb-gris); font-size: 15px; line-height: 1.6; }
.lb-card .lb-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: auto; padding-top: .6rem; }
.lb-tag {
  padding: .28rem .7rem;
  border-radius: 999px;
  background: var(--lb-creme);
  border: 1px solid var(--lb-border);
  color: var(--lb-vert);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
}

/* ---------- Chiffres ---------- */
.lb-stats { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .lb-stats { grid-template-columns: repeat(3, 1fr); } }
.lb-stat {
  padding: 1.8rem 1.4rem;
  text-align: center;
  background: var(--lb-papier);
  border: 1px solid var(--lb-border);
  border-radius: var(--lb-radius);
}
.lb-stat .lb-stat-num {
  display: block;
  color: var(--lb-vert);
  font-family: var(--lb-font-display);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.1;
}
.lb-stat .lb-stat-label {
  display: block;
  margin-top: .5rem;
  color: var(--lb-gris);
  font-size: 14px;
  line-height: 1.4;
}

/* ---------- Frise (histoire) ---------- */
.lb-timeline { position: relative; padding-left: 2.1rem; border-left: 2px solid var(--lb-vert); }
.lb-step { position: relative; margin-bottom: 2.3rem; }
.lb-step:last-child { margin-bottom: 0; }
.lb-step::before {
  content: '';
  position: absolute;
  left: -2.6rem;
  top: .45rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lb-orange);
  border: 3px solid var(--lb-creme);
  box-shadow: 0 0 0 2px var(--lb-orange);
}
.lb-step h3 { margin-bottom: .4rem; color: var(--lb-vert-fonce); font-family: var(--lb-font-display); font-size: 1.3rem; }
.lb-step .lb-step-year {
  display: block;
  margin-bottom: .35rem;
  color: var(--lb-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.lb-step p { margin: 0; color: var(--lb-gris); font-size: 15.5px; line-height: 1.65; }

/* ---------- FAQ ---------- */
.lb-faq details {
  margin-bottom: .9rem;
  overflow: hidden;
  background: var(--lb-papier);
  border: 1px solid var(--lb-border);
  border-radius: 14px;
}
.lb-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 16px;
  color: var(--lb-encre);
}
.lb-faq summary::-webkit-details-marker { display: none; }
.lb-faq summary::after {
  content: '+';
  flex: 0 0 auto;
  color: var(--lb-orange);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}
.lb-faq details[open] summary::after { content: '\2013'; }
.lb-faq details[open] summary { border-bottom: 1px solid var(--lb-border); }
.lb-faq .lb-faq-body { padding: 0 1.4rem 1.3rem; color: var(--lb-gris); font-size: 15px; line-height: 1.7; }

/* ---------- Contact ---------- */
.lb-contact-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .lb-contact-grid { grid-template-columns: repeat(2, 1fr); } }
.lb-contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.6rem 1.5rem;
  background: var(--lb-papier);
  border: 1px solid var(--lb-border);
  border-radius: var(--lb-radius);
  box-shadow: var(--lb-shadow);
}
.lb-contact-card .lb-contact-ico {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--lb-vert-clair);
  color: var(--lb-vert);
}
.lb-contact-card .lb-contact-ico svg { width: 23px; height: 23px; fill: currentColor; }
.lb-contact-card h3 { margin: 0 0 .25rem; font-family: var(--lb-font-display); font-size: 1.15rem; color: var(--lb-vert-fonce); }
.lb-contact-card p { margin: 0; color: var(--lb-gris); font-size: 14.5px; line-height: 1.55; }
.lb-contact-card a { color: var(--lb-vert); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.lb-contact-card a:hover { color: var(--lb-orange); }

.lb-info-box {
  margin-top: 2rem;
  padding: 1.4rem 1.6rem;
  border-radius: 14px;
  background: var(--lb-papier);
  border: 1px solid var(--lb-border);
  color: var(--lb-gris);
  font-size: 14.5px;
  line-height: 1.7;
}
.lb-info-box strong { color: var(--lb-vert); }

/* ---------- Bande CTA ---------- */
.lb-cta-band {
  padding: 3.2rem 2rem;
  text-align: center;
  color: #fff;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--lb-vert-fonce), var(--lb-vert) 65%, var(--lb-vert-foret));
  box-shadow: var(--lb-shadow);
}
.lb-cta-band h2 { margin-bottom: .6rem; color: #fff; }
.lb-cta-band p { margin: 0 auto 1.8rem; max-width: 560px; color: rgba(255, 255, 255, .88); font-size: 16px; }
.lb-cta-band .lb-hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; }

/* ---------- Notes légales ---------- */
.lb-note {
  padding: 1rem 1.3rem;
  border-left: 3px solid var(--lb-orange);
  border-radius: 0 12px 12px 0;
  background: var(--lb-sable);
  color: var(--lb-gris);
  font-size: 13.5px;
  line-height: 1.65;
}

/* ---------- Footer ---------- */
.lb-footer {
  margin-top: 4.5rem;
  padding: 3.6rem 1.5rem 2.2rem;
  color: #CBDCC4;
  background: #111E0C;
}
.lb-footer a { color: #fff; text-decoration: none; }
.lb-footer a:hover { color: var(--lb-orange); }
.lb-footer-grid {
  display: grid;
  gap: 2.6rem;
  grid-template-columns: 1fr;
  max-width: 1120px;
  margin: 0 auto;
}
@media (min-width: 768px) { .lb-footer-grid { grid-template-columns: 1.5fr 1fr 1.2fr; } }
.lb-footer-brand img { height: 58px; margin-bottom: 1rem; }
.lb-footer-brand p { margin: 0; font-size: 14.5px; line-height: 1.65; color: #9DB391; }
.lb-footer h4 {
  margin-bottom: 1.1rem;
  color: #fff;
  font-family: var(--lb-font-display);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lb-footer ul { margin: 0; padding: 0; list-style: none; }
.lb-footer ul li { margin-bottom: .55rem; font-size: 14.5px; }
.lb-footer-legal {
  max-width: 1120px;
  margin: 2.8rem auto 0;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: 13px;
  line-height: 1.75;
  color: #8CA381;
}

/* ---------- Hero compacte pour les pages intérieures ---------- */
.lb-hero-small { padding: clamp(6.5rem, 10vh, 8.5rem) 1.5rem 2.8rem; }

/* ---------- Formulaire (contact) ---------- */
.lb-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--lb-papier);
  border: 1px solid var(--lb-border);
  border-radius: var(--lb-radius);
  box-shadow: var(--lb-shadow);
}
.lb-form-row { display: flex; flex-direction: column; gap: .45rem; }
.lb-form-row label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lb-vert);
}
.lb-form-row input,
.lb-form-row textarea {
  padding: .9rem 1.1rem;
  border: 1px solid var(--lb-border);
  border-radius: 12px;
  background: var(--lb-creme);
  font-family: var(--lb-font-body);
  font-size: 15px;
  color: var(--lb-encre);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.lb-form-row input:focus,
.lb-form-row textarea:focus {
  outline: none;
  border-color: var(--lb-vert);
  box-shadow: 0 0 0 3px rgba(38, 106, 19, .15);
}
.lb-form-actions { display: flex; }
.lb-form-note { margin: 0; font-size: 12.5px; color: var(--lb-gris); }



