/*
Theme Name: Boissonnot
Theme URI: https://earlboissonnot.com
Author: emandarine
Description: Thème WordPress sur mesure pour EARL Boissonnot
Author URI: https://emandarine.com
Version: 2.0
*/

/* ================================================================
   EARL Boissonnot — Custom CSS
   Base framework : Bulma 0.9.4
   Custom font-stack : Fraunces / Poppins / Montserrat
   ================================================================ */

/* ----------------------------------------------------------------
   CSS VARIABLES
   ---------------------------------------------------------------- */
:root {
  --green-teal: #a1dbd1;
  /* CTA buttons  */
  --green-accent: #aadf65;
  /* Nav active, overlines, icons */
  --navy: #1C244B;
  /* Section headings */
  --gray-text: #54595f;
  /* Muted text, gray overlines */
  --body-text: #101010;
  /* Dark body text */
  --light-green-bg: #e8f4e0;
  /* Hero / products / testimonials bg */
  --footer-bg: #0a0a0a;
  --white: #ffffff;
  --border-light: #e2e2e2;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

/* ----------------------------------------------------------------
   RESET / BASE
   ---------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

b,
strong {
  font-weight: 700;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--body-text);
  background: var(--white);
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

svg.fas,
svg.far,
svg.fab {
  fill: currentColor;
  display: inline-block;
  height: 1em;
  vertical-align: -0.125em;
}

svg {
  fill: currentColor;
}

/* ----------------------------------------------------------------
   UTILITY — overlines & titles (reused across sections)
   ---------------------------------------------------------------- */
.section-overline {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 4.7px;
  text-transform: uppercase;
  line-height: 1.7em;
}

.section-overline.green {
  color: var(--green-accent);
}

.section-overline.gray {
  color: var(--gray-text);
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2em;
  letter-spacing: 0;
  color: var(--navy);
}

.section-title.navy {
  color: var(--navy);
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray-text);
  font-style: italic;
}

.section-text {
  font-family: 'Poppins', sans-serif;
  font-size: 21px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.5em;
}

.section-text p+p {
  margin-top: 14px;
}

/* ----------------------------------------------------------------
   FADE-IN SCROLL ANIMATION
   ---------------------------------------------------------------- */
.fade-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-ready.visible {
  opacity: 1;
  transform: translateY(0);
}



/* ----------------------------------------------------------------
   HEADER
   ---------------------------------------------------------------- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
}


/* ----------------------------------------------------------------
   TOP BAR
   ---------------------------------------------------------------- */
.topbar {
  padding: 10px 0 0 0;
}

.topbar-inner {
  border-bottom: 1px solid var(--body-text);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 20px 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--body-text);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 300;
  transition: color 0.2s;
}

.topbar-item:hover {
  color: var(--green-accent);
}

.topbar-item svg {
  color: var(--green-accent);
  font-size: 20px;
}

/* ----------------------------------------------------------------
   NAVBAR
   ---------------------------------------------------------------- */
.site-navbar {
  padding: 0 0 10px 0;
}

.navbar-inner-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 10px 10px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.navbar-logo-link {
  flex-shrink: 0;
}

.navbar-logo-link img {
  height: 62px;
  width: auto;
}

/* Nav links — centered between logo and search */
.navbar-links {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links .menu-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--body-text);
  padding: 13px 20px;
  transition: color 0.2s;
  position: relative;
}

.navbar-links .menu-item:hover,
.navbar-links .menu-item.is-active:not(.anchor) {
  color: var(--green-accent) !important;
}

.navbar-links .menu-item:hover::after,
.navbar-links .menu-item.is-active:not(.anchor)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--green-accent);
  transition: all 0.2s;
}

.navbar-search-box input.input {
  margin: 0;
  min-height: auto;
}

.navbar-search-box input.input,
.navbar-search-box input.input:hover {
  border-color: var(--body-text);
}

.navbar-search-box input.input::placeholder {
  color: var(--body-text);
  opacity: 1;
}

