/* 
 * CSS fusionné - Généré automatiquement
 * Date: 2026-02-14T22:00:36.744Z
 * Fichiers: 30
 */

/* ===== styles/source/reusable/base.css ===== */
body {
  background-color: #efefef !important;
  overflow-x: hidden;
}

.flash-transition {
  transition: opacity 0.5s ease-out;
  opacity: 1;
}

@media (max-width: 992px) {
  .container {
    max-width: var(--full-width) !important;
    overflow-x: hidden;
    padding: 0 !important;
  }
}

@font-face {
  font-family: "type juice unison pro";
  src: url("/assets/fonts/type-juice-unison-pro-bold-italic.otf")
    format("opentype");
  font-weight: bold;
  font-style: italic;
}


/* ===== styles/source/reusable/global-fixes.css ===== */
/* ========================================
   CORRECTIONS CIBLÉES - ÉLÉMENTS PROBLÉMATIQUES
   ======================================== */

/* Empêcher le débordement des conteneurs */
@media (max-width: 992px) {
  .container {
    max-width: var(--full-width) !important;
    overflow-x: hidden;
    padding: 0 !important;
  }
}


/* ===== styles/source/reusable/variable.css ===== */
:root {
    /* Couleur */
    --color-primary: #ffb70A;
    --color-secondary: #ddd;
    --color-gray-light: #f8f8f8;
    --color-gray-medium: #ccc;
    --color-gray-dark: #666;
    --color-dark-gray: #333;
    --color-black: #000;
    --color-highlight: #ffd700;
    --color-white: #ffffff;
    --color-gray-alt: #f4f4f4;
    --color-background-light: #f7f7f7;
    --color-yellow-light: #fede00;
    --color-yellow-bright: #ffe401;
    --color-orange: #f9a71a;
    --color-lightest-gray: #F8F9FA;
    /* Font Weight */
    --font-weight-medium: 500;
    --font-weight-semi-bold: 600;
    /* Dimensions des images */
    --img-max-width-large: 650px;
    --img-max-width-medium: 450px;
    --img-max-width-small: 350px;
    --img-max-width-xsmall: 300px;
    /* Espacement */
    --default-padding: 30px;
    /* Same that 1em */
    --default-font-size: 16px;
    --font-size-small: 14px;
    /* Same that 1.25 em */
    --font-size-medium: 20px;
    --font-size-large: 18px;
    /* Same that 1.5 rem */
    --font-size-xlarge: 24px;
    /* Highlight */
    --highlight-color: #ff9900;
    /*Margin, padding or size */
    --pms-20: 20px;
    --pms-15: 15px;
    --pms-10: 10px;
    --pms-5: 5px;
    /*CENTRER*/
    --horizontal-center: 0 auto;
    /*WIDTH*/
    --full-width: 100%;
}


/* ===== styles/source/reusable/generic.css ===== */
.no-under {
    text-decoration: underline;
}

/* ===== styles/source/nav/menu.css ===== */
.navbar {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

/*.navbar-nav {*/
/*    z-index: 10001; !* Plus élevé que .background-img-header *!*/
/*}*/

.navbar-top {
  background-color: var(--color-white);
  padding: 10px 30px 10px 20px;
}

.account-section a,
.cart-section {
  display: flex;
  align-items: center;
}

.account-connect-icon {
  font-size: 28px;
}

.navbar-menu {
  background-color: var(--color-lightest-gray);
}

.separator {
  width: 1px;
  height: var(--pms-20);
  background-color: var(--color-gray-medium);
  margin: 0 10px;
}

.select-container {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.select-container select {
  padding-right: 2.5em;
  width: 100%;
  position: relative;
}

.select-mini-container select {
  position: relative;
}

.select-container .hidden-options {
  color: transparent;
  background: transparent;
  pointer-events: none;
}

/*.loader-main {*/
/*    margin-top: 40px;*/
/*    width: 10px;*/
/*    height: 10px;*/
/*}*/

/*.loader-second {*/
/*    margin-top: 40px;*/
/*    margin-left: 30px;*/
/*    width: var(--pms-10);*/
/*    height: var(--pms-10);*/
/*}*/

.loader {
  position: absolute;
  border-radius: 50%;
  animation: l5 1s infinite linear alternate;
  background: transparent;
  display: none;
}

@keyframes l5 {
  0% {
    box-shadow: 20px 0 #888, -20px 0 #8882;
    background: #888;
  }
  33% {
    box-shadow: 20px 0 #888, -20px 0 #8882;
    background: #8882;
  }
  66% {
    box-shadow: 20px 0 #8882, -20px 0 #888;
    background: #8882;
  }
  100% {
    box-shadow: 20px 0 #8882, -20px 0 #888;
    background: #888;
  }
}

.cart-section i {
  font-size: 26px;
}

.cart-section .badge {
  background-color: var(--color-primary);
  color: var(--color-black);
  position: absolute;
  top: 0;
  left: 100%;
  transform: translate(-50%, -50%);
  max-width: 20px;
  max-height: 20px;
  font-size: 10px;
  line-height: 1;
  padding: 2px 4px;
  overflow: hidden;
}

.active-nav {
  /*Le important est essentiel ici pour surcharger */
  color: var(--color-primary) !important;
}

.custom-toggler {
  border: none;
  background-color: transparent;
  outline: none;
}

.custom-toggler-icon {
  height: 2px;
  background-color: var(--color-black);
  position: relative;
  display: inline-block;
  /*border-radius: 1px;*/
  /*transition: all 0.3 +s ease;*/
}

.custom-toggler-icon::before,
.custom-toggler-icon::after {
  content: "";
  position: absolute;
  height: 2px;
  background-color: var(--color-black);
  /*border-radius: 1px;*/
  left: 0;
  transition: all 0.3s ease;
}

.custom-toggler-icon::before {
  top: -8px;
}

.custom-toggler-icon::after {
  top: 8px;
}

/* Animation for active state */
.custom-toggler.active .custom-toggler-icon {
  background-color: transparent;
}

.custom-toggler.active .custom-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.custom-toggler.active .custom-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.admin-dropdown .dropdown-item:active,
.admin-dropdown .dropdown-item:focus,
.admin-dropdown .dropdown-item:hover {
  background-color: #ffa500 !important; /* orange */
  color: #fff !important;
  text-decoration: underline;
}

.admin-dropdown .dropdown-item:active i,
.admin-dropdown .dropdown-item:focus i,
.admin-dropdown .dropdown-item:hover i {
  color: #fff !important;
}

/* ===== styles/source/nav/custom-menu.css ===== */
.nav-item {
    padding: 8px 0;
}

.dropdown-hover > .dropdown-toggle:active {
    pointer-events: none;
}

.bold-text {
    font-weight: bold;
}

.dropdown-menu {
    left: 0;
    /*Les deux important sont essentiel ici pour surcharger */
    border-radius: 0 !important;
    border-color: var(--color-white) !important;
}

.nav-link {
    /*Le important est essentiel ici pour surcharger */
    font-weight: var(--font-weight-medium) !important;
}

.nav-item .nav-link:hover {
    color: var(--color-primary);
}

.own-submenu-list {
    margin-top: var(--pms-10);
    padding-left: 0;
    list-style-type: none;
}

/* Style the links inside the list */
.own-submenu-list a {
    display: block;
    margin-bottom: 5px;
    text-decoration: none;
    color: var(--color-black);
    font-size: var(--font-size-small);
}

/* Add hover effect for links */
.own-submenu-list a:hover {
    text-decoration: underline;
    color: var(--color-orange);
}

.custom-orange {
    color: var(--color-orange);
}

.dropdown-menu::before {
    content: "";
    display: block;
    height: 4px;
    background-color: orange;
    position: absolute;
    top: 0;
    left: 0;
    width: var(--full-width);
}

@media (max-width: 991px) {
    .dropdown-hover > .dropdown-menu {
        display: none;
    }
}

@media (min-width: 992px) {
    .dropdown-hover:hover > .dropdown-menu {
        display: inline-block;
    }
}

@media (min-width: 992px) {
    .navbar {
        background-color: var(--color-lightest-gray);
    }
}

@media (max-width: 992px) {
    .navbar-nav .nav-item {
        margin-left: var(--pms-10);
    }
}

/* ===== styles/source/section/search-section.css ===== */
.background-img-header,
.background-img-header-fitting,
.bg-advice-common {
  position: relative;
  min-height: 350px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: var(--full-width);
  /*z-index: 0;*/
}

.background-img-header {
  background-position: 10% 20%;
  background-image: url("../img/search/tire-mechanic-6jZJGKr.webp");
  /*z-index: 10000;*/
}

/*.background-img-header, .navbar-nav, .modal, .modal-backdrop {*/
.background-img-header,
.navbar-nav,
.modal-backdrop {
  z-index: auto !important;
}

.background-img-header-fitting {
  background-position: 10% 60%;
  background-image: url("../img/fitting/mechanic-examining-tyre-u2ogLIq.webp");
}

.bg-cat-choix-des-pneus {
  background-position: 10% 20%;
  background-image: url("../img/advice/choix-pneus-ezgOpuv.webp");
}

.bg-cat-entretien-et-duree-de-vie-des-pneus {
  background-position: 10% 20%;
  background-image: url("../img/advice/entretien-pneus-ZQxx1Oc.webp");
}

.bg-cat-saisonnalite-et-conditions-climatiques {
  background-position: 10% 20%;
  background-image: url("../img/advice/saisonnalite-pneus-ETGZ-qV.webp");
}

.bg-cat-securite-pneus-et-conduite {
  background-position: 10% 20%;
  background-image: url("../img/advice/securite-pneus-pdtd8dx.webp");
}

.bg-cat-installation-et-remplacement {
  background-position: 10% 20%;
  background-image: url("../img/advice/installation-pneus-tkjgB8s.webp");
}

.bg-cat-economie-et-environnement {
  background-position: 10% 20%;
  background-image: url("../img/advice/economies-pneus-BBWfx7Y.webp");
}

/* Styles pour la boîte de recherche */
.search-box {
  /*padding: 6px 7px 6px 7px;*/
  padding: 15px 20px 15px 20px;
  background-color: var(--color-white);
  border-radius: var(--pms-10);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  margin-bottom: var(--pms-15);
  /*z-index: 3;*/
}

/* Overlay sombre */
.background-img-header::before,
.background-img-header-fitting::before,
.bg-advice-common::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--full-width);
  height: var(--full-width);
  background-color: rgba(0, 0, 0, 0.5);
  /*z-index: 1;*/
}

.header-content,
.header-content-fitting,
.header-content-advice {
  position: relative;
  /*z-index: 2;*/
  color: var(--color-white);
  padding: var(--pms-15);
}

.header-content-fitting,
.header-content-advice {
  width: var(--full-width);
}

.header-content h1 {
  margin: 0;
  line-height: 0.7;
  font-weight: bold;
}

.header-content-fitting h1,
.header-content-advice h1,
.header-content-advice h1 {
  margin-top: var(--pms-20);
  text-align: center;
}

.header-content p {
  font-size: var(--default-font-size);
  margin: 5px 0;
  font-weight: var(--font-weight-medium);
}

/* CUSTOM SHAPE */
.custom-shape,
.custom-shape-brand {
  display: inline-block;
  margin-left: var(--pms-20);
  color: var(--color-black);
  padding: 2px 0;
  font-weight: bold;
  text-align: center;
  position: relative;
  overflow: visible;
}

.bg-own-color,
.bg-own-color::before,
.bg-own-color::after {
  background-color: var(--color-primary);
}

.custom-shape::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--pms-20);
  height: var(--full-width);
  clip-path: ellipse(100% 100% at 100% 0%);
  transform: translateX(-20px);
}

.custom-shape::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: var(--pms-20);
  height: var(--full-width);
  clip-path: ellipse(100% 100% at 0% 100%);
  transform: translateX(20px);
}

.background-img-header form {
  z-index: 4;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.search-title {
  font-size: 1.4em;
  font-weight: bold;
  color: var(--color-dark-gray);
  text-align: center;
}

.search-fields-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: var(--full-width);
}

.search-fields {
  display: flex;
  justify-content: left;
  flex-grow: 1;
}

.search-field {
  display: flex;
  flex-direction: column;
}

.search-field label {
  margin-bottom: 5px;
  font-size: 0.9em;
  color: var(--color-dark-gray);
}

.search-box select {
  padding: 5px;
  font-size: 0.9em;
  border: 1px solid var(--color-gray-medium);
  width: 80px;
}

.season-container {
  display: flex;
  align-items: center;
}

.info-button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--full-width);
  height: var(--full-width);
  margin-right: var(--pms-10);
}

/* Ajustement de l'icône d'information */
.info-icon {
  width: 27px;
  height: 27px;
  margin-top: 25px;
}

.season-icons {
  display: flex;
  justify-content: flex-start;
  gap: var(--pms-20);
  margin-top: 12px;
}

.season-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.season-icon {
  width: 40px;
  height: 40px;
  margin-left: 0;
}

.season-mini-icon {
  width: var(--pms-20);
  height: var(--pms-20);
  margin-left: 0;
  margin-right: 5px;
}

.season-icon:hover {
  cursor: pointer;
}

.season-label {
  margin-top: 5px;
  font-size: var(--font-size-small);
}

/* Bouton de recherche */
.search-button {
  display: flex;
  justify-content: center;
  /*width:  var(--full-width);*/
}

.btn-width-second button {
  width: 30%;
}

.search-button button {
  padding: 3px;
  margin-bottom: var(--pms-10);
  margin-top: var(--pms-10);
  width: 50%;
}

.search-second-btn button {
  padding: 6px;
  width: 150px;
  margin-top: var(--pms-15);
}

