@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  font-family: "Mulish", sans-serif;
}
html {
  height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100%;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: black;
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}
input {
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-weight: 500;
  font-size: 16px;
  height: 35px;
}

/* Tables Bootstrap 5 (reproduction : seule bootstrap-grid.min.css est
   chargée sur ce site, elle ne fournit pas les styles de composants) */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
  border-collapse: collapse;
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  border-bottom: 1px solid #dee2e6;
}
.table > thead {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table > thead th {
  font-weight: 600;
}
.table > tbody th {
  text-align: left;
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
  background-color: rgba(0, 0, 0, 0.03);
}
.table-bordered > :not(caption) > * {
  border-width: 1px 0;
  border-style: solid;
  border-color: #dee2e6;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
  border-style: solid;
  border-color: #dee2e6;
}

.slogan {
  text-align: center;
  font-size: 20px;
  margin-bottom: 1em;
  color: #e37a00;
}

/* Barre de recherche (header + page recherche) — reprend le style "soulignée" du
   site actuellement en ligne (orsade.com/categories.asp) : fond blanc, pas de
   bordure sur les côtés, un simple filet gris en bas, bouton loupe blanc à
   icône sombre plutôt qu'un bouton plein orange. */
.input-search {
  flex: 1 1 auto;
  border: none;
  border-bottom: 1px solid #ccc;
  background-color: #fff;
  color: #1b1b1b;
  padding: var(--s-2) var(--s-3);
  font-size: 14px;
  font-weight: 400;
}
.input-search:focus {
  outline: none;
  border-bottom-color: #e37a00;
}
.btn-search {
  border: none;
  border-bottom: 1px solid #ccc;
  background-color: #fff;
  color: #1b1b1b;
  padding: var(--s-2) var(--s-3);
  cursor: pointer;
  height: 35px;
}

/* Autocomplétion catégories/sous-catégories de la barre de recherche */
.header-search-wrap {
  position: relative;
}
.search-suggest {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 2px;
  max-height: 320px;
  overflow-y: auto;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  z-index: var(--z-header);
}
.search-suggest__item {
  padding: var(--s-2) var(--s-3);
  font-size: 14px;
  cursor: pointer;
}
.search-suggest__item:hover,
.search-suggest__item.is-active {
  background: #fdf1e2;
}
.search-suggest__item mark {
  background: none;
  color: #e37a00;
  font-weight: 700;
}

/* Header */
.header {
  padding: 20px 0px;

  .logo-header {
    width: 230px;
  }
  .cart-link {
    display: inline-flex;
    align-items: center;
    gap: var(--s-1);
  }
  .ico-panier {
    width: 35px;
  }
  .panier-bulle {
    color: #fff;
    background-color: #e37a00;
    border-radius: 13px;
    padding: 0 7px;
    font-size: 14px;
    font-weight: 600;
    margin-right: -8px;
    z-index: 999;
  }
  .ico-phone-header,
  .ico-mail-header {
    width: 18px;
    margin-right: 10px;
  }
  .ico-mail-header {
    width: 28px;
  }
  .text-phone-header,
  .text-mail-header {
    display: inline-flex;
    align-items: center;
  }
  .text-phone-header {
    font-size: 22px;
    font-weight: bold;
  }
  .text-mail-header {
    color: #e37a00;
    font-size: 16px;
  }
}

.mobile-menu-toggle {
  display: inline-flex;
}
@media (min-width: 1200px) {
  .mobile-menu-toggle {
    display: none;
  }
}
@media (min-width: 600px) and (max-width: 1200px) {
  .header__brand {
    flex-direction: column;
  }
  .header__brand .mobile-menu-toggle svg {
    width: 30px;
    height: 30px;
  }
}

/* Cœur commun (position/animation/nav/liens) dans composent-generic.css :
   ici uniquement ce qui diffère réellement pour ce site. */
.mobile-drawer {
  z-index: 9999;
  padding: 15px 25px;
}
.mobile-drawer__title {
  font-size: 16px;
  color: #e37a00;
  font-weight: bold;
}
.mobile-drawer__title a {
  color: inherit;
  text-decoration: none;
}

/* Footer */
.footer {
  background-color: #1b1b1b;
  padding-top: 30px;
  font-size: 14px;

  .logo-footer {
    max-width: 175px;
    margin-bottom: 15px;
  }
  .text-footer {
    color: white;
  }
  .link-footer {
    color: white;
    font-size: 14px;
    text-decoration: none;
  }
  .link-footer:hover {
    text-decoration: underline;
  }
  h4 {
    margin-top: 30px;
    font-size: 18px;
  }

  @media (max-width: 767px) {
    .mobile-center {
      text-align: center;
    }
  }
}

/* Accueil */
.background-referencement {
  padding: 50px 0;
  background-color: #f9f9f9;
  h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 40px;
  }
}