/* Burger button (mobile only) */
.navbar-burger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.navbar-burger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--body-text);
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar-burger-btn.is-active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.navbar-burger-btn.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar-burger-btn.is-active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* ----------------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------------- */
.hero-section {
  position: relative;
  background-image: url('https://earlboissonnot.com/wp-content/uploads/2024/06/tjm.png');
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

.hero-section::before {
  content: '';
  background-color: var(--green-accent);
  opacity: 0.19;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  background-image: url('https://earlboissonnot.com/wp-content/uploads/2024/06/etnbtyn.png'), url('https://earlboissonnot.com/wp-content/uploads/2024/06/4itjo.png');
  background-position: bottom left, bottom right;
  background-repeat: no-repeat, no-repeat;
  background-size: 20% auto, 30% auto;
  margin: 0 auto;
  padding: 0 10px;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-overline {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7em;
  letter-spacing: 4.7px;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: 98px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--body-text);
  line-height: 1em;
  margin: 0 0 28px;
  letter-spacing: 0;
}

.hero-text {
  font-size: 21px;
  color: var(--body-text);
  line-height: 1.5em;
  width: 35%;
  margin: 0 auto 38px;
}

/* Primary CTA button */
.btn-primary {
  display: inline-block;
  background: var(--green-teal);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 400;
  padding: 25px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.25s;
}

.btn-primary:hover {
  background: var(--green-accent);
  color: var(--white);
}

/* ----------------------------------------------------------------
   SAVOIR-FAIRE SECTION
   ---------------------------------------------------------------- */
.savoir-faire-section {
  background: var(--white);
  padding: 0 30px;
}

.container-savoir-faire {
  max-width: 1190px;
  margin: 0 auto;
  padding: 60px 0;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-accent);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--green-accent);
  padding-bottom: 2px;
  margin-top: 20px;
  transition: opacity 0.2s;
}

.link-more:hover {
  opacity: 0.75;
  color: var(--green-accent);
}

.texte-savoir-faire {
  padding: 0;
}

.photo-savoir-faire {
  padding: 0 0 0 3rem;
}


.about-photo {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  box-shadow: var(--card-shadow);
}

/* Counter + checklist row */
.counter-checklist-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.counter-box {
  background: var(--green-accent);
  color: var(--white);
  padding: 22px 24px;
  border-radius: 0px 0px 23px 0px;
  text-align: center;
  width: 40%;
  flex-shrink: 0;
}

.counter-icon {
  height: auto;
  width: 72px;
  margin: 0 auto 10px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.counter-number {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3em;
}

.counter-label {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 8px;
  line-height: 1.45;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  width: 60%;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #444;
  padding: 15px 0;
}

.checklist li:first-child {
  padding-top: 0;
}

.checklist li:last-child {
  border-bottom: none;
}

.checklist li svg {
  color: var(--green-accent);
  font-size: 18px;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   PRODUCTS SECTION
   ---------------------------------------------------------------- */
.products-section {
  position: relative;
  background-image: url('https://earlboissonnot.com/wp-content/uploads/2024/06/tjm.png');
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 30px;
}

.products-section::before {
  content: '';
  background-color: var(--green-accent);
  opacity: 0.19;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.container-products {
  position: relative;
  max-width: 1470px;
  margin: 0 auto;
  padding: 50px 0;
  z-index: 1;
}

.section-header {
  margin-bottom: 0;
}

.product-card {
  background: var(--white);
  border: 2px dotted var(--body-text);
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}

.product-card:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.product-icon {
  width: 78px;
  height: 78px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon img {
  max-width: 78px;
  max-height: 78px;
  object-fit: contain;
}

.product-title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  color: var(--body-text);
  margin-bottom: 16px;
  line-height: 1.7em;
}

.product-text {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.75;
  flex: 1;
}

.product-link {
  display: inline-flex;
  align-items: center;
  color: var(--green-accent);
  font-size: 17px;
  font-weight: 500;
  margin-top: 30px;
}

.product-link:hover {
  color: var(--green-teal);
}

/* ----------------------------------------------------------------
   FRESHNESS SECTION
   ---------------------------------------------------------------- */
.freshness-section {
  background: var(--white);
  padding: 0 30px;
}

.container-freshness {
  display: flex;
  max-width: 1470px;
  margin: 0 auto;
  padding: 100px 0;
}

.freshness-images {
  display: flex;
  flex-direction: column;
  padding: 0 10% 0 0;
  min-height: 600px;
  width: 38%;
  position: relative;
}

.freshness-img:first-child {
  width: 513px;
  height: 470px;
  object-fit: cover;
  object-position: center center;
}

.freshness-img:last-child {
  position: absolute;
  right: -30px;
  bottom: -30px;
  z-index: 1;
  width: 513px;
  height: 470px;
  object-fit: cover;
  object-position: center center;
  border-style: solid;
  border-width: 30px 30px 30px 30px;
  border-color: #FFFFFF;
}

.freshness-content {
  width: 62%;
  padding: 0 0 0 17%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

/* ----------------------------------------------------------------
   FEATURES / 3 CTA CARDS
   ---------------------------------------------------------------- */
.features-section {
  padding: 0 30px;
}

.container-features {
  max-width: 1470px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.feature-card {
  height: 100%;
  overflow: hidden;
  border: 1px dotted var(--body-text);
}

.feature-image-wrapper {
  overflow: hidden;
}

.feature-image {
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0);
  background-blend-mode: overlay;
  transition: background 1.5s, transform 1.5s;
  will-change: transform;
  height: 250px;
}

.feature-card:hover .feature-image {
  transform: scale(1.2);
  background-color: rgba(0, 0, 0, 0.3);
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  padding: 30px;
  background-color: var(--white);
}

.feature-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 2.1px;
  line-height: 1.7em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 15px;
}

.feature-text {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.5em;
}


/* ----------------------------------------------------------------
   TESTIMONIALS SECTION
   ---------------------------------------------------------------- */
.testimonials-section {
  background-image: url('https://earlboissonnot.com/wp-content/uploads/2024/06/tjm.png');
  background-repeat: no-repeat;
  position: relative;
  padding: 0 30px;
}

.testimonials-section::before {
  content: '';
  background-color: var(--green-accent);
  opacity: 0.19;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.container-testimonials {
  position: relative;
  max-width: 1470px;
  margin: 0 auto;
  padding: 50px 0;
  z-index: 1;
}

.testimonials-section>* {
  position: relative;
  z-index: 1;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-viewport {
  overflow: hidden;
  width: calc(80% - 40px);
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-text);
  padding: 30px;
  width: calc(50% - 12px);
  flex-shrink: 0;
}

.testimonial-author {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7em;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 14px;
}

.testimonial-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--navy);
  line-height: 20px;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  color: var(--navy);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.carousel-btn:hover {
  color: var(--green-teal);
}

.carousel-btn:disabled {
  background: #ccc;
  cursor: default;
  transform: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--navy);
  cursor: pointer;
  padding: 0;
  transition: all 0.5s ease-in-out;
}

.dot.active {
  background: var(--green-teal);
}

.dot:hover {
  background: var(--green-teal);
}

/* ----------------------------------------------------------------
   GALLERY SECTION
   ---------------------------------------------------------------- */
.gallery-section {
  padding: 0 30px;
  background: var(--white);
}

.container-gallery {
  max-width: 1140px;
  margin: 0 auto;
  padding: 50px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 36, 75, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.gallery-overlay svg {
  color: var(--white);
  font-size: 28px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(28, 36, 75, 0.45);
}

.gallery-item:hover .gallery-overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* ----------------------------------------------------------------
   LIGHTBOX
   ---------------------------------------------------------------- */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.is-active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  user-select: none;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: 50px 30px 20px 30px;
}

.footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2em;
  margin-bottom: 22px;
}

.menu-menu-footer-container,
.wp-block-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-menu-footer-container li,
.wp-block-categories li {
  margin-bottom: 40px;
}

.menu-menu-footer-container li a,
.wp-block-categories li a {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1rem;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  transition: color 0.2s;
}

.menu-menu-footer-container li a::before,
.wp-block-categories li a::before {
  content: url("data:image/svg+xml; utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='yellowgreen'><path d='M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm256-96a96 96 0 1 1 0 192 96 96 0 1 1 0-192z' /></svg>");
  transition: all 0.5s ease-in-out;
  width: 1rem;
  height: 1rem;
}

.menu-menu-footer-container li a:hover,
.wp-block-categories li a:hover {
  color: var(--green-accent);
}

.footer-logo {
  max-height: 70px;
  width: auto;
  margin: 0 auto;
  display: block;
}

.footer-hours {
  gap: 30px;
}

.footer-hours-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2em;
  color: var(--white);
}

