/* Polices auto-hébergées */
@font-face {
  font-family: 'Dancing Script';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/dancing-script-v29-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/poppins-v24-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-v24-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/poppins-v24-latin-800.woff2') format('woff2');
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/raleway-v37-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/raleway-v37-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/raleway-v37-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/raleway-v37-latin-800.woff2') format('woff2');
}

/* Base */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* overflow-x géré sur body uniquement — évite la barre de défilement verticale parasite */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --color-primary: #7aa3a7;
  --color-primary-dark: #017a75;
  --color-text: black;
  --color-background: #fdf9f3;
  --color-hero: #ead7cd;
  --color-button: #d4a59e;
  --color-search-button: #d4a59e;
  --font-heading: 'Dancing Script', cursive;
  --font-body: 'Poppins', sans-serif;
  --font-nav: 'Raleway', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-background);
  letter-spacing: 0.025em;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
}

.footer__title,
.newsletter-popup__title,
.newsletter-popup__discount,
.similar-products__title,
.product-info__title,
.section-title,
[style*="Dancing Script"] {
  letter-spacing: normal;
}

/* Header */
.header {
  background-color: var(--color-primary);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header__logo {
  height: 10.5rem;
  width: auto;
}

.header__icon {
  color: var(--color-text);
  transition: all 0.3s ease;
}

.header__icon:hover {
  color: #000;
  transform: scale(1.1);
}

.header__icon img {
  width: 2.5rem;
  height: 2.5rem;
}

.header__separator {
  height: 0.125rem;
  background-color: black;
}

.header__link {
  color: black;
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 1.1875rem;
  padding: 0.3125rem 0;
  transition: all 0.3s ease;
}

.header__link:hover {
  color: #000;
}

.header__link--active,
.header__nav .header__link--active {
  color: #000;
  font-weight: 800;
}

.header__arrow {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.header__dropdown:hover .header__arrow {
  transform: rotate(180deg);
}

.header__dropdown-menu {
  display: none;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  padding: 0.625rem 0;
  min-width: 11.25rem;
  z-index: 1000;
}

.header__dropdown:hover .header__dropdown-menu {
  display: block;
}

.header__dropdown-link {
  padding: 0.625rem 1.25rem;
  color: var(--color-text);
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.header__dropdown-link:hover {
  background-color: var(--color-primary);
  color: #000;
}

.header__dropdown-label {
  padding: 0.5rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-text);
  background-color: #f5e6ae;
  letter-spacing: 0.03em;
  cursor: default;
}

.header__search {
  display: none;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  gap: 0.5rem;
  position: relative;
}

.header__search.show {
  display: flex;
  opacity: 1;
  max-width: 350px;
  overflow: visible;
}

.header__search-input {
  padding: 0.5rem 1rem;
  border: 2px solid black;
  border-radius: 25px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

.header__search-button {
  width: 3rem;
  height: 3rem;
  background-color: var(--color-search-button);
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.header__search-button:hover {
  background-color: #c49590;
}

.header__search-button img {
  width: 1.5rem;
  height: 1.5rem;
  filter: brightness(0) invert(1);
}

/* ============================================================
   Dropdown des résultats de recherche
   ============================================================ */

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border: 2px solid black;
  border-radius: 12px;
  margin-top: 0.5rem;
  max-height: 320px;
  overflow-y: auto;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-results__item {
  display: block;
  padding: 0.75rem 1rem;
  color: black;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid #f0ebe4;
  transition: background-color 0.2s ease;
}

.search-results__item:last-child {
  border-bottom: none;
}

.search-results__item:hover,
.search-results__item:focus {
  background-color: var(--color-hero);
  color: black;
  text-decoration: none;
  outline: none;
}

.search-results__empty {
  padding: 1rem;
  color: #666666;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-align: center;
}

.search-results__loading {
  padding: 1rem;
  color: #767676;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-align: center;
}

.bg-hero { background-color: var(--color-hero); }
.bg-primary-custom { background-color: var(--color-primary); }
.section-bg-beige { background-color: var(--color-background); }

.decorative-line,
.why-choose__card-line,
.why-choose-card__line,
.produits__ligne,
.explore-card__line,
.products-section__line,
.products-section__separator,
.valeurs__line,
.animal-search__line,
.temoignages-section__line,
.collections-section__line,
.cta-final__line,
.contact-help__line {
  height: 0.125rem;
  background-color: var(--color-text);
}

.animal-search__line { max-width: 20rem; }
.temoignages-section__line,
.collections-section__line { max-width: 15rem; }
.cta-final__line,
.contact-help__line { max-width: 300px; }

.breadcrumb-item a {
  color: var(--color-text);
}

.breadcrumb-item a:hover {
  color: #017a75;
}

.breadcrumb-item.active {
  color: var(--color-text);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--color-text);
}


.hero {
  background-color: var(--color-hero);
}

.hero::after,
.hero-boutique::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.hero-bg {
  background-color: var(--color-hero);
}

.hero__animal-circle {
  width: 100%;
  max-width: 14rem;
  aspect-ratio: 1;
  background-image: url('../images/cercle-ondule.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  cursor: pointer;
}

.hero__animal-flipper {
  position: relative;
  width: 65%;
  aspect-ratio: 1;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.hero__animal-circle:hover .hero__animal-flipper {
  transform: rotateY(180deg);
}

.hero__animal-front,
.hero__animal-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 50%;
  overflow: hidden;
}

.hero__animal-back {
  transform: rotateY(180deg);
}

.hero__animal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-boutique__logo,
.hero-chien__logo,
.hero-histoire__logo--animated {
  max-width: 25rem;
  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards;
  animation-delay: 0.3s;
}

.hero-histoire__logo {
  max-width: 25rem;
  height: auto;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__cta-button,
.cta-final__button,
.contact-help__button,
.add-to-cart-btn,
.newsletter-popup__btn {
  transition: all 0.3s ease;
  background-color: transparent;
  padding: 0 !important;
  gap: 0;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

.hero__cta-arrows,
.cta-final__arrows,
.newsletter__arrows {
  gap: 0.2rem;
  padding: 0.5rem 0.75rem;
  background-color: #fff;
}

.hero__cta-text,
.cta-final__text,
.contact-help__button-text,
.add-to-cart-btn__text,
.newsletter-popup__btn-text,
.collections-section__button-text {
  background-color: var(--color-button);
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1;
  transition: background-color 0.3s ease;
}

.hero__cta-text,
.cta-final__text {
  padding: 0.5rem 1.5rem;
  border-radius: 0 50px 50px 0;
  margin: -2px;
  margin-left: 0;
}

.contact-help__button-text {
  padding: 0.5rem 3rem;
}

.hero__cta-button:hover .hero__cta-text,
.cta-final__button:hover .cta-final__text,
.contact-help__button:hover .contact-help__button-text,
.add-to-cart-btn:hover .add-to-cart-btn__text,
.newsletter-popup__btn:hover .newsletter-popup__btn-text {
  background-color: var(--color-primary);
}

.hero__cta-arrow,
.cta-final__arrow,
.newsletter__arrow,
.contact-help__arrow,
.collections-section__arrow {
  display: inline-block;
  font-weight: 900;
  line-height: 1;
  animation: arrow-pulse 1.5s infinite;
}

.hero__cta-arrow,
.cta-final__arrow,
.newsletter__arrow,
.contact-help__arrow {
  font-size: 1.8rem;
}

.collections-section__arrow {
  font-size: 1.6rem;
}

.hero__cta-arrow--1,
.cta-final__arrow--1,
.newsletter__arrow--1,
.contact-help__arrow--1,
.collections-section__arrow--1 { animation-delay: 0s; }
.hero__cta-arrow--2,
.cta-final__arrow--2,
.newsletter__arrow--2,
.contact-help__arrow--2,
.collections-section__arrow--2 { animation-delay: 0.5s; }
.hero__cta-arrow--3,
.cta-final__arrow--3,
.newsletter__arrow--3,
.contact-help__arrow--3,
.collections-section__arrow--3 { animation-delay: 1s; }

@keyframes arrow-pulse {
  0%, 32%, 100% { color: #000000; }
  33%, 65% { color: #017a75; }
  66%, 99% { color: #000000; }
}

/* Cartes Why Choose */
.why-choose__icon-circle {
  width: 16rem;
  height: 16rem;
}

.why-choose__icon-circle img {
  width: 13rem;
  height: 13rem;
  object-fit: cover;
  filter: invert(48%) sepia(13%) saturate(2078%) hue-rotate(130deg) brightness(95%) contrast(80%);
  animation: balancement 3s ease-in-out infinite;
}

@keyframes balancement {
  0%, 100% { transform: rotate(5deg); }
  50% { transform: rotate(-5deg); }
}

.col-md-4:nth-child(2) .why-choose__icon-circle img {
  width: 15rem;
  height: 15rem;
  transform: scale(1.15);
}

.why-choose__card,
.why-choose-card,
.valeurs__card {
  background-color: var(--color-primary);
  border-radius: 0;
  border-top-left-radius: 5rem;
  border-bottom-right-radius: 5rem;
  position: relative;
  z-index: 1;
}

.why-choose__card,
.why-choose-card {
  padding: 3.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.valeurs__card {
  padding: 2rem 1.5rem;
}

.why-choose__card::after,
.why-choose-card::after,
.valeurs__card::after,
.product-gallery__main-inner::after {
  content: '';
  position: absolute;
  top: 2%;
  right: -0.5rem;
  bottom: -0.5rem;
  left: 2%;
  background: transparent;
  pointer-events: none;
  z-index: -1;
}

.why-choose__card::after,
.why-choose-card::after,
.valeurs__card::after {
  border-right: 3px solid var(--color-button);
  border-bottom: 3px solid var(--color-button);
  border-bottom-right-radius: 5rem;
}

.why-choose__card h3,
.why-choose-card h3 {
  font-size: 2rem;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.valeurs__card h3 {
  font-size: 2rem;
}

.why-choose__card p,
.why-choose-card p {
  font-size: 1.1rem;
  flex: 1;
}

.valeurs__card p {
  font-size: 1rem;
}

.valeurs__card-wrapper {
  padding: 0 0.75rem 0.75rem 0;
}

.valeurs__line {
  width: 100%;
  margin: 1rem auto 1.5rem;
}

.why-icon-circle {
  width: 13rem;
  height: 13rem;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.why-icon-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18rem;
  height: 18rem;
  background-image: url('../images/cercle-ondule.webp');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.why-icon-circle::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  background-color: white;
  border-radius: 50%;
  z-index: -1;
}

.why-icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: souffle 3s ease-in-out infinite;
}

.col-md-4:nth-child(2) .why-icon-circle img {
  width: 80%;
  height: 80%;
}

@keyframes souffle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.produits__carte,
.explore-card,
.products-section__card {
  background-color: var(--color-hero);
  border-radius: 0;
  border-top-left-radius: 5rem;
  border-bottom-right-radius: 5rem;
  box-shadow: 0.3125rem 0.3125rem 0 var(--color-primary);
  transition: all 0.4s ease;
}

.produits__carte:hover,
.explore-card:hover,
.products-section__card:hover {
  box-shadow:
    0.3125rem 0.3125rem 0 var(--color-primary),
    0.625rem 0.625rem 0 var(--color-button),
    0.9375rem 0.9375rem 0 rgba(122, 163, 167, 0.4);
  transform: translate(-0.3125rem, -0.3125rem);
}

.produits__image,
.explore-card__img,
.products-section__image {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.produits__image {
  height: 28rem;
  border-top-left-radius: 5rem;
}

.produits__image--center-left {
  object-position: 58% center;
}

.explore-card__img,
.products-section__image {
  height: 450px;
  border-top-left-radius: 80px;
}

.explore-card__img--offset-right {
  object-position: 58% center;
}

.products-section__image--left {
  object-position: 40% center;
}

.products-section__image--poudre {
  object-position: 58% 35% !important;
}

.produits__contenu,
.explore-card__body,
.products-section__body {
  min-height: 200px;
}

.produits__contenu {
  min-height: 12.5rem;
}

.produits__titre,
.explore-card__title,
.products-section__title {
  font-size: 2rem;
}

.explore-card__title {
  font-family: var(--font-heading);
  color: black;
}

.produits__texte,
.products-section__text {
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.produits__lien {
  text-decoration: none;
  color: inherit;
}

.produits__lien:hover {
  color: inherit;
}

.explore-card__intro {
  color: black;
  font-weight: 700;
  font-size: 1.15rem;
}

.explore-card__animal-link {
  color: black;
  font-family: var(--font-nav);
  font-weight: 700;
  font-style: italic;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.explore-card__animal-link:hover {
  background-color: var(--color-primary);
  color: #000;
}

.explore-card__animal-name {
  min-width: 5.5rem;
  text-align: left;
}

.explore-card__animal-check {
  width: 1.5rem;
  height: 1.5rem;
  background-color: white;
  border-radius: 50%;
  font-weight: 700;
  font-style: normal;
  color: #017a75;
  font-size: 0.9rem;
  flex-shrink: 0;
  font-variant-emoji: text;
  -webkit-text-fill-color: #017a75;
}

.explore-card__animal-check--no {
  color: #c0392b;
  -webkit-text-fill-color: #c0392b;
}

.explore-card__animal-link--disabled {
  pointer-events: none;
  font-family: var(--font-nav);
  font-weight: 700;
  font-style: italic;
  font-size: 1rem;
  color: black;
}

.explore-card__animals-grid {
  position: relative;
}

.explore-card__animals-grid .explore-card__animal-link,
.explore-card__animals-grid .explore-card__animal-link--disabled {
  font-size: 0.9rem;
}

.explore-card__animals-grid .col-6:first-child {
  padding-right: 0.75rem;
}

.explore-card__animals-grid .col-6:last-child {
  padding-left: 0.75rem;
}

.products-section__link:focus,
.products-section__link:active {
  outline: none;
  box-shadow: none;
}

.products-section__link:hover .products-section__card {
  cursor: pointer;
}

.products-section__price {
  display: inline-block;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.products-section__link:hover .products-section__price {
  color: #017a75 !important;
}

.products-section__price-line {
  width: 70%;
  height: 2px;
  background-color: var(--color-text);
  margin: 0.75rem auto;
}

/* Badge diagonal sur les cartes produits */
.products-section__card {
  position: relative;
}

.products-section__badge {
  position: absolute;
  top: 2rem;
  right: -2.8rem;
  width: 10rem;
  transform: rotate(45deg);
  transform-origin: center center;
  background-color: #e7be38;
  color: #000;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.6rem;
  text-transform: uppercase;
  padding: 0.45rem 0;
  z-index: 2;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  overflow: hidden;
}

/* Newsletter */
.newsletter {
  background-color: var(--color-primary);
  overflow: visible;
}

.newsletter::before,
.animal-search::before,
.collections-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  transform: scaleY(-1);
}

.newsletter::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.temoignages-section + .newsletter::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23ead7cd'/%3E%3C/svg%3E");
}

.newsletter__subtitle {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 2.5rem;
}

.newsletter__text {
  font-size: 1.1rem;
  line-height: 1.6;
}

.newsletter__input {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  outline: none;
  min-width: 20rem;
}

.newsletter__input::placeholder {
  color: #999;
}

.newsletter__submit {
  background-color: var(--color-button);
  padding: 0.75rem 1.5rem;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.newsletter__submit:hover {
  background-color: var(--color-primary);
}

.newsletter__image-circle {
  width: 20rem;
  height: 20rem;
  background-image: url('../images/cercle-ondule-rose.webp');
  background-size: cover;
  background-position: center;
}

.newsletter__image {
  width: 12rem;
  height: 12rem;
  object-fit: cover;
}

/* Animal Search */
.animal-search {
  background-color: var(--color-primary);
}

.animal-search::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23ead7cd'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.animal-search h2 {
  font-family: var(--font-heading);
  color: black;
}

.animal-search__pastille {
  width: 100%;
  max-width: 16rem;
  aspect-ratio: 1;
}

.animal-search__name {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: black;
  animation: float 3s ease-in-out infinite;
  transition: color 0.3s ease;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.animal-search__circle-wrapper {
  width: 85%;
  height: 85%;
  z-index: 1;
}

.animal-search__circle-bg {
  width: 125%;
  height: 125%;
  object-fit: contain;
  z-index: 1;
}

.animal-search__animal-img {
  position: relative;
  width: 78%;
  height: 78%;
  object-fit: cover;
  z-index: 2;
  transition: transform 0.3s ease;
}

.animal-search__link:hover .animal-search__animal-img {
  transform: scale(1.05);
}

.animal-search__link:hover .animal-search__name {
  color: #000;
}

/* Temoignages Accueil */
.temoignages-section {
  background-color: var(--color-hero);
}

.temoignages-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23ead7cd'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: translateY(-100%);
  z-index: 10;
}

.temoignages-section__title-wrapper h2 {
  font-family: var(--font-heading);
  color: var(--color-text);
}

.temoignages-section__card {
  max-width: 50rem;
  height: 20rem;
  background-color: var(--color-background);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.temoignages-section__card--img-right,
.temoignages-section__card--img-left {
  flex-direction: row;
}

@media (min-width: 768px) {
  .temoignages-section__content {
    flex: 0 0 38%;
    max-width: 38%;
  }

  .temoignages-section__image-wrapper {
    flex: 0 0 62%;
    max-width: 62%;
  }
}

.temoignages-section__image-wrapper--portrait {
  background-color: var(--color-background);
}

.temoignages-section__image--portrait {
  object-fit: contain;
}

.temoignages-section__star-svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: #D4A017;
  stroke: #000000;
  stroke-width: 1.5;
  stroke-linejoin: round;
}

.temoignages-section__text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.6;
}

.temoignages-section__author {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: #017a75;
}

.temoignages-section__nav-btn,
.collections-section__nav-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: none;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.temoignages-section__nav-btn {
  background-color: #017a75;
}

.collections-section__nav-btn {
  background-color: #ffffff;
  color: black;
}

.temoignages-section__nav-btn:hover {
  background-color: #015a56;
  transform: translateY(-50%) scale(1.1);
}

.temoignages-section__nav-btn:focus,
.collections-section__nav-btn:focus {
  outline: none;
  box-shadow: none;
}

.temoignages-section__nav-btn:active {
  background-color: #014a47;
  transform: translateY(-50%) scale(0.95);
}

.carousel-control-prev.temoignages-section__nav-btn,
.carousel-control-prev.collections-section__nav-btn {
  left: 3%;
}

.carousel-control-next.temoignages-section__nav-btn,
.carousel-control-next.collections-section__nav-btn {
  right: 3%;
}

.temoignages-section__nav-icon {
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.collections-section__nav-icon {
  font-size: 3.5rem;
  font-weight: 700;
  color: #017a75;
  line-height: 1;
  transition: color 0.3s ease;
}

.collections-section__nav-btn:hover .collections-section__nav-icon {
  color: #017a75;
}

.temoignages-section__indicator,
.collections-section__indicator {
  width: 48px;
  height: 48px;
  background-color: transparent;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 0;
  border: none;
  position: relative;
}

.collections-section__indicator {
  border-radius: 50%;
  font-size: 0;
  color: transparent;
  overflow: hidden;
}

.temoignages-section__indicator::after,
.collections-section__indicator::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.temoignages-section__indicator::after {
  width: 0.875rem;
  height: 0.875rem;
  background-color: #5fb3af;
}

.collections-section__indicator::after {
  width: 1.25rem;
  height: 1.25rem;
  background-color: #ffffff;
  border: none;
}

.temoignages-section__indicator:hover:after,
.collections-section__indicator:hover::after {
  transform: translate(-50%, -50%) scale(1.2);
}

.temoignages-section__indicator.active::after,
.collections-section__indicator.active::after {
  background-color: #017a75;
}

.temoignages-section .carousel-item-next,
.temoignages-section .carousel-item-prev,
.temoignages-section .carousel-item.active,
.collections-section .carousel-item-next,
.collections-section .carousel-item-prev,
.collections-section .carousel-item.active {
  transition: transform 0.6s ease-in-out;
}

.temoignages-section .carousel-item-next:not(.carousel-item-start),
.temoignages-section .active.carousel-item-end {
  transform: translateX(-100%);
}

.temoignages-section .carousel-item-prev:not(.carousel-item-end),
.temoignages-section .active.carousel-item-start {
  transform: translateX(100%);
}

.collections-section .carousel-item-next:not(.carousel-item-start),
.collections-section .active.carousel-item-end {
  transform: translateX(-100%);
}

.collections-section .carousel-item-prev:not(.carousel-item-end),
.collections-section .active.carousel-item-start {
  transform: translateX(100%);
}

/* Collections */
.collections-section {
  background-color: var(--color-primary);
  overflow: hidden;
}

.collections-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* =====================================================================
   COLLECTION ÉPHÉMÈRE — Section jaune pastel (#f5e6ae)
   ===================================================================== */
section.collections-section.collections-section--ephemere {
  background-color: #f5e6ae;
}

section.collections-section.collections-section--ephemere::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  transform: scaleY(-1);
  z-index: 10;
}

section.collections-section.collections-section--ephemere::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23f5e6ae'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 10;
}

/* Quand le carousel bleu suit la section jaune : ondulation jaune en haut du bleu */
.collections-section--ephemere + .collections-section:not(.collections-section--ephemere)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23f5e6ae'/%3E%3C/svg%3E");
}

/* Quand la newsletter suit la section jaune */
.collections-section--ephemere + .newsletter::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23f5e6ae'/%3E%3C/svg%3E");
}

/* Cacher le ::after de éphémère quand newsletter ou bleu suit (évite double vague) */
.collections-section--ephemere:has(+ .newsletter)::after,
.collections-section--ephemere:has(+ .collections-section:not(.collections-section--ephemere))::after,
.collections-section--ephemere:has(+ .contact-help)::after {
  display: none;
}

/* Quand le contact-help suit la section jaune */
.collections-section--ephemere + .contact-help::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23f5e6ae'/%3E%3C/svg%3E");
}

.collections-section__title-animated {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text);
  padding: 0 1rem;
  white-space: nowrap;
}

.collections-section__title-animated span {
  display: inline-block;
  animation: wave 2s ease-in-out infinite;
}

.collections-section__title-animated span {
  animation-delay: calc(var(--i, 0) * 0.05s);
}

@keyframes wave {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-8px); }
}

.collections-section__card {
  max-width: 62rem;
  height: 40rem;
  background-color: var(--color-background);
}

.collections-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collections-section__image-wrapper {
  flex: 0 0 50%;
  max-width: 50%;
  overflow: hidden;
}

.collections-section__content {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 2rem;
}

.collections-section__card-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-text);
}

.collections-section__text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  text-align: center;
  line-height: 1.6;
}

.collections-section__button {
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid black;
  white-space: nowrap;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

.collections-section__button-text {
  background-color: var(--color-button);
  color: black;
  padding: 0.5rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}


/* Contact Help */
.contact-help {
  background-color: var(--color-hero);
  padding-top: 5rem;
  padding-bottom: 3.5rem;
  overflow: visible;
}

.contact-help::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23ead7cd'/%3E%3C/svg%3E");
  transform: translateY(-100%);
  z-index: 10;
}

.contact-help__subtitle {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 2.5rem;
}

.contact-help__text {
  font-family: var(--font-body);
  font-size: 1.1rem;
}

.contact-help__button {
  border: 2px solid black;
}

.contact-help__arrows {
  border-top-left-radius: 50rem;
  border-bottom-left-radius: 50rem;
}

.contact-help__button-text {
  border-top-right-radius: 50rem;
  border-bottom-right-radius: 50rem;
}

.contact-help__image-circle {
  width: 28rem;
  height: 28rem;
  background-image: url('../images/cercle-ondule.webp');
  background-size: cover;
  background-position: center;
}

.contact-help__image {
  width: 18rem;
  height: 18rem;
  object-fit: contain;
  border-radius: 50%;
  background-color: white;
  padding: 1rem;
}

/* Page Notre Histoire */
.hero-histoire {
  background-color: var(--color-hero);
  padding-bottom: 5rem;
}

.hero-histoire::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.hero-histoire__intro {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
  max-width: 50rem;
  line-height: 1.8;
}

.histoire {
  background-color: var(--color-background);
}

.histoire__subtitle {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
}

.histoire__content {
  max-width: 80rem;
}

.histoire__content p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.equipe {
  background-color: var(--color-primary);
}

.equipe::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,35 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,0 L0,0 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.equipe::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23ead7cd'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.equipe__circle {
  width: 18rem;
  height: 18rem;
  background-image: url('../images/cercle-ondule-jaune.webp');
  background-size: cover;
  background-position: center;
}

.equipe__photo-inner {
  width: 11.5rem;
  height: 11.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.equipe__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.equipe__name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
}

.equipe__role {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: black;
}

.mission {
  background-color: var(--color-hero);
}

.mission::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23ead7cd'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: translateY(-100%);
  z-index: 10;
}