.ih-item {
  position: relative;
  transition: all 0.35s ease-in-out;

  &,
  * {
    box-sizing: border-box;
    height: 100%;
  }

  a {
    color: #333;
  }
  a:hover {
    text-decoration: none;
  }

  .title-img {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 25%;

    h3 {
      color: #fff;
      text-align: center;
      font-size: 17px;
      font-weight: 600;
      text-transform: uppercase;
      background: rgba(0, 0, 0, 0.6);
      margin: 0 auto;
      height: 100%;
      width: 100%;
      padding-top: 30px;
    }
  }
  a:hover .title-img {
    display: none;
  }

  &.square {
    .info {
      position: absolute;
      inset: 0;
      text-align: center;
      backface-visibility: hidden;
    }

    &.effect13 {
      overflow: hidden;

      .img {
        transition: all 0.35s ease-in-out;
        transform: scale(1);
        height: 100%;
      }

      .info {
        background: rgba(0, 0, 0, 0.6);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: all 0.35s ease-in-out;

        h3 {
          text-transform: uppercase;
          color: #fff;
          text-align: center;
          font-size: 17px;
          font-weight: 600;
          padding: 10px;
          padding-top: 45%;
          margin: 30px 0 0 0;
          background: none;
        }

        p {
          font-style: italic;
          font-size: 12px;
          position: relative;
          color: #bbb;
          padding: 20px;
          text-align: center;
        }
      }

      a:hover {
        .img {
          transform: scale(1.2);
        }
        .info {
          visibility: visible;
          opacity: 1;
        }
      }

      &.bottom_to_top {
        .info {
          transform: translateY(100%);
        }
        a:hover .info {
          transform: translateY(0);
        }
      }
    }
  }
}

/* Page "Objets Pub by Ankado" : overlay orange sur les tuiles .ih-item
   plutôt que le noir par défaut, sans changer l'accueil qui partage
   les mêmes classes. */
.objets-pub-ankado .ih-item {
  .title-img h3,
  &.square.effect13 .info {
    background: rgba(227, 122, 0, 0.8);
  }
}
.logo-ankado {
  width: 30%;
  display: block;
  margin: auto;
}

.title-subcat-ve {
  text-align: center;
  margin-top: 2em;
  margin-bottom: 2em;
  position: relative;
}