.footer-hours-text {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5em;
  color: var(--white);
  text-align: center;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5em;
  margin-bottom: 30px;
  color: var(--white);
}

.footer-contact-list li svg {
  color: var(--green-accent);
  font-size: 22px;
  flex-shrink: 0;
}

.footer-contact-list li a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--white);
  transition: color 0.2s;
}

.footer-contact-list li a:hover {
  color: var(--green-accent);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom .container {
  padding: 30px 20px;
  max-width: 1480px;
  border-top: 1px solid var(--white);
}

.footer-bottom p {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: var(--white);
  font-size: 16px;
  margin-bottom: 4px;
}

.footer-bottom a {
  color: var(--white);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--green-accent);
}

.footer-credit-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.footer-credit img {
  height: 30px;
  width: auto;
}

.footer-credit-text {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5em;
  color: var(--white);
  text-align: center;
}

/* ----------------------------------------------------------------
   SCROLL-TO-TOP BUTTON
   ---------------------------------------------------------------- */
.scroll-top-btn {
  position: fixed;
  bottom: 50px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--green-teal);
  color: var(--white);
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.5s, transform 0.5s, background 0.5s;
  z-index: 800;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn.visible {
  opacity: 1;
}

.scroll-top-btn:hover {
  transform: translateY(-10px);
  background: var(--green-accent);
}

/* ================================================================
   A PROPOS PAGE — specific styles
   ================================================================ */

/* ----------------------------------------------------------------
   PAGE BANNER (inner page hero)
   ---------------------------------------------------------------- */
.page-banner {
  position: relative;
  background-image: url('https://earlboissonnot.com/wp-content/uploads/2024/06/raw-fresh-meat-steak.jpg');
  background-size: cover;
  background-position: center right;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(224deg, var(--footer-bg) 69%, var(--footer-bg) 0%);
  opacity: 0.4;
}