.mission::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.mission__content {
  max-width: 75rem;
}

.mission__contenu p {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

/* Footer */
.footer {
  background-color: var(--color-primary);
}

.footer__title-wrapper::before,
.footer__title-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 0.125rem;
  background-color: var(--color-text);
}

.footer__title-wrapper::before {
  left: 0;
  right: calc(50% + 0.5rem);
  transform-origin: left center;
  transform: translateY(-50%) scaleX(1);
}

.footer.footer--visible .footer__title-wrapper::before {
  animation: shrink-from-right 3s steps(50) 3s 1 normal forwards;
}

.footer__title-wrapper::after {
  right: 0;
  left: calc(50% + 0.5rem);
  transform-origin: right center;
  transform: translateY(-50%) scaleX(1);
}

.footer.footer--visible .footer__title-wrapper::after {
  animation: shrink-from-left 3s steps(50) 3s 1 normal forwards;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  z-index: 1;
}

.footer__typewriter {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  border-right: 3px solid transparent;
}

.footer.footer--visible .footer__typewriter {
  animation: blink 0.75s step-end 0s 4 normal forwards,
    typing 3s steps(50) 3s 1 normal forwards,
    blink 0.75s step-end 3s 5 normal forwards,
    hide-cursor 0s linear 6s 1 normal forwards;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-right-color: var(--color-text); }
}

