.header__logo-mobile {
  height: 7rem;
  width: auto;
}

.header__line-mobile {
  height: 2px;
  background-color: black;
}

.header__icon-mobile {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.header__icon-mobile:hover {
  transform: scale(1.1);
}

.header__icon-mobile img {
  width: 2.5rem;
  height: 2.5rem;
}

.header__hamburger {
  width: 2.75rem;
  height: 2.75rem;
  background-color: white;
  border: 2px solid var(--color-text);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.header__hamburger:hover,
.header__hamburger:focus {
  background-color: var(--color-hero);
}

.header__hamburger-line {
  width: 1.25rem;
  height: 2px;
  background-color: var(--color-text);
  transition: all 0.3s ease;
}

.header__search-mobile {
  display: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  gap: 0.5rem;
  padding: 0 1rem;
  position: relative;
}

.header__search-mobile.show {
  display: flex;
  opacity: 1;
  max-height: 60px;
  padding: 0.5rem 1rem;
  overflow: visible;
}

.header__search-input-mobile {
  flex: 1;
  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-mobile {
  width: 2.75rem;
  height: 2.75rem;
  background-color: var(--color-search-button);
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.header__search-button-mobile:hover {
  background-color: #c49590;
}

.header__search-button-mobile img {
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
}

/* Dropdown recherche mobile */
.header__search-mobile .search-results {
  left: 0;
  right: 0;
  border-radius: 10px;
}

.menu-mobile {
  background-color: var(--color-primary);
  width: 75% !important;
  max-width: 320px !important;
  touch-action: pan-y;
  overscroll-behavior: contain;
}

.menu-mobile .offcanvas-header {
  background-color: var(--color-hero);
  border-bottom: 2px solid var(--color-text);
  padding: 1rem 1.25rem;
}

.menu-mobile__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-text);
  margin: 0;
}

.menu-mobile__close {
  width: 2.5rem;
  height: 2.5rem;
  background-color: white;
  border: 2px solid var(--color-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.menu-mobile__close:hover {
  background-color: var(--color-button);
}

.menu-mobile__close span {
  font-size: 1.75rem;
  line-height: 1;
  color: var(--color-text);
}

.menu-mobile .offcanvas-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 60px);
  overflow-y: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.menu-mobile__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-mobile__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.menu-mobile__link {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--color-text);
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-mobile__link:hover {
  background-color: var(--color-hero);
  color: var(--color-text);
  padding-left: 2rem;
}

.menu-mobile__link--active {
  font-weight: 800;
}

.menu-mobile__link--blue {
  background-color: var(--color-primary);
}

.menu-mobile__link--blue:hover {
  background-color: #c5dadc;
}

.menu-mobile__link--rose {
  background-color: #c49590;
}

.menu-mobile__link--rose:hover {
  background-color: #e3ccc8;
}

.menu-mobile__item--icons {
  background-color: var(--color-hero);
}

.menu-mobile__icons-row {
  display: flex;
  justify-content: space-around;
  padding: 1rem;
}

.menu-mobile__icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--color-text);
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.menu-mobile__icon-link:hover {
  transform: scale(1.05);
  color: var(--color-text);
}

.menu-mobile__icon-link img {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.5rem;
}

.menu-mobile__submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: var(--color-background);
}

.menu-mobile__submenu-label {
  display: block;
  padding: 0.5rem 1.25rem 0.5rem 1.5rem;
  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;
}

.menu-mobile__submenu-link {
  display: block;
  padding: 0.75rem 1.5rem 0.75rem 2.5rem;
  color: var(--color-text);
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-mobile__submenu-link:hover {
  background-color: var(--color-button);
  color: #000;
}

.menu-mobile__decoration {
  text-align: center;
  padding: 1.5rem;
  margin-top: auto;
}

.menu-mobile__decoration-img {
  width: 14rem;
  height: auto;
  opacity: 1;
}

@media screen and (max-width: 575.98px) {
  .product-gallery__thumbs {
    gap: 0.4rem;
  }

  .product-gallery__thumb {
    flex: 1 1 0;
    min-width: 0;
    padding-right: 0.2rem;
    padding-bottom: 0.2rem;
  }

  .product-gallery__thumb-inner {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .header__logo-mobile {
    height: 5rem;
  }

  .header__icon-mobile img {
    width: 2rem;
    height: 2rem;
  }

  .header__hamburger {
    width: 2.25rem;
    height: 2.25rem;
  }

  .header__hamburger-line {
    width: 1rem;
  }

  .hero,
  .hero-bg {
    padding-top: 4rem;
    padding-bottom: 6rem;
  }

  .hero::after,
  .newsletter::before,
  .newsletter::after,
  .cta-final::before,
  .cta-final::after,
  .hero-boutique::after,
  .animal-search::before,
  .animal-search::after,
  .temoignages-section::before,
  .hero-bg::after,
  .collections-section::before,
  .collections-section::after,
  .contact-help::before,
  .hero-histoire::after,
  .equipe::before,
  .equipe::after,
  .mission::before,
  .confirmation-hero::after,
  .confirmation-hero--to-blue::after,
  .confirmation-hero--to-beige::after,
  .confirmation-steps::before,
  .confirmation-steps::after,
  .confirmation-steps--beige::after,
  .confirmation-contact::before,
  .confirmation-contact::after,
  .confirmation-contact--blue::after {
    height: 20px !important;
  }

  .hero__animal-circle {
    max-width: 5.5rem;
  }

  .hero__animal-circle:hover .hero__animal-flipper {
    transform: none !important;
  }

  .hero__title {
    font-size: 1.75rem;
    text-align: center;
  }

  .hero__text,
  .cta-final__text-desc,
  .contact-help__text {
    font-size: 0.875rem;
    text-align: center;
  }

  .hero__cta-text,
  .cta-final__text,
  .collections-section__button-text {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .cta-final__arrows {
    border-radius: 25px 0 0 25px;
  }

  .construction__cta {
    align-items: center;
  }

  .hero__cta-text,
  .cta-final__text {
    border-radius: 0 50rem 50rem 0;
  }

  .hero__cta-arrow,
  .cta-final__arrow,
  .newsletter__arrow {
    font-size: 1.2rem;
  }

  .why-choose,
  .produits,
  .newsletter,
  .cta-final,
  .products-section,
  .contact-help,
  .histoire,
  .equipe,
  .mission,
  .valeurs,
  #cta-histoire {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section__title {
    font-size: 1.55rem;
    text-align: center;
    width: 100%;
  }

  .why-icon-circle,
  .collections-section__nav-btn,
  .contact-help__image-col {
    display: none !important;
  }

  .why-choose__icon-circle {
    display: flex !important;
    width: 10rem;
    height: 10rem;
    margin-bottom: 0 !important;
  }

  .why-choose__icon-circle img {
    width: 8rem;
    height: 8rem;
  }

  .why-choose__card {
    display: none !important;
  }

  [aria-labelledby="why-choose-title"] {
    padding-bottom: 0 !important;
  }

  [aria-labelledby="why-choose-title"] #why-choose-title {
    white-space: normal !important;
    font-size: 1.55rem;
  }

  [aria-labelledby="why-choose-title"] .container {
    padding-bottom: 0 !important;
  }

  [aria-labelledby="why-choose-title"] + .produits {
    padding-top: 1rem !important;
  }

  [aria-labelledby="why-choose-title"] + .produits > .container {
    padding-top: 0 !important;
  }

  [aria-labelledby="why-choose-title"] .row.g-4 {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    --bs-gutter-x: 1rem !important;
    --bs-gutter-y: 1rem !important;
    gap: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  [aria-labelledby="why-choose-title"] .row.g-4 > .col-12 {
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .decorative-line,
  .newsletter__image-circle,
  .footer__title-wrapper::before,
  .footer__title-wrapper::after,
  .boutique-decouvrez .decorative-line,
  .boutique-explorez .decorative-line,
  .animal-search__line,
  .temoignages-section__line,
  .products-section__line,
  .collections-section__line,
  .contact-help__line,
  .histoire .decorative-line,
  .equipe .decorative-line,
  .mission .decorative-line,
  .valeurs .decorative-line {
    display: none;
  }

  .produits__image,
  .products-section__image {
    height: 18rem;
    width: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .produits__carte {
    overflow: hidden;
    margin-bottom: 2rem;
  }

  .produits__contenu,
  .products-section__body {
    min-height: auto;
  }

  .produits__carte:hover,
  .explore-card:hover,
  .products-section__card:hover {
    box-shadow: 0.3125rem 0.3125rem 0 var(--color-primary);
    transform: none;
  }

  .newsletter .section__title {
    text-align: center;
    width: 100%;
  }

  .newsletter__subtitle {
    font-size: 1.55rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  .newsletter__text {
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .newsletter .col-12.col-md-7,
  #newsletter-form,
  .contact-help .col-md-7 {
    text-align: center;
  }

  .newsletter__form {
    flex-direction: row !important;
    width: auto;
    max-width: 95%;
    margin: 0 auto;
    justify-content: center;
  }

  .newsletter__input {
    min-width: 0;
    flex: 0 1 auto;
    width: 10rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
  }

  .newsletter__submit {
    padding: 0.4rem 0.6rem;
    font-size: 0.65rem;
    white-space: nowrap;
  }

  .footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .footer__logo {
    max-height: 8rem;
    transform: translateY(0);
    margin-bottom: 1rem;
  }

  .footer__title {
    font-size: 1.55rem;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 1rem;
  }

  .footer .row,
  .temoignages-section__title-wrapper {
    flex-direction: column !important;
  }

  .footer .col-12,
  .footer .col-md-6,
  .footer .col-lg-3,
  .footer .col-xl-3,
  .footer [class*="col-"] {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    text-align: center;
    margin-bottom: 1rem;
  }

  .footer__heading {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: black !important;
    font-weight: 700 !important;
  }

  .footer__typewriter {
    white-space: normal;
    width: auto !important;
    overflow: visible;
    border-right: none;
    animation: none !important;
  }

  .footer.footer--visible .footer__typewriter {
    animation: none !important;
    width: auto !important;
  }

  .footer__link {
    display: block;
    text-align: center;
  }

  .footer ul {
    text-align: center;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
  }

  .footer li {
    text-align: center;
    margin-bottom: 0.25rem;
  }

  .footer__social-icon {
    height: 2.5rem;
  }

  .footer__social {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .footer__social > .d-flex {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.75rem !important;
  }

  .footer__social .gap-3 {
    flex-direction: row !important;
  }

  .footer__social h3 {
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .hero-boutique,
  .animal-search,
  .hero-histoire {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }

  .hero-boutique__logo,
  .hero-chien__logo,
  .hero-histoire__logo {
    max-width: 12rem;
  }

  .hero-boutique h1,
  .hero-bg h1,
  #cta-histoire h2 {
    font-size: 1.55rem;
  }

  .boutique-decouvrez {
    padding-top: 2rem !important;
    padding-bottom: 1.5rem !important;
  }

  .boutique-decouvrez .container,
  .boutique-explorez .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .boutique-decouvrez .d-flex.align-items-center.mb-5 {
    flex-direction: column;
    text-align: center;
    margin-bottom: 2rem !important;
  }

  .boutique-decouvrez h2,
  .boutique-explorez h2,
  .histoire h2,
  .equipe h2,
  .mission h2,
  .valeurs h2 {
    white-space: normal !important;
    text-align: center;
    font-size: 1.55rem;
    margin-right: 0 !important;
  }

  .boutique-explorez {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .boutique-explorez .d-flex.align-items-center.mb-3 {
    flex-direction: column;
    text-align: center;
    margin-bottom: 1rem !important;
  }

  .boutique-explorez .explore-card__intro {
    margin-bottom: 2rem !important;
  }

  .explore-card__img {
    height: 280px;
    border-top-left-radius: 50px;
  }

  .explore-card {
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }

  .explore-card__title,
  .products-section__title {
    font-size: 1.5rem;
  }

  .explore-card__intro {
    font-size: 0.9rem;
  }

  .explore-card__animal-link,
  .temoignages-section__text,
  .hero-chien__text,
  .products-section__text,
  .hero-histoire__intro,
  .histoire__content p,
  .equipe__role,
  .mission__content p,
  .valeurs__card p,
  #cta-histoire p {
    font-size: 0.875rem;
  }

  .explore-card__animal-name {
    min-width: 4.5rem;
  }

  .explore-card__animal-check {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.75rem;
    color: #017a75 !important;
    -webkit-text-fill-color: #017a75 !important;
  }

  .explore-card__animal-check--no {
    color: #c0392b !important;
    -webkit-text-fill-color: #c0392b !important;
  }

  .explore-card__animals-grid .explore-card__animal-link,
  .explore-card__animals-grid .explore-card__animal-link--disabled {
    font-size: 0.75rem;
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
  }

  .explore-card__animals-grid .explore-card__animal-check {
    width: 1.1rem;
    height: 1.1rem;
    font-size: 0.65rem;
  }

  .animal-search .d-flex.align-items-center.justify-content-center.mb-5,
  .histoire .d-flex.align-items-center.mb-4,
  .equipe .d-flex.align-items-center.mb-5,
  .mission .d-flex.align-items-center.mb-5,
  .valeurs .d-flex.align-items-center.mb-5 {
    flex-direction: column;
    text-align: center;
  }

  .animal-search h2 {
    white-space: normal !important;
    text-align: center;
    font-size: 1.55rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .animal-search__pastille {
    max-width: 9rem;
  }

  .animal-search__name {
    font-size: 1.4rem;
    animation: none;
  }

  .animal-search__circle-bg {
    width: 115%;
    height: 115%;
  }

  .temoignages-section {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }

  .temoignages-section__title-wrapper h2 {
    white-space: normal !important;
    text-align: center;
    font-size: 1.55rem;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .temoignages-section__card {
    min-height: 33rem !important;
    max-width: 100%;
  }

  .temoignages-section__star-svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .temoignages-section__author,
  .products-section__price {
    font-size: 0.95rem;
  }

  .temoignages-section__indicator {
    width: 44px;
    height: 44px;
    background-color: transparent;
    border: none;
    padding: 0;
  }

  .temoignages-section__indicator::after {
    width: 0.75rem;
    height: 0.75rem;
    background-color: var(--color-primary);
    opacity: 0.5;
  }

  .temoignages-section__indicator.active::after {
    background-color: #017a75;
    opacity: 1;
  }

  .temoignages-section__indicators {
    gap: 0 !important;
  }

  .products-section .container,
  .collections-section .container,
  .contact-help .container {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .products-section .d-flex.align-items-center.mb-5 {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .products-section h2 {
    font-size: 1.55rem;
    white-space: normal;
    text-align: center;
    margin-right: 0;
    margin-bottom: 0;
  }

  .products-section > .container > p {
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }

  .products-section .col-12.col-md-4 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .products-section__card {
    max-width: 24rem;
    margin: 0 auto;
    height: auto;
  }

  .collections-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    outline: none !important;
    border: none !important;
  }

  .collections-section__title-wrapper {
    flex-direction: column;
    margin-bottom: 1.5rem;
  }

  .collections-section__title-animated {
    font-size: 1.55rem;
    white-space: normal;
    text-align: center;
    overflow: visible;
  }

  .collections-section__title-animated span {
    animation: none;
  }

  .collections-section .carousel,
  .collections-section .carousel-inner,
  .collections-section .carousel-item {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
  }

  .collections-section__card {
    flex-direction: column;
    max-width: 100%;
    height: 52rem;
    outline: none !important;
    border: none !important;
  }

  .collections-section__image-wrapper {
    flex: 0 0 55%;
    max-width: 100%;
    width: 100%;
    height: 55%;
  }

  .collections-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .collections-section__content {
    flex: 0 0 45%;
    max-width: 100%;
    width: 100%;
    height: 45%;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .collections-section__card-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .collections-section__text {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .collections-section__indicators {
    gap: 0;
    margin-top: 1.5rem;
  }

  .collections-section__indicator {
    width: 44px;
    height: 44px;
  }

  .collections-section__indicator::after {
    width: 1rem;
    height: 1rem;
  }

  .contact-help .d-flex.align-items-center.mb-4 {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .contact-help h2 {
    font-size: 1.55rem;
    white-space: normal;
    text-align: center;
    margin-right: 0;
  }

  .contact-help__subtitle {
    font-size: 1.4rem;
    text-align: center;
  }

  .contact-help__button-text {
    font-size: 0.75rem;
    padding: 0.5rem 1.5rem;
  }

  .histoire__subtitle,
  .valeurs__card h3 {
    font-size: 1.4rem;
  }

  .equipe .row.g-4 > .col-6,
  .valeurs .col-md-4 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .equipe__circle {
    width: 10rem;
    height: 10rem;
  }

  .equipe__photo-inner {
    width: 6.5rem;
    height: 6.5rem;
  }

  .equipe__name {
    font-size: 1.25rem;
  }


.hero-coordonnees h1 {
    font-size: 2rem;
  }

  .hero-coordonnees__intro {
    font-size: 1rem;
  }

  .contact-section h2,
  .points-vente h2 {
    font-size: 1.75rem;
  }

  .contact__form-wrapper {
    padding: 1.5rem !important;
  }

  .contact__info-card {
    padding: 1rem;
  }

  .contact__info-icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .contact__social-icon {
    width: 2.5rem;
    height: 2.5rem;
  }


.nouveaute-card__image-wrapper {
    min-height: 200px;
    max-height: 230px;
  }

  .nouveaute-card__title {
    font-size: 1.75rem;
  }
}

@media screen and (min-width: 410px) and (max-width: 575.98px) {
  .produits__image {
    height: 24rem;
    width: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero-boutique__logo,
  .hero-chien__logo,
  .hero-histoire__logo {
    max-width: 14rem;
  }

  .explore-card__img {
    height: 300px;
  }

  .animal-search__pastille {
    max-width: 10rem;
  }

  .products-section__image {
    height: 24rem;
  }

  .collections-section__card {
    height: 56rem;
  }

  .equipe__circle {
    width: 11rem;
    height: 11rem;
  }

  .equipe__photo-inner {
    width: 7rem;
    height: 7rem;
  }
}

@media screen and (min-width: 576px) and (max-width: 767.98px) {
  .header__logo-mobile {
    height: 6.5rem;
  }

  .header__icon-mobile img {
    width: 2.25rem;
    height: 2.25rem;
  }

  .hero,
  .hero-bg {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }

  .hero::after,
  .newsletter::before,
  .newsletter::after,
  .cta-final::before,
  .cta-final::after,
  .hero-boutique::after,
  .animal-search::before,
  .animal-search::after,
  .temoignages-section::before,
  .hero-bg::after,
  .collections-section::before,
  .collections-section::after,
  .contact-help::before,
  .hero-histoire::after,
  .equipe::before,
  .equipe::after,
  .mission::before {
    height: 25px !important;
  }

  .hero__animal-circle {
    max-width: 7.5rem;
  }

  .equipe__circle {
    width: 11rem;
    height: 11rem;
  }

  .hero__animal-circle:hover .hero__animal-flipper {
    transform: none !important;
  }

  .hero__title {
    font-size: 2rem;
    text-align: center;
  }

  .hero__text,
  .cta-final__text-desc {
    font-size: 0.875rem;
    text-align: center;
  }

  .why-choose,
  .produits,
  .newsletter,
  .cta-final,
  .products-section,
  .contact-help,
  .histoire,
  .equipe,
  .mission,
  .valeurs,
  #cta-histoire {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section__title {
    font-size: 1.75rem;
    text-align: center;
    width: 100%;
  }

  .why-choose__icon-circle {
    display: flex !important;
    width: 9rem;
    height: 9rem;
    margin-bottom: 0 !important;
  }

  .why-choose__icon-circle img {
    width: 7rem;
    height: 7rem;
  }

  .collections-section__nav-btn,
  .contact-help__image-col {
    display: none !important;
  }

  .why-choose__card {
    display: none !important;
  }

  [aria-labelledby="why-choose-title"] {
    padding-bottom: 0 !important;
  }

  [aria-labelledby="why-choose-title"] .container {
    padding-bottom: 0 !important;
  }

  [aria-labelledby="why-choose-title"] + .produits {
    padding-top: 1rem !important;
  }

  [aria-labelledby="why-choose-title"] + .produits > .container {
    padding-top: 0 !important;
  }

  [aria-labelledby="why-choose-title"] .row.g-4 {
    --bs-gutter-y: 0 !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
  }

  [aria-labelledby="why-choose-title"] .row.g-4 > .col-12 {
    width: auto !important;
    flex: 0 0 auto !important;
    max-width: none !important;
  }

  .decorative-line,
  .footer__title-wrapper::before,
  .footer__title-wrapper::after,
  .boutique-decouvrez .decorative-line,
  .boutique-explorez .decorative-line,
  .animal-search__line,
  .temoignages-section__line,
  .products-section__line,
  .collections-section__line,
  .contact-help__line,
  .histoire .decorative-line,
  .equipe .decorative-line,
  .mission .decorative-line,
  .valeurs .decorative-line {
    display: none;
  }

  .produits__image,
  .products-section__image {
    height: 26rem;
    width: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .produits__carte {
    margin-bottom: 2rem;
  }

  .produits__carte:hover,
  .products-section__card:hover {
    box-shadow: 0.3125rem 0.3125rem 0 var(--color-primary);
    transform: none;
  }

  .newsletter .section__title {
    text-align: center;
    width: 100%;
  }

  .newsletter__subtitle {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  .newsletter__text {
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .newsletter .col-12.col-md-7,
  #newsletter-form,
  .footer li,
  .contact-help__text,
  .contact-help .col-md-7 {
    text-align: center;
  }

  .newsletter form {
    display: flex;
    justify-content: center;
  }

  .newsletter__image-circle {
    width: 12rem;
    height: 12rem;
  }

  .newsletter__image {
    width: 8rem;
    height: 8rem;
  }

  .footer {
    padding-top: 2rem;
  }

  .footer__logo {
    max-height: 10rem;
    transform: translateY(-0.5rem);
  }

  .footer__title {
    font-size: 1.75rem;
    text-align: center;
  }

  .footer .row,
  .temoignages-section__title-wrapper {
    flex-direction: column !important;
  }

  .footer .col-12,
  .footer .col-md-6,
  .footer .col-lg-3,
  .footer .col-xl-3,
  .footer [class*="col-"] {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    text-align: center;
    margin-bottom: 1rem;
  }

  .footer__heading {
    font-size: 1.5rem;
    text-align: center;
    color: black !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem;
  }

  .footer__typewriter {
    white-space: normal;
    width: auto !important;
    overflow: visible;
    border-right: none;
    animation: none !important;
  }

  .footer.footer--visible .footer__typewriter {
    animation: none !important;
    width: auto !important;
  }

  .footer ul {
    text-align: center;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
  }

  .footer__social > .d-flex {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.75rem !important;
  }

  .footer__social .gap-3 {
    flex-direction: row !important;
  }

  .hero-boutique,
  .animal-search,
  .hero-histoire {
    padding-top: 2.5rem;
    padding-bottom: 4.5rem;
  }

  .hero-boutique__logo,
  .hero-chien__logo,
  .hero-histoire__logo {
    max-width: 16rem;
  }

  .hero-boutique h1,
  .hero-bg h1,
  .products-section__title,
  #cta-histoire h2 {
    font-size: 1.75rem;
  }

  .boutique-decouvrez {
    padding-top: 2.5rem !important;
    padding-bottom: 2rem !important;
  }

  .boutique-decouvrez .container,
  .boutique-explorez .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .boutique-decouvrez .d-flex.align-items-center.mb-5 {
    flex-direction: column;
    text-align: center;
    margin-bottom: 2rem !important;
  }

  .boutique-decouvrez h2,
  .boutique-explorez h2,
  .histoire h2,
  .equipe h2,
  .mission h2,
  .valeurs h2 {
    white-space: normal !important;
    text-align: center;
    font-size: 1.75rem;
    margin-right: 0 !important;
  }

  .why-icon-circle {
    width: 10rem;
    height: 10rem;
  }

  .why-icon-circle::after {
    width: 14rem;
    height: 14rem;
  }

  .boutique-explorez {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .boutique-explorez .d-flex.align-items-center.mb-3 {
    flex-direction: column;
    text-align: center;
    margin-bottom: 1rem !important;
  }

  .boutique-explorez .explore-card__intro {
    margin-bottom: 2rem !important;
  }

  .explore-card__img {
    height: 320px;
    border-top-left-radius: 60px;
  }

  .explore-card {
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
  }

  .explore-card__animal-check {
    color: #017a75 !important;
    -webkit-text-fill-color: #017a75 !important;
  }

  .explore-card__animal-check--no {
    color: #c0392b !important;
    -webkit-text-fill-color: #c0392b !important;
  }

  .animal-search .d-flex.align-items-center.justify-content-center.mb-5,
  .histoire .d-flex.align-items-center.mb-4,
  .equipe .d-flex.align-items-center.mb-5,
  .mission .d-flex.align-items-center.mb-5,
  .valeurs .d-flex.align-items-center.mb-5 {
    flex-direction: column;
    text-align: center;
  }

  .animal-search h2 {
    white-space: normal !important;
    text-align: center;
    font-size: 1.75rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .animal-search__pastille {
    max-width: 11rem;
  }

  .animal-search__name {
    font-size: 1.6rem;
  }

  .temoignages-section {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }

  .temoignages-section__title-wrapper h2 {
    white-space: normal !important;
    text-align: center;
    font-size: 1.75rem;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .temoignages-section__card {
    max-width: 90%;
    height: auto !important;
    min-height: 30rem;
  }

  .temoignages-section__image--portrait {
    object-fit: cover !important;
  }

  .temoignages-section__content {
    flex: 0 0 48%;
    max-width: 48%;
  }

  .temoignages-section__image-wrapper {
    flex: 0 0 52%;
    max-width: 52%;
  }

  .products-section .d-flex.align-items-center.mb-5 {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .products-section h2,
  .contact-help h2 {
    font-size: 1.75rem;
    white-space: normal;
    text-align: center;
    margin-right: 0;
  }

  .products-section .col-12.col-md-4 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .products-section__card,
  .valeurs__card-wrapper {
    max-width: 28rem;
    margin: 0 auto;
  }

  .collections-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    outline: none !important;
    border: none !important;
  }

  .collections-section__title-wrapper {
    flex-direction: column;
  }

  .collections-section__title-animated {
    font-size: 1.75rem;
    white-space: normal;
    text-align: center;
    overflow: visible;
  }

  .collections-section__title-animated span {
    animation: none;
  }

  .collections-section .carousel,
  .collections-section .carousel-inner,
  .collections-section .carousel-item,
  .histoire__content,
  .mission__content,
  .valeurs__card {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
  }

  .collections-section__card {
    flex-direction: column;
    max-width: 100%;
    height: 58rem;
    outline: none !important;
    border: none !important;
  }

  .collections-section__image-wrapper {
    flex: 0 0 55%;
    max-width: 100%;
    width: 100%;
    height: 55%;
  }

  .collections-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .collections-section__content {
    flex: 0 0 45%;
    max-width: 100%;
    width: 100%;
    height: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .collections-section__card-title {
    font-size: 2rem;
  }

  .collections-section__text {
    font-size: 0.875rem;
  }

  .collections-section__button-text {
    font-size: 0.8rem;
    padding: 0.5rem 1.25rem;
  }

  .contact-help .d-flex.align-items-center.mb-4 {
    flex-direction: column;
    justify-content: center;
  }

  .contact-help__subtitle {
    font-size: 1.5rem;
    text-align: center;
  }

  .hero-histoire__intro {
    font-size: 0.9rem;
  }

  .histoire__subtitle,
  .valeurs__card h3 {
    font-size: 1.5rem;
  }

  .equipe .row.g-4 {
    justify-content: center !important;
  }

  .equipe .row.g-4 > .col-6 {
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .equipe__photo-inner {
    width: 7rem;
    height: 7rem;
  }

  .equipe__name {
    font-size: 1.3rem;
  }

  .valeurs .col-md-4 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .histoire,
  .equipe,
  .mission,
  .valeurs,
  #cta-histoire {
    padding-top: 3rem;
    padding-bottom: 3rem;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .header__logo-mobile {
    height: 8rem;
  }

  .header__icon-mobile img {
    width: 2.75rem;
    height: 2.75rem;
  }

  .header__hamburger {
    width: 3rem;
    height: 3rem;
  }

  .header__hamburger-line {
    width: 1.5rem;
  }

  .hero {
    padding-bottom: 5rem;
  }

  .hero::after,
  .newsletter::before,
  .newsletter::after,
  .hero-bg::after,
  .collections-section::before,
  .collections-section::after,
  .contact-help::before,
  .hero-histoire::after,
  .equipe::before,
  .equipe::after,
  .mission::before {
    height: 30px !important;
  }

  .hero__animal-circle {
    max-width: 9rem;
  }

  .hero__animal-circle:hover .hero__animal-flipper {
    transform: none !important;
  }

  .hero__title {
    font-size: 2rem;
    text-align: center;
  }

  .hero__text,
  .newsletter__text,
  .cta-final__text-desc {
    font-size: 0.875rem;
    text-align: center;
  }

  .section__title {
    font-size: 1.75rem;
    text-align: center;
    width: 100%;
  }

  .newsletter__image-circle,
  .newsletter__image,
  .newsletter .col-md-5,
  .products-section__line,
  .collections-section__line,
  .collections-section__nav-btn,
  .contact-help__image-col {
    display: none !important;
  }

  .why-choose__icon-circle {
    display: flex !important;
    width: 11rem;
    height: 11rem;
    margin-bottom: 0 !important;
  }

  .why-choose__icon-circle img {
    width: 8.5rem;
    height: 8.5rem;
  }

  .why-choose__card {
    display: none !important;
  }

  [aria-labelledby="why-choose-title"] {
    padding-bottom: 0 !important;
  }

  [aria-labelledby="why-choose-title"] .container {
    padding-bottom: 0 !important;
  }

  [aria-labelledby="why-choose-title"] + .produits {
    padding-top: 1.5rem !important;
  }

  [aria-labelledby="why-choose-title"] + .produits > .container {
    padding-top: 0 !important;
  }

  [aria-labelledby="why-choose-title"] .d-flex.mb-4 {
    margin-bottom: 1rem !important;
  }

  [aria-labelledby="why-choose-title"] .row.g-4 {
    --bs-gutter-y: 0 !important;
  }

  .section-bg-beige .row,
  .collections-section__title-wrapper,
  .collections-section__card--img-right {
    flex-direction: column !important;
  }

  [aria-labelledby="why-choose-title"] .row.g-4 {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  [aria-labelledby="why-choose-title"] .row.g-4 > .col-12 {
    width: 25% !important;
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }

  .section-bg-beige .col-md-6,
  .section-bg-beige .col-lg-4 {
    width: 100% !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    flex: 0 0 100% !important;
  }

  .produits .row,
  .equipe .row.g-4 {
    justify-content: center !important;
  }

  .produits .col-md-6 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .produits .d-flex.flex-column.flex-md-row,
  .newsletter .d-flex.flex-column.flex-md-row {
    flex-direction: row !important;
    align-items: center !important;
  }

  .produits .section__title,
  .newsletter .section__title {
    text-align: left !important;
    white-space: nowrap;
    margin-bottom: 0 !important;
    width: auto !important;
  }

  .produits .decorative-line,
  .newsletter .decorative-line--light,
  .histoire .decorative-line,
  .equipe .decorative-line,
  .mission .decorative-line,
  .valeurs .decorative-line {
    display: block !important;
    flex-grow: 1;
  }

  .produits__image {
    height: auto;
    width: 100%;
    object-fit: contain;
  }

  .produits__carte {
    margin-bottom: 1.5rem;
  }

  .produits__carte:hover,
  .products-section__card:hover {
    box-shadow: 0.3125rem 0.3125rem 0 var(--color-primary);
    transform: none;
  }

  .newsletter,
  .cta-final {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .newsletter .col-md-7,
  .boutique-decouvrez .col-md-4,
  .products-section .row.g-4 > .col-12.col-md-4 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .newsletter__subtitle,
  .contact-help__subtitle {
    font-size: 1.75rem;
    text-align: center;
  }

  .newsletter .col-12.col-md-7,
  #newsletter-form,
  .footer li {
    text-align: center;
  }

  .newsletter form {
    display: flex;
    justify-content: center;
  }

  .cta-final .d-flex.flex-column.flex-md-row {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
  }

  .cta-final .section__title {
    width: auto !important;
    white-space: nowrap;
  }

  .cta-final__line {
    display: block !important;
    flex-grow: 1;
    min-width: 50px;
  }

  .footer .row.g-3.g-md-4 {
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }

  .footer .row.g-3.g-md-4 > div:first-child {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
  }

  .footer__logo {
    max-height: 10rem;
    margin: 0 auto;
    display: block;
  }

  .footer .row.g-3.g-md-4 > div:nth-child(2),
  .footer .row.g-3.g-md-4 > div:nth-child(3),
  .footer .row.g-3.g-md-4 > div:nth-child(4) {
    width: 33.333% !important;
    flex: 0 0 33.333% !important;
    max-width: 33.333% !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
  }

  .footer__link--email {
    font-size: 0.8rem !important;
  }

  .footer__title,
  .histoire__subtitle {
    font-size: 1.75rem;
  }

  .footer__heading {
    font-size: 1.5rem;
    text-align: center !important;
  }

  .footer ul {
    text-align: center;
    padding-left: 0;
  }

  .footer__typewriter {
    white-space: normal;
    width: auto !important;
    overflow: visible;
    border-right: none;
    animation: none !important;
  }

  .footer.footer--visible .footer__typewriter {
    animation: none !important;
    width: auto !important;
  }

  .footer__title-wrapper::before,
  .footer__title-wrapper::after,
  .boutique-decouvrez .decorative-line,
  .boutique-explorez .decorative-line {
    display: none;
  }

  .hero-boutique,
  .animal-search,
  .hero-histoire {
    padding-top: 3rem;
    padding-bottom: 5rem;
  }

  .hero-boutique__logo,
  .hero-chien__logo,
  .hero-histoire__logo {
    max-width: 18rem;
  }

  .hero-boutique h1,
  .hero-bg h1,
  .products-section__title,
  #cta-histoire h2 {
    font-size: 2rem;
  }

  .boutique-decouvrez {
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
  }

  .boutique-decouvrez .container,
  .boutique-explorez .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .boutique-decouvrez h2,
  .animal-search h2,
  .temoignages-section__title-wrapper h2 {
    white-space: normal !important;
    font-size: 2rem;
  }

  .boutique-decouvrez .d-flex.align-items-center.mb-5 {
    justify-content: center !important;
    margin-bottom: 2.5rem !important;
  }

  .boutique-decouvrez .col-md-4 > .d-flex {
    max-width: 28rem;
    margin: 0 auto;
  }

  .why-icon-circle,
  .equipe__circle {
    width: 10rem;
    height: 10rem;
  }

  .why-icon-circle::after {
    width: 14rem;
    height: 14rem;
  }

  .boutique-explorez {
    padding-top: 2.5rem !important;
    padding-bottom: 3rem !important;
  }

  .boutique-explorez .d-flex.align-items-center.mb-3 {
    justify-content: center !important;
    margin-bottom: 1rem !important;
  }

  .boutique-explorez h2 {
    white-space: nowrap !important;
    font-size: 1.85rem;
    text-align: center;
    margin-right: 0 !important;
  }

  .boutique-explorez .explore-card__intro {
    margin-bottom: 2.5rem !important;
  }

  .boutique-explorez .row {
    justify-content: center !important;
    align-items: stretch !important;
  }

  .explore-card {
    height: 100%;
    display: flex !important;
    flex-direction: column !important;
    border-top-left-radius: 70px;
    border-bottom-right-radius: 70px;
  }

  .explore-card__body {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .explore-card__title {
    height: 4.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .explore-card__animals {
    flex: 1 !important;
  }

  .explore-card__animals-grid.row {
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }

  .explore-card__animals-grid > .col-6 {
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .explore-card__animal-check {
    color: #017a75 !important;
    -webkit-text-fill-color: #017a75 !important;
  }

  .explore-card__animal-check--no {
    color: #c0392b !important;
    -webkit-text-fill-color: #c0392b !important;
  }

  .explore-card__animal-link:hover {
    background-color: var(--color-primary);
    color: #000;
  }

  .explore-card__img {
    height: 350px;
    border-top-left-radius: 70px;
  }

  .animal-search__pastille {
    max-width: 13rem;
  }

  .animal-search__name {
    font-size: 1.8rem;
  }

  .temoignages-section {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  .temoignages-section__card {
    max-width: 42rem;
    height: auto !important;
    min-height: 22rem;
  }

  .temoignages-section__image--portrait {
    object-fit: cover !important;
  }

  .hero-bg {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }

  .hero-chien__text,
  .products-section__price {
    font-size: 1rem;
  }

  .products-section,
  .contact-help {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .products-section .d-flex.align-items-center.mb-5 {
    flex-direction: column !important;
    justify-content: center !important;
    margin-bottom: 2rem !important;
  }

  .products-section h2 {
    font-size: 2rem;
    white-space: normal !important;
    text-align: center;
    margin-right: 0 !important;
  }

  .products-section > .container > p {
    font-size: 1rem;
    margin-bottom: 2rem !important;
  }

  .products-section__card {
    max-width: 28rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .products-section__image {
    height: 24rem !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center 40% !important;
  }

  .products-section__text {
    font-size: 0.95rem;
  }

  .collections-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    outline: none !important;
    border: none !important;
  }

  .collections-section__title-animated {
    font-size: 2rem;
    white-space: normal !important;
    text-align: center;
    overflow: visible !important;
  }

  .collections-section__title-animated span {
    animation: none !important;
  }

  .collections-section .carousel,
  .collections-section .carousel-inner,
  .collections-section .carousel-item,
  .histoire__content,
  .mission__content {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
  }

  .collections-section__card {
    flex-direction: column !important;
    max-width: 28rem !important;
    height: 52rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    outline: none !important;
    border: none !important;
  }

  .collections-section__card--img-right .collections-section__image-wrapper {
    order: 0 !important;
  }

  .collections-section__card--img-right .collections-section__content {
    order: 1 !important;
  }

  .collections-section__image-wrapper {
    flex: none !important;
    max-width: 100% !important;
    width: 100% !important;
    height: 28rem !important;
    order: 0 !important;
  }

  .collections-section__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 30% !important;
  }

  .collections-section__content {
    flex: 1 !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 1.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    order: 1 !important;
  }

  .collections-section__card-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .collections-section__text {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .collections-section__button-text {
    font-size: 0.7rem !important;
    padding: 0.5rem 0.75rem !important;
  }

  .collections-section__indicators {
    gap: 0;
    margin-top: 1.5rem;
  }

  .collections-section__indicator {
    width: 44px;
    height: 44px;
  }

  .collections-section__indicator::after {
    width: 1rem;
    height: 1rem;
  }

  .contact-help .d-flex.align-items-center.mb-4 {
    flex-direction: row !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }

  .contact-help h2 {
    font-size: 2rem;
    white-space: nowrap !important;
    text-align: left;
    margin-right: 1rem !important;
  }

  .contact-help__line {
    display: block !important;
    flex-grow: 1;
    max-width: none !important;
  }

  .contact-help__text {
    font-size: 0.95rem;
    text-align: center;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-help .col-md-7 {
    text-align: center;
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .contact-help__button-text {
    font-size: 0.8rem;
    padding: 0.5rem 1.5rem;
  }

  .histoire,
  .equipe,
  .mission,
  .valeurs,
  #cta-histoire {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
  }

  .histoire .d-flex.align-items-center.mb-4,
  .equipe .d-flex.align-items-center.mb-5,
  .mission .d-flex.align-items-center.mb-5,
  .valeurs .d-flex.align-items-center.mb-5 {
    flex-direction: row !important;
    justify-content: flex-start !important;
  }

  .histoire h2,
  .equipe h2,
  .mission h2,
  .valeurs h2 {
    font-size: 2rem;
    white-space: nowrap !important;
    margin-right: 1rem !important;
  }

  .histoire__content {
    border: none !important;
  }

  .equipe .row.g-4 > .col-6.col-md-3 {
    width: 25% !important;
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }

  .equipe__photo-inner {
    width: 6.5rem;
    height: 6.5rem;
  }

  .equipe__name {
    font-size: 1.15rem;
  }

  .equipe__role {
    font-size: 0.85rem;
  }

  .valeurs .row.g-4 {
    flex-direction: column !important;
    align-items: center !important;
  }

  .valeurs .col-md-4 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    display: block !important;
  }

  .valeurs__card-wrapper {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
  }

  .valeurs__card {
    height: auto;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
  }

  .valeurs__card h3 {
    min-height: auto;
  }

  .hero-histoire {
    padding-top: 3rem;
    padding-bottom: 5rem;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199.98px) {
  .header__logo {
    height: 7rem;
  }

  .header__content {
    margin-left: 1.5rem !important;
  }

  .header__nav {
    gap: 1.25rem !important;
  }

  .header__link {
    font-size: 1rem;
  }

  .header__icon img {
    width: 2rem;
    height: 2rem;
  }

  .hero .row.g-3,
  .boutique-decouvrez .d-flex.align-items-center.mb-5,
  .boutique-explorez .d-flex.align-items-center.mb-3 {
    justify-content: center !important;
  }

  .hero__animal-circle {
    max-width: 11rem;
  }

  .why-choose__icon-circle {
    width: 9rem;
    height: 9rem;
    margin-bottom: 0 !important;
  }

  .why-choose__icon-circle img {
    width: 7rem;
    height: 7rem;
  }

  .why-choose__card {
    display: none !important;
  }

  [aria-labelledby="why-choose-title"] {
    padding-bottom: 0 !important;
  }

  [aria-labelledby="why-choose-title"] .container {
    padding-bottom: 0 !important;
  }

  [aria-labelledby="why-choose-title"] + .produits {
    padding-top: 1.5rem !important;
  }

  [aria-labelledby="why-choose-title"] + .produits > .container {
    padding-top: 0 !important;
  }

  [aria-labelledby="why-choose-title"] .d-flex.mb-4 {
    margin-bottom: 1rem !important;
  }

  [aria-labelledby="why-choose-title"] .row.g-4 {
    --bs-gutter-y: 0 !important;
  }

  .section-bg-beige .row.g-4 {
    align-items: stretch;
  }

  .section-bg-beige .col-lg-4 {
    display: flex;
    flex-direction: column;
  }

  .produits .col-lg-4,
  .valeurs .col-md-4 {
    display: flex !important;
  }

  .produits__lien {
    display: flex !important;
    width: 100% !important;
  }

  .produits__carte {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  .produits__image {
    height: 280px !important;
    object-fit: cover !important;
  }

  .produits__contenu,
  .why-choose-card,
  .explore-card__body {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
  }

  .produits__titre,
  .why-choose-card h3 {
    height: 4rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .produits__texte {
    flex: 1 !important;
    display: block !important;
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
  }

  .newsletter,
  .newsletter::before,
  .newsletter::after,
  .collections-section .carousel,
  .collections-section .carousel-inner,
  .collections-section .carousel-item {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
  }

  section,
  .collections-section {
    border: none !important;
    outline: none !important;
  }

  .hero-boutique__logo {
    max-width: 22rem;
  }

  .boutique-decouvrez h2 {
    margin-right: 0 !important;
  }

  .boutique-decouvrez .decorative-line,
  .boutique-explorez .decorative-line {
    display: none;
  }

  .boutique-decouvrez .row,
  .boutique-explorez .row,
  .valeurs .row.g-4 {
    align-items: stretch !important;
  }

  .boutique-decouvrez .col-md-4 > .d-flex,
  .valeurs__card {
    height: 100%;
  }

  .why-choose-card p,
  .explore-card__animals {
    flex: 1 !important;
  }

  .why-icon-circle,
  .equipe__circle {
    width: 12rem;
    height: 12rem;
  }

  .why-icon-circle::after {
    width: 16rem;
    height: 16rem;
  }

  .boutique-explorez h2 {
    white-space: nowrap !important;
    text-align: center;
    margin-right: 0 !important;
  }

  .explore-card {
    height: 100%;
    display: flex !important;
    flex-direction: column !important;
  }

  .explore-card__title {
    height: 4.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .explore-card__img {
    height: 400px;
  }

  .animal-search__pastille {
    max-width: 14rem;
  }

  .temoignages-section__card {
    max-width: 46rem;
  }

  .temoignages-section__nav-btn {
    width: 3rem;
    height: 3rem;
  }

  .temoignages-section__nav-icon {
    font-size: 2.2rem;
  }

  .carousel-control-prev.temoignages-section__nav-btn {
    left: 1%;
  }

  .carousel-control-next.temoignages-section__nav-btn {
    right: 1%;
  }

  .hero-bg h1,
  .products-section__title,
  .collections-section__card-title {
    font-size: 2.25rem;
  }

  .hero-chien__logo,
  .hero-histoire__logo {
    max-width: 20rem;
  }

  .products-section .d-flex.align-items-center.mb-5 {
    flex-direction: column !important;
    justify-content: center !important;
    margin-bottom: 2.5rem !important;
  }

  .products-section h2 {
    font-size: 2.25rem;
    white-space: normal !important;
    text-align: center;
    margin-right: 0 !important;
  }

  .products-section__line,
  .collections-section__line,
  .collections-section__nav-btn,
  .contact-help__image-col {
    display: none !important;
  }

  .products-section .row.g-4 > .col-12.col-md-4 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .products-section__card {
    max-width: 32rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .products-section__image {
    height: 28rem !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .collections-section__title-wrapper,
  .collections-section__card--img-right {
    flex-direction: column !important;
  }

  .collections-section__title-animated {
    font-size: 2.25rem;
    white-space: normal !important;
    text-align: center;
    overflow: visible !important;
  }

  .collections-section__title-animated span {
    animation: none !important;
  }

  .collections-section__card {
    flex-direction: column !important;
    max-width: 32rem !important;
    height: 56rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    outline: none !important;
    border: none !important;
  }

  .collections-section__card--img-right .collections-section__image-wrapper {
    order: 0 !important;
  }

  .collections-section__card--img-right .collections-section__content {
    order: 1 !important;
  }

  .collections-section__image-wrapper {
    flex: none !important;
    max-width: 100% !important;
    width: 100% !important;
    height: 30rem !important;
    order: 0 !important;
  }

  .collections-section__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 30% !important;
  }

  .collections-section__content {
    flex: 1 !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 1.75rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    order: 1 !important;
  }

  .collections-section__text {
    font-size: 1rem;
  }

  .collections-section__button-text {
    font-size: 0.75rem !important;
    padding: 0.5rem 1rem !important;
  }

  .contact-help .d-flex.align-items-center.mb-4 {
    flex-direction: row !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }

  .contact-help h2 {
    font-size: 2.25rem;
    white-space: nowrap !important;
    text-align: left;
    margin-right: 1rem !important;
  }

  .contact-help__line {
    display: block !important;
    flex-grow: 1;
    max-width: none !important;
  }

  .contact-help__subtitle {
    font-size: 1.85rem;
    text-align: center;
  }

  .contact-help__text {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .contact-help .col-md-7 {
    text-align: center;
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .equipe__photo-inner {
    width: 8rem;
    height: 8rem;
  }

  .valeurs__card-wrapper {
    width: 100%;
  }

  .valeurs__card h3 {
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (min-width: 992px) {
  .newsletter__image-circle {
    width: 20rem;
    height: 20rem;
  }

  .why-choose__icon-circle {
    width: 16rem;
    height: 16rem;
  }

  .why-choose__icon-circle img {
    width: 13rem;
    height: 13rem;
  }

  .produits__image {
    height: 28rem;
  }

  .newsletter__image {
    width: 12rem;
    height: 12rem;
  }


.blogue__article-card {
    min-height: 320px;
  }

  .blogue__article-card .row {
    height: 100%;
  }

  .blogue__article-image-wrapper {
    height: 100%;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }

  .newsletter::before,
  .animal-search::before {
    top: -1px !important;
    height: 2.6rem !important;
  }

  .newsletter::after,
  .hero-boutique::after,
  .animal-search::after {
    bottom: -1px !important;
    height: 2.6rem !important;
  }

  .newsletter {
    margin-bottom: -2px;
  }

  .cta-final {
    margin-top: -2px;
  }

  .temoignages-section::before {
    height: 2.6rem !important;
  }

  .boutique-decouvrez .row,
  .boutique-explorez .row {
    align-items: stretch !important;
  }

  .boutique-decouvrez .col-md-4 > .d-flex {
    height: 100%;
  }

  .why-choose-card,
  .explore-card__body {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .why-choose-card h3 {
    height: 3.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .why-choose-card p,
  .explore-card__animals {
    flex: 1 !important;
  }

  .explore-card {
    height: 100%;
    display: flex !important;
    flex-direction: column !important;
  }

  .explore-card__title {
    height: 4rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .contact-help .d-flex.align-items-center.mb-4 {
    width: 100% !important;
  }

  .contact-help__line {
    flex-grow: 1;
    max-width: none !important;
  }

  .collections-section,
  .collections-section__card {
    outline: none !important;
    border: none !important;
  }

  .collections-section .carousel,
  .collections-section .carousel-inner,
  .collections-section .carousel-item {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
  }

  .collections-section__nav-btn {
    position: absolute;
  }

  .carousel-control-prev.collections-section__nav-btn {
    left: -5rem !important;
  }

  .carousel-control-next.collections-section__nav-btn {
    right: -5rem !important;
  }
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
/* Page produit-a-venir */
@media (max-width: 767.98px) {
  .construction__image-container {
    max-width: 300px;
  }


.blogue__article-image-wrapper {
    height: 200px;
  }

  .blogue__article-title {
    font-size: 1.5rem;
  }

  .blogue__article-content {
    padding: 1.5rem !important;
  }

  .blogue__full-article h3,
  .blogue__full-article-light h3 {
    font-size: 1.75rem;
  }


.error-page__image {
    max-width: 280px;
  }
}

@media screen and (max-width: 991.98px) {
  .product-page .row.g-5 {
    --bs-gutter-x: 1.5rem;
  }

  .similar-products .col-md-4 {
    flex: 0 0 auto;
    width: 50%;
  }

  .hero-coordonnees h1 {
    font-size: 2.5rem;
  }

  .contact-section h2,
  .points-vente h2,
  .cta-section h2 {
    font-size: 2.25rem;
  }

  .points-vente__map-wrapper {
    height: 14rem;
  }

  .points-vente__map-overlay {
    display: none;
  }

  .blogue__article-image-wrapper {
    height: 250px;
  }

  .nouveaute-card-wrapper {
    padding-left: 0;
    padding-top: 0;
    background: none;
    border-radius: 2.5rem;
  }

  .nouveaute-card {
    flex-direction: column !important;
    border-radius: 2.5rem;
  }

  .nouveaute-card__image-wrapper {
    min-height: 250px;
    max-height: 280px;
    border-radius: 2.5rem 2.5rem 0 0;
  }

  .nouveaute-card__content {
    order: 2 !important;
  }

  .nouveaute-card__image-wrapper {
    order: 1 !important;
  }

  .nouveaute-card__title {
    white-space: normal !important;
  }

  .error-page__suggestion {
    margin-left: auto;
    margin-right: auto;
  }

  .produits__carte:hover,
  .explore-card:hover,
  .products-section__card:hover {
    box-shadow: 0.3125rem 0.3125rem 0 var(--color-primary);
    transform: none;
  }

  .similar-product-card:hover {
    box-shadow: 0.3125rem 0.3125rem 0 var(--color-primary);
    transform: none;
  }

  .produits__carte:active,
  .explore-card:active,
  .products-section__card:active,
  .similar-product-card:active {
    box-shadow: 0.3125rem 0.3125rem 0 var(--color-primary);
    transform: none;
  }
}

@media (max-width: 768px) {
  .product-info__title {
    font-size: 2.2rem;
  }

  .similar-products__title {
    font-size: 1.8rem;
  }

  .contact-float-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 767.98px) {
  .panier-wc__totals {
    margin-top: 1rem;
  }

  .panier-wc__card .quantity-selector {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .panier-wc__col-price { width: 6rem; }
  .panier-wc__col-qty { width: 9rem; }
  .panier-wc__col-total { width: 6rem; }

  .panier-wc__img-link {
    width: 4rem;
    height: 4rem;
  }
}


@media screen and (max-width: 991.98px) {

  .newsletter::before,
  .animal-search::before,
  .collections-section::before,
  .equipe::before,
  .mission::before {
    top: -2px;
    height: calc(2.5rem + 2px);
  }

  .temoignages-section::before,
  .contact-help::before {
    top: 2px;
    height: calc(2.5rem + 2px);
  }


  .newsletter::after,
  .animal-search::after,
  .collections-section::after,
  .equipe::after,
  .mission::after {
    bottom: -2px;
    height: calc(2.5rem + 2px);
  }
}