.page-banner-content {
  width: 100%;
  max-width: 1344px;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

.page-banner-title {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2em;
  margin: 0 0 20px 0;
}

.page-banner-breadcrumb {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
}

.page-banner-breadcrumb a {
  color: var(--white);
}

.page-banner-breadcrumb a:hover {
  color: var(--green-accent);
}

/* ----------------------------------------------------------------
   FAMILLE SECTION (Depuis trois générations)
   ---------------------------------------------------------------- */
.famille-section {
  padding: 0 30px;
}

.container-famille {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 50px 0;
}

.famille-images-col {
  padding-right: 3rem;
}

.famille-images-wrapper {
  display: flex;
  gap: 25px;
}

.famille-images-wrapper img {
  object-fit: cover;
}

.famille-images-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-top: 3%;
  text-align: right;
}

.famille-images-left img:first-child {
  width: 55%;
  margin-left: auto;
}

.famille-images-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.famille-images-right img:last-child {
  width: 70%;
  margin-right: auto;
}


/* ----------------------------------------------------------------
   FAMILLE LIST (norms bullet list)
   ---------------------------------------------------------------- */
.famille-list {
  list-style: disc;
  padding-left: 26px;
  margin: 12px 0;
}

.famille-list li {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.7em;
}

.famille-text-col {
  padding: 0 0 0 2.5rem;
}

.famille-text-col .section-text {
  font-size: 18px;
}

/* ----------------------------------------------------------------
   NOS PRATIQUES SECTION
   ---------------------------------------------------------------- */
.pratiques-section {
  background: var(--white);
  padding: 0 30px;
}

.container-pratiques {
  max-width: 1470px;
  margin: 0 auto;
  padding: 50px 0;
}

.pratiques-section .columns {
  gap: 20px;
}

.pratiques-text-col {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid var(--body-text);
  margin-bottom: 50px;
}

.accordion-item summary {
  list-style: none;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7em;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.2s;
  user-select: none;
}

.accordion-item:hover .accordion-title,
.accordion-item:hover .accordion-icon {
  color: var(--green-accent);
}

details[open]>.accordion-title,
details[open] .accordion-icon {
  color: var(--green-accent);
}

details[open]>.accordion-title {
  border-bottom: 1px solid var(--body-text);
}

.accordion-icon {
  font-size: 14px;
  color: var(--navy);
}

.accordion-icon .close-icon {
  display: none;
}

.accordion-icon .open-icon {
  display: none;
}

details[open] .accordion-icon .open-icon {
  display: inline;
}

details:not([open]) .accordion-icon .close-icon {
  display: inline;
}

.accordion-body {
  padding: 30px 150px 30px 10px;
  transition: all 0.4s ease-out;
  overflow: hidden;
}

details[open] .accordion-body {
  animation: accordionOpen 0.4s ease-out forwards;
}