@keyframes hide-cursor {
  to { border-right-color: transparent; }
}

@keyframes shrink-from-right {
  0% { transform: translateY(-50%) scaleX(1); }
  100% { transform: translateY(-50%) scaleX(0.33); }
}

@keyframes shrink-from-left {
  0% { transform: translateY(-50%) scaleX(1); }
  100% { transform: translateY(-50%) scaleX(0.33); }
}

.footer__logo {
  max-height: 13.75rem;
  transform: translateY(-1.5rem);
  margin-bottom: 1.5rem;
}

.footer__social::before,
.footer__social::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 0.125rem;
  background-color: var(--color-text);
}

.footer__social::before {
  top: 0;
}

.footer__social::after {
  bottom: 0;
}

.footer__link {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #000;
}

.footer__social-link {
  transition: transform 0.3s ease;
}

.footer__social-link:hover .footer__social-icon {
  transform: scale(1.15);
}

.footer__social-icon {
  height: 3.5rem;
  transition: transform 0.3s ease;
}

.footer__credit-link {
  color: black;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}

.footer__credit-link:hover {
  color: #000;
}

/* Pages Produits */

.product-page {
  background-color: var(--color-background);
  padding: 2rem 0 0;
}

/* Bande defilante */
.scrolling-banner {
  background-color: var(--color-button);
  overflow: hidden;
  white-space: nowrap;
  padding: 1rem 0;
  position: relative;
}

.scrolling-banner::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23d4a59e'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  transform: translateY(-100%) scaleY(-1);
  z-index: 10;
}

.scrolling-banner::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23d4a59e'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  transform: translateY(100%);
  z-index: 10;
}

.scrolling-banner__content {
  display: inline-block;
  animation: scroll 25s linear infinite;
}

.scrolling-banner__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-text);
  letter-spacing: 0.1rem;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.scrolling-banner__heart {
  display: inline-block;
  margin: 0 1.5rem;
  font-size: 0;
  animation: heartbeat 2s ease-in-out infinite;
}

.scrolling-banner__heart::before {
  content: '\2665\FE0E';
  font-size: 1.8rem;
  color: black;
  font-variant-emoji: text;
}

@keyframes heartbeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.3); }
  28% { transform: scale(1); }
  42% { transform: scale(1.3); }
  70% { transform: scale(1); }
  100% { transform: scale(1); }
}

/* Galerie produit */
.product-gallery__main {
  width: 100%;
  position: relative;
  margin-bottom: 1rem;
  padding-right: 0.75rem;
  padding-bottom: 0.75rem;
}

.product-gallery__main-inner {
  border-radius: 0;
  border-top-left-radius: 4rem;
  border-bottom-right-radius: 4rem;
  overflow: hidden;
  background-color: #f5f0e8;
  position: relative;
  aspect-ratio: 1;
}

.product-gallery__main-inner::after {
  border-right: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  border-bottom-right-radius: 4rem;
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-gallery__thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.product-gallery__thumb {
  position: relative;
  padding: 0;
  padding-right: 0.3rem;
  padding-bottom: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}


.product-gallery__thumb-inner {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 0;
  border-top-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  position: relative;
}

.product-gallery__thumb-inner::after {
  content: '';
  position: absolute;
  top: 2%;
  right: -0.25rem;
  bottom: -0.25rem;
  left: 2%;
  border-right: 2px solid var(--color-button);
  border-bottom: 2px solid var(--color-button);
  border-bottom-right-radius: 1rem;
  background: transparent;
  pointer-events: none;
  z-index: -1;
}

.product-gallery__thumb:hover .product-gallery__thumb-inner,
.product-gallery__thumb.active .product-gallery__thumb-inner {
  border-color: var(--color-primary);
}

.product-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Infos produit */
.product-info__header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.product-info__title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-text);
  margin-bottom: 0;
  margin-right: 1rem;
  white-space: nowrap;
}

.product-info__line {
  flex-grow: 1;
  height: 2px;
  background-color: var(--color-text);
}

.product-info__tagline {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #444;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.product-info__price {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.product-info__price .price-value {
  font-weight: 800;
  font-size: 2rem;
}

.product-info__price span {
  font-size: 1rem;
  font-weight: 500;
  color: #444;
}

/* Badges */
.product-badges {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  background-color: #e7be38;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.product-badge--limited {
  background-color: var(--color-button);
  color: var(--color-text);
}

.product-kit-content {
  background-color: rgba(122, 163, 167, 0.1);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--color-primary);
}