.search-button button,
.search-second-btn button {
  background-color: var(--color-primary);
  color: var(--color-black);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: var(--font-weight-medium);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.search-button button:hover {
  background-color: #e0a000;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.half-icon {
  margin-bottom: var(--pms-10);
  margin-left: 4px;
  width: 40px;
  height: auto;
}


/* ===== styles/source/nav/screen.css ===== */
/******************! SCREEN SIZE : 0 - 300 PX ******************/
@media (max-width: 300px) {
  .search-box select {
    width: 70px;
  }
}

/******************! SCREEN SIZE : 0 - 320 PX ******************/
@media (max-width: 320px) {
  .header-content h1 {
    font-size: var(--default-font-size);
  }

  .section-brands p {
    font-size: var(--default-font-size);
  }
}

/******************! SCREEN SIZE : 320 - 992 PX ******************/
@media (min-width: 320px) and (max-width: 992px) {
  .search-field.field-load,
  .search-field.field-speed {
    width: calc(30%);
  }
}

/******************! SCREEN SIZE : 0 - 360 PX ******************/
@media (max-width: 360px) {
  .most-wanted-city .col-6 {
    flex: 0 0 100%;
    margin-left: 10%;
    max-width: 100%;
  }
}

/******************! SCREEN SIZE : 0 - 380 PX ******************/
@media (max-width: 380px) {
  .cart-trash-col {
    margin-top: 10px;
    text-align: left;
  }

  .little-price-text {
    font-size: 0.8rem;
  }

  .half-icon {
    width: 30px;
    height: auto;
  }

  .header-content .custom-shape {
    font-size: 0.6em;
  }

  .header-content h1 {
    font-size: 1.3em;
  }

  .header-content p {
    font-size: 0.6em;
  }

  .search-title {
    font-size: 0.8em;
  }

  .info-icon {
    width: var(--pms-20);
    height: var(--pms-20);
  }
}

/******************! SCREEN SIZE : 380 - 768 PX ******************/
@media (min-width: 380px) and (max-width: 768px) {
  .cart-trash-col {
    position: relative;
    bottom: 40px;
    text-align: right;
  }
}

/******************! SCREEN SIZE : 0 - 382 PX ******************/
@media (max-width: 382px) {
  .search-field label {
    font-size: 0.6em;
  }
}

/******************! SCREEN SIZE : 0 - 390 PX ******************/
@media (max-width: 390px) {
  .season-label {
    font-size: 12px;
  }

  .search-box select {
    padding: 2px;
    font-size: 0.7em;
    width: 60px;
  }
}

/******************! SCREEN SIZE : 0 - 400 PX ******************/
@media (max-width: 400px) {
  .mobile-steps {
    font-size: 0.55rem;
  }

  .custom-toggler-icon {
    margin-bottom: 2px;
  }

  .search-fields {
    display: flex;
    flex-wrap: wrap;
  }
}

/******************! SCREEN SIZE : 0 - 449 PX ******************/
@media (max-width: 449px) {
  .custom-toggler-icon {
    width: var(--pms-15);
  }

  .custom-toggler-icon::before,
  .custom-toggler-icon::after {
    width: var(--pms-15);
  }
}

/******************! SCREEN SIZE : 450 and more ******************/
@media (min-width: 450px) {
  .row-step-payment:not(.yellow-bar) > .col-md-8 {
    padding-left: 40px !important;
    margin-top: var(--pms-20);
  }

  .custom-toggler-icon {
    width: var(--pms-20);
  }

  .custom-toggler-icon::before,
  .custom-toggler-icon::after {
    width: var(--pms-20);
  }
}

@media (max-width: 450px) {
  .row-to-step .btn-step-cart,
  .row-to-step .btn-step-payment,
  .row-to-step .btn-step-delivery,
  .row-to-step .btn-step-checking {
    width: 100% !important;
  }
}

/******************! SCREEN SIZE : 0 - 528 PX ******************/
/* Menu section  */
@media (max-width: 528px) {
  /*Section brands*/
  .section-brands p {
    font-size: var(--font-size-xlarge);
  }

  .account-section {
    margin-right: var(--default-font-size);
  }

  .separator {
    display: none;
  }

  .account-connect-icon i {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .cart-section .badge {
    font-size: 10px;
  }

  .cart-section i {
    font-size: 20px;
  }

  .header-content h1,
  .header-content-fitting h1,
  .header-content-advice h1 {
    font-size: var(--font-size-xlarge);
  }

  .header-content p {
    font-size: 0.7em;
  }

  .header-content .custom-shape {
    font-size: 0.75em;
  }
}

/******************! SCREEN SIZE : 0 - 768 PX ******************/
@media (max-width: 768px) {
  .row-card-with-product {
    padding: 15px 0 0 15px;
  }

  .card-content-col {
    padding-top: var(--pms-15);
  }

  .best-sell-img {
    width: 40%;
    margin: var(--horizontal-center);
  }

  .seas-ic-show {
    width: 40px;
    height: 40px;
    margin-right: 5px;
  }

  .snow-ic {
    width: 35px;
    margin-right: 20px;
  }

  .view-btn {
    margin-top: var(--pms-20);
    padding: 10px 80px;
  }

  .user-info {
    color: var(--color-white);
  }

  .sidebar-account {
    height: 100px;
    background-color: #222629;
    padding: var(--pms-15);
  }

  .sidebar-account h5 {
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: var(--pms-10);
  }

  .menu-toggle {
    z-index: 15000;
    display: block;
    background-color: #222629;
    color: var(--color-primary);
    font-size: var(--font-size-small);
    padding: 4px 20px;
    text-align: left;
    border: 1px solid var(--color-primary);
    width: 85%;
    position: relative;
    margin: var(--horizontal-center);
    border-radius: 0;
  }

  .account-menu li {
    background-color: #222629;
    margin: 0 auto;
    border-bottom: 1px solid #444;
    color: var(--color-white);
    width: 80%;
    padding: 8px;
    text-align: left;
  }

  .menu-toggle::after {
    content: "▼";
    position: absolute;
    right: var(--pms-15);
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--font-size-small);
  }

  .menu-toggle.open::after {
    content: "▲";
  }

  .account-menu {
    display: none;
    background-color: transparent;
    margin: 0;
    padding: 0;
    list-style: none;
    width: var(--full-width);
    border: none;
  }

  .menu-toggle.open + .account-menu {
    z-index: 1500;
    display: block;
  }

  .account-link {
    color: var(--color-white) !important;
    display: block;
    text-decoration: none;
    font-size: var(--font-size-small);
    padding-left: var(--pms-15);
  }

  .account-link:hover {
    color: var(--color-primary);
  }

  .logo-img {
    margin-left: var(--pms-20);
    width: 200px;
    height: auto;
  }

  .advice-discover {
    font-size: 1.2rem;
  }

  .icon-step-payment {
    font-size: 40px;
  }

  .best-sell-body .card-title {
    font-size: 0.9rem;
  }

  .card {
    margin: var(--pms-10);
  }

  .text-container.d-flex {
    flex-direction: column;
    align-items: center;
    margin-top: 70px;
  }

  .step-text {
    max-width: none;
    text-align: center;
    margin-bottom: var(--pms-20);
    width: 70%;
  }

  .step-circle,
  .container-progress-own {
    display: none;
  }

  .mini-step-circle {
    display: inline !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: 2px solid #1e1e1e;
    font-weight: bold;
    margin-bottom: var(--pms-10);
    cursor: pointer;
    font-size: var(--font-size-xlarge);
    z-index: 10;
    text-align: center;
  }
}

/******************! SCREEN SIZE : 768 and more ******************/
@media (min-width: 768px) {
  .separate-info {
    border-right: 1px solid #e2e2e2;
  }

  .logo-img {
    width: 250px;
    height: auto;
  }

  .advice-discover {
    font-size: 1.3rem;
  }

  .icon-step-payment {
    font-size: 50px;
    margin: 20px 25px 0 0;
  }

  .delivery-time-title {
    font-size: var(--font-size-xlarge);
  }

  .navbar-nav .nav-item {
    margin-right: var(--pms-20);
  }

  .view-btn {
    padding: 5px 30px;
    margin-top: var(--pms-10);
  }

  .snow-ic {
    width: 30px;
    margin-right: 10px;
  }

  .seas-ic-show {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }

  .sidebar-account {
    height: 60vh;
  }

  .account-menu li::after {
    width: 80%;
    height: 1px;
    background-color: #a0a0a0;
  }

  .user-info {
    color: var(--color-black);
    font-weight: var(--font-weight-medium);
  }
}

@media (max-width: 768px) {
  .modal-dialog {
    max-width: 80%;
    margin: 0 auto !important;
  }
}

/******************! SCREEN SIZE : 768 - 992 PX ******************/
@media (min-width: 768px) and (max-width: 992px) {
  .card-text {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  .best-sell-body .card-title {
    font-size: 0.8rem;
  }
}

/******************! SCREEN SIZE : 992 - 1200 PX ******************/
@media (min-width: 992px) and (max-width: 1200px) {
  .best-sell-body .card-title {
    font-size: 0.9rem;
  }
}

/******************! SCREEN SIZE : 0 - 992 PX ******************/
@media (max-width: 992px) {
  .tire-info-img {
    text-align: center;
  }

  .image-gallery {
    margin: 20px;
  }

  .info-tire-img-brand img {
    width: 150px;
    margin-top: 15px;
  }

  .row-to-step .text-step-title {
    display: none;
    overflow: visible;
  }

  .row-to-step .text-step-all {
    font-size: 0.8rem !important;
    font-weight: bold;
  }

  .row-to-step .btn-step-checking .text-step-all {
    left: var(--pms-10);
  }

  .row-to-step .btn-step-cart .text-step-all {
    right: var(--pms-10);
  }

  .mobile-steps {
    display: block !important;
    margin-top: var(--pms-10);
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
  }

  .row-to-step {
    width: var(--full-width);
  }

  .row-to-step .every-col .btn-step-cart + .mobile-steps {
    position: relative !important;
    left: 50%;
  }

  .row-to-step .every-col .btn-step-delivery + .mobile-steps {
    position: relative !important;
    left: 25%;
  }

  .row-to-step .every-col .btn-step-payment + .mobile-steps {
    position: relative !important;
    left: 5%;
  }

  .row-to-step .every-col .btn-step-checking + .mobile-steps {
    position: relative !important;
    right: 20%;
  }

  .row-to-step .btn-step-cart,
  .row-to-step .btn-step-payment,
  .row-to-step .btn-step-delivery,
  .row-to-step .btn-step-checking {
    padding: 5px 5px;
  }

  .city-link {
    width: var(--full-width);
    margin-bottom: var(--pms-10);
  }

  .my-account-info,
  .connexion-info {
    display: none;
  }

  .info-icon {
    margin-right: 40%;
  }

  .search-fields-icons {
    display: flex;
    flex-direction: column;
    width: var(--full-width);
  }

  .search-fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: var(--full-width);
  }

  /* Largeur, Hauteur, Diamètre */
  .search-field.field-dim {
    width: calc(30%);
  }

  /* Charge, Vitesse */
  .search-field.field-ls {
    margin-top: var(--pms-15);
    width: calc(30%);
  }

  /* Conteneur de l'icône d'information */
  .info-btn-part {
    width: calc(30%);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
  }

  /* Icônes de saisons */
  .season-container {
    display: flex;
    justify-content: space-between;
    width: var(--full-width);
    margin-top: var(--pms-10);
  }

  .season-icons {
    display: flex;
    justify-content: space-between;
    width: var(--full-width);
  }

  .season-item {
    flex: 1;
    text-align: center;
  }

  /* Bouton Rechercher */
  .search-button {
    display: flex;
    justify-content: center;
    margin-top: 5px;
    margin-bottom: var(--pms-20);
  }

  /* Section Suivante */
  .section-brands {
    clear: both;
    position: relative;
    z-index: 2;
    padding-top: 20px;
    margin-top: -60px;
  }

  .search-box {
    margin: 0 auto 100px auto;
    width: 90%;
    padding: 15px 15px 0 15px;
  }

  .search-button button {
    font-size: 0.9em;
    width: 60%;
    margin: 0;
  }

  .season-icon {
    width: 35px;
    height: 35px;
  }

  .season-container {
    padding-right: var(--pms-20);
  }
}

/******************! SCREEN SIZE : 992 and more ******************/
/* Search section  */
@media (min-width: 992px) {
  .info-tire-img-brand img {
    width: 120px;
    margin-top: 10px;
    margin-bottom: 5px;
  }

  .image-gallery {
    margin-top: 40px;
  }

  .search-by-brand {
    display: flex;
    justify-content: center;
  }

  .row-to-step .btn-step-cart .text-step-all {
    position: inherit;
    right: 50px;
  }

  .row-to-step .btn-step-checking .text-step-all {
    position: inherit;
    left: 40px;
  }

  .account-connect-icon {
    margin-right: 8px;
  }

  .search-fields .search-field:not(.field-speed) {
    margin-right: var(--pms-20);
  }

  .select-mini-container select {
    padding: 5px;
    font-size: 0.9em;
    border: 1px solid var(--color-gray-medium);
    width: 80px;
  }

  .search-fields .search-field.field-speed {
    margin-right: var(--pms-10);
  }

  .season-container {
    margin-left: var(--pms-20);
    margin-top: var(--pms-10);
  }
}

/******************! SCREEN SIZE : 1200 PX and more ******************/
@media (min-width: 1200px) {
  .mini-thumbnail {
    width: 100px;
  }

  .advice-card-s1 {
    min-height: 150px;
  }

  .advice-card-s2 {
    height: 240px;
  }

  .advice-card-s3 {
    height: 220px;
  }

  .navbar-nav .nav-item {
    margin-right: 30px;
  }

  .nav-item a {
    font-size: 17px;
  }
}

@media (max-width: 1200px) {
  .mini-thumbnail {
    width: 100px;
  }
}

/******************! SCREEN SIZE : 1400 PX and more ******************/
@media (min-width: 1400px) {
  .navbar-nav .nav-item {
    margin-right: 50px;
  }
}


/* ===== styles/source/nav/pagination.css ===== */
.pagination-container {
    margin-top: 20px;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
    color: var(--color-white);
}

.pagination .page-link {
    color: #007bff;
}

.pagination .page-link:hover {
    background-color: #e9ecef;
}

/* Mobile : 1 page avant / 1 page après la page active au lieu de 2 */
@media (max-width: 767.98px) {
    .pagination .page-item.pagination-extra {
        display: none;
    }
}


/* ===== styles/source/nav/brand.css ===== */
/* ============================================================
   Section « Nos marques » (page d'accueil)
   Grille responsive en CSS Grid
   ============================================================ */

.section-brands {
  background-color: var(--color-white);
  padding-bottom: 40px; /* Espace respirant au-dessus de la section suivante */
}

.section-brands .container {
  padding: 1rem 2rem !important;
}

.brands-title {
  text-align: center;
  padding: var(--pms-20);
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 1rem !important;
}

.section-brands .own-color {
  color: var(--color-primary);
}

.own-color {
  color: var(--color-primary);
}

/* Grille des logos — base mobile (1 colonne) */
.brand-logos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Carte marque — base mobile */
.brand-card {
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 14px;
  height: 45px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.brand-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

.brand-card__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.brand-card__img {
  max-height: 36px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Couleurs de fond par marque */
.shape-color-w {
  background-color: var(--color-white);
  border: 1px solid #eee;
}

.shape-color-b {
  background-color: var(--color-yellow-bright);
}

.shape-color-e {
  background-color: #002d88;
}

/* ============================================================
   Breakpoints Grid — nombre de colonnes
   ============================================================ */

/* 456px — 767px : 2 colonnes */
@media (min-width: 456px) and (max-width: 767.98px) {
  .section-brands {
    padding: var(--pms-20) var(--pms-10);
  }

  .brand-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--pms-10);
  }

  .brand-card {
    padding: 8px 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  }

  .brand-card__img {
    max-height: 40px;
  }
}

/* 768px — 991px : 3 colonnes */
@media (min-width: 768px) and (max-width: 991.98px) {
  .brand-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--pms-15);
  }

  .brand-card__img {
    max-height: 56px;
  }
}