@keyframes accordionOpen {
  0% {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  100% {
    opacity: 1;
    max-height: 800px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.accordion-body p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.7em;
}

/* Pratiques overlapping images */
.pratiques-images-col {
  padding: 0;
  min-height: 600px;
}

.pratiques-images {
  position: relative;
  height: 100%;
  padding-right: 13%;
}

.pratiques-img-back {
  position: absolute;
  top: 0;
  left: 0;
  height: 381px;
  width: 485px;
  object-fit: cover;
  z-index: 0;
}

.pratiques-img-front {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 470px;
  width: 513px;
  object-fit: cover;
  border: 30px solid var(--white);
  z-index: 1;
}

/* ----------------------------------------------------------------
   CTA SECTION
   ---------------------------------------------------------------- */
.cta-section {
  background-image: url('https://earlboissonnot.com/wp-content/uploads/2024/06/tjm.png');
  background-repeat: no-repeat;
  position: relative;
  padding: 0 30px;
}

.cta-section::before {
  content: '';
  background-color: var(--green-accent);
  opacity: 0.19;
  position: absolute;
  inset: 0;
}

.cta-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 0;
}

.cta-section .section-text {
  margin: 20px 0 30px 0;
}


/* ================================================================
   NOS PRODUITS PAGE — specific styles
   ================================================================ */

/* Page banner modifier */
.page-banner--produits {
  background-image: url('https://earlboissonnot.com/wp-content/uploads/2024/06/raw-beef-meat-fresh-cut-of-beef-meat-on-board-with-spices.jpg');
}

/* ----------------------------------------------------------------
   GAMME SECTIONS (Les colis / Les produits locaux)
   ---------------------------------------------------------------- */
.gamme-section {
  padding: 0 30px;
  background: var(--white);
}

.container-gamme {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 50px 0;
}

.gamme-img-col {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gamme-text-col {
  padding: 0 0 0 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gamme-text-col--left {
  padding: 0 3rem 0 0;
}

.gamme-text-col .section-text {
  font-size: 18px;
}

.gamme-cta {
  margin-top: 0;
}

.gamme-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* ================================================================
   PAGE COLIS DE BOEUF & VEAU — specific styles
   ================================================================ */
.gamme-grid {
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gamme-card {
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 20px;
}

.gamme-card-image {
  position: relative;
  overflow: hidden;
}

.gamme-card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.gamme-card-image:hover img {
  transform: scale(1.1);
}

.gamme-card-content {
  position: relative;
  z-index: 1;
  width: 90%;
  padding: 10px;
  margin: -50px auto 0 auto;
  background-color: var(--white);
  border: 1px dotted var(--body-text);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gamme-card-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border: 1px dotted var(--body-text);
  padding: 10px;
  width: 100%;
}

.gamme-card-content-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--green-accent);
  text-transform: uppercase;
  letter-spacing: 2.1px;
  line-height: 1.7em;
}

.gamme-card-content-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5em;
}

.btn-product {
  background-color: var(--green-accent);
  border-radius: 0px 0px 15px 0px;
  padding: 15px 20px 15px 20px;
  font-size: 15px;
  line-height: 1;
}

.btn-product:hover {
  background-color: var(--green-teal);
}

/* ================================================================
   SINGLE PRODUCT — specific styles
   ================================================================ */
.page-banner-single-product {
  position: relative;
  background-image: url('https://earlboissonnot.com/wp-content/uploads/2024/06/tjm.png');
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 30px;
}

.page-banner-single-product::before {
  content: '';
  background-color: var(--green-accent);
  opacity: 0.19;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.page-banner-single-product .page-banner-content {
  margin: 0 auto;
  padding: 50px 0;
}

.page-banner-single-product .page-banner-breadcrumb {
  text-align: left;
  color: var(--navy);
  font-weight: 400;
}

.page-banner-single-product .page-banner-breadcrumb a {
  color: var(--navy);
}

.page-banner-single-product .page-banner-breadcrumb a:hover {
  color: var(--green-accent);
}

.page-banner-single-product .page-banner-breadcrumb span {
  color: var(--navy);
}

.page-single-product .contenu {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.page-single-product .image-mise-en-avant {
  width: 100%;
}

.page-single-product .image-mise-en-avant img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-single-product .texte-contenu {
  width: 100%;
}

.page-single-product .content {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
}

/* ================================================================
   CONTACT PAGE — specific styles
   ================================================================ */

/* Page banner modifier */
.page-banner--contact {
  background-image: url('https://earlboissonnot.com/wp-content/uploads/2024/06/assorted-meat-cuts.jpg');
  background-position: center center;
}

/* ----------------------------------------------------------------
   INFO SECTION (3 cards: green / map / hours)
   ---------------------------------------------------------------- */
.contact-info-section {
  background: var(--white);
  padding: 0 30px;
}

.container-contact-info {
  max-width: 1380px;
  margin: 0 auto;
  padding: 50px 0px;
}

.container-contact-info>.columns {
  gap: 20px;
}

.container-contact-info>.columns .column {
  flex: 0 1 auto;
  width: 100%;
}

.contact-card-green {
  border-radius: 0px 0px 0px 30px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  padding: 30px;
  background: var(--green-accent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.contact-card-title {
  font-family: "Poppins", Sans-serif;
  font-size: 35px;
  font-weight: 600;
  text-transform: none;
  font-style: normal;
  text-decoration: none;
  line-height: 1.2em;
  letter-spacing: 0px;
  word-spacing: 0em;
  color: var(--white);
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5em;
  margin-bottom: 30px;
}

.contact-info-list li:last-child {
  margin-bottom: 0;
}

.contact-info-list li a {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
}

.contact-info-list li a:hover {
  color: var(--body-text);
}

.contact-info-list li a:hover svg {
  color: var(--body-text);
}

.contact-info-list li svg {
  color: var(--white);
  font-size: 26px;
  flex-shrink: 0;
}

.contact-card-map {
  overflow: hidden;
  border-radius: 0px 0 30px 30px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.contact-card-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  filter: grayscale(1);
}

.contact-card-map iframe:hover {
  filter: grayscale(0);
}

.contact-card-hours {
  background: var(--white);
  border-radius: 0px 0 30px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  gap: 20px;
}

.hours-title {
  font-family: 'Poppins', sans-serif;
  font-size: 35px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2em;
}

.hours-text {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.5;
}

/* ----------------------------------------------------------------
   CONTACT FORM SECTION (image + form card)
   ---------------------------------------------------------------- */

.contact-form-section {
  margin: 4% 0 10% 0;
  position: relative;
  overflow: hidden;
  background: var(--white);
  display: flex;
}

.contact-form-image {
  width: 50%;
  background-image: url('https://earlboissonnot.com/wp-content/uploads/2024/06/raw-meat-beef-steak-on-a-stone-cutting-board-with-rosemary-spices-salt-oil-cherry-tomatoes-hot-e1626666568597-794x1024-1.jpg');
  background-size: cover;
  background-position: center;
}

.contact-form-inner {
  background: var(--white);
  width: 50%;
  position: relative;
  max-width: 1140px;
  margin: 80px 0 75px -130px;
  padding: 75px;
  border-radius: 1px 1px 32px 1px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.contact-form-section .btn-primary {
  border-radius: 0px 0px 0px 0px;
  padding: 15px 25px 15px 25px;
  border: none;
}

.contact-form-section a {
  color: var(--green-accent);
}

.contact-form-section a:hover {
  color: var(--green-teal);
}

/*--------------------------------------------------------------
# FORMULAIRE DE CONTACT
--------------------------------------------------------------*/
.control.has-icons-left .icon,
.control.has-icons-right .icon {
  color: var(--green-accent);
}

.control.has-icons-left .icon svg,
.control.has-icons-right .icon svg {
  height: 1rem;
}

.input,
.textarea,
.select select {
  background-color: #fff;
  color: var(--gray-text);
  border: 1px solid #C8D5DC;
  border-radius: 0;
  box-shadow: none;
  font-family: inherit;
  font-weight: inherit;
  font-size: 1rem;
  margin-bottom: 10px;
  padding: 6px 16px;
  min-height: 47px;
}

textarea.textarea::placeholder,
input.input::placeholder {
  color: #aaa;
  opacity: 1;
}

.select:not(.is-multiple):not(.is-loading):after {
  border-color: var(--green-accent);
}

input.input::-ms-input-placeholder,
textarea.textarea::-ms-input-placeholder {
  color: #aaa;
}

input {
  font-family: inherit;
}

.textarea {
  padding-left: calc(.75em - 1px);
  padding-bottom: calc(.5em - 1px);
  padding-right: calc(.75em - 1px);
  padding-top: calc(.5em - 1px);
}

.checkbox {
  margin-right: 0.75rem;
  accent-color: var(--green-teal);
  cursor: pointer;
}

.textarea:hover,
.textarea.is-hovered,
.input:hover,
.input.is-hovered,
.select select:hover,
.select select.is-hovered {
  border-color: #C8D5DC;
}

.field-body {
  flex-basis: auto;
}




/* ----------------------------------------------------------------
   RESPONSIVE — TABLET  (≤ 1024px)
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {

  /* Navbar */
  .navbar-burger-btn {
    display: flex;
    order: 3;
    margin-left: 0;
  }

  .navbar-search-box {
    order: 2;
  }

  .navbar-inner-wrapper {
    position: relative;
    flex-wrap: wrap;
    height: auto;
    padding: 16px 20px;
  }

  .navbar-links {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .navbar-links.is-open {
    display: flex;
  }

  .navbar-links .menu-item {
    display: block;
    padding: 7px 20px;
  }

  .navbar-links .menu-item.is-active::after {
    display: none;
  }

  .section-title {
    font-size: 40px;
  }

  .section-text {
    font-size: 18px;
  }

  .hero-content {
    padding: 0 30px 30px 30px;
    min-height: 550px;
    background-size: 30% auto, 40% auto
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-overline {
    font-size: 16px;
  }

  .hero-text {
    font-size: 18px;
    width: 75%;
  }

  .checklist li {
    font-size: 16px;
  }

  .freshness-content {
    padding: 50px 45px;
  }

  /* A propos page */
  .page-banner {
    padding: 30px 0;
  }

  .page-banner-content {
    padding: 0 30px;
  }

  .famille-images-col {
    padding-right: 1rem;
  }

  .famille-text-col {
    padding-left: 1rem;
  }

  .pratiques-text-col {
    padding-right: 1rem;
  }

  .pratiques-images-col {
    padding-left: 1rem;
  }

  .pratiques-img-back {
    width: 380px;
    height: 300px;
  }

  .pratiques-img-front {
    width: 410px;
    height: 330px;
    border-width: 20px;
    top: 200px;
  }

  /* Page contact */
  .contact-card-title,
  .hours-title {
    font-size: 30px;
  }

  .contact-form-image {
    width: 100%;
  }

  .contact-form-inner {
    width: 100%;
    padding: 50px;
  }

  /* Footer */
  .footer-hours {
    order: 4;
    border-top: 1px solid var(--white);
    padding-top: 9%;
  }

  .footer-bottom .container {
    border-top: none;
  }
}

/* ----------------------------------------------------------------
   RESPONSIVE — MOBILE  (≤ 768px)
   ---------------------------------------------------------------- */
@media (max-width: 768px) {

  /* Topbar et Navbar */
  .topbar.is-hidden-tablet {
    z-index: 0;
    padding: 0;
  }

  .topbar.is-hidden-tablet .topbar-inner {
    justify-content: center;
    gap: 40;
    border-bottom: none;
    padding: 0 10px 10px 10px;
  }

  .topbar.is-hidden-tablet .topbar-item {
    margin: 0 20px;
  }

  .site-navbar {
    box-shadow: none;
    padding: 0;
  }

  .navbar-inner-wrapper {
    padding: 20px;
  }

  .navbar-search-box {
    display: none;
  }

  .navbar-links.is-open {
    top: 132px;
  }

  /* Savoir-faire */
  .savoir-faire-section .columns {
    flex-direction: column;
  }

  .cta-savoir-faire {
    text-align: center;
  }

  .photo-savoir-faire {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }

  .photo-savoir-faire img {
    max-height: 250px;
  }

  .counter-checklist-row {
    order: -1;
  }

  /* Freshness */
  .container-freshness {
    flex-direction: column;
  }

  .freshness-images {
    min-height: 500px;
    width: 100%;
    order: 2;
  }

  .freshness-images img:first-child {
    width: 380px;
    height: 300px;
  }

  .freshness-images img:last-child {
    width: 410px;
    height: 330px;
    border-width: 20px;
    right: 0;
    bottom: 0;
  }

  .freshness-content {
    padding: 0 0 30px 0;
    width: 100%;
    order: 1;
  }

  /* Nos produits page */
  .gamme-section .columns {
    display: flex;
    flex-direction: column-reverse;
  }

  .gamme-section--alt .columns {
    flex-direction: column;
  }

  .gamme-img-col,
  .gamme-text-col,
  .gamme-text-col--left {
    padding: 0;
  }

  .gamme-text-col {
    margin-bottom: 30px;
  }

  .gamme-image {
    max-height: 280px;
    object-fit: cover;
  }

  .gamme-cta {
    text-align: center;
  }

  /* Page colis de boeuf et veau */
  .gamme-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* A propos page */
  .page-banner-content {
    text-align: center;
  }

  /* Contact page */
  .contact-info-section .columns {
    display: flex;
    flex-direction: column;
  }

  .contact-card-green,
  .contact-card-hours {
    min-height: 300px;
  }

  .contact-card-map iframe {
    height: 300px;
  }

  .contact-form-section {
    flex-direction: column;
  }

  .contact-form-image {
    width: 100%;
    height: 250px;
  }

  .contact-form-inner {
    width: 100%;
    margin: 0 0 30px 0;
    padding: 30px;
  }

  .contact-form-title {
    font-size: 30px;
  }

  /* Page a propos */
  .famille-section .columns {
    display: flex;
    flex-direction: column-reverse;
  }

  .famille-images-wrapper,
  .famille-images-left,
  .famille-images-right {
    gap: 15px;
  }

  .famille-images-col,
  .famille-text-col {
    padding: 0;
  }

  .famille-text-col {
    margin-bottom: 40px;
  }

  .cta-famille {
    text-align: center;
  }

  .container-pratiques {
    padding: 0 0 50px 0;
  }

  .columns.pratiques-cols {
    flex-direction: column;
  }

  .pratiques-text-col,
  .pratiques-images-col {
    width: 100%;
    padding: 0;
  }

  .pratiques-images-col {
    min-height: 500px;
  }

  .pratiques-images {
    margin-top: 40px;
  }

  .cta-inner {
    padding: 75px 0;
  }

  /* Testimonials */
  .carousel-viewport {
    width: calc(100% - 40px);
  }

  .testimonial-card {
    width: 100%;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  /* Footer */
  .site-footer .columns {
    display: flex;
  }

  .menu-menu-footer-container li,
  .wp-block-categories li {
    margin-bottom: 10px;
  }

  .footer-bottom {
    text-align: center;
  }

  /* Lightbox navigation arrows */
  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }
}

/* ----------------------------------------------------------------
   RESPONSIVE — MOBILE PETIT  (≤ 480px)
   ---------------------------------------------------------------- */
@media (max-width: 480px) {

  /* Commun */
  .section-text {
    font-size: 16px;
  }

  /* Navbar */
  .navbar-logo-link img {
    height: 50px;
  }

  .navbar-links.is-open {
    top: 120px;
  }

  /*Hero*/
  .hero-content {
    padding: 0 20px 50px 20px;
  }

  .hero-overline {
    font-size: 14px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-text {
    font-size: 16px;
    width: 100%;
  }

  /* Savoir-faire */
  .savoir-faire-section {
    padding: 0 20px;
  }

  .counter-checklist-row {
    flex-direction: column;
    width: 100%;
  }

  .counter-box,
  .checklist {
    width: 100%;
  }

  /* Freshness */
  .freshness-section {
    padding: 0 20px;
  }

  .container-freshness {
    padding: 50px 0;
  }

  .freshness-images {
    min-height: 270px;
    margin: 0;
  }

  .freshness-images img:first-child {
    width: 225px;
    height: 190px;
  }

  .freshness-images img:last-child {
    width: 225px;
    height: 220px;
    border-width: 15px;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 0 20px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .site-footer .columns {
    flex-direction: column;
  }

  .site-footer .columns .column {
    width: 100%;
  }

  .site-footer .columns .column:nth-child(4) {
    order: -1;
  }

  .site-footer .footer-col-title,
  .site-footer .footer-hours-title {
    font-size: 18px;
  }

  /* Page colis de boeuf et veau */
  .gamme-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  /* Single product */
  .page-single-product .contenu {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# TARTE AU CITRON
--------------------------------------------------------------*/
/* Font */
#tarteaucitronRoot * {
  font-family: 'Montserrat', sans-serif !important;
}

/* Couleurs background et texte des boutons accepter */
#tarteaucitronAlertBig #tarteaucitronPersonalize2,
#tarteaucitron #tarteaucitronServices #tarteaucitronAllAllowed.tarteaucitronIsSelected,
#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsAllowed .tarteaucitronAllow {
  background-color: var(--green-accent);
  color: var(--white);
}

/* Couleurs background et texte des boutons refuser */
#tarteaucitronAlertBig #tarteaucitronAllDenied2,
#tarteaucitron #tarteaucitronServices #tarteaucitronAllDenied.tarteaucitronIsSelected,
#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsDenied .tarteaucitronDeny {
  background-color: var(--navy);
  color: var(--white);
}

/* Autres ajustements */
div#tarteaucitronAlertBig:before {
  display: none;
}

button#tarteaucitronPrivacyUrl {
  display: block;
  margin: 0 auto;
  width: 200px;
  padding: 5px 10px;
  height: 40px;
}

button#tarteaucitronPersonalize2,
button#tarteaucitronAllDenied2,
button#tarteaucitronCloseAlert,
button#tarteaucitronPrivacyUrl {
  text-align: center;
}

@media screen and (max-width: 900px) {

  button#tarteaucitronCloseAlert,
  button#tarteaucitronPersonalize2,
  button#tarteaucitronAllDenied2,
  button#tarteaucitronPrivacyUrl {
    min-width: 150px;
    margin: 5px auto;
  }
}

#tarteaucitronIcon #tarteaucitronManager img {
  width: 30px;
  height: 30px;
}

/*--------------------------------------------------------------
# SKIP LINKS
--------------------------------------------------------------*/
/* Utile pour l'accessibilité : lien direct vers le contenu principal */
.skip-link {
  position: absolute;
  left: -9999px;
  padding: 0.5em 1em;
  background: #333;
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  position: static;
}

/*--------------------------------------------------------------
# GUTENBERG
--------------------------------------------------------------*/
/* Grande largeur pour Gutenberg */
.content .alignwide {
  margin-left: calc(25% - 25vw);
  margin-right: calc(25% - 25vw);
}

/* Pleine largeur pour Gutenberg */
.content .alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: auto;
}

.wp-block-cover.alignfull,
.wp-block-cover-image.alignfull {
  width: 100vw;
}

.wp-block-cover.alignwide,
.wp-block-cover-image.alignwide {
  width: auto;
}

/* l'alignement grande largeur se comporte comme le pleine largeur en dessous de 768px */
@media screen and (max-width: 768px) {
  .content .alignwide {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

/* ajustements block Gutenberg */
.content ul.blocks-gallery-grid,
.content ul.wp-block-gallery {
  margin-left: 0;
}

.content ul.wp-block-post-template,
.content ul.wp-block-query-loop {
  list-style: none;
}

.content figure.wp-block-gallery {
  margin-left: 0;
  margin-right: 0;
}

.wp-block-gallery.aligncenter {
  justify-content: center;
}

@media screen and (min-width: 601px) {
  .content .wp-block-media-text figure:not(:last-child) {
    margin-bottom: 0;
  }
}

/* Animation galerie Gutenberg */
.wp-block-gallery .wp-block-image a {
  transition: 0.5s all ease-in-out;
}

.wp-block-gallery .wp-block-image a::after {
  content: url("data:image/svg+xml; utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='white'><path d='M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM184 296c0 13.3 10.7 24 24 24s24-10.7 24-24l0-64 64 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-64 0 0-64c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 64-64 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l64 0 0 64z'/></svg>");
  opacity: 0;
  transition: all 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10000;
  position: absolute;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  height: 2rem;
  width: 2rem;
}

.wp-block-gallery .wp-block-image a:hover {
  transform: scale(1.05);
  filter: grayscale(1) contrast(1.2);
}

.wp-block-gallery .wp-block-image a:hover::after {
  opacity: 1;
}

/*--------------------------------------------------------------
# PAGE 404
--------------------------------------------------------------*/
#ghost {
  display: block;
  position: relative;
  left: -2000px;
  opacity: 0;
  animation: appear-left 2s 0.1s ease-out forwards;
}

#ghost path {
  opacity: .2;
  fill: var(--green-accent);
}

#ghost circle,
#ghost ellipse {
  fill: var(--green-accent);
}

@keyframes appear-left {
  to {
    left: 0;
    opacity: 1;
  }
}