.product-kit-content__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.product-kit-content__list {
  margin: 0;
  padding-left: 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.product-kit-content__list li {
  margin-bottom: 0.25rem;
}

.product-page--alternate {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Options produit */
.product-options {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.product-options__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  color: var(--color-text);
}

.color-options {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.color-option {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #ccc;
  transition: all 0.3s ease;
  position: relative;
  padding: 0;
  background: none;
}

.color-option:hover,
.color-option:focus {
  transform: scale(1.1);
  outline: none;
}

.color-option:focus-visible {
  box-shadow: 0 0 0 3px var(--color-primary);
}

.color-option.selected {
  border: 3px solid black;
}

.color-option.selected::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  font-weight: bold;
  color: black;
}

.color-rose { background-color: #f5b5cd; }
.color-bleu { background-color: #8fcee8; }
.color-vert { background-color: #a8d68d; }
.color-jaune { background-color: #f7e77d; }
.color-mauve { background-color: #c4b0df; }
.color-blanc { background-color: #ffffff; }
.color-noir { background-color: #1a1a1a; }
.color-orange { background-color: #f4a940; }

.color-option.color-noir.selected::after {
  color: #ffffff;
}

.color-bleu-jaune {
  background: linear-gradient(135deg, #8fcee8 50%, #f7e77d 50%);
}

.color-vert-rose {
  background: linear-gradient(135deg, #a8d68d 50%, #f5b5cd 50%);
}

.color-melange {
  background: conic-gradient(#8fcee8 0deg 90deg, #f7e77d 90deg 180deg, #a8d68d 180deg 270deg, #f5b5cd 270deg 360deg);
}

.color-melange-confettis {
  background: conic-gradient(#f5b5cd 0deg 90deg, #8fcee8 90deg 180deg, #c4b0df 180deg 270deg, #f7e77d 270deg 360deg);
}

.color-option.color-melange.selected::after,
.color-option.color-melange-confettis.selected::after {
  color: black;
}

.color-option.color-blanc.selected::after {
  color: var(--color-text);
}

/* Saveurs */
.flavor-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.flavor-option,
.format-option {
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--color-text);
  border-radius: 25px;
  background-color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--color-text);
}

.flavor-option:hover,
.format-option:hover {
  background-color: var(--color-button);
}

.flavor-option:focus,
.format-option:focus {
  outline: none;
}

.flavor-option:focus-visible,
.format-option:focus-visible {
  box-shadow: 0 0 0 3px var(--color-primary);
}

.flavor-option.selected,
.format-option.selected {
  background-color: var(--color-primary);
  border-color: var(--color-text);
  color: var(--color-text);
}

.format-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Champ inscription */
.inscription-input {
  width: 100%;
  padding: 0.9rem 1.5rem;
  border: 2px solid var(--color-text);
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: white;
  outline: none;
  transition: border-color 0.3s ease;
}

.inscription-input:focus {
  border-color: var(--color-primary);
}

.inscription-input:focus-visible {
  box-shadow: 0 0 0 3px rgba(122, 163, 167, 0.3);
}

.inscription-input::placeholder {
  color: #999;
}

.inscription-counter {
  text-align: right;
  font-size: 0.85rem;
  color: #444;
  margin-top: 0.5rem;
}

/* Quantite */
.quantity-selector {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
  border: 2px solid var(--color-text);
  border-radius: 25px;
  overflow: hidden;
}

.quantity-btn {
  width: 45px;
  height: 45px;
  border: none;
  background-color: white;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

.quantity-btn:first-child {
  border-radius: 0;
}

.quantity-btn:last-child {
  border-radius: 0;
}

.quantity-btn:hover {
  background-color: var(--color-button);
}

.quantity-btn:focus {
  outline: none;
}

.quantity-btn:focus-visible {
  box-shadow: 0 0 0 3px var(--color-primary);
  z-index: 1;
}

.quantity-input {
  width: 60px;
  height: 45px;
  border: none;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  background-color: white;
  color: var(--color-text);
  -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-input:focus {
  outline: none;
}

.quantity-input:focus-visible {
  box-shadow: inset 0 0 0 2px var(--color-primary);
}

/* Bouton panier */
.add-to-cart-btn {
  display: inline-flex;
  align-items: stretch;
  border: 2px solid var(--color-text);
  border-radius: 30px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  background: none;
  padding: 0;
  margin-top: 1.5rem;
}

.add-to-cart-btn__arrows {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 0 0.75rem;
  gap: 0.1rem;
}

.add-to-cart-btn__arrow {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  animation: arrow-pulse 1.5s infinite;
}

.add-to-cart-btn__arrow:nth-child(1),
.newsletter-popup__btn-arrow:nth-child(1) { animation-delay: 0s; }
.add-to-cart-btn__arrow:nth-child(2),
.newsletter-popup__btn-arrow:nth-child(2) { animation-delay: 0.5s; }
.add-to-cart-btn__arrow:nth-child(3),
.newsletter-popup__btn-arrow:nth-child(3) { animation-delay: 1s; }

.add-to-cart-btn__text {
  background-color: var(--color-button);
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-text);
  transition: background-color 0.3s ease;
}


.add-to-cart-btn:focus {
  outline: none;
}

.add-to-cart-btn:focus-visible {
  box-shadow: 0 0 0 3px var(--color-primary);
}

/* Paiement securise */
.secure-payment {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding: 1rem 0;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.secure-payment__icon {
  font-size: 1.2rem;
  color: #b8860b;
}

.secure-payment__icon svg {
  width: 22px;
  height: 22px;
  stroke: #b8860b;
  stroke-width: 2;
  fill: none;
}

.secure-payment__text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: black;
}

.secure-payment__logos {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.secure-payment__logos span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #333;
  padding: 0.3rem 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: white;
}

.product-info__details {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.product-warning {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
  margin-top: 0.5rem;
}

/* Accordeons */
.product-details-section {
  background-color: var(--color-primary);
  padding: 4rem 0;
  position: relative;
  overflow: visible;
}

.product-details-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  transform: scaleY(-1);
}

.product-details-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.product-accordion {
  margin-bottom: 1rem;
}

.product-accordion__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: white;
  border: 2px solid var(--color-text);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--color-text);
}

.product-accordion__header:hover {
  background-color: var(--color-button);
}

.product-accordion__header:focus {
  outline: none;
}

.product-accordion__header:focus-visible {
  box-shadow: 0 0 0 3px var(--color-primary);
}

.product-accordion__header.active {
  border-radius: 30px 30px 0 0;
  background-color: var(--color-button);
}

.product-accordion__icon {
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.3s ease;
  color: var(--color-text);
}

.product-accordion__header.active .product-accordion__icon {
  transform: rotate(45deg);
}

.product-accordion__content {
  display: none;
  padding: 1.5rem;
  background-color: white;
  border: 2px solid var(--color-text);
  border-top: none;
  border-radius: 0 0 30px 30px;
}

.product-accordion__content.show {
  display: block;
}

.product-accordion__content p,
.product-accordion__content li {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.product-accordion__content ul {
  padding-left: 1.5rem;
  margin: 0;
}

.product-accordion__content li {
  margin-bottom: 0.5rem;
}

/* Produits similaires */
.similar-products {
  background-color: var(--color-background);
  padding: 3rem 0 6rem;
}

.similar-products__header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.similar-products__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-text);
  margin: 0;
  margin-right: 1.5rem;
  white-space: nowrap;
}

.similar-products__line {
  flex-grow: 1;
  height: 2px;
  background-color: var(--color-text);
}

.similar-product-card {
  background-color: var(--color-hero);
  border-radius: 0;
  border-top-left-radius: 4rem;
  border-bottom-right-radius: 4rem;
  overflow: hidden;
  box-shadow: 0.3125rem 0.3125rem 0 var(--color-primary);
  transition: all 0.4s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.similar-product-card:hover {
  box-shadow:
    0.3125rem 0.3125rem 0 var(--color-primary),
    0.625rem 0.625rem 0 var(--color-button),
    0.9375rem 0.9375rem 0 rgba(122, 163, 167, 0.4);
  transform: translate(-0.3125rem, -0.3125rem);
}

.similar-product-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 4rem;
  flex-shrink: 0;
}

.similar-product-card__body {
  padding: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.similar-product-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.similar-product-card__line {
  width: 60%;
  height: 2px;
  background-color: var(--color-text);
  margin: 0.5rem auto;
}

.similar-product-card__price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
}

.similar-product-card:hover .similar-product-card__price {
  color: #017a75;
}

/* Bouton contact flottant */
.contact-float-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #e7be38;
  color: #000000;
  padding: 0.75rem 1.25rem;
  border-radius: 30px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
  cursor: pointer;
  border: none;
}

.contact-float-btn:hover {
  background-color: #b8941f;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  color: #000000;
}

.contact-float-btn:focus {
  outline: none;
}

.contact-float-btn:focus-visible {
  box-shadow: 0 0 0 3px var(--color-primary), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-float-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.contact-float-btn__icon svg {
  width: 18px;
  height: 18px;
  stroke: #000000;
  stroke-width: 2;
  fill: none;
}

.contact-popup {
  display: none;
  position: fixed;
  bottom: 85px;
  right: 25px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  padding: 1.5rem 1.75rem;
  z-index: 999;
  min-width: 300px;
}

.contact-popup.show {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-popup__header {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.contact-popup__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text);
  margin: 0;
  margin-right: 1rem;
  white-space: nowrap;
}

.contact-popup__line {
  flex-grow: 1;
  height: 2px;
  background-color: var(--color-text);
}

.contact-popup__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
}

.contact-popup__item a {
  color: #017a75;
  text-decoration: none;
  font-weight: 600;
}

.contact-popup__item a:hover {
  text-decoration: underline;
}

.contact-popup__item a:focus {
  outline: none;
}

.contact-popup__item a:focus-visible {
  box-shadow: 0 0 0 2px var(--color-primary);
  border-radius: 3px;
}

.contact-popup__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.contact-popup__icon svg {
  width: 18px;
  height: 18px;
  stroke: #017a75;
  stroke-width: 2;
  fill: none;
}

.contact-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #767676;
  line-height: 1;
}

.contact-popup__close:hover {
  color: var(--color-text);
}

.contact-popup__close:focus {
  outline: none;
}

.contact-popup__close:focus-visible {
  box-shadow: 0 0 0 3px var(--color-primary);
  border-radius: 4px;
}

/* Popup newsletter */
.newsletter-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: background-color 1s ease, opacity 1s ease, visibility 1s ease;
}

.newsletter-popup-overlay.active {
  opacity: 1;
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.4);
}

.newsletter-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  background-color: var(--color-background);
  border-radius: 0;
  border-top-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
  max-width: 28rem;
  width: 90%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease, transform 1.2s ease-out, visibility 1.2s ease;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.newsletter-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.newsletter-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--color-text);
  background-color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.newsletter-popup__close:hover {
  background-color: var(--color-button);
  color: #000;
  border-color: var(--color-button);
}

.newsletter-popup__header {
  background-color: var(--color-primary);
  padding: 2rem;
  text-align: center;
}

.newsletter-popup__logo {
  max-width: 200px;
  margin-bottom: 1rem;
}

.newsletter-popup__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.newsletter-popup__subtitle {
  font-size: 1.1rem;
  color: var(--color-text);
  margin: 0;
}

.newsletter-popup__body {
  padding: 2rem;
}

.newsletter-popup__offer {
  text-align: center;
  margin-bottom: 1.5rem;
}

.newsletter-popup__discount {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #b5716a;
  display: block;
}

.newsletter-popup__offer-text {
  font-size: 1rem;
  color: #333;
}

.newsletter-popup__form input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #ddd;
  border-radius: 25px;
  font-family: var(--font-body);
  margin-bottom: 1rem;
}

.newsletter-popup__form input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.newsletter-popup__btn {
  display: inline-flex;
  align-items: stretch;
  border: 2px solid var(--color-text);
  border-radius: 30px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  background: none;
  padding: 0;
  width: 100%;
}

.newsletter-popup__btn-arrows {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 0.9rem 0.75rem;
  padding-left: 1.25rem;
  gap: 0.1rem;
  border-radius: 30px 0 0 30px;
}

.newsletter-popup__btn-arrow {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  animation: arrow-pulse 1.5s infinite;
}


.newsletter-popup__btn-text {
  flex-grow: 1;
  background-color: var(--color-button);
  padding: 0.9rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-text);
  transition: background-color 0.3s ease;
  text-align: center;
}


.newsletter-popup__privacy {
  font-size: 0.75rem;
  color: #666;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* Responsive produits */
/* Page Coordonnees */

.hero-coordonnees {
  background-color: var(--color-hero);
  padding: 3rem 0 4rem;
  position: relative;
}

.hero-coordonnees::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.hero-coordonnees h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

.hero-coordonnees__intro {
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text);
}

.contact-section {
  background-color: var(--color-background);
}

.contact-section h2 {
  font-size: 3rem;
}

.contact__form-wrapper {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact__input {
  border: 2px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact__input:focus {
  border-color: var(--color-primary-dark);
  box-shadow: 0 0 0 3px rgba(1, 122, 117, 0.2);
  outline: none;
}

.contact__textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
}

.contact__info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact__info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact__info-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  border-radius: 50%;
  color: #fff;
}

.contact__info-label {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.contact__info-value {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.contact__info-link {
  color: var(--color-primary-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact__info-link:hover {
  color: #015a56;
  text-decoration: underline;
}

.contact__social {
  border-top: 2px solid var(--color-primary-dark);
}

.contact__social-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.contact__social-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.contact__social-link:hover {
  transform: translateY(-3px) scale(1.1);
}

.contact__social-icon {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

/* Points de vente */
.points-vente {
  background-color: var(--color-hero);
  position: relative;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.points-vente::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L0,20 Q15,35 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,0 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.points-vente::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.points-vente h2 {
  font-size: 3rem;
}

.points-vente__intro {
  max-width: 50rem;
  font-size: 1.0625rem;
  color: #555;
}

.points-vente__card {
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.points-vente__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.points-vente__map-wrapper {
  position: relative;
  width: 100%;
  height: 20rem;
  overflow: hidden;
}

.points-vente__map {
  width: 100%;
  height: 100%;
  border: none;
}

.points-vente__map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  border: none;
  background-color: #e8e0d8;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.points-vente__map-placeholder:hover {
  background-color: #ddd4cb;
}

.points-vente__map-icon {
  color: var(--color-primary-dark);
}

.points-vente__map-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.points-vente__map-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  overflow: hidden;
}

.points-vente__map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.points-vente__map-link:hover .points-vente__map-img {
  transform: scale(1.05);
}

.points-vente__map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.points-vente__map-link:hover .points-vente__map-overlay {
  opacity: 1;
}

.points-vente__name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-text);
}

.points-vente__address {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #555;
  font-style: normal;
  line-height: 1.6;
}

.points-vente__address svg {
  flex-shrink: 0;
  color: var(--color-primary-dark);
}

.points-vente__directions {
  display: inline-flex;
  align-items: center;
  color: #015a56;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.points-vente__directions:hover {
  color: #014a46;
}

.points-vente__directions svg {
  transition: transform 0.3s ease;
  color: #015a56;
}

.points-vente__directions:hover svg {
  transform: translateX(3px);
}

.points-vente__become-partner {
  border-top: 2px dashed var(--color-primary-dark);
}

.points-vente__partner-link {
  display: inline-flex;
  align-items: center;
  color: #015a56;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.points-vente__partner-link:hover {
  color: #014a46;
}

.points-vente__partner-link svg {
  transition: transform 0.3s ease;
}

.points-vente__partner-link:hover svg {
  transform: translateX(5px);
}

.cta-section {
  background-color: var(--color-background);
  padding: 4rem 0 5rem;
}

.cta-section h2 {
  font-size: 3rem;
}

.decorative-line {
  height: 0.125rem;
  background-color: var(--color-text);
}

/* Menu mobile : voir responsive.css */

/* Responsive coordonnees */

/* FAQ Accordion */
.faq-accordion {
  border: none;
}

.faq-accordion__item {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}

.faq-accordion__item:last-child {
  border-bottom: none;
}

.faq-accordion__button {
  background-color: transparent;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  box-shadow: none;
}

.faq-accordion__button:not(.collapsed) {
  background-color: transparent;
  color: #017a75;
  box-shadow: none;
}

.faq-accordion__button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-accordion__button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion__button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23017a75'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion__body {
  padding: 0 0 1.5rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
}

.faq-accordion--light .faq-accordion__button {
  color: #fff;
}

.faq-accordion--light .faq-accordion__button:not(.collapsed) {
  color: #fff;
}

.faq-accordion--light .faq-accordion__button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion--light .faq-accordion__button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion--light .faq-accordion__body {
  color: var(--color-text);
}

.faq-accordion--light .faq-accordion__item {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
/* Page Compte */
.compte__form-wrapper {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.compte__icon-circle {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-background);
  border-radius: 50%;
  color: var(--color-button);
}

.compte__icon-circle svg {
  stroke: var(--color-button);
}

.decorative-line--light {
  background-color: var(--color-text);
}

.compte__link {
  color: var(--color-primary-dark);
}
.compte__password-wrap {
  position: relative;
}
.compte__password-wrap .contact__input {
  padding-right: 3rem;
}
/* Cacher l'œil natif Edge/Chrome */
.compte__password-wrap input[type="password"]::-ms-reveal,
.compte__password-wrap input[type="password"]::-ms-clear,
.compte__password-wrap input[type="password"]::-webkit-credentials-auto-fill-button {
  display: none !important;
}
.compte__eye-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3rem;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #1a73e8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compte__eye-btn:hover {
  color: #1557b0;
}
.compte__delete-toggle {
  color: #767676;
  font-size: 0.85rem;
  background: none;
  padding: 0;
  border: 0;
}
.compte__delete-toggle:hover {
  color: var(--color-primary-dark);
}
.compte__danger-zone {
  border: 1px solid #c8dfe0;
  background-color: #f4fafa;
}
.compte__danger-btn {
  border-color: var(--color-text) !important;
}
.compte__danger-btn .cta-final__arrows {
  background-color: #fff;
}
.compte__danger-btn .cta-final__text,
.compte__danger-btn-text {
  background-color: var(--color-primary) !important;
  color: #000 !important;
}
.compte__danger-btn .cta-final__arrow {
  color: #000;
}
.compte__danger-btn:hover .cta-final__text,
.compte__danger-btn:hover .compte__danger-btn-text {
  background-color: var(--color-button) !important;
  color: #000 !important;
}
.compte__feature-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-text);
}

.compte-guest {
  background-color: var(--color-hero);
  overflow: visible;
  margin-top: -1px;
  margin-bottom: 0;
}

.compte-guest::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: calc(2.5rem + 2px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  transform: scaleY(-1);
}

.compte-guest + .newsletter {
  margin-top: -2px;
}

.compte-guest + .newsletter::before {
  top: -2px;
  height: calc(2.5rem + 4px);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23ead7cd'/%3E%3C/svg%3E");
}

.compte-guest h2 {
  font-family: var(--font-heading);
}

/* Page Panier */
.panier__empty-icon {
  color: var(--color-button);
}

.panier__empty-icon svg {
  stroke: var(--color-button);
}

/* Page Infolettre */
.infolettre__icon {
  stroke: var(--color-button);
}

.infolettre__testimonial {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.infolettre__author {
  color: var(--color-primary-dark);
}


/* Page Blogue */
.blogue__article-card {
  background-color: #fff;
  border-radius: 0;
  border-top-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blogue__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blogue__article-image-wrapper {
  overflow: hidden;
}

.blogue__article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blogue__article-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blogue__article-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.blogue__article-category {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  background-color: #d4a59e;
  border-radius: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
}

.blogue__article-category--education {
  background-color: #7aa3a7;
  color: #000;
}

.blogue__article-category--conseils {
  background-color: #d4a59e;
  color: #000;
}

.blogue__article-date {
  font-size: 0.9rem;
  color: #666;
}

.blogue__article-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-text);
}

.blogue__article-excerpt {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

.blogue__section-title {
  color: #000;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.blogue__full-article p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #000;
}

.blogue__full-article h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.blogue__full-article ul {
  padding-left: 1.5rem;
}

.blogue__full-article li {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #000;
}

.blogue__full-article strong {
  color: #000;
  font-weight: 700;
}

.blogue__warning-box {
  background-color: rgba(122, 163, 167, 0.15);
  border-left: 4px solid var(--color-button);
  border-radius: 0 1rem 1rem 0;
}

.blogue__warning-box h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.blogue__warning-box ul {
  color: var(--color-text);
}

.blogue__warning-box li {
  color: var(--color-text);
}

.blogue__food-card {
  background-color: var(--color-background);
  border-radius: 1rem;
  height: 100%;
}

.blogue__articles-grid {
  display: grid;
  gap: 2rem;
}

.blogue__tip-card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blogue__tip-icon {
  width: 3.5rem;
  height: 3.5rem;
  min-width: 3.5rem;
  border-radius: 50%;
  background-color: var(--color-background);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blogue__tip-icon svg {
  stroke: #7aa3a7;
}

.blogue__tip-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-text);
}

.blogue__full-article-light h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-text);
}

.blogue__full-article-light p {
  font-size: 1.0625rem;
  line-height: 1.8;
}

.blogue__conservation-section {
  background-color: var(--color-hero);
  position: relative;
  overflow: visible;
}

.blogue__conservation-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.blogue__section--education {
  background-color: var(--color-primary);
  position: relative;
  overflow: visible;
}

.blogue__section--education::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23ead7cd'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.blogue__section--conseils {
  background-color: var(--color-hero);
  position: relative;
  overflow: visible;
}