/* ≥ 992px : 7 colonnes (toutes les marques sur une ligne) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-brands .container {
    padding: 0 32px !important;
  }

  .brand-logos {
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
  }

  .brand-card {
    padding: 10px 18px;
  }

  .brand-card__img {
    max-height: 60px;
  }
}

@media (min-width: 1200px) {
  .section-brands .container {
    padding: 0 70px !important;
  }

  .brand-logos {
    grid-template-columns: repeat(7, 1fr);
    gap: 32px;
  }
}


/* ===== styles/source/nav/caroussel.css ===== */
/* ============================================================
   Commun Caroussel
   ============================================================ */
/* Nombre de cartes selon la taille d'écran */

/* Mobile < 576px : 1 carte par slide */
@media (max-width: 575.98px) {
  #home-best-sellers .carousel-item .col-md-3,
  #home-advices .carousel-item .col-md-3 {
    display: none;
  }

  #home-best-sellers .carousel-item .col-md-3:nth-child(1),
  #home-advices .carousel-item .col-md-3:nth-child(1) {
    display: block;
    width: var(--full-width);
    max-width: var(--full-width);
  }
}

/* 576px – 991.98px : 2 cartes côte à côte par slide */
@media (min-width: 576px) and (max-width: 991.98px) {
  #home-best-sellers .carousel-item .col-md-3,
  #home-advices .carousel-item .col-md-3 {
    display: none;
  }

  #home-best-sellers .carousel-item .col-md-3:nth-child(-n + 2),
  #home-advices .carousel-item .col-md-3:nth-child(-n + 2) {
    display: block;
    width: 50%;
    max-width: 50%;
  }
}

/* 992px – 1199.98px : 3 cartes côte à côte par slide */
@media (min-width: 992px) and (max-width: 1199.98px) {
  #home-best-sellers .carousel-item .col-md-3,
  #home-advices .carousel-item .col-md-3 {
    display: none;
  }

  #home-best-sellers .carousel-item .col-md-3:nth-child(-n + 3),
  #home-advices .carousel-item .col-md-3:nth-child(-n + 3) {
    display: block;
    width: calc(100% / 3);
    max-width: calc(100% / 3);
  }
}

.first-of-all {
  padding-left: 15px;
}

/* Flèches du carrousel */
.carousel-control-prev,
.carousel-control-next {
  width: 6% !important;
  min-width: 32px !important;
}

.carousel-control-prev {
  left: 10px !important;
}

.carousel-control-next {
  right: 10px !important;
}

@media (min-width: 768px) {
  .carousel-control-prev {
    left: 0px !important;
  }
  .carousel-control-next {
    right: 0px !important;
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--color-primary);
  border-radius: 50%;
  width: 32px !important;
  height: 32px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-size: 50% 50%;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* Flèches des carrousels multi-cartes : sur les côtés, non superposées */
#home-advices .carousel-control-prev,
#home-advices .carousel-control-next,
#home-best-sellers .carousel-control-prev,
#home-best-sellers .carousel-control-next {
  position: static;
  width: auto !important;
  min-width: 0 !important;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Espace flèches / contenu (commun) */
#home-advices .carousel-advice-track,
#home-best-sellers .home-best-sellers-track {
  gap: 0.5rem;
}

@media (min-width: 768px) {
  #home-advices .carousel-advice-track,
  #home-best-sellers .home-best-sellers-track {
    gap: 1.5rem;
  }
}

/* ============================================================
   Carousel Conseils
   ============================================================ */

#home-advices .carr-advice-card {
  border: none;
  background-color: var(--color-white);
  border-radius: var(--pms-10);
}

#home-advices .carr-advice-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-top-left-radius: var(--pms-10);
  border-top-right-radius: var(--pms-10);
}

#home-advices .carr-advice-card .card-body {
  padding: 15px;
}

/* Layout carousel conseils : flèches sur les côtés */

#home-advices .carousel-advice-track {
  display: flex;
  align-items: center;
}

#home-advices .carousel-inner {
  flex: 1 1 auto;
}

#home-advices {
  background-color: var(--color-white);
  padding: var(--pms-20);
}

#home-advices h3 {
  font-size: var(--font-size-xlarge);
}

/* ============================================================
   CAROUSEL – Meilleures ventes (home)
   ============================================================ */
/* Section best-sellers */
#home-best-sellers.best-sellers {
  background-color: var(--color-white);
  padding: var(--pms-20);
}

/* Titre : le mot de saison (été, hiver, 4 saisons) en jaune */
#home-best-sellers #best-sellers-title-season {
  color: var(--color-primary);
}

/* Bouton saison actif : fond jaune */
#home-best-sellers .season-btn.btn-warning {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-black);
}

#home-best-sellers .season-btn.btn-warning:hover {
  background-color: #e6a600;
  border-color: #e6a600;
  color: var(--color-black);
}

/* Layout best-sellers */
#home-best-sellers .home-best-sellers-track {
  display: flex;
  align-items: center;
}

#home-best-sellers .carousel-inner {
  padding: 1rem 0 !important;
}

#home-best-sellers #best-sellers-content {
  padding: 1rem;
  flex: 1 1 auto;
}

#home-best-sellers .best-sell-body {
  margin-top: var(--pms-10);
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Cards best-sellers */
#home-best-sellers .best-sell-card {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
  background-color: var(--color-white);
  transition:
    box-shadow 0.15s ease,
    transform 0.15s ease;
}

#home-best-sellers .best-sell-card:hover {
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
  transform: translateY(-4px);
}

/* Logo et saison best-sellers */
#home-best-sellers .logo-best-sellers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

#home-best-sellers .season-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

/* Images best-sellers */
#home-best-sellers .best-sell-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  display: block;
  margin: auto;
}

#home-best-sellers .best-sell-card .best-sell-body {
  padding: 0rem !important;
  margin-top: 1rem !important;
}

/* Titre du produit best-sellers */
#home-best-sellers .best-sell-body .card-title {
  min-height: 2.5em;
  font-size: 0.75rem;
  font-weight: bold;
}

/* Séparation du titre et du prix best-sellers */
#home-best-sellers hr {
  margin: 0.5rem 0 1rem 0 !important;
  color: var(--color-gray-medium);
}

/* Prix best-sellers */
#home-best-sellers .card-text {
  font-size: 0.875rem;
  margin-bottom: 1rem !important;
}


/* ===== styles/source/section/promo.css ===== */
.promo-section {
    padding: var(--pms-20);
    background-color: var(--color-gray-light);
}

.promo-title {
    text-align: center;
    font-size: var(--font-size-xlarge);
    color: var(--highlight-color);
    margin-bottom: var(--pms-20);
}

.promo-cards > .col-12 {
    padding: var(--pms-10);
}

.promo-card {
    background-color: var(--color-white);
    border-radius: var(--pms-10);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 230px;
}

.promo-card-link {
    display: block;
    height: var(--full-width);
    text-decoration: none;
}

.promo-card-link:hover {
    text-decoration: none;
}

.promo-image {
    width: var(--full-width);
    height: var(--full-width);
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.promo-card:hover .promo-image {
    transform: scale(1.05);
}

.tire-promo {
    color: var(--color-white);
    font-size: 0.6rem;
    font-weight: var(--font-weight-medium);
    padding: 5px;
    display: block;
    text-align: left;
    position: relative;
}

.bg-tire-b {
    background-color: #385097;
}

.bg-tire-o {
    background-color: #ED6608;
}

.bg-tire-p {
    background-color: #962495;
}

.see-modalitites {
    float: right;
    font-size: 0.6rem;
}

.section-promo-page {
    background-color: var(--color-white);
    padding: var(--pms-20);
}

.section-promo-page .own-color {
    font-weight: var(--font-weight-medium);
    font-size: 30px
}

.promo-img {
    filter: grayscale(100%);
    opacity: 0.7;
}

.overlay-promo {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--full-width);
    height: var(--full-width);
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.overlay-text {
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    opacity: 0.9;
}

.refund-section {
    background-color: var(--color-gray-light);
    padding: 20px 0;
}

.refund-text {
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: var(--pms-20);
}

.highlighted-text {
    color: #FFC107;
    font-weight: bold;
}

.btn-refund {
    background-color: #FFC107;
    color: var(--color-black);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-refund:hover {
    background-color: #e6a700;
    color: var(--color-white);
}


/* ===== styles/source/section/brand-details.css ===== */
.custom-hr {
    opacity: 1;
    margin: 0;
    border: 4px solid #FFB70A;
}

.mini-custom-hr {
    opacity: 1;
    margin: 5px 0 18px 0;
    border: 1px solid #FFB70A;
}


.brand-content-container {
    background-color: var(--color-white);
}

.brand-content-container h4 {
    font-weight: bold;
}

.brand-content-container h4, .brand-content-container p {
    margin-top: var(--pms-10);
}

.title-of-brand-sect {
    color: var(--color-primary);
}

.image-container img {
    max-height: 350px;
    width: var(--full-width);
    object-fit: cover;
}

.image-container {
    /*SURCHARGE ESSENTIEL*/
    padding: 0 !important;
    position: relative;
}


.brd-logo-container {
    position: absolute;
    top: var(--pms-10);
    right: var(--pms-20);
    background-color: var(--color-white);
    padding: 2px;
    border-radius: 2px;
}

.brd-logo-container img {
    height: 30px;
}

.section-brands-details {
    padding: 0 12px 0 12px;
}

/* Mini search*/
.mini-search-tire {
    margin-bottom: var(--pms-15);
    background-color: var(--color-gray-light);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    padding: var(--pms-10) var(--pms-20) 30px;
}

.mini-search-tire .search-field {
    min-width: 120px;
}

@media (max-width: 768px) {
    .mini-search-tire .search-fields-container {
        flex-direction: column;
    }

    .mini-search-tire .search-field, .mini-search-tire .search-button {
        flex: 1 1 100%;
        margin-right: 0;
        margin-bottom: var(--pms-10);
    }

    .mini-search-tire .search-button {
        text-align: center;
    }
}


/* ===== styles/source/section/auth.css ===== */
.log-separator,
.reg-separator {
  border-left: 1px solid var(--color-gray-medium);
  height: var(--full-width);
  position: relative;
  margin: 0 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.log-separator .separator-circle,
.reg-separator .separator-circle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-gray-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c9cace;
  position: absolute;
}

.log-separator .separator-circle span,
.reg-separator .separator-circle span {
  font-weight: bold;
  color: var(--color-dark-gray);
}

.own-color-btn {
  /*SURCHAGE ESSENTIEL*/
  font-weight: var(--font-weight-medium) !important;
  background-color: var(--color-primary) !important;
}

.own-color-btn:hover {
  background-color: #e0a000;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  /*SURCHAGE ESSENTIEL*/
  color: var(--color-black) !important;
}

.own-color-btn-snd {
  /*SURCHAGE ESSENTIEL*/
  background-color: var(--color-primary) !important;
}

.own-color-btn-snd:hover {
  background-color: #e0a000;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  /*SURCHAGE ESSENTIEL*/
  color: var(--color-black) !important;
}

.label-st {
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-small);
}

.forget-password a {
  color: var(--color-primary);
  text-decoration: none;
}

.reg-separator .separator-circle {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .mobile-hr {
    display: none;
  }

  .log-separator .separator-circle {
    transform: translateY(-50%);
    top: 50%;
  }
}

.register-or-login,
.reg-or-log-head,
.forget-pwd {
  max-width: 800px;
  margin: auto;
}

.reg-or-log-head {
  margin-top: var(--pms-20);
}

.title-login a,
.title-register a,
.title-login button,
.title-register button {
  text-decoration: none;
  color: #4e4e4e;
}

.title-login button:hover,
.title-register button:hover {
  color: #4e4e4e;
}

@media (max-width: 768px) {
  .log-separator {
    text-align: center;
  }

  .mobile-hr {
    /*SURCHAGE ESSENTIEL*/
    margin-top: 40px !important;
  }

  .log-separator .separator-circle {
    transform: translateY(-32%);
  }
}

.divider-auth {
  margin-top: 5px;
  height: 2px;
}

.divider-on-login {
  background: linear-gradient(to right, orange 50%, #c8c9cd 50%);
}

.divider-on-register {
  background: linear-gradient(to right, #c8c9cd 50%, orange 50%);
}

.label-newsletter {
  display: inline-block;
  vertical-align: middle;
}

.checkbox-newsletter {
  width: var(--pms-20);
  height: var(--pms-20);
  display: inline-block;
  vertical-align: middle;
  margin-right: var(--pms-10);
}

.pro-field {
  display: none;
}

.custom-radio-group {
  display: flex;
  justify-content: space-between;
}

.custom-radio-group label {
  padding: 10px 40px;
  border: 2px solid #ddd;
  border-radius: 5px;
  margin-right: 10px;
  cursor: pointer;
  background-color: var(--color-white);
  transition: background-color 0.3s, border-color 0.3s;
  font-weight: var(--font-weight-medium);
}

.custom-radio-group input[type="radio"] {
  display: none;
}

.custom-radio-group input[type="radio"]:checked + label {
  background-color: #ffe8a1;
  border-color: #ffc107;
}

.custom-radio-group label:hover {
  border-color: #ffc107;
}

.connexion-info {
  font-size: var(--font-size-small);
  color: var(--color-black);
}

.my-account-info {
  font-weight: var(--font-weight-medium);
}

.required-asterisk {
  color: #fdb525;
  font-weight: bold;
}

.auth-label {
  font-weight: var(--font-weight-semi-bold);
}

.separate-label {
  margin-top: 5px;
}

.forget-pwd-title {
  float: left;
  margin: var(--pms-10);
}

.forget-pwd {
  padding-bottom: var(--pms-10);
  color: #212529;
}

.icon-log-return {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60%;
}

.icon-log-return i {
  font-size: 50px;
  color: #212529;
}

.icon-log-return a {
  text-decoration: none;
  color: #212529;
}

.link-reset {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}

.mandatory-warning {
  background-color: #fff4e6;
  color: #721c24;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.mandatory-warning span {
  margin: var(--pms-5);
  font-size: 22px;
}

.mandatory-warning::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #dc3545;
  animation: underlineAnimation 0.6s ease-out forwards;
}

@keyframes underlineAnimation {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/* Barre de notification indiquant une connexion réussie */
#login-bar {
  background: rgba(40, 167, 69, 0.8);
  color: white;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: opacity 1s ease-in-out;
  height: 30px;
}

#login-bar .progress-bar {
  height: 100%;
  width: 0;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: width 2s ease;
}

#login-bar .progress-bar span {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}

/******************! Spécifique à Checkout identification ******************/
#identificationTabsContent .tab-pane {
  display: none;
}
#identificationTabsContent .tab-pane.identification-pane-active {
  display: block;
}