.title-subcat-ve:after {
  content: "";
  height: 5px;
  position: absolute;
  background-color: #fdc443;
  bottom: -30px;
  width: 65px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.catalogueDetail {
  .breadcrumb {
    background-color: #313131;
    text-align: center;
    color: #848484;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;

    .breadcrumb__link.breadcrumb__link--home {
      padding-top: 15px;
      display: block;
      padding-bottom: 15px;
      font-weight: 700;
    }
    .breadcrumb__link--home .bi-house-fill {
      color: #848484;
    }
    .breadcrumb__current {
      color: white;
    }
  }
}

.ico-rea {
  width: auto;
  height: 120px;
  margin: 0 auto;
  display: block;
}

.text-rea {
  text-align: center;
  margin: 0 auto;
  display: block;
  font-weight: 900;
  font-size: 1.3em;
  margin-top: 1em;
  text-transform: uppercase;
}

.font-size-seo-ref {
  font-size: 17px;
  .bold {
    font-weight: 600;
  }
}

.padding-list-seo {
  margin-left: 16px;
  margin-bottom: 30px;
  margin-top: 10px;
  list-style: disc;
}

.pro {
  color: #1b1b1b;
  font-weight: bold;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 18px;
}

/* Contact */
.contact-page {
  h1 {
    border-bottom: 1px solid #eee;
    margin: 0px 0 20px 0;
    padding-bottom: 10px;
    font-size: 36px;
  }
  h2 {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .mention-text-contact {
    font-size: 10px;
  }
  p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  small {
    font-size: 12px;
  }
}

.contact-page,
.catalogue {
  .card-header {
    padding: 0.5rem 1rem 0.5rem 0rem;
    margin-bottom: 0;
    border-bottom: 1px solid #e4e4e4;
    background-color: rgba(0, 0, 0, 0);
    font-size: 17px;
    color: #e37a00;
    padding-top: 0px;
  }
  label {
    font-weight: bold;
  }
  .form-group {
    flex-direction: column;
    align-items: initial;
    margin-top: 10px;
  }
  .form-control {
    margin-top: 5px;
  }
  form.panel-group {
    flex-direction: column;
    align-items: initial;
  }
}

/* Product card */
.product-card {
  display: flex;
  flex-direction: column;

  .product-collection {
    position: relative;
    border: 1px solid #eee;
    padding: 35px 10px 10px;
    box-shadow:
      0 1px 3px rgba(0, 0, 0, 0.12),
      0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    &:hover {
      box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.25),
        0 10px 10px rgba(0, 0, 0, 0.22);
    }
  }

  h3 {
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    line-height: 19px;
    min-height: 40px;
    margin-bottom: 0px;
    font-size: 16px;
    text-align: center;
  }
  .prix {
    font-size: 16px;
    font-weight: bold;
    color: #e37a00;
    text-align: center;
    span {
      margin-left: 5px;
    }
  }

  button {
    margin-top: 15px;
  }
}

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(6deg);
  }
  50% {
    transform: rotate(-4deg);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.badge-div {
  position: absolute;
  top: var(--s-3);
  left: var(--s-3);
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  pointer-events: none;
}
.product-card__title {
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1.4;
  color: var(--c-fg);
}
.product-card__price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-2);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-top: var(--s-1);
}
.option-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.option-swatch {
  min-width: 40px;
  height: 40px;
  padding-inline: var(--s-3);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color var(--t),
    background var(--t);
  background: none;
}
.option-swatch:hover {
  border-color: var(--c-fg);
}
.option-swatch.is-active {
  border-color: var(--c-fg);
  background: var(--c-fg);
  color: var(--c-bg);
}
.qty__input {
  width: 100%;
  text-align: center;
  border: 1px solid #ccc;
  font-size: var(--text-sm);
  font-weight: 600;
  background: none;
  -moz-appearance: textfield;
}
.qty__input:focus {
  outline: none;
}
.qty__input::-webkit-outer-spin-button,
.qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
/* Collection — bannière de catégorie (image unique, texte par catégorie via dict.category_banners) */
.category-header {
  background-color: var(--c-surface);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: black;
  padding-block: 50px;
  margin-bottom: var(--s-8);
  text-align: center;
  .breadcrumb {
    display: flex;
    justify-content: center;
    padding-bottom: 0;
  }
}
.category-header .breadcrumb,
.category-header .breadcrumb__current {
  color: black;
}
.category-header__title {
  margin-bottom: 20px;
  color: black;
  font-size: 48px;
  text-transform: uppercase;
}
.category-header__desc {
  max-width: 600px;
  font-size: var(--text-base);
  line-height: 1.6;
  color: rgba(50, 50, 50, 0.9);
}

@media (max-width: 640px) {
  .category-header {
    padding-block: var(--s-6);
  }
}

/* Catégories */
.collection-sidebar {
  h2 {
    font-size: 21px;
    &::after {
      content: "";
      display: inline-block;
      vertical-align: middle;
      width: 30px;
      height: 3px;
      margin-left: 15px;
      background-color: #fdc443;
    }
  }

  .filter-budget {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
    .input {
      font-size: 14px;
      border: 0;
      border-bottom: 1px solid black;
      border-radius: 0px;
    }
  }

  input,
  select {
    font-size: 14px;
  }

  .collection-sidebar__header {
    display: block;
    width: 100%;
    border: none;
    background: none;
    padding: 0;
    text-align: left;
    cursor: default;
    pointer-events: none;
  }

  .collection-sidebar__chevron {
    display: none;
  }

  .size-swatch-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .size-swatch-label {
    cursor: pointer;

    input {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }
  }

  .size-chip {
    border: 2px solid #f4f4f4;
    display: inline-block;
    margin-bottom: 3px;
    min-width: 40px;
    padding: 9px 0;
    text-align: center;
    vertical-align: bottom;
    background-color: #f2f2f2;
    color: #8f8f8f;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    &:hover {
      background-color: #fdc443;
      color: #fff;
    }
  }

  .size-swatch-label input:checked + .size-chip {
    background: #fdc443;
    border-color: #fdc443;
    color: #fff;
  }

  .color-swatch-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
  }

  .color-swatch-label input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }

  .color-swatch {
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #dadada;
    cursor: pointer;
    transition: transform 0.2s;
  }

  .bi-check-lg {
    display: none;
  }

  .color-swatch-label input:checked + .color-swatch {
    border-color: #fff;
    color: #fff;
    -webkit-box-shadow:
      inset 0 1px 1px rgba(0, 0, 0, 0.3),
      0 0 8px #8f8f8f;
    box-shadow:
      0 0 0 1px rgb(0 0 0 / 71%),
      0 0 0 2px #fff,
      0 0 0 2px #dedede;
    .bi-check-lg {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      color: white;
    }
  }
}