.blogue__section--conseils::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.blogue__section-header {
  color: #013d3a;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.blogue__section--conseils .blogue__section-header {
  color: var(--color-text);
}

.newsletter--blogue::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23ead7cd'/%3E%3C/svg%3E") !important;
}

/* ============================================================
   Commentaires du blogue
   ============================================================ */

.commentaires__liste {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0;
}

.commentaires__item {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.commentaires__item .children {
  list-style: none;
  padding-left: 1.5rem;
  margin-top: 1.25rem;
  border-left: 3px solid var(--color-hero);
}

.commentaires__item .children .commentaires__item {
  box-shadow: none;
  background-color: var(--color-background);
}

.commentaires__avatar {
  flex-shrink: 0;
}

.commentaires__auteur {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
}

.commentaires__date {
  font-family: var(--font-body);
  font-size: 0.8rem;
}

.commentaires__contenu {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
}

.commentaires__contenu p:last-child {
  margin-bottom: 0;
}

.commentaires__moderation {
  background-color: #fff8e1;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
}

.commentaires__repondre a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.commentaires__repondre a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Formulaire de commentaire */
.commentaires__form .comment-reply-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.commentaires__form .comment-reply-title small {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

.commentaires__form .comment-reply-title small a {
  color: var(--color-primary-dark);
  text-decoration: none;
}

.commentaires__form .comment-reply-title small a:hover {
  text-decoration: underline;
}

.commentaires__form .logged-in-as {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}

.commentaires__form .logged-in-as a {
  color: var(--color-primary-dark);
  text-decoration: none;
}

.commentaires__form .form-submit {
  margin-top: 1rem;
  margin-bottom: 0;
}


.nouveaute-card-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.nouveaute-card {
  background-color: #fff;
  border-radius: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.nouveaute-card__image-wrapper {
  overflow: hidden;
  min-height: 350px;
  border-radius: 2.5rem 0 0 2.5rem;
  aspect-ratio: 1 / 1;
}

.nouveaute-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: gentleRotate 10s ease-in-out infinite;
}

@keyframes gentleRotate {
  0%, 100% {
    transform: rotate(-1deg) scale(1.02);
  }
  50% {
    transform: rotate(1deg) scale(1.05);
  }
}

.nouveaute-card:hover .nouveaute-card__image {
  animation-play-state: paused;
}

.nouveaute-card__content {
  background-color: #fff;
}

.nouveaute-card__title {
  font-family: var(--font-heading);
  color: var(--color-text);
}

.nouveaute-card__line {
  height: 2px;
  background-color: var(--color-text);
}

.nouveaute-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nouveaute-card__description {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.7;
}


/* Confirmation Page */
/* overflow: hidden contient les pseudo-éléments ::after/::before qui débordent
   légèrement des sections et créaient une barre de défilement verticale parasite */
.confirmation-hero,
.confirmation-steps,
.confirmation-contact,
.confirmation-contact--blue {
  overflow: hidden;
}
.confirmation-hero {
  background-color: var(--color-hero);
}

.confirmation-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.confirmation-hero--to-blue::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%237aa3a7'/%3E%3C/svg%3E");
}

.confirmation__icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.confirmation__check-icon {
  color: white;
}

.confirmation__title {
  font-family: var(--font-heading);
  color: var(--color-text);
}

.confirmation__subtitle {
  font-family: var(--font-body);
  color: var(--color-text);
}

.confirmation-details {
  background-color: var(--color-background);
}

.confirmation__card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.confirmation__label {
  font-family: var(--font-body);
  color: var(--color-text);
}

.confirmation__value {
  font-family: var(--font-body);
  color: #666;
}

.confirmation__status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--color-primary);
  color: black;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.confirmation-steps {
  background-color: var(--color-primary);
}