/* Largeur max des formulaires identification checkout */
.identification-forms-wrap {
  max-width: 400px !important;
  margin-left: auto;
  margin-right: auto;
}

/******************! Spécifique au header checkout ******************/
.checkout-header .navbar-top {
  gap: 1rem;
}

.checkout-header .logo-img {
  margin-left: 0 !important;
}

.checkout-header-secure {
  font-size: 0.75rem;
  color: var(--color-dark-gray);
}

.checkout-header-secure i {
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .checkout-header-secure {
    font-size: var(--font-size-small);
  }

  .checkout-header-secure i {
    font-size: 1rem;
  }
}

/* Onglet invité : titre, intro et liste d’avantages */
#login-pane,
#guest-pane {
  background: transparent;
}

.identification-pane-content {
  text-align: left;
  padding: 0.5rem 0;
}

.identification-pane-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark-gray);
  margin-bottom: 2rem;
  text-align: center;
}

.guest-tab-intro {
  font-size: 0.9375rem;
  color: var(--color-gray-dark);
  margin-bottom: 1.875rem;
}

.guest-tab-benefits {
  list-style: none;
  padding: 0;
}

.guest-tab-benefits li {
  display: flex;
  align-items: center;
  padding: 0.75rem 0 0.75rem 0;
  font-size: 0.9375rem;
  color: var(--color-dark-gray);
}

.guest-tab-benefits i {
  font-size: 1.1rem;
  width: 2.5rem;
  flex-shrink: 0;
}

.guest-tab-form {
  margin-top: 1.875rem;
  margin-bottom: 0.75rem;
}

.guest-tab-privacy {
  font-size: 0.75rem;
  color: var(--color-gray-dark);
  line-height: 1.4;
}

.guest-tab-privacy-link {
  color: inherit;
  text-decoration: underline;
}

.guest-tab-privacy-link:hover {
  color: var(--color-dark-gray);
}

/* Checkout identification : barre et bulles en jaune clair uniforme */
.checkout-tabs-bubble {
  --checkout-tab-yellow: #ffc933;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .checkout-tabs-bubble {
    padding: 0;
  }
}

.divider-checkout-identification.divider-on-login,
.divider-checkout-identification.divider-on-guest {
  background: var(--checkout-tab-yellow, #ffc933);
}

.checkout-tabs-bubble .divider-auth {
  margin-top: 0;
}

/* Style bulle pour les onglets checkout — pleine largeur, sans arrondi */
.checkout-tabs-bubble .identification-tab-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 0.6rem 1rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-gray-dark);
  border-radius: 0;
  transition: background-color 0.2s, color 0.2s;
}

@media (min-width: 768px) {
  .checkout-tabs-bubble .identification-tab-btn {
    font-size: 1.25rem;
  }
}

.checkout-tabs-bubble .identification-tab-btn.identification-tab-active {
  background-color: var(--checkout-tab-yellow, #ffc933);
  color: var(--color-black);
  border-radius: 0;
  position: relative;
}

.checkout-tabs-bubble .identification-tab-btn.identification-tab-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid var(--checkout-tab-yellow, #ffc933);
}

.checkout-tabs-bubble
  .identification-tab-btn:hover:not(.identification-tab-active) {
  color: var(--color-dark-gray);
}

.identification-tab-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}


/* ===== styles/source/section/filters.css ===== */
.filter-section {
  border: 1px solid var(--color-secondary);
  border-radius: 5px;
  margin-top: var(--pms-15);
}

.filters-prog {
  background-color: var(--color-white);
  padding: var(--pms-20) !important;
  border-right: 1px solid var(--color-secondary);
}

.results-prog {
  background-color: var(--color-gray-light);
  padding: 0 !important;
}

.filter-category h4,
.results-title h3 {
  font-size: var(--default-font-size);
  margin-bottom: var(--pms-10);
  color: var(--color-dark-gray);
}

.filters-prog h3 {
  font-size: var(--font-size-large);
}

.results-title h3 {
  font-size: var(--font-size-large);
  margin-bottom: 5px;
}

.results-title p,
.count {
  font-size: var(--font-size-small);
  color: var(--color-gray-dark);
  margin: 0;
}

/* Résultats et options de tri */
.results-header {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--pms-20);
}

@media (min-width: 768px) {
  .results-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.sort-options {
  display: flex;
  align-items: center;
  align-self: flex-end;
  margin-left: var(--pms-20);
}

@media (min-width: 768px) {
  .sort-options {
    align-self: normal;
  }
}

.sort-toggle {
  display: inline-flex;
  border: 1px solid var(--color-primary);
  border-radius: var(--pms-20);
  overflow: hidden;
  background-color: var(--color-white);
  margin-left: var(--pms-10);
}

.sort-toggle input[type="radio"] {
  display: none;
}

.sort-toggle label {
  padding: 5px 15px;
  cursor: pointer;
  font-size: var(--font-size-small);
  color: var(--color-gray-dark);
  font-weight: 450;
  transition: background-color 0.3s ease;
}

.sort-toggle label:first-of-type {
  border-right: 1px solid var(--color-primary);
  border-radius: 20px 0 0 20px;
}

.sort-toggle label:last-of-type {
  border-radius: 0 20px 20px 0;
}

.sort-toggle input[type="radio"]:checked + label {
  background-color: var(--color-primary);
}

/******************! Carte produit résultats de recherche ******************/
/* Layout */
#search-results-wrapper .product-prog .product-image-col {
  padding: 0;
  max-width: 150px;
}

@media (min-width: 768px) {
  #search-results-wrapper .product-prog .product-image-col {
    max-width: none;
  }
}

#search-results-wrapper .product-prog .product-info-col {
  max-width: 280px;
  padding-left: 1rem;
}

@media (min-width: 768px) {
  #search-results-wrapper .product-prog .product-info-col {
    max-width: none;
    padding-left: 0.75rem;
  }
}

#search-results-wrapper .product-image {
  max-width: 150px;
  justify-content: space-between;
}

@media (min-width: 768px) {
  #search-results-wrapper .product-image {
    max-width: none;
  }
}

@media (min-width: 1200px) {
  #search-results-wrapper .separate-info {
    width: 62%;
    padding-left: 1rem;
  }

  #search-results-wrapper .details-info {
    width: 38%;
  }
}

/* Police cartes produits (scopées aux résultats de recherche) */
.pp-price,
.product-info h4,
.results-title h3,
.filters-prog h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

#search-results-wrapper {
  padding: 1.25rem 2rem;
}

@media (min-width: 768px) {
  #search-results-wrapper {
    padding: 1.25rem 2.25rem;
  }
}

/* Carte produit */
#search-results-wrapper .product-prog {
  background-color: var(--color-white);
  border: 1px solid var(--color-secondary);
  padding: 0.625rem;
  margin-bottom: var(--pms-20);
  border-radius: 5px;
}

@media (min-width: 768px) {
  #search-results-wrapper .product-prog {
    padding: var(--pms-20);
  }
}

/* Logo marque produit */
#search-results-wrapper .parent-of-tire .search-tire-info {
  display: flex;
  align-items: center;
}

#search-results-wrapper .search-tire-info img {
  position: static;
  left: auto;
  bottom: auto;
  display: block;
  margin-top: 0;
}

#search-results-wrapper .product-prog .info-tire-img-brand img {
  max-width: 70px;
}

@media (min-width: 768px) {
  #search-results-wrapper .product-prog .info-tire-img-brand img {
    max-width: none;
  }
}

/* Icon saison produit*/
#search-results-wrapper .product-prog .info-season-labels-img img {
  width: 15px;
  height: 15px;
  margin-right: 0 !important;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
#search-results-wrapper .product-prog .info-season-labels-img img {
  width: 30px;
    height: 30px;
    margin-right: 5px !important;
    margin-top: 0rem;
  }
}

/* Image produit */
#search-results-wrapper .product-prog .product-image .product-image-img {
  width: 70px;
  height: 70px;
  margin-top: 0.5rem;
  object-fit: contain;
}

@media (min-width: 768px) {
  #search-results-wrapper .product-prog .product-image .product-image-img {
    width: 120px;
    height: 120px;
    padding-left: 0.75rem;
    margin-top: 0rem;
  }
}

/* Labels certifications produit*/
@media (max-width: 768px) {
  #search-results-wrapper .product-prog .product-labels {
    position: relative !important;
  }
}

#search-results-wrapper .label-certification img,
#search-results-wrapper .label-certif img {
  width: 15px;
  margin-left: 5px;
}

@media (min-width: 768px) {
  #search-results-wrapper .label-certification img,
  #search-results-wrapper .label-certif img {
    width: 30px;
  }
}

#search-results-wrapper .product-prog .noise-value {
  font-size: 0.625rem;
}

#search-results-wrapper .product-prog .noise-unit {
  font-size: 0.625rem;
}

/* Titre produit */
#search-results-wrapper .product-info h4 {
  font-size: 0.75rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  #search-results-wrapper .product-info h4 {
    font-size: var(--font-size-large);
  }
}

#search-results-wrapper .product-info a {
  color: var(--color-black);
  text-decoration: none;
}

#search-results-wrapper .product-info a:hover {
  text-decoration: underline;
}

/* Dimensions produit */
#search-results-wrapper .product-info p {
  font-size: 0.675rem;
}

@media (min-width: 768px) {
  #search-results-wrapper .product-info p {
    font-size: var(--default-font-size);
  }
}

/* Labels produit */
#search-results-wrapper .reinforced-label {
  background-color: var(--color-primary);
  color: #000;
  font-weight: 500;
  padding: 3px 5px;
  border-radius: 0.2rem;
  font-size: 0.675rem;
  display: inline-block;
}

@media (min-width: 768px) {
  #search-results-wrapper .reinforced-label {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
  }
}

#search-results-wrapper .tire-badges {
  display: block;
  margin-top: 0.4rem;
}

/* Prix produit */
#search-results-wrapper .pp-price {
  font-size: 1rem;
  margin: 0;
}

@media (min-width: 768px) {
  #search-results-wrapper .pp-price {
    font-size: var(--font-size-xlarge);
  }
}

/* Stock produit */
#search-results-wrapper .pp-stock {
  margin: 0;
}

#search-results-wrapper .in-stock {
  color: #3b9d22;
  font-size: 0.675rem;
  font-weight: 500;
}

#search-results-wrapper .out-of-stock {
  color: #856404;
  font-size: 0.675rem;
}

@media (min-width: 768px) {
  #search-results-wrapper .in-stock {
    font-size: var(--font-size-small);
  }
  #search-results-wrapper .out-of-stock {
    font-size: var(--font-size-small);
  }
}

/* Livraison produit */
#search-results-wrapper .pp-delivery {
  font-size: 0.675rem;
}

@media (min-width: 768px) {
  #search-results-wrapper .pp-delivery {
    font-size: var(--default-font-size);
  }
}

/* Bouton produit */
#search-results-wrapper .view-btn {
  border: none;
  background-color: #ffb70a;
  color: var(--color-black);
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  /* Mobile : pas de bouton VOIR, prix en bas après la livraison */
  #search-results-wrapper .product-prog .product-price {
    display: flex;
    flex-direction: column;
  }

  #search-results-wrapper .product-prog .product-price .pp-stock {
    order: 1;
  }

  #search-results-wrapper .product-prog .product-price .pp-delivery {
    order: 2;
  }

  #search-results-wrapper .product-prog .product-price .pp-price {
    order: 3;
  }

  #search-results-wrapper .product-prog .product-price > a {
    display: none;
  }
}

/******************! Pagination ******************/
.pagination-container {
  text-align: center;
  margin-top: var(--pms-20);
}

.pagination-container a {
  margin: 0 5px;
  color: var(--color-gray-dark);
  text-decoration: none;
}