/* Accordéon filtres — mobile uniquement, desktop inchangé */
@media (max-width: 768px) {
  .collection-sidebar {
    .collection-sidebar__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      pointer-events: auto;
      padding: 12px;
      background-color: #e37a00;
      color: white;
      border-bottom: 1px solid #dcdcdc;

      h2 {
        margin: 0;
        color: white;
      }
    }

    .collection-sidebar__chevron {
      display: block;
      flex-shrink: 0;
      transition: transform 0.2s ease;
    }

    .collection-sidebar__header[aria-expanded="true"]
      .collection-sidebar__chevron {
      transform: rotate(180deg);
    }

    .collection-sidebar__body.collapse:not(.show) {
      display: none;
    }

    .collection-sidebar__body.collapsing {
      height: 0;
      overflow: hidden;
      transition: height 0.35s ease;
    }
  }
}

.collection-toolbar {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  font-size: 14px;
}
.collection-toolbar__count {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 5px;
  font-size: var(--text-sm);
  strong {
    font-weight: bold;
    color: #3c3c3c;
  }
}
.filter-form {
  flex-direction: column;
  align-items: flex-start;

  .btn {
    width: 100%;
  }
}

.filter-group {
  padding-block: var(--s-5);
  width: 100%;
  p {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
  }
}

.filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: var(--s-1) 0;
}
.filter-option__inner {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.filter-option__check {
  width: 18px;
  height: 18px;
  border: 1.5px solid #ced4da;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  transition:
    background var(--t),
    border-color var(--t);
}
.filter-option input:checked + .filter-option__check,
.filter-option.is-active .filter-option__check {
  background: #e37a00;
  border-color: #e37a00;
}
.filter-option__label {
  font-size: var(--text-sm);
}

/* Mega menu */
.mega-nav__bar {
  background-color: #f9f9f9;
}

.mega-nav {
  position: relative;
  z-index: calc(var(--z-header) - 1);
  margin-bottom: 30px;
  margin-top: 30px;

  .mega-nav__top-item {
    position: relative;
    flex: auto;
    padding: 10px;
    border-bottom: 4px solid transparent;
    text-align: center;

    > a,
    > button {
      font-weight: bold;
      text-transform: uppercase;
      color: inherit;
      text-decoration: none;
      font-size: 14px;
    }
  }

  .mega-nav__top-item:hover,
  .mega-nav__top-item.is-open {
    border-bottom: 4px solid #fdc443;
    padding-bottom: 10px;
  }
  .mega-nav__top-item:first-child {
    border-bottom: 4px solid #fdc443;
  }
}

.mega-nav__top {
  display: flex;
}

.mega-nav__top-item.is-open .mega-nav__trigger,
.mega-nav__top-item:hover .mega-nav__trigger {
  color: #e37a00;
}

/* Panel */
.mega-panel {
  display: none;
  position: absolute;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  z-index: var(--z-header);
  width: max-content;
  max-width: max-content;
  height: max-content;
  top: 45px;
  left: 0;
}

/* Menu "Objets Pub by Ankado" uniquement (classes --wide, réservées à ce
   menu) : le panel épouse la largeur de .mega-nav (min et max) plutôt que
   celle de son onglet déclencheur — sinon, ancré sous ce 2e onglet, il
   déborde du viewport dès qu'une catégorie a beaucoup de colonnes (ex.
   Maison & Décoration). .mega-nav__top-item--wide repasse en
   position:static pour que le panel se positionne par rapport à .mega-nav
   (toujours position:relative) au lieu de son <li>. Limité à .has-cols :
   sans cette condition, la largeur pleine s'appliquait aussi sans catégorie
   active (ex. survol de "Nouveautés", sans sous-menu), laissant un grand
   rectangle blanc à droite de la colonne de catégories — constat d'Ilona
   du 2026-08-20. */
.mega-nav .mega-nav__top-item--wide {
  position: static;
}
.mega-panel--wide.has-cols {
  min-width: 100%;
  max-width: 100%;
}

.mega-nav__top-item.is-open .mega-panel,
.mega-nav__top-item:hover .mega-panel {
  display: flex;
  align-items: stretch;
}
.mega-panel__left {
  width: auto;
  flex-shrink: 0;
  border-right: 1px solid var(--c-border);
  overflow-y: auto;
}
.mega-panel__cat {
  display: flex;
  align-items: center;
  padding: 12px 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.mega-panel__cat:hover,
.mega-panel__cat.is-active {
  background: var(--c-surface-2);
  color: #e37a00;
}

.mega-panel__cat svg {
  opacity: 0.5;
  flex-shrink: 0;
}
.mega-panel__right {
  display: none;
  flex: 1;
  overflow-y: auto;
  padding: var(--s-6);
}
.mega-panel.has-cols .mega-panel__right {
  display: flex;
  flex-direction: column;
}
.mega-panel__cols {
  display: none;
}
.mega-panel__cols.is-active {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mega-panel__header {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: var(--s-4);
  order: 2;
  margin-top: auto;
  padding-top: var(--s-4);
}

.mega-panel__see-all {
  font-weight: 700;
  text-transform: uppercase;
  &:hover {
    text-decoration: underline;
  }
}
.mega-panel__grid {
  display: flex;
  gap: var(--s-8);
  flex-wrap: wrap;
  order: 1;
}
.mega-panel__col {
  flex: 1;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mega-panel__col-title {
  font-weight: 700;
  margin-bottom: var(--s-2);
  text-align: left;
  color: #e37a00;
}
.mega-panel__col a {
  padding: 2px 0;
  transition: color var(--t);
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
}
.mega-panel__col a:hover {
  text-decoration: underline;
  color: #e37a00;
  text-underline-offset: 2px;
}

@media (max-width: 1100px) {
  .mega-nav {
    display: none;
  }
}

.plan-site {
  h2 {
    font-weight: bold;
  }
  h3 {
    font-size: 18px;
  }
}

/* Plan du site */
.plan-du-site__list {
  padding: 0;
  list-style: none;
  line-height: 1.8;
}
.plan-du-site__list a {
  color: inherit;
}
.plan-du-site__list a:hover {
  color: #e37a00;
}
.plan-du-site__sublist {
  padding-left: 1.25rem;
  margin: 0.25rem 0 0.75rem;
  line-height: 1.6;
  font-size: 0.9em;
}
.plan-du-site__sublist a {
  color: var(--c-subtle);
}
/* Listes catégories/sous-catégories très longues (Vêtements & EPI, Objets Pub) :
   réparties en colonnes façon journal plutôt qu'une seule colonne interminable. */
.plan-du-site__list--columns {
  columns: 3;
  column-gap: 2.5rem;
}
.plan-du-site__list--columns > li {
  break-inside: avoid-column;
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .plan-du-site__list--columns {
    columns: 2;
  }
}
@media (max-width: 575px) {
  .plan-du-site__list--columns {
    columns: 1;
  }
}

/* Pages institutionnelles */
.references,
.modele,
.catalogue {
  .bandeau {
    background-image: url(//static3.promotool.net/Org/M3085x238180.jpg);
    background-size: cover;
    background-position: center;
    padding: 50px 0;
  }
  .breadcrumb {
    justify-content: center;
  }
  h1 {
    margin-top: 10px;
    font-size: 48px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
  }
  h2 {
    border-bottom: 1px solid #eee;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    font-size: 36px;
  }
}
.catalogue {
  p {
    font-size: 18px;
  }
}

/* Cart */
.section-title {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.nav-checkout {
  font-size: 16px;
}
.nav-checkout .active {
  font-weight: 700;
  color: #fdc443;
}

/* Checkout */
.checkout-page {
  .card-header {
    color: #e37a00;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .footer {
    img {
      width: 100%;
    }
  }
}
@media (min-width: 1200px) {
  .background-referencement {
    img {
      max-width: 460px;
    }
  }
}

@media (max-width: 500px) {
  .footer {
    img {
      width: 60%;
    }
  }
  .header {
    padding: 0 12px;
    .btn-icon {
      width: 70px;
    }
    .mobile-menu-toggle svg {
      height: 35px;
      width: 35px;
      margin-left: 30px;
    }
  }
}