.confirmation-steps::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,35 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,0 L0,0 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.confirmation-steps--from-hero::before {
  display: none;
}

.confirmation-steps::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23ead7cd'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.confirmation__step {
  background-color: var(--color-background);
  border-radius: 1rem;
  height: 100%;
}

.confirmation__step--card {
  background-color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.confirmation__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--color-button);
  color: black;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
}

.confirmation__step-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
}

.confirmation__step-title--large {
  font-size: 1.75rem;
}

.confirmation-contact {
  background-color: var(--color-hero);
}

.confirmation-contact::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23ead7cd'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: translateY(-100%);
  z-index: 10;
}

.confirmation-contact::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.confirmation-contact--blue {
  background-color: var(--color-primary);
}

.confirmation-contact--blue::before {
  display: none;
}

.confirmation-contact--blue::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
}

.confirmation-steps--beige {
  background-color: var(--color-background);
}

.confirmation-steps--beige::before {
  display: none;
}

.confirmation-steps--beige::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%237aa3a7'/%3E%3C/svg%3E");
}

.confirmation-hero--to-beige::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
}

.confirmation__contact-link {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--color-text);
  border-radius: 2rem;
  transition: all 0.3s ease;
}

.confirmation__contact-link:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.confirmation__contact-link svg {
  flex-shrink: 0;
}

.confirmation__contact-link--large {
  font-size: 1.25rem;
  padding: 1rem 2rem;
}

.confirmation__benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  color: var(--color-primary);
}

.confirmation__benefit-icon svg {
  stroke: currentColor;
}

.confirmation__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.confirmation__social-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.confirmation__social-icon {
  width: 36px;
  height: 36px;
}

.confirmation__social-icon--infolettre {
  width: 90px;
  height: 90px;
}

/* Pages Animaux (Chien, Chat, etc.) */
.hero-chien {
  background-color: var(--color-hero);
}

.hero-chien::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.hero-chien h1 {
  font-size: 3.5rem;
}

.hero-chien__intro {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 50rem;
}

.hero-chien__animal-circle {
  width: 22rem;
  height: 22rem;
  background-image: url('../images/cercle-ondule.webp');
  background-size: cover;
  background-position: center;
}

.hero-chien__animal-img {
  width: 14rem;
  height: 14rem;
  object-fit: cover;
  border-radius: 50%;
}

.chien-products {
  background-color: var(--color-background);
}

.chien-products h2 {
  font-size: 2.75rem;
}

/* Infolettre section */
.infolettre-hero {
  background-color: var(--color-hero);
}

.infolettre-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%237aa3a7'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.infolettre-hero h1 {
  font-size: 3.5rem;
}

.infolettre-hero__intro {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 45rem;
}

.infolettre-benefits {
  background-color: var(--color-primary);
  position: relative;
}

.infolettre-benefits::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.infolettre-benefits h2 {
  font-size: 2.75rem;
}

.infolettre__benefit-card {
  background-color: var(--color-background);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.infolettre__benefit-card:hover {
  transform: translateY(-5px);
}

.infolettre__benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: var(--color-hero);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.infolettre__benefit-icon svg {
  width: 35px;
  height: 35px;
  stroke: var(--color-primary-dark);
  stroke-width: 2;
}

.infolettre__benefit-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.infolettre__benefit-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.infolettre-form-section {
  background-color: var(--color-background);
}

.infolettre-form-section h2 {
  font-size: 2.75rem;
}

.infolettre__form-wrapper {
  background-color: white;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 35rem;
}

.infolettre__input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.infolettre__input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.infolettre__privacy {
  font-size: 0.85rem;
  color: #666;
}

.infolettre__privacy a {
  color: var(--color-primary-dark);
  text-decoration: none;
}

.infolettre__privacy a:hover {
  text-decoration: underline;
}

/* Page Boutique */
.hero-boutique {
  background-color: var(--color-hero);
}

.hero-boutique::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.hero-boutique h1 {
  font-size: 3.5rem;
}

.boutique-section {
  background-color: var(--color-background);
}

.boutique-section h2 {
  font-size: 2.5rem;
}

.boutique__category-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.boutique__category-btn {
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--color-text);
  border-radius: 25px;
  background-color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--color-text);
}

.boutique__category-btn:hover,
.boutique__category-btn.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

/* FAQ Page */
.faq-hero {
  background-color: var(--color-hero);
}

.faq-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.faq-hero h1 {
  font-size: 3.5rem;
}

.faq-hero__intro {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 45rem;
}

/* Pages Compte et Panier */
.compte-hero,
.panier-hero {
  background-color: var(--color-hero);
}

.compte-hero::after,
.panier-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}

.compte-hero h1,
.panier-hero h1 {
  font-size: 3rem;
}

.compte-section,
.panier-section {
  background-color: var(--color-background);
}

.compte__card,
.panier__card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.compte__input,
.panier__input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e0e0e0;
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.compte__input:focus,
.panier__input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.compte__btn,
.panier__btn {
  display: inline-flex;
  align-items: stretch;
  border: 2px solid var(--color-text);
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  background: none;
  padding: 0;
}

.compte__btn-text,
.panier__btn-text {
  background-color: var(--color-button);
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-text);
  transition: background-color 0.3s ease;
}

.compte__btn:hover .compte__btn-text,
.panier__btn:hover .panier__btn-text {
  background-color: var(--color-primary);
}

.panier__empty {
  text-align: center;
  padding: 3rem 2rem;
}

.panier__empty-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  color: #767676;
}

.panier__empty-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.panier__empty-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

/* Utilitaires globaux */

/* Bootstrap text-muted (#6c757d) flirte avec le seuil WCAG 4.5:1 sur fond clair.
   On force un ton légèrement plus sombre pour passer AA sans effort. */
.text-muted {
  color: #636c73 !important;
}
.text-primary-dark {
  color: var(--color-primary-dark) !important;
}

.bg-primary-light {
  background-color: rgba(122, 163, 167, 0.15);
}

.border-primary {
  border-color: var(--color-primary) !important;
}

.rounded-custom {
  border-radius: 0;
  border-top-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
}

/* Animations utilitaires */
.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.5s ease-out forwards;
}

/* Focus visible pour accessibilite */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

/* Skip link accessibilite */
.skip-link {
  position: fixed;
  top: -40px;
  left: 0;
  background: #336b6f;
  color: white;
  padding: 8px 16px;
  z-index: 10000;
  transition: top 0.3s;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* Print styles */
@media print {
  .header,
  .footer,
  .newsletter,
  .contact-float-btn,
  .newsletter-popup-overlay {
    display: none !important;
  }

  body {
    background-color: white !important;
    color: black !important;
  }

  a {
    text-decoration: underline;
  }

  .hero::after,
  .hero-boutique::after,
  .newsletter::before,
  .newsletter::after {
    display: none !important;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero__animal-circle:hover .hero__animal-flipper {
    transform: none;
  }

  .scrolling-banner__content {
    animation: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: more) {
  :root {
    --color-primary: #005f5b;
    --color-button: #b8847d;
  }

  .header__link,
  .footer__link {
    text-decoration: underline;
  }
}

/* Accordeons FAQ */
.faq-accordion .accordion-item {
  background-color: transparent;
  border: none;
  margin-bottom: 1rem;
}

.faq-accordion .accordion-item:first-of-type,
.faq-accordion .accordion-item:last-of-type {
  border-radius: 30px;
}

.faq-accordion .accordion-item:first-of-type .accordion-button,
.faq-accordion .accordion-item:last-of-type .accordion-button {
  border-radius: 30px;
}

.faq-accordion .accordion-button {
  background-color: white;
  border: 2px solid var(--color-text);
  border-radius: 30px !important;
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  box-shadow: none;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: var(--color-button);
  border-radius: 30px !important;
  color: var(--color-text);
  box-shadow: none;
}

.faq-accordion .accordion-button:hover {
  background-color: var(--color-button);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--color-text);
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: '+';
  font-size: 1.5rem;
  font-weight: 700;
  width: auto;
  height: auto;
  transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: '\2212';
  transform: none;
}

.faq-accordion .accordion-collapse {
  border: 2px solid var(--color-text);
  border-radius: 30px !important;
  background-color: white;
  margin-top: 0.5rem;
}

.faq-accordion .accordion-body {
  padding: 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
}

/* Page produit-a-venir */
.construction__card {
  background-color: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.construction__image-container {
  max-width: 400px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 4px solid var(--color-primary);
}

.construction__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.construction__image-container:hover .construction__image {
  transform: scale(1.03);
}

.construction__highlight {
  color: #4b7c80;
  font-size: 1.1rem;
}

.construction__title {
  color: #5b8c90;
  font-family: var(--font-heading);
}

.construction__content {
  max-width: 600px;
}

.construction__text {
  color: var(--color-text);
  line-height: 1.7;
}

/* Error 404 */
.error-page {
  background-color: var(--color-background);
}

.error-page__image-wrapper {
  position: relative;
}

.error-page__image {
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 8px 8px 0 var(--color-hero);
  transition: transform 0.4s ease;
}

.error-page__image-wrapper:hover .error-page__image {
  transform: rotate(-2deg) scale(1.02);
}

.error-page__code {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
}

.error-page__title {
  font-family: var(--font-heading);
  color: var(--color-text);
}

.error-page__separator {
  width: 80px;
  height: 3px;
  background-color: var(--color-button);
  border-radius: 2px;
}

.error-page__text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text);
}

.error-page__suggestion {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  max-width: 500px;
}


/* Error 404 - Animal Search Modifier */
.animal-search--error {
  background-color: var(--color-hero);
  margin-bottom: 0;
  padding-bottom: 4rem;
}

.animal-search--error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
}

.animal-search--error::after {
  display: none;
}

.animal-search--error h2 {
  color: black;
}