.pagination-container a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Filtre et catégories */
.filter-category {
  margin-bottom: var(--pms-20);
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.filter-header h4 {
  font-size: var(--font-size-small);
  color: var(--color-dark-gray);
  font-weight: bold;
  margin: 0;
}

.toggle-chevron {
  font-size: var(--default-font-size);
  color: var(--color-dark-gray);
  transition: transform 0.3s;
}

.toggle-chevron.rotated {
  transform: rotate(180deg);
}

.divider {
  border: none;
  border-top: 1px solid #2f2d27;
  margin: 5px 0;
}

/* Listes de filtres */
.brand-list,
.homologation-list,
.quick-filter-list,
.season-container-mini,
.express-delivery-filter {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.brand-list li,
.homologation-list li,
.quick-filter-item,
.express-delivery-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: var(--font-size-small);
  color: var(--color-dark-gray);
}

.express-delivery-item label {
  cursor: pointer;
  display: flex;
  align-items: center;
  flex: 1;
}

.express-delivery-item input[type="checkbox"] {
  cursor: pointer;
  margin-left: auto;
}

.brand-list li,
.homologation-list li {
  border-bottom: 1px solid var(--color-secondary);
}

.par-show-more {
  text-align: center;
}

/* Conteneur des saisons */
.season-container-mini {
  display: flex;
  justify-content: center;
  align-items: center;
}

.season-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: var(--pms-15);
  cursor: pointer;
  transition: transform 0.3s;
}

.season-icon-mini {
  width: 30px;
  height: 30px;
  margin: 0;
  display: block;
}

.season-ic-product-show {
  width: 27px;
  height: 27px;
}

.season-item.selected {
  filter: brightness(1.2);
  transform: scale(1.05);
}

/* Quick Filters */
.quick-filters {
  margin-bottom: var(--default-font-size);
}

.filter-label,
.season-label {
  font-size: var(--font-size-small);
  color: var(--color-dark-gray);
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e0e0e0;
  transition: 0.4s;
  border-radius: var(--pms-15);
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 2px;
  bottom: 2px;
  background-color: var(--color-white);
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--color-primary);
}

input:checked + .slider:before {
  transform: translateX(30px);
}

/* Icônes de validation */
.toggle-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--font-size-small);
  transition: opacity 0.4s;
}

.check-icon {
  color: var(--color-primary);
  right: 15%;
  opacity: 0;
}

.cross-icon {
  color: #a0a0a0;
  left: 15%;
  opacity: 1;
}

input:checked + .slider .check-icon {
  opacity: 1;
}

input:checked + .slider .cross-icon {
  opacity: 0;
}

/* Bouton Voir Plus de Marque */
.show-more-brands {
  color: #ff9800;
  font-size: var(--pms-15);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  padding: 0;
  margin-top: var(--pms-10);
  text-align: center;
}

.show-more-brands:hover {
  color: #e1920f;
  text-decoration: underline;
}

/*A GARDER CAR il est important pour pouvoir afficher/cacher les filters chevron up & down*/
.collapsedfilters {
  display: none;
}

.brand-list.collapsedfilters,
.homologation-list.collapsedfilters {
  display: none;
}

/* Bouton pour ouvrir les filtres en mobile */
.filter-toggle-btn {
  display: none;
  background-color: var(--color-gray-dark);
  color: var(--color-white);
  padding: 10px 15px;
  font-size: var(--default-font-size);
  border: none;
  width: var(--full-width);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.filter-text {
  flex-grow: 1;
  text-align: center;
}

/* Afficher le bouton en version mobile */
@media (max-width: 768px) {
  .filter-toggle-btn {
    justify-content: center;
    display: flex;
  }

  #filters-panel {
    display: none;
  }

  #filters-panel.show {
    display: block;
  }

  .filter-icon-left {
    margin-left: var(--pms-20);
  }

  .filter-icon-right {
    margin-right: var(--pms-20);
  }
}

@media (min-width: 992px) {
  .filter-season-mini {
    margin-left: var(--pms-20);
    margin-top: var(--pms-15);
    gap: 10%;
  }
}

@media (max-width: 992px) {
  .filter-season-mini {
    margin-top: var(--pms-20);
  }
}


/* ===== styles/source/section/home/tire-details.css ===== */
.tire-info, .pricing-info {
    border-radius: var(--pms-10);
    background-color: #fff;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.tire-info {
    padding: 5px;
}

.pricing-info {
    padding: var(--pms-10);
}

/*.info-tire-img-brand img {*/
.search-tire-info img {
    position: absolute;
    bottom: 5px;
    left: -15px;
    z-index: 1;
}

.parent-of-tire {
    position: relative;
}

.container-own-main {
    background-color: var(--color-gray-light);
    padding: var(--pms-15);
}

.price-txt {
    font-size: 2rem;
    font-weight: bold;
    margin-left: var(--pms-10);
}

.tire-info-img {
    margin: 30px 0 0 20px;
}

.tire-info-img img {
    width: 300px;
    max-height: 300px;
    object-fit: contain;
}

/* Fiche produit : image beaucoup plus petite en mobile */
@media (max-width: 767.98px) {
    .tire-info-img {
        margin: 0.5rem auto;
        text-align: center;
    }

    .tire-info-img img {
        width: 150px;
        max-width: 150px;
        max-height: 150px;
        object-fit: contain;
    }
}

.image-gallery {
    /*display: flex;*/
    /*gap: 10px;*/
    /*margin-top: 40px;*/
}

.mini-thumbnail {
    cursor: pointer;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.mini-thumbnail:hover {
    transform: scale(1.05);
}


/* ===== styles/source/section/home/most-wanted.css ===== */
.most-searched-section {
    background-color: var(--color-white);
    padding: var(--pms-20);
}

.search-category ul {
    text-align: center;
}

.most-searched-section h3 {
    font-size: 1.75rem;
    font-weight: bold;
}

.search-category {
    background-color: var(--color-white);
    border-radius: var(--pms-10);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.category-title {
    background-color: var(--color-primary);
    padding:  var(--pms-10);
    margin: 0;
    border-top-left-radius: var(--pms-10);
    border-top-right-radius: var(--pms-10);
    font-size: 1.1rem;
}

.search-category ul li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* ===== styles/source/section/footer.css ===== */

.site-footer {
    background-color: var(--color-white);
    color: var(--color-dark-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.footer-top {
    background-color: var(--color-white);
    padding: 2rem 0 1.5rem;
    line-height: 1.2;
}

.footer-top p {
    font-size: 0.9rem;
    font-weight: bold;
}

.footer-social {
    background-color: var(--color-primary);
    color: var(--color-black);
    padding: 1.75rem 1rem;
}

.footer-social p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.footer-social .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    align-items: center;
}

.footer-social .social-icons a img {
    width: 42px;
}

.footer-payment {
    background-color: var(--color-white);
    color: var(--color-black);
    border-top: 1px solid var(--color-secondary);
    padding: 1.5rem 0;
}

.footer-payment p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-payment img {
    max-width: 230px;
}

.footer-legal {
    background-color: #EFEFEF;
    color: var(--color-dark-gray);
    padding: 1.25rem 1rem;
    border-top: 1px solid #DDD;
    font-size: 0.85rem;
}

.footer-legal a {
    text-decoration: none;
    color: var(--color-dark-gray);
}

.footer-legal a:hover {
    text-decoration: underline;
}

.footer-legal p {
    margin: 0;
    padding: 0.25rem 0;
}

.footer-bottom {
    background-color: var(--color-primary);
    color: var(--color-black);
    padding: 0.5rem 1rem !important;
}

.footer-payment .own-color {
    font-weight: bold;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.75rem
}

.footer-top .col-md-2 img {
    max-width: 58px;
    margin-bottom: var(--pms-10);
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    padding: 11px;
}

.mini-footer-text {
    font-size: 0.7rem;
}

/* Responsive ajustements */
@media (max-width: 576px) {
    .site-footer {
        font-size: 0.9rem;
    }

    .footer-top {
        padding: 1.5rem 0 1.25rem;
    }

    .footer-top p {
        font-size: 0.8rem;
    }

    .footer-social .social-icons a img {
        width: 34px;
    }

    .footer-payment img {
        max-width: 200px;
    }

    .footer-legal {
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding: 0.5rem 0;
    }
}

/* ===== styles/source/section/fitting.css ===== */
.step-container {
  position: relative;
  text-align: center;
  transform: translateY(-43%);
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffc107;
  border: 2px solid #1e1e1e;
  font-weight: bold;
  margin-bottom: var(--pms-10);
  cursor: pointer;
  font-size: var(--font-size-xlarge);
  z-index: 10;
}

.container-progress-own,
.circle-container {
  padding-left: 70px;
  padding-right: 70px;
}

.progress-own {
  background-color: #1e1e1e;
  height: 3px;
  margin-top: 60px;
}

.text-container {
  position: relative;
  bottom: var(--pms-20);
}

.step-text {
  max-width: 200px;
  text-align: center;
  font-weight: var(--font-weight-medium);
  font-size: 0.95rem;
  line-height: 1.2;
}

.mini-step-circle {
  display: none;
}

/* _____________________________________ Fitting Solutions */
.solutions-section {
  background-color: var(--color-white);
  padding-top: var(--pms-10);
  padding-bottom: 50px;
}

.own-card-body {
  background-color: #f9f9f9;
}

.own-card {
  /*Surcharge essentiel*/
  height: 100% !important;
}

/* Responsive fix for height of the card */
@media (max-width: 768px) {
  .own-card {
    height: auto !important;
  }
}

.own-card li {
  list-style: square;
}

.two-fitting-title {
  font-size: var(--font-size-xlarge);
  font-weight: bold;
}

.steps-section {
  background-color: var(--color-background-light);
  padding-right: 80px;
  padding-left: 80px;
}

.partner-section {
  background-color: var(--color-gray-light);
}

.partner-box {
  background-color: var(--color-white);
  border-radius: 15px 15px 5px 5px;
  padding: var(--pms-20);
  max-width: 95%;
  margin: var(--horizontal-center);
}

.how-become-partner {
  margin-left: 50px;
  max-width: 70%;
}

.solutions-section .own-color,
.partner-section .own-color {
  font-weight: bold;
}

/* _____________________________________ Most wanted city */
.most-wanted-city h2 {
  font-size: var(--font-size-xlarge);
  font-weight: bold;
}

.most-wanted-city {
  background-color: var(--color-white);
}

.city-link {
  display: inline-block;
  width: 150px;
  height: 50px;
  line-height: 50px;
  border: 2px solid #ffc107;
  border-radius: 5px;
  color: var(--color-black);
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 5px;
  font-size: 0.9rem;
}

.city-link:hover {
  background-color: #ffc107;
  color: var(--color-white);
}

.solutions-section h2 {
  font-size: var(--font-size-xlarge);
  font-weight: bold;
}

.row-of-most-wanted-city {
  padding: 30px;
}

.row-of-fitting {
  padding: 30px;
}

@media (min-width: 768px) {
  .row-of-fitting {
    padding-left: 30px;
  }
}


/* ===== styles/source/section/home/advice.css ===== */
.card-header-bar {
    background-color: #FFB70B;
    height: 6px;
}

.section-guides h2 {
    font-size: var(--pms-20);
    text-transform: uppercase;
    margin-left: var(--pms-10);
}

.guide-card {
    /*Surcharge obligatoire */
    border-radius: 0 !important;
    background-color: var(--color-white);
}

.guide-card .card-img-top {
    border-radius: 0;
    max-height: 180px;
    object-fit: cover;
    object-position: 20% 15%;
}

.guide-card .card-body h4 {
    font-size: var(--pms-20);
    margin-bottom: var(--pms-10);
}

.guide-card .card-body ul li:not(:last-child) {
    margin-bottom: 5px;
}

.guide-card .card-body ul li a,
.more-content ul li a,
.search-category ul li a {
    text-decoration: none;
    color: var(--color-black);
}

.guide-card .card-body ul li a:hover,
.more-content ul li a:hover,
.search-category ul li a:hover {
    text-decoration: underline;
}

.more-content {
    /*transition: max-height 0.3s ease-in-out;*/
    overflow: hidden;
    margin-left: 15px;
    /*position: relative;*/
    height: 140px;
}

.more-content ul li {
    margin-bottom: 5px;
}

/* ===== styles/source/section/home/purchase.css ===== */
/*.purchase-steps-section {*/
/*    background-color: var(--color-gray-light);*/
/*}*/

/*.box-of-step {*/
/*    width: 97%;*/
/*    margin-left: auto;*/
/*    margin-right: auto;*/
/*    position: relative;*/
/*    padding: 20px;*/
/*}*/

/*.row-step-payment {*/
/*    background-color: #FFF;*/
/*    border-top-left-radius: 20px;*/
/*    border-top-right-radius: 20px;*/
/*    margin-top: 20px !important;*/
/*    padding-left: 0 !important;*/
/*}*/

/*.purchase-steps-section h3 {*/
/*    font-weight: bold;*/
/*}*/

/*.buy-and-secure-opt .delivery-man-img {*/
/*    max-width: 50%;*/
/*    height: auto;*/
/*    position: relative;*/
/*    bottom: 30px;*/
/*    margin: 0 auto;*/
/*}*/

/*.yellow-bar {*/
/*    background-color: #FFB70A;*/
/*    height: 15px;*/
/*    width: 100%;*/
/*}*/




/* ===== styles/source/section/step-section.css ===== */
.row-to-step {
    /*Surcharge essentiel*/
    margin: 0 auto !important;
    width: 90%;
}

.row-to-step .btn-step-cart, .row-to-step .btn-step-payment, .row-to-step .btn-step-delivery, .row-to-step .btn-step-checking {
    background-color: var(--color-gray-light);
    color: var(--color-black);
    position: relative;
    display: inline-block;
    border: none;
    border-radius: 0;
    padding: 10px 40px;
    width: 90%;
    box-sizing: border-box;
}

.every-col .btn.actived-steps {
    background-color: var(--color-primary);
}

.row-to-step .btn-step-cart:hover,
.row-to-step .btn-step-payment:hover,
.row-to-step .btn-step-delivery:hover,
.row-to-step .btn-step-checking:hover {
    background-color: #FFC107;
    color: white;
}

.row-to-step .btn-step-cart {
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
}

.row-to-step .btn-step-payment, .row-to-step .btn-step-delivery {
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
}

.row-to-step .btn-step-checking {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 25% 50%);
}

.row-to-step .btn-step-cart .text-step-all,
.row-to-step .btn-step-delivery .text-step-all,
.row-to-step .btn-step-payment .text-step-all,
.row-to-step .btn-step-checking .text-step-all {
    font-size: 0.9vw;
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: var(--full-width);
}

.row-to-step .every-col {
    margin: 0 !important;
    padding: 0;
}

.row-to-step .btn-step-cart {
    position: relative !important;
    left: 35%;
}

.row-to-step .btn-step-delivery {
    position: relative !important;
    left: 10%;
}

.row-to-step .btn-step-payment {
    position: relative !important;
    right: 16%;
}

.row-to-step .btn-step-checking {
    position: relative !important;
    right: 42%;
}

.mobile-steps {
    display: none;
}

.card-content-col a {
    text-decoration: none;
    color: var(--color-black);
}


/* ===== styles/source/section/checkout.css ===== */
/* ============================================================
   CHECKOUT – Mise en forme du tunnel de vente

   Sections :
   1. Bordures & séparateurs
   2. Titres & en‑têtes de sections
   3. Onglets « Vos informations » (particulier / professionnel)
   4. Layout page paiement (desktop)
   5. Résumé commande (aside + liste produits)
   6. Section Livraison (onglets Domicile / Centre de montage)
   7. Carte & garages (centre de montage)
   8. Section Paiement (Stripe Payment Element / Alma)
   9. Helpers généraux (boutons Modifier, page processing)
   ============================================================ */

/* -------------------------------------------------------------------
   1. BORDURES & SÉPARATEURS
   ------------------------------------------------------------------- */

.checkout-border-subtle {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.checkout-border-subtle-mobile {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Trait au-dessus du Total T.T.C. : un peu plus marqué que les autres, sans être fort */
.checkout-border-total {
  border-top: 1px solid rgba(0, 0, 0, 0.12) !important;
}

/* -------------------------------------------------------------------
   2. TITRES & EN‑TÊTES DE SECTIONS
   ------------------------------------------------------------------- */
.checkout-section__title,
.checkout-section__title .btn {
  font-size: 16px !important;
  font-weight: bold !important;
}

/* Icône check verte : visible uniquement quand la section est repliée et validée */
.checkout-section__title-check {
  display: none;
  font-size: 0.875rem;
}
.checkout-section--infos[data-state="folded"][data-infos-confirmed="true"]
  .checkout-section__title-check {
  display: inline-flex;
}
.checkout-section--delivery[data-state="folded"][data-delivery-confirmed="true"]
  .checkout-section__title-check {
  display: inline-flex;
}

/* Titre grisé : section repliée ET après l’étape en cours, ET non validée (tout ce qui a le check reste en titre normal) */
#checkout-payment-root[data-checkout-step="infos"]
  .checkout-section--delivery[data-state="folded"][data-delivery-confirmed="false"]
  .checkout-section__title,
#checkout-payment-root[data-checkout-step="infos"]
  .checkout-section--payment[data-state="folded"]
  .checkout-section__title,
#checkout-payment-root[data-checkout-step="delivery"]
  .checkout-section--payment[data-state="folded"]
  .checkout-section__title {
  color: var(--color-gray-muted, #adb5bd) !important;
}

/* Ligne titre + Modifier : même ligne, space-between */
.checkout-section__header .btn-section-modifier {
  flex-shrink: 0;
}

/* -------------------------------------------------------------------
   2. Checkout Cart (page panier : id="cart-page") — mobile first
   ------------------------------------------------------------------- */
/* Mobile (base) */
#cart-page .row-card-with-product {
  padding: 0.75rem !important;
}
/* Style produit */
#cart-page .cart-actions-row {
  padding: 0 !important;
}
/* Contenu produit */
#cart-page .card-content-col {
  padding: 1rem 0 0 0 !important;
}
/* Image produit */
#cart-page .row-card-with-product .cart-card-col-image img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-height: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  padding-right: 1rem;
}
/* Titre produit */
#cart-page .row-card-with-product .card-content-col h5 {
  font-size: 0.95rem;
}
/* Description produit*/
#cart-page .row-card-with-product .card-content-col p {
  font-size: 0.85rem;
}