.animal-search--error .animal-search__line {
  background-color: black;
}

.animal-search--error .animal-search__name {
  color: black;
}

.animal-search--error .animal-search__circle-bg {
  filter: hue-rotate(165deg) saturate(0.45) brightness(0.82);
}

.product-options__label-small {
  font-weight: bold;
  text-transform: uppercase;
}


.perso-options__field {
  margin-bottom: 1rem;
}

.perso-options__colors {
  margin-top: 1.5rem;
}


.fraction {
  font-size: 1.3em;
  font-weight: 600;
  padding: 0 0.2em;
}

.similar-products .row {
  justify-content: center;
}

.policy__subtitle {
  color: var(--color-primary-dark);
}

.policy__emphasis {
  letter-spacing: 0.5px;
}

.newsletter--hero {
  background-color: var(--color-hero);
}


.products-section__heart-icon {
  margin-right: 12px;
  display: inline-block;
  font-size: 0;
}

.products-section__heart-icon::before {
  content: '\2665\FE0E';
  font-size: 1rem;
  color: #016560;
  font-variant-emoji: text;
}

/* Subpixel gap fix - waves inside sections */
.newsletter::before,
.animal-search::before,
.collections-section::before,
.product-details-section::before,
.confirmation-steps--from-hero::before,
.confirmation-steps::before,
.compte-guest::before,
.equipe::before {
  top: -1px;
}

.hero::after,
.hero-boutique::after,
.hero-histoire::after,
.hero-coordonnees::after,
.hero-chien::after,
.confirmation-hero::after,
.confirmation-hero--to-blue::after,
.confirmation-hero--to-beige::after,
.confirmation-steps::after,
.confirmation-steps--beige::after,
.confirmation-contact::after,
.confirmation-contact--blue::after,
.infolettre-hero::after,
.faq-hero::after,
.compte-hero::after,
.panier-hero::after,
.compte-guest::after,
.newsletter::after,
.collections-section::after,
.product-details-section::after,
.equipe::after,
.mission::after {
  bottom: -1px;
}

.temoignages-section::before,
.contact-help::before,
.confirmation-contact::before,
.mission::before {
  top: 1px;
}

.scrolling-banner::before {
  top: 1px;
}

.scrolling-banner::after {
  bottom: 1px;
}
/* == Vagues sur la page article individuel == */
.single-post .blogue__conservation-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  transform: scaleY(-1);
}

.single-post .blogue__conservation-section::after {
  bottom: -1px;
}

.single-post .newsletter--blogue::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q15,5 30,20 T60,20 T90,20 T120,20 T150,20 T180,20 T210,20 T240,20 T270,20 T300,20 T330,20 T360,20 T390,20 T420,20 T450,20 T480,20 T510,20 T540,20 T570,20 T600,20 T630,20 T660,20 T690,20 T720,20 T750,20 T780,20 T810,20 T840,20 T870,20 T900,20 T930,20 T960,20 T990,20 T1020,20 T1050,20 T1080,20 T1110,20 T1140,20 T1170,20 T1200,20 L1200,40 L0,40 Z' fill='%23fdf9f3'/%3E%3C/svg%3E") !important;
}

.single-post .section-bg-beige::before,
.single-post .section-bg-beige::after,
.single-post .cta-final::before,
.single-post .cta-final::after {
  display: none;
}

/* ============================================================
   Compteur panier
   ============================================================ */

.tg-cart-count {
  position: absolute;
  top: -0.3rem;
  right: -0.3rem;
  background: #d4a373;
  color: #000;
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.tg-cart-hidden {
  display: none;
}

/* ============================================================
   Panier — Styles
   ============================================================ */

/* Tableau desktop */
.panier-wc__table {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.panier-wc__header {
  background-color: var(--color-hero);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--color-text);
}

.panier-wc__col-product {
  flex: 1;
  min-width: 0;
}

.panier-wc__col-price {
  width: 7rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
}

.panier-wc__col-qty {
  width: 10rem;
  text-align: center;
}

.panier-wc__col-total {
  width: 7rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
}

.panier-wc__col-remove {
  width: 3rem;
  text-align: center;
}

.panier-wc__row {
  border-bottom: 1px solid #f0ebe4;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.panier-wc__row:last-child {
  border-bottom: none;
}

.panier-wc__row.loading {
  opacity: 0.5;
  pointer-events: none;
}

.panier-wc__row.removing {
  opacity: 0;
  transform: translateX(50px);
  pointer-events: none;
}

/* Image produit */
.panier-wc__img-link {
  display: block;
  width: 5rem;
  height: 5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  flex-shrink: 0;
}

.panier-wc__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Infos produit */
.panier-wc__product-name {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  display: block;
  transition: color 0.3s ease;
}

.panier-wc__product-name:hover {
  color: var(--color-primary-dark);
}

.panier-wc__meta {
  font-family: var(--font-body);
}

.panier-wc__meta dt {
  font-weight: 600;
  display: inline;
}

.panier-wc__meta dd {
  display: inline;
  margin-left: 0.25rem;
  margin-right: 0;
}

.panier-wc__meta dd::after {
  content: '';
  display: block;
}

/* Quantité dans le panier */
.panier-wc .quantity-selector {
  margin-bottom: 0;
}

.panier-wc__qty-input {
  width: 50px;
  height: 40px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  background-color: white;
  color: var(--color-text);
  -moz-appearance: textfield;
}

.panier-wc__qty-input::-webkit-outer-spin-button,
.panier-wc__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.panier-wc__qty-input:focus {
  outline: none;
}

.panier-wc__qty-btn {
  width: 40px;
  height: 40px;
}

/* Bouton supprimer */
.panier-wc__remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #767676;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panier-wc__remove-btn:hover {
  color: #c0392b;
  transform: scale(1.2);
}

.panier-wc__remove-btn:focus {
  outline: none;
}

.panier-wc__remove-btn:focus-visible {
  box-shadow: 0 0 0 3px var(--color-primary);
  border-radius: 4px;
}

/* Cartes mobile */
.panier-wc__card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.panier-wc__card.loading {
  opacity: 0.5;
  pointer-events: none;
}

.panier-wc__card.removing {
  opacity: 0;
  transform: translateX(50px);
  pointer-events: none;
}

.panier-wc__card .panier-wc__img-link {
  width: 4.5rem;
  height: 4.5rem;
}

.panier-wc__card-price {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #555;
}

.panier-wc__card-subtotal {
  font-family: var(--font-body);
  font-size: 1.1rem;
}

/* Lien continuer les achats */
.panier-wc__continue {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary-dark);
  transition: color 0.3s ease;
}

.panier-wc__continue:hover {
  color: #015a56;
}

.panier-wc__continue svg {
  transition: transform 0.3s ease;
}

.panier-wc__continue:hover svg {
  transform: translateX(-4px);
}

/* Bouton Continuer mes achats — bleu / survol rose */
.add-to-cart-btn--continue .add-to-cart-btn__text {
  background-color: var(--color-primary);
  color: #000;
}

.add-to-cart-btn--continue:hover .add-to-cart-btn__text {
  background-color: var(--color-button);
  color: #000;
}

.add-to-cart-btn--continue .add-to-cart-btn__arrow:nth-child(1) { animation-delay: 1s; }
.add-to-cart-btn--continue .add-to-cart-btn__arrow:nth-child(2) { animation-delay: 0.5s; }
.add-to-cart-btn--continue .add-to-cart-btn__arrow:nth-child(3) { animation-delay: 0s; }

/* Totaux */
.panier-wc__totals {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.panier-wc__totals h3 {
  font-family: var(--font-heading);
  color: var(--color-text);
}

.panier-wc__totals-divider {
  height: 2px;
  background-color: var(--color-text);
}

/* Logos de paiement */
.panier-wc__payment-logo {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #333;
  padding: 0.25rem 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: white;
}

/* =====================================================================
   CODE PROMO — PANIER
   ===================================================================== */

.panier-wc__coupon-input {
  flex: 1 1 12rem;
  min-width: 10rem;
  max-width: 22rem;
  height: 2.75rem;
  padding: 0.55rem 1rem;
  border: 2px solid var(--color-text);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s ease;
}

.panier-wc__coupon-input:focus {
  border-color: var(--color-primary);
}

.panier-wc__coupon-btn {
  height: 2.75rem;
  padding: 0 1.5rem;
  background-color: var(--color-button);
  color: var(--color-text);
  border: 2px solid var(--color-text);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background-color 0.25s ease;
  white-space: nowrap;
}

.panier-wc__coupon-btn:hover {
  background-color: var(--color-primary);
}

.panier-wc__coupon-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.panier-wc__coupon-msg {
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  min-height: 1.2em;
}

.panier-wc__coupon-msg--ok {
  color: #2e7d32;
}

.panier-wc__coupon-msg--err {
  color: #c62828;
}

.panier-wc__coupon-applied li {
  font-family: var(--font-body);
  color: #2e7d32;
}

.panier-wc__coupon-remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  color: #767676;
  padding: 0 0.25rem;
  transition: color 0.2s ease;
}

.panier-wc__coupon-remove:hover {
  color: #c62828;
}
/* =====================================================================
   PAGE COMMANDE (CHECKOUT)
   ===================================================================== */

/* -- Conteneur principal -- */
.commande__wrapper .woocommerce-checkout {
  max-width: 100%;
}

/* -- Code promo (plus d'espace en dessous) -- */
.commande__wrapper .woocommerce-form-coupon-toggle {
  margin-bottom: 2.5rem;
}

.commande__wrapper .woocommerce-form-coupon-toggle .showcoupon {
  color: var(--color-primary-dark);
  font-weight: 600;
}

/* -- Titres h3 : vert foncé + ligne décorative noire -- */
.commande__wrapper .woocommerce-checkout h3,
.commande__wrapper .woocommerce-checkout h3#ship-to-different-address-checkbox,
.commande__wrapper .woocommerce-additional-fields h3,
.commande__wrapper #order_review_heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary-dark);
  display: flex !important;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.commande__wrapper .woocommerce-checkout h3::after,
.commande__wrapper .woocommerce-checkout h3#ship-to-different-address-checkbox::after,
.commande__wrapper .woocommerce-additional-fields h3::after,
.commande__wrapper #order_review_heading::after {
  content: '';
  flex-grow: 1;
  height: 2px;
  background-color: var(--color-text);
}

.commande__wrapper .woocommerce-checkout h3:first-of-type {
  margin-top: 0;
}

/* ----------------------------------------------------------------
   RESET AGRESSIF : forcer toutes les largeurs WooCommerce
   ---------------------------------------------------------------- */
body .commande__wrapper .woocommerce form .form-row,
body .commande__wrapper .woocommerce-checkout .form-row,
body .commande__wrapper .woocommerce .form-row-first,
body .commande__wrapper .woocommerce .form-row-last,
body .commande__wrapper .woocommerce .form-row-wide,
body .commande__wrapper .woocommerce-page .form-row-first,
body .commande__wrapper .woocommerce-page .form-row-last,
body .commande__wrapper .woocommerce-page .form-row-wide {
  width: 100% !important;
  float: none !important;
  clear: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}