/* Quantité produit*/
#cart-page .cart-actions-row .cart-action-qty {
  padding-right: 1rem;
}

#cart-page .cart-quantity-select {
  min-width: 100px;
}

/* Prix produit*/
#cart-page .cart-actions-row .cart-action-price {
  padding-right: 1rem;
}

#cart-page .cart-actions-row .little-price-text {
  font-size: 0.9rem;
}

/* Desktop (768px et plus) */
@media (min-width: 768px) {
  /* Titre produit*/
  #cart-page .row-card-with-product .card-content-col h5 {
    font-size: inherit;
  }
  /* Description produit*/
  #cart-page .row-card-with-product .card-content-col p {
    font-size: inherit;
  }
  /* Prix produit*/
  #cart-page .cart-actions-row .little-price-text {
    font-size: inherit;
  }
  /* Quantité produit*/
  #cart-page .cart-actions-row .cart-action-qty {
    flex: 2 2 0;
    min-width: 0;
    padding: 0 0.75rem;
  }
  /* Prix produit*/
  #cart-page .cart-actions-row .cart-action-price {
    flex: 2 2 0;
    min-width: 0;
    padding: 0 0.75rem;
  }
  /* Corbeille produit*/
  #cart-page .cart-actions-row .cart-action-trash {
    flex: 1 1 0;
    flex-shrink: 0;
    padding: 0 0.75rem;
  }
}

/* Desktop (992px - 1199.99px) */
@media (min-width: 992px) and (max-width: 1199.99px) {
  #cart-page .cart-actions-row .cart-action-qty,
  #cart-page .cart-actions-row .cart-action-price,
  #cart-page .cart-actions-row .cart-action-trash {
    padding: 0;
  }

  #cart-page .cart-quantity-select {
    min-width: 80px;
  }
}

/* -------------------------------------------------------------------
   3. ONGLETS « VOS INFORMATIONS » (PARTICULIER / PROFESSIONNEL)
   Style « bulle » cohérent avec la page Identification.
   ------------------------------------------------------------------- */
.checkout-infos-type-tabs {
  --checkout-payment-tab-yellow: #ffc933;
  margin-bottom: 2rem;
}

.checkout-infos-type-tabs__row {
  position: relative;
  z-index: 1;
}

/* Barre sous les onglets */
.checkout-infos-type-tabs__bar {
  height: 2px;
  margin-top: 0;
  background: #dee2e6;
}

/* Onglet : base */
.checkout-infos-type-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.6rem 1rem;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.875rem;
  font-weight: normal;
  color: var(--color-gray-dark, #6c757d);
  border-radius: 0;
  transition:
    background-color 0.2s,
    color 0.2s;
}

@media (min-width: 768px) {
  .checkout-infos-type-tab {
    font-size: 1.25rem;
  }
}

@media (min-width: 992px) {
  .checkout-infos-type-tab span {
    font-size: 0.875rem;
  }
}

.checkout-infos-type-tab i {
  opacity: 0.85;
}

.checkout-infos-type-tab:hover:not(.checkout-infos-type-tab--active) {
  color: var(--color-dark-gray, #495057);
}

/* Onglet actif : fond jaune + flèche vers le bas + texte en gras */
.checkout-infos-type-tab--active,
.checkout-infos-type-tab--active i {
  color: var(--color-black);
}

.checkout-infos-type-tab--active {
  font-weight: bold;
  background-color: var(--checkout-payment-tab-yellow);
  position: relative;
}

/* Bande jaune sous l’onglet actif pour masquer le gris de la barre (évite gris sous jaune) */
.checkout-infos-type-tab--active::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--checkout-payment-tab-yellow);
}

.checkout-infos-type-tab--active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid var(--checkout-payment-tab-yellow);
}

/* Onglet : visuellement caché */
.checkout-infos-type-tabs .visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Labels */
.checkout-infos-field-label {
  text-transform: lowercase !important;
  font-weight: 600 !important;
  color: #495057 !important;
}
.checkout-infos-field-label::first-letter {
  text-transform: uppercase !important;
}

/* -------------------------------------------------------------------
   4. LAYOUT PAGE PAIEMENT (DESKTOP)
   ------------------------------------------------------------------- */