/* Le span qui enveloppe chaque input */
body .commande__wrapper .woocommerce-input-wrapper,
body .commande__wrapper span.woocommerce-input-wrapper {
  display: block !important;
  width: 100% !important;
}

/* ----------------------------------------------------------------
   Layout 2 colonnes pour les champs
   ---------------------------------------------------------------- */
body .commande__wrapper .woocommerce-billing-fields__field-wrapper,
body .commande__wrapper .woocommerce-shipping-fields__field-wrapper {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1.25rem 2rem !important;
}

/* Chaque champ prend toute la largeur de sa cellule */
body .commande__wrapper .woocommerce-billing-fields__field-wrapper .form-row,
body .commande__wrapper .woocommerce-shipping-fields__field-wrapper .form-row {
  min-width: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Champs pleine largeur (2 colonnes) */
body .commande__wrapper #billing_address_1_field,
body .commande__wrapper #billing_address_2_field,
body .commande__wrapper #billing_email_field,
body .commande__wrapper #billing_country_field,
body .commande__wrapper #shipping_address_1_field,
body .commande__wrapper #shipping_address_2_field {
  grid-column: 1 / -1 !important;
}

/* ----------------------------------------------------------------
   Tous les champs input / select / textarea
   ---------------------------------------------------------------- */
body .commande__wrapper input[type="text"],
body .commande__wrapper input[type="email"],
body .commande__wrapper input[type="tel"],
body .commande__wrapper input[type="password"],
body .commande__wrapper input[type="number"],
body .commande__wrapper select,
body .commande__wrapper textarea,
body .commande__wrapper .input-text,
body .commande__wrapper .woocommerce-checkout input.input-text,
body .commande__wrapper .woocommerce-checkout .form-row input.input-text,
body .commande__wrapper .woocommerce-checkout .form-row select,
body .commande__wrapper .woocommerce-checkout .form-row textarea {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0.75rem 1rem !important;
  border: 1px solid #ddd !important;
  border-radius: 0.5rem !important;
  font-size: 1rem !important;
  font-family: var(--font-body) !important;
  background-color: #fff !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box !important;
  display: block !important;
}

/* Select2 (dropdown Province) pleine largeur */
body .commande__wrapper .select2-container,
body .commande__wrapper .select2-container--default {
  width: 100% !important;
}

body .commande__wrapper .select2-container .select2-selection--single {
  height: auto !important;
  min-height: 2.75rem !important;
  padding: 0.5rem 1rem !important;
  border: 1px solid #ddd !important;
  border-radius: 0.5rem !important;
}

body .commande__wrapper .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 1.5 !important;
  padding: 0 !important;
}

/* Focus */
body .commande__wrapper input:focus,
body .commande__wrapper select:focus,
body .commande__wrapper textarea:focus {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 3px rgba(122, 163, 167, 0.15) !important;
  outline: none !important;
}

/* -- Labels -- */
body .commande__wrapper .form-row label,
body .commande__wrapper label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block !important;
  white-space: nowrap;
}

/* -- Espacement des champs (reset) -- */
body .commande__wrapper .form-row,
body .commande__wrapper p.form-row {
  margin-bottom: 0 !important;
}

/* -- Section notes de commande -- */
.commande__wrapper .woocommerce-additional-fields {
  margin-top: 3rem;
}

.commande__wrapper .woocommerce-additional-fields__field-wrapper {
  display: block !important;
}

body .commande__wrapper #order_comments {
  width: 100% !important;
  min-height: 10rem !important;
  resize: vertical;
  border-radius: 0.5rem !important;
  font-size: 1rem !important;
  padding: 1rem !important;
  box-sizing: border-box !important;
}

.commande__wrapper #order_comments_field {
  margin-bottom: 0;
}

.commande__wrapper #order_comments_field label {
  margin-bottom: 0.75rem;
}

/* -- Séparateur avant récapitulatif -- */
.commande__wrapper .woocommerce-checkout-review-order {
  margin-top: 3rem;
  padding-top: 0.5rem;
}

/* -- Tableau récapitulatif -- */
.commande__wrapper .woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.commande__wrapper .woocommerce-checkout-review-order-table th,
.commande__wrapper .woocommerce-checkout-review-order-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.commande__wrapper .woocommerce-checkout-review-order-table thead th {
  font-weight: 700;
  background-color: var(--color-background);
  border-bottom: 2px solid #ddd;
}

.commande__wrapper .woocommerce-checkout-review-order-table .cart_item td {
  vertical-align: middle;
}

.commande__wrapper .woocommerce-checkout-review-order-table .cart_item .product-name {
  padding-right: 3rem;
}

.commande__wrapper .woocommerce-checkout-review-order-table .order-total th,
.commande__wrapper .woocommerce-checkout-review-order-table .order-total td {
  font-weight: 700;
  font-size: 1.15rem;
  border-top: 2px solid var(--color-primary);
  padding-top: 1.25rem;
}

/* -- Bouton Commander : le filtre PHP génère le vrai markup cta-final -- */
.commande__wrapper #place_order::before,
.commande__wrapper #place_order::after {
  content: none !important;
  display: none !important;
}

.commande__wrapper .cta-final__button {
  margin-top: 1.5rem;
  cursor: pointer;
}

/* -- Messages d'erreur et notices -- */
.commande__wrapper .woocommerce-error,
.commande__wrapper .woocommerce-message,
.commande__wrapper .woocommerce-info {
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  list-style: none;
}

.commande__wrapper .woocommerce-error {
  background-color: #fef2f2;
  border-left: 4px solid #ef4444;
  color: #991b1b;
}

/* Erreur code promo checkout — WooCommerce place la notice en dehors du form,
   on cible donc directement la page commande via body */
body.woocommerce-checkout ul.woocommerce-error,
body.woocommerce-checkout .woocommerce-notices-wrapper ul.woocommerce-error {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0.25rem 0 !important;
  margin: 0 0 1rem 0 !important;
  list-style: none !important;
}

body.woocommerce-checkout ul.woocommerce-error li,
body.woocommerce-checkout .woocommerce-notices-wrapper ul.woocommerce-error li {
  color: #c62828 !important;
  font-family: var(--font-body) !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  border: none !important;
}

.commande__wrapper .woocommerce-message {
  background-color: #f0fdf4;
  border-left: 4px solid #22c55e;
  color: #166534;
}

.commande__wrapper .woocommerce-info {
  background-color: #eff6ff;
  border-left: 4px solid var(--color-primary);
  color: var(--color-text);
}

/* -- Méthodes de paiement -- */
.commande__wrapper .wc_payment_methods {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.commande__wrapper .wc_payment_methods li {
  padding: 1rem 1.25rem;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  background-color: var(--color-background);
}

.commande__wrapper .wc_payment_methods li label {
  font-weight: 700;
  cursor: pointer;
}

/* -- Politique de confidentialité et conditions -- */
.commande__wrapper .woocommerce-terms-and-conditions-wrapper {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.commande__wrapper .woocommerce-privacy-policy-text {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.commande__wrapper .woocommerce-privacy-policy-text a,
.commande__wrapper .woocommerce-terms-and-conditions-wrapper a {
  color: var(--color-primary-dark);
}

/* -- Responsive : 1 colonne sur mobile -- */
@media (max-width: 575.98px) {
  body .commande__wrapper .woocommerce-billing-fields__field-wrapper,
  body .commande__wrapper .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr !important;
  }

  .commande__wrapper .woocommerce-checkout-review-order-table th,
  .commande__wrapper .woocommerce-checkout-review-order-table td {
    padding: 0.75rem;
  }
}

/* Formulaire code promo — layout natif WooCommerce */
.commande__wrapper .checkout_coupon {
  margin-bottom: 2rem;
  padding: 1.25rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  background: #fff;
}

.commande__wrapper .checkout_coupon #coupon_code {
  width: 100%;
  max-width: 20rem;
  min-height: 2.75rem;
  padding: 0.6rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

/* Message d'erreur coupon — géré par body.woocommerce-checkout ci-dessus */

.commande__wrapper .checkout_coupon .button {
  display: inline-block;
  background-color: var(--color-button);
  color: var(--color-text);
  border: 2px solid var(--color-text);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 0.25rem;
}

.commande__wrapper .checkout_coupon .button:hover {
  background-color: var(--color-primary);
}

/* =====================================================================
   CHECKOUT — Correctif Bootstrap vs WooCommerce
   Bootstrap interpr&egrave;te .col-1 comme 8.333 % et .col-2 comme 16.666 %.
   WooCommerce g&eacute;n&egrave;re ces classes dans #customer_details.col2-set.
   Ce bloc force les colonnes &agrave; 100 % pour que notre grille CSS prenne le relais.
   ===================================================================== */
#customer_details.col2-set {
  display: block;
  width: 100%;
  max-width: 100%;
  float: none;
  flex: none;
}

#customer_details .col-1,
#customer_details .col-2 {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  float: none;
  padding: 0;
  margin: 0;
}
/* =====================================================================
   FORMULAIRES — RÉINITIALISATION MOT DE PASSE (form-reset-password /
   form-lost-password) — styles Truffe Gourmande
   ===================================================================== */

/* Intro */
.tg-reset-form__intro {
  color: #4a4a4a;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

/* Label */
.tg-reset-form__label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

/* Groupe avec positionnement relatif pour le bouton œil */
.tg-reset-form__input-wrap {
  position: relative;
}

/* Input (hérite de contact__input + override padding-right) */
.tg-reset-form__input {
  padding-right: 3rem !important;
}

/* Bouton œil */
.tg-password-toggle {
  position: absolute;
  top: 50%;
  right: 0.85rem;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  color: #767676;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
  line-height: 1;
}

.tg-password-toggle:hover,
.tg-password-toggle:focus-visible {
  color: var(--color-primary);
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* œil ouvert visible par défaut, fermé caché */
.tg-password-toggle .tg-eye--closed {
  display: none;
}

/* Quand le mot de passe est visible : inverser */
.tg-password-toggle--visible .tg-eye--open {
  display: none;
}

.tg-password-toggle--visible .tg-eye--closed {
  display: block;
}

/* Hint et match */
.tg-reset-form__hint {
  font-size: 0.82rem;
  color: #767676;
  margin-top: 0.4rem;
  margin-bottom: 0;
}

.tg-reset-form__match {
  font-size: 0.85rem;
  margin-top: 0.4rem;
  margin-bottom: 0;
  min-height: 1.25rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.tg-reset-form__match--ok {
  color: #2d6a2d;
}

.tg-reset-form__match--err {
  color: #c0392b;
}

/* === Message de succès (mot de passe oublié envoyé) === */
.tg-lostpw-success {
  text-align: center;
  padding: 1.5rem 0.5rem;
}

.tg-lostpw-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #f0f7f0;
  color: #2d6a2d;
  margin-bottom: 1.25rem;
}

.tg-lostpw-success__titre {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.tg-lostpw-success__texte {
  color: #4a4a4a;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 1.5rem;
}