@media (min-width: 992px) {
  .checkout-layout {
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .checkout-layout .checkout-main-col {
    flex: 1 1 0;
    min-width: 0;
    max-width: 800px;
  }

  .checkout-layout .checkout-order-summary-aside {
    flex: 0 0 420px;
    max-width: 420px;
    position: sticky;
    top: 1rem;
  }
}

.checkout-main-col .form-control,
.checkout-main-col select.form-select {
  max-width: 355px;
}

/* -------------------------------------------------------------------
   5. RÉSUMÉ COMMANDE (ASIDE + LISTE PRODUITS)
   ------------------------------------------------------------------- */
.checkout-order-summary__list {
  max-height: 18rem;
  overflow-y: auto;
  overflow-x: hidden;
}

.checkout-order-summary__item:last-child {
  border-bottom: none !important;
}

.checkout-order-summary__item {
  min-width: 0;
}

.checkout-order-summary__item-left {
  min-width: 0;
  overflow: hidden;
}

.checkout-order-summary__item-left > div:last-child {
  min-width: 0;
}

.checkout-order-summary__product-name {
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-order-summary__thumb {
  width: 3rem;
  height: 3rem;
  border-radius: 0.25rem;
  overflow: hidden;
  background: #f8f9fa;
}

.checkout-order-summary__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* En-tête résumé mobile : espace entre prix et chevron */
.checkout-summary-toggle__right {
  gap: 0.75rem;
}

.checkout-summary-toggle__icon {
  transition: transform 0.2s ease;
}

.checkout-summary-toggle[aria-expanded="true"] .checkout-summary-toggle__icon {
  transform: rotate(180deg);
}

/* -------------------------------------------------------------------
   6. SECTION LIVRAISON (DOMICILE / CENTRE DE MONTAGE)
   Onglets « bulle » cohérents avec Infos / Identification.
   ------------------------------------------------------------------- */
.checkout-delivery-tabs {
  --checkout-payment-tab-yellow: #ffc933;
}

.checkout-delivery-tabs__row {
  position: relative;
  z-index: 1;
}

.checkout-delivery-tabs__row .col-6 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

@media (min-width: 992px) {
  .checkout-delivery-tabs__row .col-6 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* Marge en bas uniquement quand un onglet est sélectionné (pas en affichage par défaut) */
.checkout-delivery-tabs:not(.checkout-delivery-tabs--choice-pending) {
  margin-bottom: 2rem;
}

/* État « aucun onglet sélectionné » : message + pas de barre grise + onglets en style « à choisir » */
.checkout-delivery-tabs--choice-pending {
  margin-bottom: 0;
}

.checkout-delivery-tabs__prompt {
  display: none;
}

.checkout-delivery-tabs--choice-pending .checkout-delivery-tabs__prompt {
  display: block;
  margin-bottom: 0.75rem;
}

.checkout-delivery-tabs--choice-pending .checkout-delivery-tabs__bar {
  display: none;
}

.checkout-delivery-tabs--choice-pending .checkout-delivery-tab {
  border: 1px dashed #adb5bd;
  border-radius: 0.25rem;
  background-color: rgba(0, 0, 0, 0.02);
}

.checkout-delivery-tabs--choice-pending .checkout-delivery-tab:hover {
  background-color: rgba(0, 0, 0, 0.04);
  border-color: #6c757d;
}

.checkout-delivery-tabs__bar {
  height: 2px;
  margin-top: 0;
  background: #dee2e6;
}

.checkout-delivery-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.4rem 0.25rem;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.875rem;
  font-weight: normal;
  color: var(--color-gray-dark, #6c757d);
  border-radius: 0;
  transition:
    background-color 0.2s,
    color 0.2s;
}

@media (min-width: 992px) {
  .checkout-delivery-tab {
    padding: 0.6rem 1rem;
  }

  .checkout-delivery-tab span {
    font-size: 0.875rem;
  }
}

.checkout-delivery-tab i {
  opacity: 0.85;
}

.checkout-delivery-tab:hover:not(.checkout-delivery-tab--active) {
  color: var(--color-dark-gray, #495057);
}

.checkout-delivery-tab--active,
.checkout-delivery-tab--active i {
  color: var(--color-black);
}

.checkout-delivery-tab--active {
  font-weight: bold;
  background-color: var(--checkout-payment-tab-yellow);
  position: relative;
}

/* Bande jaune sous l’onglet actif pour masquer le gris de la barre (évite gris sous jaune) */
.checkout-delivery-tab--active::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--checkout-payment-tab-yellow);
}

.checkout-delivery-tab--active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid var(--checkout-payment-tab-yellow);
}

/* Récap livraison (section repliée) : adresses sur fond gris */
.checkout-delivery-recap-address {
  background-color: rgba(0, 0, 0, 0.06);
  padding: 0.35rem 0.5rem;
  border-radius: 0.25rem;
  margin: 0;
  font-size: 0.875rem;
}

/* Message « Montage optionnel » / « Montage obligatoire » */
.checkout-recap-mount-msg {
  font-size: 0.75rem;
  margin-bottom: 1rem !important;
  padding: 0.5rem;
  border-radius: 0.25rem;
  background-color: #c9e9c9;
}

/* Bloc recherche garage (centre de montage) : titre, instruction, input + bouton jaune, Livraison avec montage en dessous */
.checkout-garage-search-block__title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--color-black, #000);
  margin-bottom: 1rem;
}
.checkout-garage-search-block__instruction {
  font-size: 0.875rem;
  color: var(--color-black, #000);
  margin-bottom: 0.5rem;
}
.checkout-garage-search-input-group {
  border-radius: 0.25rem;
  overflow: hidden;
}
.checkout-garage-search-input-group .form-control {
  border-right: none;
}
.checkout-garage-search-input {
  text-transform: uppercase;
  font-weight: bold !important;
  font-size: 0.75rem !important;
}
.checkout-garage-search-input::placeholder {
  text-transform: uppercase;
  font-weight: normal;
  font-size: 0.75rem;
}
.checkout-garage-search-input-group .checkout-garage-search-btn {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  padding-left: 1rem;
  padding-right: 1rem;
  color: var(--color-black, #000);
}

.checkout-garage-with-mount-group .checkout-garage-with-mount-btn {
  border: 1px solid var(--color-primary, #ffb70a);
  color: var(--color-primary, #ffb70a);
  background-color: transparent;
}
.checkout-garage-with-mount-group .checkout-garage-with-mount-btn:hover {
  background-color: rgba(255, 183, 10, 0.1);
  color: var(--color-primary, #ffb70a);
}
.checkout-garage-with-mount-group .checkout-garage-with-mount-btn--selected {
  background-color: var(--color-primary, #ffb70a);
  color: var(--color-black, #000);
}

/* Suggestions recherche garage (centre de montage) */
.checkout-garage-suggestions {
  top: 100%;
  left: 0;
  z-index: 1050;
  max-height: 220px;
  overflow-y: auto;
  margin-top: 2px;
  border-radius: 0.25rem;
  display: none;
  background-color: #fff;
}
.checkout-garage-suggestions.is-visible {
  display: block;
}
.checkout-garage-suggestions .list-group-item {
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: bold;
  background-color: #fff;
  text-transform: uppercase;
}
.checkout-garage-suggestions .list-group-item:hover {
  background-color: #f8f9fa;
}

/* Disclaimer au-dessus de la carte garage (miniature ou ouverte) */
.checkout-garage-map-disclaimer {
  font-size: 12px;
}
.checkout-garage-map-disclaimer__line {
  margin: 0;
  color: var(--bs-secondary, #6c757d);
}
.checkout-garage-map-disclaimer__line--italic {
  font-style: italic;
}
@media (min-width: 992px) {
  .checkout-garage-map-disclaimer,
  .checkout-garage-map-disclaimer__line {
    font-size: 14px;
  }
}

/* Carte garage : placeholder cliquable avec image de fond. Au clic n'importe où sur le placeholder, la carte s'ouvre. */
.checkout-garage-map-wrap {
  position: relative;
  width: 100%;
}
.checkout-garage-map-placeholder {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e9ecef;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("https://tile.openstreetmap.org/6/32/22.png");
  background-size: cover;
  background-position: center;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  cursor: pointer;
}

.checkout-garage-map-placeholder__label {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  border-radius: 0.25rem;
  pointer-events: none;
}
.checkout-garage-map-wrap .checkout-garage-map {
  display: none;
  height: 400px;
  width: 100%;
}
.checkout-garage-map-wrap.is-expanded .checkout-garage-map-placeholder {
  display: none;
}
.checkout-garage-map-wrap.is-expanded .checkout-garage-map {
  display: block;
}

.checkout-garage-map-close-btn {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1000;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 0.25rem;
  align-items: center;
  justify-content: center;
}
.checkout-garage-map-wrap.is-expanded .checkout-garage-map-close-btn {
  display: flex !important;
  visibility: visible;
  pointer-events: auto;
}

/* Détail du centre : remonte pour recouvrir un peu le bas de la carte */
.checkout-garage-detail-wrap {
  position: relative;
  z-index: 400;
  margin-top: -72px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-right: 0;
  margin-left: 0;
}

.checkout-garage-detail-close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 401;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent !important;
  border: none !important;
}

/* Panneau détail garage (moderne) */
.checkout-garage-detail-panel {
  font-size: 0.875rem;
  line-height: 1.45;
}
.checkout-garage-detail__distance {
  color: var(--color-dark-gray, #333);
  margin-bottom: 0.5rem;
}
.checkout-garage-detail__distance i {
  color: #949494;
  font-size: 1.15em;
}
.checkout-garage-detail__name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--color-black, #000);
}
.checkout-garage-detail__address {
  color: #949494;
  font-size: 0.875rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.checkout-garage-detail__hours,
.checkout-garage-detail__price {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark-gray, #333);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.checkout-garage-detail__hours-icon,
.checkout-garage-detail__price-icon {
  flex-shrink: 0;
  opacity: 0.8;
  font-size: 1.15em;
}
.checkout-garage-detail__hours-body {
  flex: 1;
  min-width: 0;
  line-height: 1.4;
}
.checkout-garage-detail__hours-line {
  display: block;
  white-space: nowrap;
}
.checkout-garage-detail__hours-line + .checkout-garage-detail__hours-line {
  margin-top: 0.2rem;
}
.checkout-garage-detail__price-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.checkout-garage-detail__price-line {
  display: block;
}
.checkout-garage-detail__price-note {
  font-size: 0.75rem;
  color: #949494;
}

/* Moyens de paiement (icônes + check/croix) au-dessus du prix */
.checkout-garage-detail__payments {
  width: 100%;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.checkout-garage-detail__payments-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.checkout-garage-detail__payments-list {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 0.5rem;
}
.checkout-garage-detail__payment-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.checkout-garage-detail__payment-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
}
.checkout-garage-detail__payment-icon {
  font-size: 1.85rem;
  color: #888;
}
.checkout-garage-detail__payment-status {
  position: absolute;
  top: -2px;
  right: -2px;
  font-size: 0.9rem;
}
.checkout-garage-detail__payment-status--ok {
  color: #198754;
}
.checkout-garage-detail__payment-status--no {
  color: #dc3545;
}
.checkout-garage-detail__payment-label {
  font-size: 0.75rem;
  color: var(--color-dark-gray, #333);
}
.checkout-garage-detail__toggle {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-weight: 600;
}
.checkout-garage-detail__extra {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--color-gray-medium, #ccc);
}
/* CARTE */
#checkout-delivery-content .checkout-garage-marker {
  background: none !important;
  border: none !important;
}
.checkout-garage-marker__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #0d6efd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.checkout-garage-marker__icon {
  font-size: 0.95rem;
  color: #0d6efd;
}

/* Marqueur sélectionné : cercle jaune du projet, icône noire (bon contraste) */
.checkout-garage-marker--selected .checkout-garage-marker__circle {
  background-color: var(--color-primary, #ffb70a);
  border-color: var(--color-orange, #f9a71a);
}
.checkout-garage-marker--selected .checkout-garage-marker__icon {
  color: var(--color-black, #000);
}

/* Masquer le nom Leaflet en bas à droite de la carte */
#checkout-delivery-content .leaflet-bottom.leaflet-right {
  display: none;
}

.checkout-garage-nearest-card {
  font-size: 0.875rem;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/* -------------------------------------------------------------------
   8. SECTION PAIEMENT (STRIPE PAYMENT ELEMENT / ALMA)
   ------------------------------------------------------------------- */

/* Bloc unique : accordéon Stripe + CGV + bouton Payer (visuellement groupés) */

/* CGV + bouton juste sous l’accordéon, dans le même bloc */
.checkout-payment-block {
  margin-bottom: 0;
  position: relative;
  min-height: 120px;
}

/* État chargement : spinner visible, contenu masqué mais toujours rendu pour que l’iframe Stripe charge */
.checkout-payment-block--loading .checkout-payment-block__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 2rem;
}
.checkout-payment-block--loading .checkout-payment-block__content {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 220px;
  pointer-events: none;
  z-index: -1;
}

/* État prêt : spinner masqué, contenu visible */
.checkout-payment-block--ready .checkout-payment-block__loading {
  display: none;
}
.checkout-payment-block--ready .checkout-payment-block__content {
  display: block;
  visibility: visible;
  position: static;
  min-height: 0;
  pointer-events: auto;
  z-index: auto;
}

/* Wrapper commun Stripe + ALMA (style accordéon) */
.checkout-payment-methods {
  margin-bottom: 1.5rem;
}

.checkout-payment-element-wrap {
  margin-bottom: 0;
}

/* Bloc ALMA : même rendu que les moyens Stripe (PayPal, Google Pay) — bordure, coins, padding, radio */
.checkout-payment-method-alma--hidden {
  display: none;
}

.checkout-payment-method-alma {
  margin-top: 8px;
  border: 1px solid rgb(230, 230, 230);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow:
    rgba(0, 0, 0, 0.03) 0px 1px 1px 0px,
    rgba(0, 0, 0, 0.02) 0px 3px 6px 0px;
}

.checkout-payment-method-alma__header {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px;
  margin: 0;
  border: none;
  background: #fff;
  text-align: left;
  font-size: 14px;
  line-height: 16.1px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  cursor: pointer;
  color: rgb(109, 110, 120);
  font-weight: 600;
  box-sizing: border-box;
  border-radius: 8px;
  min-height: 55px;
}

.checkout-payment-method-alma:has(.checkout-payment-method-alma__body.show)
  .checkout-payment-method-alma__header {
  border-radius: 8px 8px 0 0;
}

/* Même SVG que Stripe pour le radio (cercle stroke + inner/center pour l’état sélectionné) */
.checkout-payment-method-alma__radio {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.checkout-payment-method-alma__radio-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.checkout-payment-method-alma__icon {
  flex-shrink: 0;
  height: 12px;
  width: auto;
  display: block;
  object-fit: contain;
}

.checkout-payment-method-alma__radio-outer {
  stroke: rgb(109, 110, 120);
  stroke-width: 18.75;
  fill: none;
}

/* Rond intérieur comme Stripe : r=21.875, invisible par défaut (fill-opacity 0) */
.checkout-payment-method-alma__radio-inner {
  fill: rgb(109, 110, 120);
  fill-opacity: 0;
}

.checkout-payment-method-alma__header[aria-expanded="true"]
  .checkout-payment-method-alma__radio-outer {
  stroke: rgb(5, 112, 222);
}

.checkout-payment-method-alma__header[aria-expanded="true"]
  .checkout-payment-method-alma__radio-inner {
  fill: rgb(5, 112, 222);
  fill-opacity: 1;
}

/* Hover : texte + cercle en rgb(48, 49, 61) (comme Stripe), uniquement quand non sélectionné */
.checkout-payment-method-alma__header:hover:not([aria-expanded="true"])
  .checkout-payment-method-alma__label {
  color: rgb(48, 49, 61);
}
.checkout-payment-method-alma__header:hover:not([aria-expanded="true"])
  .checkout-payment-method-alma__radio-outer {
  stroke: rgb(48, 49, 61);
}
.checkout-payment-method-alma__header:hover:not([aria-expanded="true"])
  .checkout-payment-method-alma__radio-inner {
  fill: rgb(48, 49, 61);
}

/* Sélectionné : texte + cercle en bleu */
.checkout-payment-method-alma__header[aria-expanded="true"]
  .checkout-payment-method-alma__label {
  color: rgb(5, 112, 222);
}

.checkout-payment-method-alma__label {
  font-weight: 600;
  color: rgb(109, 110, 120);
}

.checkout-payment-method-alma__body {
  border: none;
  margin: 0;
  padding: 0;
}

.checkout-payment-method-alma__body.show {
  border-radius: 0 0 8px 8px;
}

.checkout-payment-method-alma__inner {
  margin: 0.25rem 1rem 1rem 1rem;
  padding: 0.75rem;
  border-radius: 5px;
  border: 1px solid #e9ecef;
}

/* Message « étape supplémentaire » (comme Google Pay dans le Payment Element) */
.checkout-payment-alma-redirect {
  font-size: 0.875rem;
  color: #6d6e78;
  gap: 0.75rem;
}

.checkout-payment-alma-redirect__icon {
  width: 2.625rem;
  height: 2.625rem;
  color: #6d6e78;
}

.checkout-payment-alma-redirect__text {
  line-height: 1.35;
}

/* Conteneur du Payment Element (formulaire Stripe) */
.checkout-payment-cgv-label {
  font-size: 0.75rem;
}

.checkout-payment-cgv-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
}

.checkout-payment-cgv-link:hover {
  text-decoration: underline;
}

.checkout-payment-submit-btn {
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 0.25rem;
}

.checkout-payment-submit-btn:not(:disabled) {
  background-color: var(--color-primary);
  border-color: var(--color-orange);
  color: var(--color-black, #212529);
}

.checkout-payment-submit-btn:not(:disabled):hover {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-black, #212529);
}

#checkout-stripe-pay-btn:disabled {
  /* Look & feel "vrai disabled" façon Bootstrap */
  background-color: #e9ecef !important; /* gris clair du thème */
  border-color: #ced4da !important; /* gris de bordure */
  color: #6c757d !important; /* texte gris doux */
  opacity: 1;
  cursor: not-allowed;
}

/* Masquer le « Modifier » d'une section quand une autre est en édition (éviter deux sections ouvertes) */
.checkout-modifier-hidden-by-other {
  display: none !important;
}

/* Page intermédiaire "Finalisation du paiement" */
.payment-processing-page {
  margin-top: 7rem;
}


/* ===== styles/source/section/other.css ===== */
.section-delivery {
  background-color: var(--color-gray-light);
  padding-top: 40px;
}

.brand-logo {
  width: 80px;
  height: auto;
}

.stock-dot,
.out-of-stock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.stock-dot {
  background-color: #3b9d22;
}

.out-of-stock-dot {
  background-color: #dc540f;
}

.out-of-stock-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff3cd;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ffc107;
  text-align: center;
  font-weight: bold;
  color: #856404;
}

.out-of-stock-message i {
  margin-right: 8px;
  color: #856404;
}

.no-space {
  margin-bottom: var(--pms-10);
  margin-right: var(--pms-20);
}

.advice-discover:hover {
  text-decoration: underline;
}

.advice-discover {
  text-decoration: none;
}

.carousel-advice .own-color,
.advice-discover {
  color: var(--color-primary);
  font-weight: bold;
}

.advice-body {
  height: 90px;
}

.advice-card .card-text {
  font-size: 1.1rem;
}

.register-or-login {
  margin-top: 40px;
  margin-bottom: 40px;
  background-color: var(--color-white);
  padding: 30px;
}

.delivery-type {
  background-color: #f1f3f5;
}

.step-number {
  width: 1.8rem;
  height: 1.8rem;
  background-color: var(--color-primary);
  font-size: var(--default-font-size);
  color: var(--color-black);
  aspect-ratio: 1 !important;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: var(--default-font-size);
}

@media (max-width: 1200px) {
  .step-number {
    width: 2rem;
    height: 2rem;
    font-size: var(--default-font-size);
  }
}

.step-content h6 {
  margin-left: 5px;
  color: var(--color-dark-gray);
}

.delivery-note {
  background-color: var(--color-primary);
  font-size: 0.9rem;
  color: var(--color-dark-gray);
  font-weight: bold;
  border-radius: 5px;
}

.or-widget {
  margin: 30px auto;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-gray-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c9cace;
}

.or-widget span {
  font-weight: bold;
  color: var(--color-dark-gray);
}

.address-card {
  /*height: 350px !important;*/
  height: 100% !important;
}

.custom-empty-cart {
  font-size: 150px;
  color: var(--color-primary);
  margin: 0 auto;
}

.simple-warning {
  background-color: #f9d342; /* Jaune clair */
  color: #333;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 15px;
  border: 1px solid #f2c514;
  margin-bottom: 15px;
}

.hover-adv-title {
  text-decoration: none;
  color: var(--color-black);
}

.hover-adv-title:hover {
  text-decoration: underline;
}

.f-of-adv-t {
  display: block; /* Change l'élément en un bloc */
  margin-left: 20px;
}

.label-certification img,
.label-certif img {
  width: 30px;
  margin-left: 5px;
}

.label-sound .noise-text {
  /*margin-left: -3px;*/
  /*padding-right: 5px;*/
}

.noise-value {
  font-size: 0.9rem;
  font-weight: bold;
}

.noise-unit {
  font-size: 0.8rem;
}

.noise-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1; /* Réduit l'espacement vertical entre `noise-value` et `noise-unit` */
}

.total-line {
  margin-top: auto;
}

.dividers {
  border-top: 1px solid #ccc;
  margin: 10px 0;
}

.total {
  font-size: var(--font-size-small);
  text-align: left;
  margin: 20px;
}

.total-label {
  font-weight: bold;
}

.total-price {
  font-size: var(--default-font-size);
  font-weight: bold;
}

.total-note {
  font-size: 12px;
  color: #666;
  margin-left: 2px;
}

.pricing-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.not-contractual-img {
  font-size: 0.6em;
  color: #666666;
  float: right;
}

.tire-description-card .card-body h5,
.tire-description-card .card-body h6 {
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.tire-description-card .btn-link {
  text-decoration: none;
}

.tire-description-card .btn-link:hover {
  text-decoration: underline;
}

.t-d-title {
  font-weight: bold;
  font-size: 17px;
}

.t-describe {
  margin-top: 10px;
}

.tire-summary {
  font-weight: bold;
}

.tire-description-card .card-body {
  max-width: 90%;
  margin: 0 auto;
  text-align: justify;
}

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.loader-tire {
  width: 80px;
  height: 80px;
  border: 8px solid #333;
  border-radius: 50%;
  border-top: 8px solid #fc9f18;
  position: relative;
  animation: spin 1s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tire-details {
  width: 60px;
  height: 60px;
  border: 4px dashed #777;
  border-radius: 50%;
  position: absolute;
}

.loader-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
  margin-top: 15px;
  text-align: center;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.delivery-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.delivery-card {
  display: block;
  border: 2px solid #dee2e6;
  cursor: pointer;
  border-radius: 0.5rem;
}

.delivery-radio:checked + .delivery-card {
  border-color: #ffb70a;
}

.delivery-card:hover {
  border-color: #ffb70a;
}


/* ===== styles/source/advice/content.css ===== */
.tire-info-list {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
    font-family: Arial, sans-serif;
}

.tire-info-list li {
    font-size: var(--default-font-size);
    margin-bottom: var(--pms-10);
    line-height: 1.6;
}

.tire-info-list li strong {
    font-size: var(--font-size-large);
    font-weight: bold;
    color: #333;
}

.advice-content-body {
    /*padding: var(--default-padding) !important;*/
    padding: var(--default-padding);
    max-width: 95%;
    margin: var(--horizontal-center);
}

.advice-card {
    /*border-radius: 0 !important;*/
    /*border-radius: 0;*/
    /*background-color: red !important;*/
}

.tire-dim-info-img {
    padding: var(--default-padding);
    max-width: var(--img-max-width-large);
}

.dot-code-tyre-img {
    max-width: var(--img-max-width-large);
}

.dot-code-tyre-img, .tire-dim-info-img, .advice-content-img, .tire-indicator-img,
.tire-storage-img, .tire-labeling-img, .tire-unbolt-img {
    margin-top: var(--default-padding);
}

.advice-content-img {
    max-width: var(--img-max-width-medium);
}

.tire-indicator-img,
.tire-storage-img {
    max-width: var(--img-max-width-small);
}

.dot-code-img {
    max-width: var(--img-max-width-medium);
}

.tire-labeling-img {
    margin-bottom: 15px;
    max-width: var(--img-max-width-xsmall);
}

.tire-unbolt-img {
    margin-left: 30px;
    max-width: var(--img-max-width-medium);
}

.tire-criterion-img {
    margin: 25px auto 15px;
    max-width: var(--img-max-width-medium);
}

.sect-bg-gry {
    background-color: var(--color-gray-light);
}

.sect-bg-whi {
    background-color: var(--color-white);
}

.sect-bg-gray-alt {
    background-color: var(--color-gray-alt);
}

/* Style pour l'icône des saisons */
.season-mini-icon {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    margin-right: var(--pms-10);
}

/* Style pour l'information des pneus */
.tire-info {
    font-size: 1.1em;
    margin-bottom: var(--pms-5);
}

/* Titre Avantages */
.advantages-title {
    font-weight: bold;
    color: var(--highlight-color);
    margin-top: var(--pms-10);
    font-size: var(--font-size-medium)
}

/* Contenu des avantages */
.advantages-content {
    background-color: #f0fff5;
}

.characteristic-content {
    background-color: #f0f8ff;
}

.limit-content {
    background-color: #fff8f0;
}

.advantages-content,
.characteristic-content,
.limit-content {
    padding: 12px 18px;
    border-left: 4px solid var(--highlight-color);
    border-radius: var(--pms-5);
    margin-bottom: var(--pms-20);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-size: var(--default-font-size);
    line-height: 1.6;
}


/* ===== styles/source/advice/table.css ===== */
.index-table {
    width: var(--full-width);
    border-collapse: collapse;
}

.index-table thead th {
    background-color: #FFA500;
    padding: var(--pms-10);
    font-size: var(--pms-15);
    text-align: center;
    font-weight: bold;
    border: 1px solid var(--color-black);
}

.index-table tbody td {
    text-align: center;
    padding: 8px;
    border: 1px solid var(--color-gray-medium);
    font-size: var(--default-font-size);
    color: var(--color-dark-gray);
}

.index-table tbody td:nth-child(odd) {
    background-color: var(--color-background-light);
}

.own-table tr {
    border-bottom: 1px solid #A7A7A7;
}

.own-table tr:last-child {
    border-bottom: none;
}

.own-table th {
    text-align: left;
    font-weight: 500;
}

/*.own-table tr:first-child th {*/
/*    width: 60%;*/
/*    font-weight: 700;*/
/*}*/

.own-table td {
    text-align: right;
}

.advantages-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 20px;
    font-size: 14px;
    line-height: 1.5;
}

.advantages-list li {
    display: flex;
    align-items: center;
    margin-bottom: 2px;
}

.advantages-list .icon {
    margin-right: 10px;
    font-size: 18px;
}

.certifications-container {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: nowrap;
}

.label-certification {
    display: flex;
    align-items: center;
}


@media (max-width: 480px) {
    .certifications-container {
        flex-wrap: wrap;
        gap: 10px;
        padding: 5px;
    }

    .label-certification,
    .label-sound {
        display: flex;
        align-items: center;
        gap: 5px;
        flex-wrap: wrap;
    }
}

/* ===== styles/source/section/account.css ===== */
/* Styles pour la sidebar */
.sidebar-account {
  padding: 10px 0 0 20px;
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
}

.user-info-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logout-icon {
  margin-right: var(--pms-20);
  font-size: 17px;
  color: var(--color-primary);
}

/* Styles pour la liste des éléments du menu */
.account-menu {
  list-style: none;
  padding: 0;
  width: var(--full-width);
  margin-top: var(--pms-20);
}

.account-menu li {
  margin-bottom: var(--pms-10);
  position: relative;
}

.account-link {
  text-decoration: none;
  color: black;
  font-size: var(--default-font-size);
  display: inline-block;
}

.account-menu li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  margin-top: 5px;
}

.account-link:hover {
  color: var(--color-primary);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--full-width);
  height: var(--full-width);
  background-color: rgba(24, 24, 24, 0.8);
  z-index: 999;
  display: none;
}

.menu-overlay.open {
  display: block;
}

.menu-toggle.open + .account-menu {
  display: block;
}

.account-link.selected {
  color: var(--color-primary);
  font-weight: var(--font-weight-semi-bold);
}

.account-content {
  background-color: var(--color-lightest-gray);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.account-content {
  padding: var(--pms-15);
}

.section-info-title {
  font-size: 1.15rem;
  font-weight: bold;
  margin-bottom: var(--pms-20);
}

.info-box {
  background-color: var(--color-white);
  padding: var(--pms-15);
  border-radius: 5px;
  border: 1px solid var(--color-secondary);
  min-height: 170px;
}

.info-link {
  color: #ff9800;
  text-decoration: none;
  font-weight: var(--font-weight-medium);
}

.info-link:hover {
  text-decoration: underline;
}

.info-box p {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.info-box i {
  color: #ff9800;
  margin-right: 8px;
}

.details-title {
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-semi-bold);
}

.user-details {
  font-size: 0.95rem;
  color: var(--color-dark-gray);
}

.detail-item {
  border-bottom: 1px solid #eee;
  padding: 8px 0;
}

.detail-label {
  font-weight: var(--font-weight-medium);
  color: #555;
  width: 200px;
}

.detail-content {
  font-weight: var(--font-weight-semi-bold);
  text-align: right;
}

/* CSS uniquement pour le lien "Voir en détail" */
.order-detail-link {
  font-weight: bold;
  color: var(--color-primary);
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.order-detail-link:hover {
  text-decoration: underline;
}

.timeline {
  list-style: none;
  padding: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  width: 2px;
  background: black;
  top: 0;
  bottom: 0;
}

.timeline li {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-left: 20px;
}

.timeline .tl-dot {
  width: 8px;
  height: 8px;
  background: black;
  border-radius: 50%;
  position: absolute;
  left: 3px;
}

.timeline i {
  font-size: 16px;
  color: black;
  margin-left: 10px;
  width: 20px;
  text-align: center;
  display: inline-block;
}

/* Styles pour les détails de la commande */
.order-detail-title {
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
}

.order-detail-product-info-title {
  font-size: var(--default-font-size);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  color: var(--color-black);
}

.order-detail-product-info-title:hover {
  text-decoration: underline;
}


/* ===== styles/source/section/price.css ===== */
.price-filter-container {
    padding: var(--pms-15);
}

.price-slider {
    position: relative;
    width: var(--full-width);
    margin-top: var(--pms-10);
}

/* Full slider background */
.price-range {
    -webkit-appearance: none;
    width: var(--full-width);
    height: 6px;
    background: #d2d1d1;
    outline: none;
    position: absolute;
    border-radius: var(--pms-10);
    top: 0;
}

/* Red active range between handles */
.price-slider::before {
    content: '';
    position: absolute;
    height: 6px;
    background: var(--color-primary);
    border-radius: var(--pms-10);
    top: 0;
    z-index: 1;
    left: var(--active-left, 0%); /* Left position from JavaScript */
    width: var(--active-width, 0%); /* Width from JavaScript */
}

.price-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: var(--pms-20);
    height: var(--pms-20);
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.price-range::-moz-range-thumb {
    width: var(--pms-20);
    height: var(--pms-20);
    background: var(--color-white);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.price-range-display {
    display: flex;
    justify-content: space-between;
    margin-top: 26px;
    margin-bottom: 5px;
    color: #4d4c4c;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-small);
}


/* ===== styles/source/section/reviews.css ===== */
/* ========================================
   STYLES POUR LES AVIS CLIENTS
   ======================================== */

/* Sidebar responsive pour les avis */
.review-sidebar {
  width: 100%;
  margin-bottom: 70px;
}

@media (min-width: 992px) {
  .review-sidebar {
    max-width: 300px;
    margin-bottom: 0;
  }
}

/* Barres de progression cliquables pour les filtres d'avis */
.filter-btn {
  transition: all 0.2s ease;
  background-color: transparent;
}

/* Barre de progression : État normal */
.filter-btn .review-filter-text {
  font-weight: normal;
}

.filter-btn .review-filter-progress {
  border: none;
}

/* Barre de progression : État hover ET actif - même style */
.filter-btn:hover .review-filter-text,
.filter-btn.filter-active .review-filter-text {
  font-weight: bold !important;
}

.filter-btn:hover .progress,
.filter-btn.filter-active .progress {
  border: 1px solid #ffca28 !important;
}

.filter-btn:hover,
.filter-btn.filter-active {
  background-color: #f8f9fa !important;
}

/* Bandeau d'avis responsive */
.review-banner-title {
  font-size: 16px;
}

.review-banner-link {
  font-size: 13px;
}

.review-banner-subtitle {
  font-size: 13px;
}

@media (min-width: 992px) {
  .review-banner-title {
    font-size: 18px;
  }

  .review-banner-link {
    font-size: 14px;
  }

  .review-banner-subtitle {
    font-size: 14px;
  }
}

#product-rating-stars:hover .product-rating-text {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Politique de confidentialité - Checkbox */
.checkbox-privacy input {
  width: var(--pms-20);
  height: var(--pms-20);
}

.checkbox-privacy label {
  font-size: 10px;
}

@media (min-width: 992px) {
  .checkbox-privacy label {
    font-size: 16px;
  }
}

/* ===== styles/source/pagination/overload-pagination.css ===== */
.pagination .page-item.active .page-link {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-black);
}

.pagination .page-link {
    color: var(--color-black);
}

