/* Optimized CSS */
/* Removed commented-out rules and unused styles */
/* Merged similar selectors to reduce repetition */

/* Begin optimized CSS */
:root {
  --color-primary: #47b5c2;
  --color-primary-strong: #5bc9dc;
  --color-primary-rgb: 71, 181, 194;
  --color-bg-dark: #2c3e50;
  --color-bg-darker: #1a252f;
  --color-surface: #262424;
  --color-text-base: #e0e0e0;
  --color-text-contrast: #ffffff;
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-strong: 0 4px 12px rgba(71, 181, 194, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --transition-base: 0.3s ease;
  --spacing-unit: 8px;
}

#tac_title {
  display: none;
}

/* @font-face Roboto supprimé - Utilise Google Fonts CDN dans header.php */

html {
  width: 100%;
  background-color: #201e1e;
}

.container-lg a:visited {
  color: var(--color-primary);
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

/* Fix pour l'avertissement H1UserAgentFontSizeInSection */
h1 {
  font-size: 2em;
  font-weight: bold;
}

h2 {
  font-size: 1.5em;
  font-weight: bold;
}

h3 {
  font-size: 1.17em;
  font-weight: bold;
}

body {
  background-color: #fff;
  font-family: Roboto;
  margin: 0;
  padding: 0;
}

.hautHeader {
  padding: 10px;
  text-align: center;
}

.navbar_level_1_li:hover a:hover {
  background-color: transparent;
  /* Éviter que le fond du lien soit affiché si vous avez une couleur différente */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1333px;
  margin: auto;
  padding: 15px 0;
}

.header-section {
  background: linear-gradient(
    135deg,
    var(--color-bg-dark) 0%,
    var(--color-bg-darker) 100%
  );
  box-shadow: var(--shadow-soft);
}

.header-item {
  display: inline-flex;
  padding: 15px 20px;
}

.header-logo {
  transition: transform var(--transition-base);
}

.header-logo:hover {
  transform: scale(1.05);
}

.header-logo img {
  width: 130px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.header-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tel_SETT {
  font-size: 28px;
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: rgba(var(--color-primary-rgb), 0.1);
  transition: all var(--transition-base);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.tel_SETT:hover {
  background: rgba(var(--color-primary-rgb), 0.2);
  color: var(--color-primary-strong);
  transform: scale(1.02);
}

.contact_SETT_header {
  color: var(--color-text-base);
  font-size: 13px;
  line-height: 1.5;
}

.contact_SETT_header a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}

.contact_SETT_header a:hover {
  color: var(--color-primary-strong);
}

.header-cart {
  display: flex;
  gap: 8px;
  align-items: center;
}

.header-cart a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: var(--color-text-contrast);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  min-height: 60px;
}

.header-cart a:hover {
  background: rgba(var(--color-primary-rgb), 0.15);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.header-cart img {
  height: 28px;
  margin-bottom: 6px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.header-cart a:hover img {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(71, 181, 194, 0.6));
}

.header-cart a div {
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.header-cart a #cart-count {
  display: inline-block;
  background: #666;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  margin-left: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.header-cart a #cart-count:not([data-count="0"]) {
  background: var(--color-primary);
  box-shadow: 0 2px 6px rgba(var(--color-primary-rgb), 0.4);
}

#toggle_bar {
  display: none;
}

/* Global Styles */
.container__big-navbar {
  width: 100%;
  background-color: var(--color-surface);
  box-shadow: var(--shadow-soft);
  border-top: 1px solid rgba(var(--color-primary-rgb), 0.2);
}

.container-lg {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.container-foot {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.navbar_container {
  display: flex;
  justify-content: space-between;
}

.main_navbar_ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0px;
}

.navbar_level_1_li {
  position: relative;
  padding: 0;
}

.navbar_level_1_header {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.navbar_level_1_header .navbar_level_1_link {
  flex: 1 1 auto;
}

.mobile-submenu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--color-text-base);
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-size: 1rem;
  cursor: pointer;
  transition: color var(--transition-base);
}

.mobile-submenu-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.mobile-submenu-toggle i {
  transition: transform 0.3s ease;
}

.navbar_level_1_link {
  text-decoration: none;
  color: var(--color-text-base);
  font-weight: 600;
  font-size: 15px;
  display: block;
  padding: 18px 20px;
  transition: all var(--transition-base);
  position: relative;
  letter-spacing: 0.3px;
}

.navbar_level_1_link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.navbar_level_1_link:hover {
  color: var(--color-text-contrast);
  background: linear-gradient(
    135deg,
    rgba(var(--color-primary-rgb), 0.08) 0%,
    rgba(var(--color-primary-rgb), 0.06) 100%
  );
  box-shadow: var(--shadow-soft), 0 1px 3px rgba(var(--color-primary-rgb), 0.1);
  transform: translateY(-1px);
}

.navbar_level_1_link:hover::after {
  width: 80%;
  box-shadow: 0 2px 8px rgba(var(--color-primary-rgb), 0.5);
}

.navbar_level_1_link_promo {
  text-decoration: none;
  color: var(--color-text-contrast);
  font-weight: 700;
  font-size: 15px;
  display: block;
  padding: 18px 20px;
  transition: all var(--transition-base);
  position: relative;
  letter-spacing: 0.3px;
  background: linear-gradient(
    135deg,
    rgba(var(--color-primary-rgb), 0.2) 0%,
    rgba(var(--color-primary-rgb), 0.18) 100%
  );
  border-bottom: 3px solid var(--color-primary);
}

.navbar_level_1_link_promo:hover {
  color: var(--color-text-contrast);
  background: linear-gradient(
    135deg,
    rgba(var(--color-primary-rgb), 0.3) 0%,
    rgba(var(--color-primary-rgb), 0.25) 100%
  );
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.35),
    0 2px 6px rgba(var(--color-primary-rgb), 0.2);
  border-bottom-color: var(--color-primary-strong);
}

.mega_dropdown_container {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: var(--color-surface);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  padding: 15px;
  z-index: 99000;
  width: 450px;
  max-height: 500px;
  overflow-y: auto;
  border-radius: 0 0 12px 12px;
  border-top: 3px solid var(--color-primary);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Scrollbar personnalisée pour le dropdown */
.mega_dropdown_container::-webkit-scrollbar {
  width: 8px;
}

.mega_dropdown_container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.mega_dropdown_container::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

.mega_dropdown_container::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-strong);
}

.box {
  display: flex;
  gap: 15px;
  flex-direction: row;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 6px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  background: transparent;
}

.box:last-child {
  margin-bottom: 0;
}

.box:hover {
  background: rgba(var(--color-primary-rgb), 0.35) !important;
  transform: translateX(3px);
  box-shadow: 0 2px 8px rgba(var(--color-primary-rgb), 0.5);
}

.box img {
  width: 90px;
  height: 65px;
  object-fit: cover;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.box:hover img {
  transform: scale(1.05);
}

.dropdown_text {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #e0e0e0;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  transition: color 0.3s ease;
  flex: 1;
}

.box:hover .dropdown_text {
  color: #47b5c2;
}

/* Show dropdown on hover */
.navbar_level_1_li:hover .mega_dropdown_container {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.navbar_level_1_li {
  position: relative;
  padding: 0;
}

.main_navbar_ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 5px;
  align-items: center;
}

.navbar_container {
  display: flex;
  justify-content: space-between;
  max-width: 1333px;
  margin: 0 auto;
}

/* Mobile toggle button */
#toggle_bar {
  cursor: pointer;
  font-size: 24px;
}

.toggle {
  display: none;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .navbar_container {
    flex-direction: column;
  }

  .toggle {
    display: block;
  }

  .main_navbar_ul {
    flex-direction: column;
  }

  .mega_dropdown_container {
    position: relative;
    box-shadow: none;
  }
}

/* Carousel container */
.container__carousel {
  width: 100%;
  margin-top: 40px;
  padding: 40px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #fefefe 100%);
}

/* Carousel moderne avec transitions fluides */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 1296px;
  margin: 0 auto;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 550px;
}

/* Transitions fluides avec fade effect */
.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.carousel-item.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}

/* Animation slide entrante (depuis la droite) */
.carousel-item.slide-in-right {
  animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Animation slide sortante (vers la gauche) */
.carousel-item.slide-out-left {
  animation: slideOutLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%) scale(1.05);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(-100%) scale(0.95);
  }
}

/* Carousel indicators modernes */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(79, 179, 196, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.carousel-indicators button:hover {
  background-color: rgba(79, 179, 196, 0.8);
  transform: scale(1.3);
  border-color: #4fb3c4;
}

.carousel-indicators button.active {
  width: 32px;
  border-radius: 10px;
  background-color: #4fb3c4;
  border-color: #4fb3c4;
  box-shadow: 0 2px 10px rgba(79, 179, 196, 0.5);
}

/* Carousel controls modernes */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #2c3e50;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: #4fb3c4;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(79, 179, 196, 0.4);
}

.carousel-control-prev:active,
.carousel-control-next:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev i,
.carousel-control-next i {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.carousel-control-prev:hover i {
  transform: translateX(-3px);
}

.carousel-control-next:hover i {
  transform: translateX(3px);
}

/* Carousel images optimisées */
.image_carousel {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.carousel-item:hover .image_carousel {
  transform: scale(1.02);
}

/* Pause indicator (optionnel) */
.carousel.paused::after {
  content: "❚❚";
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  z-index: 11;
  opacity: 0.8;
}

/* Visually hidden class for screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .carousel-inner {
    height: 300px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel-control-prev {
    left: 10px;
  }

  .carousel-control-next {
    right: 10px;
  }

  .carousel-indicators {
    bottom: 10px;
    padding: 8px 15px;
    gap: 8px;
  }

  .carousel-indicators button {
    width: 8px;
    height: 8px;
  }

  .carousel-indicators button.active {
    width: 24px;
  }
}

main {
  padding: 0;
  margin-top: -40px;
}

.green-line {
  width: 50px;
  /* Ajuster pour la longueur souhaitée du soulignement */
  height: 3px;
  /* Épaisseur du soulignement */
  background-color: #4eb1c2;
  border-radius: 2px;
  margin: 30px auto;
}

/* Styles pour la section du bandeau configurateur */
.bandeau-configurateur {
  padding: 60px 20px;
  background-image: url("../src/assets/image/stores-ext-54.jpg");
  background-size: cover;
  background-position: center;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.bandeau-configurateur::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #ffffff 20%,
    #ffffff 50%,
    #ffffff 80%,
    transparent 100%
  );
}

.container-xl {
  max-width: 1140px;
  margin: 0 auto;
}

/* Bandeau titre */
.bandeau-title {
  text-align: center;
  padding-bottom: 40px;
  width: 100%;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.bandeau-title::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.bandeau-title h2 {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
}

/* Bandeau étape */
.bandeau-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.bandeau-step {
  flex: 0 1 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.bandeau-step:hover {
  transform: translateY(-5px);
}

.bandeau-step-icon-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.bandeau-step:hover .bandeau-step-icon-wrapper {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2), 0 6px 15px rgba(0, 0, 0, 0.15);
}

.bandeau-step-number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 3px 10px rgba(255, 152, 0, 0.4);
  border: 3px solid white;
}

.bandeau-step-icon {
  font-size: 50px;
  color: #2d6772;
  transition: all 0.3s ease;
}

.bandeau-step:hover .bandeau-step-icon {
  color: #3a7f8c;
  transform: scale(1.1);
}

/* Texte des étapes */
.bandeau-step-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  line-height: 1.4;
}

/* Responsive design */
@media (max-width: 768px) {
  .bandeau-configurateur {
    padding: 40px 15px;
  }

  .bandeau-title {
    font-size: 24px;
    padding-bottom: 30px;
  }

  .bandeau-row {
    flex-direction: column;
    align-items: center;
  }

  .bandeau-step {
    flex: 1 1 100%;
    max-width: 300px;
    padding: 15px;
  }

  .bandeau-step-icon-wrapper {
    width: 100px;
    height: 100px;
  }

  .bandeau-step-icon {
    font-size: 40px;
  }

  .bandeau-step-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* Container général */
.container-xl {
  max-width: 1140px;
  margin: 0 auto;
}

/* Titre de la section */
.title_contact {
  font-size: 36px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  color: #4eb1c2;
  /* Harmonisation de la couleur avec la bordure */
  text-align: left;
  position: relative;
}

.title_contact::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  /* Ajuster pour la longueur souhaitée du soulignement */
  height: 3px;
  /* Épaisseur du soulignement */
  background-color: #4eb1c2;
  border-radius: 2px;
  /* Donne un effet arrondi au soulignement */
}

/* Promotion row - Grid moderne */
.promotion-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Chaque élément promotion avec hover effect */
.promotion-item {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promotion-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(79, 179, 196, 0.25);
}

.promotion-item a {
  text-decoration: none;
  display: block;
  height: 100%;
}

/* Container image avec overlay */
.section__produit-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.section__produit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.promotion-item:hover .section__produit-image img {
  transform: scale(1.15);
}

/* Overlay gradient permanent (subtil) */
.section__produit-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
}

/* Badge promotion (coin supérieur droit) */
.section__produit-image::after {
  content: attr(data-promo);
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff8c1a 0%, #ff6b1a 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(255, 107, 26, 0.5);
  z-index: 2;
  transform: rotate(-3deg);
  transition: all 0.3s ease;
}

.promotion-item:hover .section__produit-image::after {
  transform: rotate(-3deg) scale(1.1);
}

/* Détails des promotions redesignés (Footer de la card - Gris foncé) */
.promotion-details {
  background: linear-gradient(to bottom, #2d3436 0%, #353b3d 100%);
  color: #ffffff;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  border-top: 3px solid #47b5c2;
}

.promotion-text {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

.text-highlight {
  color: #ff8c1a;
  font-weight: 800;
  font-size: 1.15rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.promotion-item:hover .text-highlight {
  transform: scale(1.05);
}

/* Bouton promotion moderne */
.btn-promotion {
  background: linear-gradient(135deg, #ff8c1a 0%, #ff6b1a 100%);
  color: white;
  font-size: 15px;
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  border-radius: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 107, 26, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-promotion::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-promotion:hover::before {
  width: 300px;
  height: 300px;
}

.btn-promotion:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 26, 0.5);
}

.btn-promotion:active {
  transform: translateY(0);
}

/* Responsivité */
@media (max-width: 768px) {
  .promotion-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section__produit-image {
    height: 220px;
  }

  .promotion-text {
    font-size: 1rem;
  }

  .text-highlight {
    font-size: 1.15rem;
  }
}

/* Container général */
.container-md,
.container-xl {
  max-width: 1280px;
  margin: 0 auto;
  padding: 25px;
}

/* Titre et sous-titre */
.text-center {
  text-align: center;
}

.bolder {
  font-size: 2.5rem;
  font-weight: bold;
}

.subtitle {
  font-size: 32px;
  color: #6c757d;
}

.text-primary {
  color: #4fb3c4;
}

.text-secondary {
  color: #6c757d;
}

/* Texte de description */
.text-description p {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.5;
}

.section-promotion {
  padding: 60px 20px;
}

.section-promotion .title_contact {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-promotion .title_contact::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #47b5c2 0%, #5ec9d6 100%);
  border-radius: 2px;
}

/* Section Pictogrammes - Design moderne minimaliste */
.section-pictograms {
  padding: 60px 20px;
  position: relative;
  background: linear-gradient(180deg, #1a1a1a 0%, #242424 100%);
}

.section-pictograms::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #47b5c2 20%,
    #5bc9dc 50%,
    #47b5c2 80%,
    transparent 100%
  );
}

.pictogram-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.pictogram-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(145deg, #2a2a2a, #252525);
  padding: 35px 25px;
  border-radius: 20px;
  border: 1px solid rgba(71, 181, 194, 0.2);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pictogram-item:hover {
  background: linear-gradient(145deg, #2f2f2f, #2a2a2a);
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(71, 181, 194, 0.2), 0 12px 35px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pictogram-item img {
  height: 65px;
  width: auto;
  max-width: 100%;
  margin-bottom: 18px;
  transition: all 0.35s ease;
  filter: brightness(0.95) contrast(1.1);
  object-fit: contain;
}

/* Ajustement spécifique pour le logo Oney */
.pictogram-item img[src*="Oney"],
.pictogram-item img[alt*="plusieurs fois"] {
  height: 55px;
  padding: 0 10px;
}

.pictogram-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05) contrast(1.15);
}

/* Styles pour les icônes Font Awesome */
.pictogram-icon {
  font-size: 65px;
  color: #d0d0d0;
  margin-bottom: 18px;
  transition: all 0.35s ease;
}

.pictogram-item:hover .pictogram-icon {
  color: #5bc9dc;
  transform: scale(1.08);
}

.pictogram-text {
  color: #d0d0d0;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 4px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.pictogram-item:hover .pictogram-text {
  color: #5bc9dc;
}

/* Lien en bas "Je découvre" transformé en bouton moderne */
.text-end {
  text-align: right;
}

.btn-discover {
  display: inline-block;
  margin-top: 20px;
}

.btn-discover a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #47b5c2 0%, #5bc9dc 100%);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(71, 181, 194, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-discover a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-discover a:hover::before {
  left: 100%;
}

.btn-discover a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(71, 181, 194, 0.4);
}

/* Responsivité tablette */
@media (max-width: 1024px) {
  .pictogram-links {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
  }

  .pictogram-item {
    padding: 25px 15px;
  }

  .pictogram-item img {
    height: 55px;
  }

  .pictogram-text {
    font-size: 13px;
  }
}

/* Responsivité mobile */
@media (max-width: 768px) {
  .section-pictograms {
    padding: 40px 15px;
  }

  .pictogram-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .pictogram-item {
    padding: 20px 12px;
  }

  .pictogram-item img {
    height: 50px;
  }

  .pictogram-text {
    font-size: 12px;
  }

  .btn-discover a {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Titre de la section */
.title_contact {
  font-size: 36px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  color: #6c757d;
  text-align: left;
}

/* Texte de description */
.text-primary {
  color: #52b1c1;
  font-size: 66px;
}

.text-black {
  color: black;
}

/* Section des options de contact - Design moderne */
.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.contact-item {
  background: #fff;
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Effet de bordure dégradée au top */
.contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #47b5c2 0%, #5bc9dc 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.contact-item:hover::before {
  transform: scaleX(1);
}

.contact-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(71, 181, 194, 0.25);
}

/* Conteneur icône moderne avec dégradé turquoise */
.contact-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #47b5c2 0%, #5bc9dc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(71, 181, 194, 0.35);
  transition: all 0.4s ease;
  position: relative;
}

/* Effet de pulse au hover */
.contact-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #47b5c2 0%, #5bc9dc 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.contact-item:hover .contact-icon::before {
  opacity: 0.3;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0;
  }
}

.contact-icon i {
  font-size: 38px;
  color: #fff;
  transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(71, 181, 194, 0.45);
}

.contact-item:hover .contact-icon i {
  transform: scale(1.1);
}

.contact-item a {
  color: #47b5c2;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: #5bc9dc;
  text-decoration: underline;
}

.contact-title {
  font-size: 22px;
  font-weight: 700;
  font-family: Roboto, sans-serif;
  color: #262424;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
}

/* Ligne décorative sous le titre */
.contact-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #47b5c2 0%, #5bc9dc 100%);
  border-radius: 3px;
}

.contact-details {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  font-family: Roboto, sans-serif;
}

.contact-details strong {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  color: #333;
}

/* Responsivité tablette */
@media (max-width: 1024px) {
  .contact-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .contact-item {
    padding: 35px 20px;
  }
}

/* Responsivité mobile */
@media (max-width: 768px) {
  .contact-options {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-item {
    padding: 30px 20px;
  }

  .contact-item img {
    width: 70px;
    height: 70px;
  }

  .contact-title {
    font-size: 20px;
  }
}

/* Container général */
.container-lg {
  max-width: 1200px;
  margin: 0 auto;
}

.bg-gris-header {
  position: relative;
  /* Nécessaire pour le positionnement du pseudo-élément */
  background: url(../src/assets/image/accueil-storetoile-needhelp.jpg) no-repeat
    center center;
  background-size: cover;
  color: white;
  padding: 40px;
  margin-top: 40px;
}

.bg-gris-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Filtre noir avec opacité de 50% */
  z-index: 1;
  /* Place le filtre au-dessus de l'image de fond */
}

.bg-gris-header * {
  position: relative;
  z-index: 2;
  /* Place le texte au-dessus du filtre */
}

/* Grid des logos avec animation de défilement */
.logo-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 40px;
  padding: 10px 0;
  width: max-content;
}

.logo-slider {
  animation: scroll-logos 40s linear infinite;
}

/* Pause au survol */
.logo-slider:hover {
  animation-play-state: paused;
}

/* Cards pour chaque logo */
.logo-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 18px 28px;
  border-radius: 10px;
  border: 1px solid rgba(71, 181, 194, 0.15);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  flex-shrink: 0;
  min-width: 120px;
}

.logo-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(71, 181, 194, 0.4);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(71, 181, 194, 0.2);
}

.logo-item img {
  height: 50px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: all 0.3s ease;
  display: block;
}

.logo-item:hover img {
  transform: scale(1.1);
}

/* Responsivité tablette */
@media (max-width: 1024px) {
  .logo-grid {
    gap: 30px;
  }

  .logo-slider {
    animation-duration: 35s;
  }

  .logo-item {
    padding: 15px 24px;
    min-width: 110px;
  }

  .logo-item img {
    height: 45px;
    max-width: 100px;
  }

  .logos-slider-wrapper::before,
  .logos-slider-wrapper::after {
    width: 60px;
  }
}

/* Responsivité mobile */
@media (max-width: 768px) {
  .section-logos {
    padding: 30px 0;
  }

  .logo-grid {
    gap: 25px;
  }

  .logo-slider {
    animation-duration: 30s;
  }

  .logo-item {
    padding: 12px 20px;
    min-width: 100px;
  }

  .logo-item img {
    height: 40px;
    max-width: 90px;
  }

  .logos-slider-wrapper::before,
  .logos-slider-wrapper::after {
    width: 40px;
  }
}

.container_avis_verifie {
  padding: 40px;
  background-color: #efefef;
}

/* General Footer Styles */
.footer {
  background: #1a1a1a;
  color: #b8b8b8;
  padding: 60px 20px 20px;
  font-family: "Roboto", sans-serif;
  border-top: 3px solid #4fb3c4;
}

/* Container */
.container-foot {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-lg {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
}

/* Container */
.container-lg-menu {
  max-width: 1320px;
  margin: 0 auto;
}

.container-lg-menu li:hover {
  background-color: #52b1c1 !important;
  cursor: pointer;
}

/* Footer Row */
.footer__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer Columns */
.footer__col {
  flex: 1 1 22%;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__logo img {
  height: 65px;
  width: auto;
  transition: opacity 0.3s ease;
}

.footer__logo img:hover {
  opacity: 0.85;
}

.footer__description {
  color: #888;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 25px 0;
  max-width: 300px;
}

.footer__badge-ofg {
  background: rgba(79, 179, 196, 0.06);
  border: 1px solid rgba(79, 179, 196, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.footer__badge-ofg img {
  height: 100px;
  width: auto;
}

.footer__badge-text {
  border-left: 2px solid rgba(79, 179, 196, 0.4);
  padding-left: 10px;
  line-height: 1.3;
}

.footer__badge-title {
  color: #ffffff;
  font-weight: 600;
  font-size: 11.5px;
  margin-bottom: 2px;
}

.footer__badge-subtitle {
  color: #4fb3c4;
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
}

/* Footer Titles */
.footer__title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}

.footer__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #4fb3c4;
}

/* Footer Lists */
.footer__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  color: #a8a8a8;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  line-height: 1.6;
  font-weight: 400;
}

.footer__link .icon {
  flex-shrink: 0;
  transition: all 0.25s ease;
  color: #4fb3c4;
  opacity: 0.9;
}

.footer__link:hover {
  color: #4fb3c4;
  padding-left: 5px;
}

.footer__link:hover .icon {
  opacity: 1;
  transform: scale(1.1);
}

/* Footer Bottom */
.footer__bottom {
  color: #666;
  padding: 0;
  font-size: 13px;
}

.footer__copyright {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer__copyright span {
  color: #555;
  font-weight: 400;
}

.footer__bottom-link {
  color: #888;
  text-decoration: none;
  transition: color 0.25s ease;
  font-size: 13px;
}

.footer__bottom-link:hover {
  color: #4fb3c4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 20px;
  }

  .footer__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
    padding-bottom: 30px;
    margin-bottom: 25px;
  }

  .footer__col,
  .footer__col:first-child {
    flex: 1 1 100%;
    width: 100%;
    min-width: 100%;
  }

  .footer__link:hover {
    padding-left: 5px;
  }

  .footer__copyright {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer__copyright span[aria-hidden] {
    display: none;
  }
}

/* Section logos - Carrousel défilant */
.section-logos {
  background: linear-gradient(135deg, #262424 0%, #1a1a1a 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.section-logos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #47b5c2 20%,
    #5bc9dc 50%,
    #47b5c2 80%,
    transparent 100%
  );
  z-index: 2;
}

/* Wrapper du slider */
.logos-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Gradient de fondu sur les côtés */
.logos-slider-wrapper::before,
.logos-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 1;
  pointer-events: none;
}

.logos-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #1a1a1a 0%, transparent 100%);
}

.logos-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #1a1a1a 0%, transparent 100%);
}

/* Animation de défilement */
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Container styling - Modern Grid Layout */
.img-description {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 50px 0;
}

/* Style des cards produit modernisé */
.img-link {
  position: relative;
  overflow: hidden;
  display: block;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
}

.img-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(71, 181, 194, 0.25);
}

.img-link img {
  width: 100%;
  height: 250px;
  transition: transform 0.4s ease;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

/* Effet zoom subtil au survol */
.img-link:hover img {
  transform: scale(1.05);
}

/* Titre moderne avec dégradé gris et bordure turquoise */
.img-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(38, 36, 36, 0.95) 0%,
    rgba(38, 36, 36, 0.85) 50%,
    transparent 100%
  );
  color: #fff;
  padding: 48px 15px 15px 15px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  font-family: Roboto, sans-serif;
  letter-spacing: 0.3px;
  opacity: 1;
  transition: all 0.3s ease;
  border-bottom: 3px solid #47b5c2;
}

/* Animation du titre au survol */
.img-link:hover .img-title {
  background: linear-gradient(
    to top,
    rgba(38, 36, 36, 0.98) 0%,
    rgba(38, 36, 36, 0.9) 60%,
    transparent 100%
  );
  padding-bottom: 20px;
  border-bottom-color: #5bc9dc;
}

/* Responsive: 2 colonnes sur tablette */
@media (max-width: 1024px) {
  .img-description {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Responsive: 1 colonne sur mobile */
@media (max-width: 768px) {
  .img-description {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 0;
  }

  .img-link img {
    height: 220px;
  }
}

.section-contact {
  padding: 40px 0;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

.section-needhelp h2 {
  color: white !important;
}

.section-needhelp .text-description p {
  color: white !important;
}

.mention-section {
  padding: 20px 0;
  color: #333;
}

.mention-section a {
  color: #4fb3c4;
}

.mention-section a:visited {
  color: #4fb3c4;
}

.breadcrumb-container {
  background-color: #333;
  font-size: 0.9rem;
  padding: 12px 20px;
  overflow-x: auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #4fb3c4;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 11px;
}

.breadcrumb-link {
  color: #4fb3c4;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-separator {
  color: #fff;
}

.mention-section h2 {
  padding: 10px 0;
  font-size: 20px;
}

.section-mention {
  font-size: 14px;
  padding: 30px 0;
}

.section-sitemap {
  font-size: 14px;
  padding: 30px 0;
}

.sitemap-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background-color: #444;
  margin: 30px 0;
  border-radius: 8px;
}

.sitemap-column {
  flex: 1 1 45%;
  padding: 20px;
  border-radius: 4px;
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-list > li {
  margin-bottom: 10px;
}

.sitemap-list > li > a {
  color: #4fb3c4;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.sitemap-list > li > a:hover {
  color: #4fb3c4;
  text-decoration: underline;
}

.sitemap-list ul {
  padding-left: 15px;
  margin-top: 5px;
  list-style-type: disclosure-closed;
  color: #fff;
}

.sitemap-list ul li a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}

.sitemap-list ul li a:hover {
  color: #4fb3c4;
}

.section-sitemap h2 {
  padding-bottom: 20px;
  color: #fff;
}

.faq-intro {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 30px;
}

.contact-link {
  color: #4fb3c4;
  text-decoration: underline;
  font-weight: bold;
}

.faq-category {
  padding: 10px 0;
  display: flex;
  gap: 20px;
  width: 1280px;
  text-align: left;
}

.faq-category h2 {
  font-size: 20px;
  color: #4fb3c4;
  margin-bottom: 15px;
  padding-bottom: 5px;
  width: 370px;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-list li {
  margin-bottom: 5px;
}

.faq-list li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.faq-list li a:hover {
  color: #4fb3c4;
  text-decoration: underline;
}

.faq-contact {
  padding: 20px 0;
}

.faq-contact-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.1rem;
  color: #fff;
  background-color: #4fb3c4;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.faq-contact-btn:hover {
  background-color: #fe9e40;
}

#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #4fb3c4;
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: #333;
}

#scrollToTopBtn i {
  font-size: 1.2rem;
}

.faq-category-answers {
}

.faq-category-answers a {
  font-size: 14px;
}

.faq-section-banner {
  width: 100%;
  background-image: url("../src/assets/image/fond-faq.jpg");
  /* Remplacez par le lien de votre image */
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 50px 0;
}

.faq-container {
  max-width: 1280px;
  margin: auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  /* Fond noir avec transparence */
  color: #ffffff;
  /* Couleur du texte en blanc */
  text-align: center;
  border-radius: 8px;
}

.faq-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align: left;
  color: #fff;
}

.faq-intro {
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
}

.faq-contact-link {
  color: #4eb1c2;
  /* Couleur du lien */
  text-decoration: underline;
}

.faq-contact-link:hover {
  color: #ffffff;
  /* Changement de couleur au survol */
}

.container-faq2 {
  background-color: #fff;
}

.container-faq1 {
  background-color: #f8f9fa;
}

.container-faq {
  width: 1280px;
  padding: 50px 20px;
  font-size: 14px;
  margin: auto;
  color: #333;
}

.container-faq h3 {
  padding-top: 20px;
  color: #333;
}

.container-faq a {
  color: #4eb1c2;
}

/* Form Section */
.contact-form h2 {
  color: #2c3e50;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form h2:before {
  content: "✉️";
  font-size: 32px;
}

.contact-form p {
  color: #7f8c8d;
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Form Styling */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 10px;
  padding: 5px 0;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #2c3e50;
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  color: #2c3e50;
  background-color: #fff;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #4fb3c4;
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 179, 196, 0.1);
}

/* Consent Box */
.consent {
  display: flex;
  align-items: flex-start;
  font-size: 13px;
  color: #2c3e50;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  background: rgba(79, 179, 196, 0.05);
  border-radius: 8px;
  border-left: 3px solid #4fb3c4;
}

.consent input[type="checkbox"] {
  margin-top: 3px;
  width: auto;
  flex-shrink: 0;
}

.consent label {
  margin: 0;
  font-weight: 500;
  line-height: 1.6;
}

.consent a {
  color: #4fb3c4;
  text-decoration: underline;
}

/* Submit Button */
.btn {
  padding: 12px 30px;
  background-color: #4fb3c4;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #3a9da7;
}

/* Contact Info Section */
.contact-info {
  flex: 0 0 450px;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(79, 179, 196, 0.3);
  overflow: hidden;
  align-self: flex-start;
  position: relative;
}

.contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #4fb3c4 0%, #5cc5d6 50%, #4fb3c4 100%);
  box-shadow: 0 2px 8px rgba(79, 179, 196, 0.5);
}

.coord {
  position: relative;
  padding: 48px 36px;
}

.contact-info h3 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 28px 0;
  padding: 0 0 16px 0;
  border-bottom: 2px solid rgba(79, 179, 196, 0.5);
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.contact-info h3:first-of-type {
  margin-top: 0;
}

.contact-info h3:first-of-type:before {
  content: "📍";
  font-size: 26px;
  filter: drop-shadow(0 2px 8px rgba(79, 179, 196, 0.4));
}

.contact-info h3:last-of-type:before {
  content: "🕒";
  font-size: 26px;
  filter: drop-shadow(0 2px 8px rgba(79, 179, 196, 0.4));
}

.contact-info p {
  color: #e8e8e8;
  line-height: 2;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-info .contact-methods {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info .contact-methods a {
  color: #f0f0f0;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  /*! border: 1px solid rgba(255, 255, 255, 0.3); */
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.contact-info .contact-methods a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.3s ease;
}

.contact-info .contact-methods a:first-child:after {
  content: "📞";
  font-size: 22px;
  filter: drop-shadow(0 2px 4px rgba(79, 179, 196, 0.3));
}

.contact-info .contact-methods a:last-child:after {
  content: "✉️";
  font-size: 22px;
  filter: drop-shadow(0 2px 4px rgba(79, 179, 196, 0.3));
}

.contact-info .contact-methods a:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateX(6px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.contact-info .contact-methods a:hover::before {
  width: 6px;
}

.contact-info .green-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(79, 179, 196, 0.4) 25%,
    rgba(79, 179, 196, 0.6) 50%,
    rgba(79, 179, 196, 0.4) 75%,
    transparent 100%
  );
  margin: 36px 0;
  position: relative;
}

.contact-info .green-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #4fb3c4;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(79, 179, 196, 0.6);
}

/* Styles améliorés pour le contenu */
.contact-info .company-name {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.contact-info .address {
  margin-bottom: 24px;
  font-size: 16px;
  color: #e8e8e8;
  line-height: 1.8;
  font-weight: 400;
}

/* Horaires structurés */
.contact-info .schedule {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info .schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  border-left: 4px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.contact-info .schedule-item:hover {
  background: rgba(255, 255, 255, 0.18);
  border-left-color: rgba(255, 255, 255, 0.6);
  border-left-width: 5px;
}

.contact-info .schedule-item.closed {
  opacity: 0.7;
  border-left-color: rgba(255, 255, 255, 0.2);
}

.contact-info .schedule-item .day {
  font-weight: 700;
  color: #f5f5f5;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-info .schedule-item .hours {
  color: #e0e0e0;
  font-weight: 600;
  font-size: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-info .schedule-item.closed .hours {
  color: #95a5a6;
  font-style: italic;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  margin: 0;
}

.contact-methods {
  font-size: 16px;
  color: #4fb3c4;
  text-align: center;
  margin-bottom: 30px;
}

.contact-methods a {
  color: #4fb3c4;
  text-decoration: underline;
  display: inline-block;
  margin-top: 10px;
}

.contact-methods a:hover {
  color: #3a9da7;
}

/* Alert Messages */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.alert-danger {
  background-color: #d9534f;
}

.alert-warning {
  background-color: #f0ad4e;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .title_contact {
    font-size: 28px;
  }
}

.contact-form {
  flex: 1;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 2px solid #e0e0e0;
  border-top: 4px solid #4fb3c4;
}

.contact-info {
  position: relative;
  background: url(../src/assets/image/fond-contact.jpg) no-repeat center center;
  background-size: auto;
  background-size: cover;
  color: white;
  padding: 40px;
}

.contact-info::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  /* Voile semi-transparent pour laisser voir l'image */
  z-index: 1;
  /* Place le filtre au-dessus de l'image de fond */
}

.coord {
  position: relative;
  z-index: 1000;
}

.section__contact {
  background-color: #fff;
  display: flex;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.page_intro {
  font-size: 14px;
  color: #333;
}

.section-propos {
  width: 100%;
  background-image: url("../src/assets/image/fond-faq.jpg");
  /* Remplacez par le lien de votre image */
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 50px 0;
  height: 45vh;
}

.section-propos h1 {
  color: #fff;
}

.container-propos {
  max-width: 1280px;
  width: 100%;
  /* Pour que la div occupe tout l'espace disponible */
  margin: 0 auto;
  /* Centre horizontalement */
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  text-align: center;
  position: absolute;
  left: 50%;
  /* Centre la div horizontalement */
  transform: translateX(-50%);
  /* Corrige le décalage du centre */
  bottom: 0;
}

.section-propos .page_intro {
  color: #fff;
  text-align: left;
}

.section-presentation {
  font-size: 14px;
  color: #333;
  padding: 20px;
}

.image-content img {
  height: 270px;
  border-radius: 8px;
}

.image-content {
  width: 50%;
}

.bg-dark {
  background-color: #f8f9fa;
}

section a {
  color: #4fb3c4;
}

.highlight {
  font-weight: bold;
}

.presentation-content {
  display: flex;
  gap: 50px;
}

.presentation-content .text-content {
  width: 50%;
}

.connect-cli {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.connect-cli a {
  font-size: 14px;
  color: #4fb3c4;
  transition: color 0.3s ease;
}

.connect-cli a:hover {
  color: #3a9aa8;
  text-decoration: underline;
}

.section__connexion {
  flex: 1;
  min-width: 400px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  border-top: 4px solid #4fb3c4;
}

.section__connexion h2 {
  color: #2c3e50;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section__connexion h2:before {
  content: "✨";
  font-size: 28px;
}

.section__inscription {
  flex: 0 0 380px;
  background: linear-gradient(135deg, #fcfcfc 0%, #ecf5f7 100%);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #c5dfe8;
  border-top: 4px solid #4fb3c4;
  align-self: flex-start;
}

.section__inscription h2 {
  color: #2c3e50;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section__inscription h2:before {
  content: "🔐";
  font-size: 28px;
}

.section__inscription .form-group label {
  color: #2c3e50;
}

.section__inscription input {
  background: #fff;
  border: 2px solid #e0e0e0;
  color: #2c3e50;
}

.section__inscription input::placeholder {
  color: #95a5a6;
}

.section__inscription input:focus {
  background: #fff;
  border-color: #4fb3c4;
  box-shadow: 0 0 0 3px rgba(79, 179, 196, 0.1);
}

.section__inscription a {
  color: #4fb3c4;
}

.section__inscription .ss_titre {
  color: #7f8c8d;
}

.connect-cli .form-group {
  margin-bottom: 20px;
}

.connect-cli .form-group label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 14px;
}

.connect-cli .form-group input,
.connect-cli .form-group select {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #fff;
  box-sizing: border-box;
}

.connect-cli .form-group input:focus,
.connect-cli .form-group select:focus {
  outline: none;
  border-color: #4fb3c4;
  box-shadow: 0 0 0 3px rgba(79, 179, 196, 0.1);
}

.connect-cli .form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.connect-cli .form-row .form-group {
  flex: 1 1 calc(50% - 8px);
  min-width: 0;
  max-width: 100%;
}

.connect-cli .form-row.consent {
  flex-wrap: nowrap;
  align-items: flex-start;
}

.connect-cli .text-center {
  margin: 0;
  padding: 0;
}

.connect-cli .btn {
  margin-top: 24px;
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #4fb3c4 0%, #3a9aa8 100%);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(79, 179, 196, 0.3);
}

.connect-cli .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(79, 179, 196, 0.4);
}

.connect-cli .btn:active {
  transform: translateY(0);
}

.connect-cli .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  padding: 16px;
  background: rgba(79, 179, 196, 0.05);
  border-radius: 8px;
  border-left: 3px solid #4fb3c4;
  margin: 20px 0;
}

.connect-cli .consent input[type="checkbox"] {
  margin-top: 3px;
  width: auto;
  flex-shrink: 0;
}

.connect-cli .consent label {
  margin: 0;
  font-weight: 500;
}

.connect-cli .consent a {
  font-size: 12px;
  display: block;
  margin-top: 8px;
  color: #4fb3c4;
}

.ss_titre {
  font-size: 14px;
  padding: 0 0 20px 0;
  color: #7f8c8d;
  line-height: 1.6;
}

.link-back {
  margin: 20px;
}

.mess-ok {
  text-align: center;
  color: white;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 500;
  background: linear-gradient(135deg, #5cb85c 0%, #4caf50 100%);
  border-radius: 8px;
  margin: 20px auto;
  max-width: 600px;
  box-shadow: 0 4px 12px rgba(92, 184, 92, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mess-ok:before {
  content: "✓";
  font-size: 24px;
  font-weight: bold;
}

.mess-err {
  text-align: center;
  color: white;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 500;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  border-radius: 8px;
  margin: 20px auto;
  max-width: 600px;
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mess-err:before {
  content: "⚠";
  font-size: 24px;
  font-weight: bold;
}

.section-fiche-cli {
  padding: 20px;
  background-color: #f9fafb;
}

.content-wrapper {
  width: 100%;
}

.tab-content {
  width: 100%;
}

.account-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.account-details,
.billing-address,
.delivery-address {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 25px;
  /*! border-top: 4px solid #47b5c2; */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.account-details h3,
.billing-address h3,
.delivery-address h3 {
  color: #2c3e50;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e9ecef;
}

.account-info,
.address-info {
  font-size: 14px;
  color: #495057;
  line-height: 1.8;
  margin-bottom: 20px;
}

.account-info p,
.address-info p {
  margin-bottom: 12px;
  padding-left: 5px;
}

.account-info strong,
.address-info strong {
  color: #2c3e50;
  font-weight: 600;
  display: inline-block;
  min-width: 120px;
}

.delivery-address .address-info {
  margin-bottom: 15px;
  padding: 18px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 10px;
  border-left: 3px solid #47b5c2;
}

.account-section .btn {
  display: inline-block;
  padding: 10px 24px;
  background: #47b5c2;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.account-section .btn:hover {
  background: #3a8d9e;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(71, 181, 194, 0.3);
}

.order-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 25px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.order-table thead {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.order-table th {
  padding: 16px 20px;
  text-align: center;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid #47b5c2;
}

.order-table tbody tr {
  background-color: #ffffff;
  transition: background-color 0.2s ease;
}

.order-table tbody tr:nth-child(even) {
  background-color: #f9fafb;
}

.order-table td {
  padding: 18px 20px;
  text-align: center;
  color: #2c3e50;
  font-size: 14px;
  border-bottom: 1px solid #e9ecef;
  vertical-align: middle;
}

.order-table td strong {
  color: #47b5c2;
  font-size: 15px;
  font-weight: 700;
}

#mes-commandes {
  margin-top: 30px;
}

#mes-commandes h3 {
  color: #2c3e50;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid #47b5c2;
}

#mes-commandes img {
  height: 40px;
  margin-bottom: 5px;
}

#mes-commandes a {
  color: #47b5c2;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
}

#mes-commandes a:hover {
  color: #3a8d9e;
  text-decoration: underline;
}

.order-table tbody tr td.text-muted {
  color: #6c757d;
  font-style: italic;
  padding: 30px;
  font-size: 15px;
}

#mes-commandes strong {
  font-size: 20px;
}

#mon-compte p {
  font-size: 12px;
  padding: 5px 0;
  margin: 0;
}

#mon-compte h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

#mon-compte h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  /*! background-color: #4fb3c4; */
  margin-top: 4px;
  /* Espace entre le texte et la ligne */
}

#mon-compte .btn {
  text-decoration: none;
  font-size: 14px;
  padding: 10px 20px;
}

#mon-compte .text-center {
  margin: 10px 0;
  text-align: right;
}

.product-category {
}

.product-grid {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.product-card {
  position: relative;
  overflow: hidden;
  width: 300px;
  height: auto;
  display: inline-block;
}

.product-card img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  object-fit: cover;
}

/* Effet zoom et fondu au survol */
.product-card:hover img {
  transform: scale(1.1);
  filter: brightness(80%);
  overflow: hidden;
}

/* Titre en overlay */
.product-title {
  position: absolute;
  bottom: 00px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  /* Fond noir transparent */
  color: #fff;
  /* Texte blanc */
  padding: 10px;
  text-align: center;
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Afficher le titre au survol */
.product-card .product-title {
  opacity: 1;
  border-bottom: 3px solid #333;
}

.container-product-title {
  width: 100%;
  background-size: cover;
  background-position: center;
  height: calc(100vh - 220px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 120px 0 40px;
  /* Positionne le contenu vers le haut du visuel */
}

.product-category {
  width: 100%;
}

.bg-toile {
  background-image: url("../src/assets/image/fond-toile.jpg");
  background-size: cover;
  background-position: center;
}

.bg-desto {
  background-image: url("../src/assets/image/fond-desto.jpg");
  background-size: cover;
  background-position: center;
}

.bg-store {
  background-image: url("../src/assets/image/fond-store.jpg");
  background-size: cover;
  background-position: center;
}

.bg-voile {
  background-image: url("../src/assets/image/fond-voile.jpg");
  background-size: cover;
  background-position: center;
}

.container-product-content {
  background: rgba(0, 0, 0, 0.7);
  margin: auto;
  max-width: 1280px;
  /* Utilisation de max-width pour s'adapter aux écrans plus petits */
  padding: 20px;
  position: relative;
  bottom: 0;
  color: #fff;
  /* Ajout pour garantir une bonne lisibilité sur le fond sombre */
  box-sizing: border-box;
  /* Assure que le padding est inclus dans la largeur */
  border-radius: 8px;
  /* Optionnel : ajoute des coins arrondis */
}

.container-product-content h1,
.container-product-content .page_intro {
  color: #fff;
}

.btn-discover a {
  text-decoration: none;
}

.delivery-address,
.billing-address,
.account-details {
}

.promo-badge {
  background-color: #fe9e40;
  padding: 8px 12px;
  border-radius: 8px;
  color: #fff;
}

/* Store Content Layout */
.store-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .store-content {
    flex-direction: row;
  }
}

/* Image Gallery */
.image-gallery {
  flex: 1;
}

#mainImage {
  position: relative;
}

#mainImage img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.thumbnail-gallery {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.thumbnail {
  width: 80px;
  height: 80px;
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.2s;
  object-fit: cover;
}

.thumbnail:hover {
  transform: scale(1.1);
}

/* Product Details */
.product-details {
  flex: 1;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.budget {
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: bold;
}

.budget .icon {
  margin-left: 8px;
  height: 30px;
}

.product-description {
  font-size: 14px;
  line-height: 1.5;
}

.cta-button {
  background-color: #fe9e40;
  color: #fff;
  padding: 12px;
  text-align: center;
  border-radius: 36px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 10px;
  transition: background-color 0.3s;
  width: 50%;
  margin: 20px auto;
}

.cta-button:hover {
  background-color: #ff8c00;
}

/* Feature Icons */
.features-icons {
  display: flex;
  justify-content: space-around;
  padding: 10px 0px;
}

.feature-icon {
  width: 100px;
}

/* Product Document Download */
.menu-tech {
  background-color: #f8f9fa;
}

.menu-tech li {
  display: inline;
  font-size: 20px;
  margin-right: 20px;
  font-weight: bold;
}

.menu-tech a {
  text-decoration: none;
}

.menu-tech a:hover {
  border-bottom: 1px solid #4fb3c4;
}

.menu-tech ul {
  margin: 0;
  padding: 0;
}

.product-text {
  color: #333;
  font-size: 14px;
  padding: 20px;
}

.section-title {
  margin-bottom: 20px;
  padding-bottom: 10px;
  /* Harmonisation de la couleur avec la bordure */
  text-align: left;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  /* Ajuster pour la longueur souhaitée du soulignement */
  height: 1px;
  /* Épaisseur du soulignement */
  background-color: #4eb1c2;
  border-radius: 2px;
  /* Donne un effet arrondi au soulignement */
}

.image-options {
  display: flex;
  gap: 20px;
}

.image-option img {
  width: 200px;
}

.image-option {
  background-color: #eee;
  padding: 10px;
  border-radius: 8px;
}

.option-text {
  font-size: 12px;
  font-weight: bold;
}

.catalog-links {
  display: flex;
  gap: 15px;
  margin: 15px 0;
  flex-direction: column;
}

.catalog-link {
  display: flex;
}

.catalog-link a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(74, 85, 104, 0.3);
}

.catalog-link a:hover {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 85, 104, 0.5);
}

.catalog-link a i {
  font-size: 20px;
  color: #fff;
  transition: transform 0.3s ease;
}

.catalog-link a:hover i {
  transform: scale(1.15) rotate(5deg);
}

.image-container {
  float: right;
  margin-left: 40px;
  border-radius: 8px;
}

.image-container img {
  width: 400px;
  border-radius: 8px;
  margin-top: 20px;
}

.promo-badge-product {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #fe9e40;
  color: #fff;
  padding: 20px 10px;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  border-radius: 20px;
  box-shadow: 0px 10px 35px rgba(254, 158, 64, 0.7);
  z-index: 10;
  min-width: 140px;
  text-align: center;
}

#mainImage img {
  position: relative;
  width: 100%;
  height: 340px;
  /* ajustez selon vos besoins */
  overflow: hidden;
}

.promo-menu {
  color: #fe9e40;
}

.section-product {
  padding-top: 40px;
}

.configurator-container {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 0;
}

.configurator-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.configurator-image {
  padding: 0px 0;
  width: 25%;
}

.configurator-image img {
  width: 100%;
  height: auto;
}

.configurator-content {
  background: #efefef;
  padding: 15px;
  width: 52%;
}

.configurator-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step {
  border-radius: 8px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.step-button {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: #2c3e50;
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

.step-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4fb3c4 0%, #3a9aa8 100%);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 16px;
  font-size: 20px;
  box-shadow: 0 3px 8px rgba(79, 179, 196, 0.3);
  flex-shrink: 0;
}

.step-button:disabled .step-number {
  background: linear-gradient(135deg, #bdc3c7 0%, #95a5a6 100%);
  box-shadow: none;
}

.step-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1;
  gap: 12px;
}

.step-label > span:first-child {
  font-size: 15px;
  font-weight: 600;
  color: #2c3e50;
}

.step-summary {
  font-size: 13px;
  color: #4fb3c4;
  font-weight: 500;
  padding: 4px 12px;
  background: rgba(79, 179, 196, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(79, 179, 196, 0.2);
}

.step-form {
  padding: 24px;
  border: none;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  margin-top: 0;
  border-top: 3px solid #4fb3c4;
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.03);
}

.configurator-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
  color: #333;
}

.summary {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

.add-to-cart-button {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  background-color: #fe9e40;
  color: #fff;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  font-weight: bold;
  margin: 20px 0;
}

/* Style pour masquer les boutons radio et afficher un style sélectionné moderne */
.color-radio {
  display: none;
}

.color-label {
  display: inline-block;
  /* border: 1px solid #ccc; */
  border-radius: 8px;
  margin: 5px 0;
  padding: 5px;
  /* width: 144px;*/
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
  /* height: 100px; */
  position: relative;
  /* Nécessaire pour le positionnement de la coche */
  /*! width: 144px; */
}

.color-label .color-option {
  position: relative;
}

.color-label .fabric-name {
  font-weight: bold;
}

.color-radio:checked + .color-label {
  border-color: #4db0c1;
  box-shadow: 0 0 8px rgba(79, 179, 196, 0.6);
  background-color: #4fb3c4;
}

.color-radio:checked + .color-label::after {
  content: "✔";
  position: absolute;
  top: 6px;
  right: 10px;
  width: 20px;
  /* Ajustez la taille si nécessaire */
  height: 20px;
  background-color: #4db0c1;
  /* Couleur de fond pour la coche */
  color: white;
  font-size: 15px;
  /* Taille de la coche */
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 8px;
  /* Pour un effet quart de cercle */
  border-bottom-left-radius: 70%;
  transform: translate(30%, -20%);
  /* Ajustez pour le positionnement exact */
  padding: 5px;
  font-weight: bold;
}

.submit-button {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #4fb3c4;
  color: #fff;
  border: none;
  border-radius: 35px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}

.img_loupe {
  margin-top: -80px;
}

.color-txt-tissu p {
  font-size: 12px;
  padding: 5px 0;
  margin: 0;
  background-color: #333;
  margin-top: -5px;
  color: #fff;
}

.promo-tissu {
  font-size: 14px;
  padding: 3px 0;
  margin: 0;
  background-color: #fe9e40;
  border-radius: 0 0 4px 4px;
  font-weight: bold;
  color: #fff;
}

.color-label img {
  border-radius: 4px 4px 0 0;
  /*! width: -moz-available; */
  width: 144px;
}

.sidebar-price {
  background: linear-gradient(135deg, #2c2c2c 0%, #111 100%);
  color: #fff;
  position: sticky;
  top: 20px;
  /*! border-radius: 8px; */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.fabric-name {
  padding: 10px;
  font-size: 12px;
  background-color: #efefef;
  color: #333;
  margin: 6px;
  border-radius: 4px;
  margin-top: 25px;
  border-bottom: 0px solid #4fb3c4;
}

.brand-name {
  color: #333;
  font-size: 18px;
  font-weight: bold;
}

.select-col {
  max-height: 520px;
  overflow: scroll;
}

/* Masquer les checkboxes */
.color-options input[type="checkbox"],
.motif-options input[type="checkbox"] {
  display: none;
}

/* Style des labels pour un look moderne */
.label_choix_couleur {
  display: inline-block;
  padding: 5px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
  /* Couleur de texte par défaut */
  background-color: #fff;
  /* Couleur de fond par défaut */
  border: 1px solid #4fb3c4;
  /* Bordure */
  font-size: 12px;
}

/* Style au survol */
.label_choix_couleur:hover {
  background-color: #328a99;
  /* Fond au survol */
  color: #fff;
}

/* Style lorsque la checkbox est cochée */
.color-options input[type="checkbox"]:checked + .label_choix_couleur,
.motif-options input[type="checkbox"]:checked + .label_choix_couleur {
  background-color: #4fb3c4;
  color: #fff;
  border: 1px solid #4fb3c4;
}

/* Espacement et alignement */
.color-options,
.motif-options {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: 5px;
  padding: 0px 6px;
  font-weight: bold;
  box-shadow: #333;
}

.config-schema img {
  width: 400px;
  margin: auto;
  text-align: center;
}

.config-schema {
  width: 400px;
  margin: auto;
}

/* Style de conteneur */
/* Style des labels */
/* Style des inputs */
.input_dimension {
  width: 90px;
  padding: 8px 10px;
  font-size: 16px;
  border: 2px solid #4fb3c4;
  border-radius: 33px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: roboto;
  font-weight: bold;
  text-align: center;
}

/* Couleur et ombre lors de la mise au focus */
.input_dimension:focus {
  border-color: #333;
  box-shadow: 0 0 5px rgba(79, 179, 196, 0.5);
}

/* Style de l'unité de dimension */
.dimension_unit {
  font-size: 16px;
  color: #4fb3c4;
}

/* Style de l'étape pour alignement vertical (optionnel) */
.etape_col {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.etape_help {
  margin: 15px;
  padding: 10px;
  background-color: #eee;
  color: #333;
  border-radius: 5px;
  font-size: 12px;
}

.etape_help img {
  float: right;
  padding-left: 10px;
}

.option_text {
  background-color: #333;
  padding: 7px 0;
  color: #fff;
  margin-top: -5px;
  border-radius: 0 0 4px 4px;
  font-size: 10px;
  font-weight: bold;
  max-width: 144px;
}

/* Style du conteneur de marquage */
/* Style pour chaque groupe de formulaire */
.form_group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  box-sizing: border-box;
}

/* Style des labels */
.form_group label {
  font-size: 12px;
  color: #333;
}

/* Style des inputs */
/* Effet au focus */
.accessoire_item {
  display: inline-block;
  border-radius: 8px;
  margin: 5px 0;
  padding: 5px;
  width: 144px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.accessoire_item img {
  width: 144px;
  border-radius: 4px 4px 0 0;
}

.accessoire_item input {
  border: 0;
  width: 40px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  font-family: Roboto;
  border-radius: 26px;
  padding: 5px 10px;
}

.quantity_input_acc {
  background-color: #ccc;
  padding: 10px;
  margin-top: -5px;
  padding-bottom: 15px;
}

.bloc-comm {
  padding: 5px;
}

.bloc-comm textarea {
  padding: 10px;
  border: 0;
  background-color: #eee;
  font-size: 12px;
  font-family: Roboto;
  border-radius: 8px;
}

.original-price {
  color: #aaa;
  text-decoration: line-through;
  font-size: 18px;
}

.bloc-selecteur {
  padding-bottom: 20px;
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.3);
  /* Ombre en bas uniquement */
}

.loupe_choix_tissu {
  position: relative;
  /* Le conteneur doit être en position relative pour que l'image se positionne par rapport à lui */
}

.loupe_choix_tissu img {
  width: 35px;
  margin-top: 0px;
  position: absolute;
  /* Utiliser 'absolute' pour positionner l'image par rapport à .loupe_choix_tissu */
  top: 35px;
  left: -15px;
  /* Ajustez cette valeur selon le positionnement souhaité horizontalement */
}

.fancybox-title {
  font-size: 18px !important;
  text-align: center;
  background-color: #333;
  color: #fff;
  border-top: 3px solid #4fb3c4;
}

.fancybox-title-inside-wrap {
  padding: 15px !important;
}

.price-container {
  /*! background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%); */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.price-container form {
  padding: 15px;
}

.price {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  padding: 20px;
  /*! background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%); */
  /*! border-bottom: 3px solid #4fb3c4; */
}

.price .label {
  display: block;
  color: #bdc3c7;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.price .current-price {
  color: #4fb3c4;
  font-size: 32px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 5px;
}

.price .original-price {
  text-decoration: line-through;
  color: #95a5a6;
  font-size: 20px;
  font-weight: 400;
  opacity: 0.8;
}

.warranty {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 13px;
  background: rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(79, 179, 196, 0.2);
}

.warranty-item {
  display: flex;
  align-items: center;
  color: #ecf0f1;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border-left: 3px solid #4fb3c4;
  transition: all 0.3s ease;
}

.warranty-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(3px);
}

.warranty i {
  margin-right: 12px;
  font-size: 18px;
  color: #4fb3c4;
  min-width: 20px;
  text-align: center;
}

.warranty-item img {
  width: 40px;
  margin-right: 4px;
}

/* Configuration Summary Sidebar */
.config-summary {
  margin-top: 20px;
  padding: 10px;
  background: #212121;
  /*! border-radius: 5px; */
  /*! max-width: 244px; */
  box-sizing: border-box;
}

.config-summary h4 {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}

.config-summary h4 i {
  margin-right: 6px;
  color: #5bc0de;
  font-size: 12px;
}

.config-summary h4 span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.config-summary-item {
  display: flex;
  align-items: start;
  margin-bottom: 8px;
  font-size: 11px;
}

.config-summary-item i {
  width: 16px;
  min-width: 16px;
  color: #5bc0de;
  margin-right: 6px;
  margin-top: 2px;
  font-size: 11px;
}

.config-summary-item-content {
  flex: 1;
  min-width: 0;
}

.config-summary-item-content strong {
  color: #999;
  display: block;
}

.config-summary-item-content span {
  color: #fff;
  word-wrap: break-word;
  display: block;
  line-height: 1.3;
}

.panier-row {
  display: flex;
  gap: 20px;
}

/* General container for the cart page */
/* Sections panier - conteneurs pour chaque type de produit */
.section_panier_toile_metre,
.section_panier_voile_ombrage,
.section_panier_store {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

/* Product Section */
.product_container {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.product_row {
  display: flex;
  gap: 16px;
}

.product_image_container {
  width: 22%;
  position: relative;
}

.product_image_promo {
  position: relative;
}

.product_image_promo .product_image {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
}

.promo-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 16px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 3px 8px rgba(255, 107, 53, 0.4);
  z-index: 10;
  line-height: 1.3;
  display: inline-block;
  text-align: center;
}

.product_image {
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.product_details {
  flex: 1;
}

.product_title {
  font-size: 16px;
  margin-bottom: 12px;
}

.product_specs,
.additional_options {
  width: 100%;
}

.spec_group,
.option_group {
  flex: 0;
  display: table;
}

.spec_item,
.spec_value,
.product_comment {
}

/* Quantity and Total Section */
.quantity_container,
.total_container {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  background-color: #eee;
  padding: 10px 0;
  border-radius: 0 0 8px 8px;
  font-size: 18px;
}

.quantity_label,
.total_label {
  font-weight: bold;
  padding: 10px 0;
}

.quantity_input,
.total_value {
  text-align: right;
  font-weight: bold;
  font-size: 1.25rem;
}

.quantity_input {
  width: 60px;
  padding: 5px 10px;
  text-align: center;
  border: 0px solid #ccc;
  border-radius: 45px;
  background-color: #fff;
  font-family: roboto;
  margin: 5px;
}

/* Conditionnement Section */
.section_conditionnement {
  border-radius: 8px 8px 0 0;
  background-color: #f9f9f9;
}

.conditionnement_options {
  display: flex;
  gap: 24px;
  padding: 16px;
}

.radio_condi {
  display: none;
}

.conditionnement_option {
  background-color: #333;
  text-align: center;
  border-radius: 4px;
  overflow: hidden;
}

.image_condi {
  max-width: 150px;
  height: auto;
}

.conditionnement_text {
  font-weight: bold;
  font-size: 14px;
  padding: 5px;
  color: #fff;
  margin-top: -3px;
}

.conditionnement_advice {
  background-color: #eeeeee;
  padding: 20px 10px;
  font-size: 14px;
  border-radius: 0 0 4px 4px;
  color: #777;
}

/* Recap Section */
.panier_recap {
  width: 30%;
  color: #333;
}

.section_recap {
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  position: sticky;
  top: 20px;
}

.recap_title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #2c3e50;
  padding-bottom: 16px;
  border-bottom: 3px solid #4fb3c4;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.recap_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid #f5f5f5;
}

.select_pays {
  padding: 10px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  background: #fafafa;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234fb3c4' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.select_pays:hover {
  border-color: #4fb3c4;
  background-color: #fff;
}

.select_pays:focus {
  outline: none;
  border-color: #4fb3c4;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(79, 179, 196, 0.15);
}

.recap_label {
  font-weight: 500;
  color: #555;
  font-size: 14px;
}

.recap_value {
  text-align: right;
  font-weight: 700;
  color: #2c3e50;
  font-size: 14px;
}

.recap_total_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding: 20px 0;
  border-top: 3px solid #4fb3c4;
  background: linear-gradient(
    135deg,
    rgba(79, 179, 196, 0.05) 0%,
    rgba(79, 179, 196, 0.02) 100%
  );
  border-radius: 8px;
  padding: 20px 16px;
}

.total_label {
  font-size: 1.2rem;
  color: #2c3e50;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.total_value {
  font-size: 1.6rem;
  color: #4fb3c4;
  font-weight: 700;
}

.recap_validation {
  text-align: center;
  margin-top: 28px;
}

.btn_valider_commande {
  background: linear-gradient(135deg, #fe9e40 0%, #ff8c1a 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(254, 158, 64, 0.35);
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn_valider_commande::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn_valider_commande:hover::before {
  width: 300px;
  height: 300px;
}

.btn_valider_commande:hover {
  background: linear-gradient(135deg, #e68a2e 0%, #d97a1a 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(254, 158, 64, 0.45);
}

.bloc_panier_continue {
  margin-top: 20px;
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.link_achats {
  color: #4fb3c4;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link_achats:hover {
  color: #3a8d9e;
  transform: translateX(-3px);
}

.link_achats::before {
  content: "←";
  font-size: 16px;
  transition: transform 0.3s ease;
}

.link_achats:hover::before {
  transform: translateX(-3px);
}

.panier-prod {
  width: 70%;
}

.product_details {
  padding: 16px;
  border-radius: 8px 8px 0 0;
  background-color: #f9f9f9;
}

/* Product Specs Section */
.product_specs {
  margin-bottom: 16px;
}

.product_title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
}

.spec_group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 5px;
}

.spec_item {
  color: #555;
  font-weight: normal;
  font-size: 14px;
}

.spec_value {
  font-weight: bold;
  color: #333;
  text-align: right;
  font-size: 16px;
}

/* Additional Options Section */
.additional_options {
  padding-top: 12px;
  border-top: 1px solid #ddd;
  color: #777;
  font-size: 14px;
}

.option_group ul {
  list-style-type: none;
  padding: 0;
  margin: 8px 0;
}

.option_group ul ul {
  margin-left: 16px;
  padding-left: 0;
}

.option_group li {
  margin-bottom: 4px;
}

.product_comment ul {
  list-style-type: none;
  padding: 0;
  margin: 8px 0;
}

.product_comment li {
  margin-bottom: 4px;
  font-style: italic;
  color: #555;
}

.total_container {
  font-size: 14px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.total_price {
  font-size: 34px;
  color: #4eb1c2;
  font-weight: bold;
  text-align: right;
  margin-left: auto;
  font-weight: bold;
  margin-right: 20px;
}

.bloc_panier_continue a {
  color: #52b1c1;
}

.recap-line {
  background-color: #ddd;
  height: 1px;
  margin-bottom: 15px;
}

.quantity_container .quantity_label {
  padding-left: 20px;
  color: #333;
}

.step-title {
  color: #333;
  padding: 5px;
  font-size: 14px;
  margin-top: 20px;
}

#hauteurlambrequin,
#nombrelambrequin {
  padding: 10px;
  font-family: Roboto;
  font-size: 20px;
  font-weight: bold;
  width: 70px;
  border-radius: 60px;
  text-align: center;
  border: 2px solid #4eb1c2;
}

.etape_row {
  padding: 10px;
  display: flex;
}

#commentaire_lyre {
  font-family: roboto;
}

.product_container {
  position: relative;
}

.delete_cross {
  position: absolute;
  top: 00px;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
}

.delete-cross-link {
  text-decoration: none;
  color: #ff0000;
  /* Rouge pour attirer l'attention */
  font-weight: bold;
  transition: color 0.3s ease;
}

.delete-cross-link:hover {
  color: #cc0000;
  /* Un rouge plus foncé au survol */
}

.livraison-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.liste-livraison,
.ajout-livraison {
  flex: 1;
  border-radius: 5px;
  background: #f9f9f9;
}

.addresses {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.address-item {
  padding: 15px;
  background: #ededed;
  border-radius: 5px;
  font-size: 14px;
}

.address-details {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.address-details li {
  margin-bottom: 5px;
}

.address-form {
  text-align: center;
}

.btn-custom {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4eb1c2;
  color: white;
  border: none;
  border-radius: 27px;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

.btn-custom:hover {
  background-color: #3a91a0;
}

.form-livraison {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.form-submit {
  text-align: center;
  margin-top: 20px;
}

.note {
  display: block;
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 15px;
}

#section-recap td {
  text-align: inherit;
}

#section-recap td img {
  width: 144px;
  height: auto;
}

#section-recap .arttitre {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  font-weight: 600;
  color: #2c3e50;
}

#section-recap .arttitre img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#section-recap .artnom {
  flex: 1;
  line-height: 1.6;
}

#section-recap .pxpan {
  text-align: center !important;
  font-size: 16px;
  font-weight: 700;
  color: #2c3e50;
  padding: 20px 15px !important;
}

#section-recap .tdart {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 400px;
}

#cgv_com {
  padding: 20px;
  max-height: 400px;
  overflow: scroll;
  margin-top: 40px;
  background-color: #efefef;
  font-size: 12px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#panembal {
  display: block;
}

/* Conteneur grid livraison */
.delivery-grid {
  border-radius: 12px;
  padding: 25px;
  display: grid;
  grid-template-columns: 180px 1fr 1.2fr;
  gap: 20px;
  align-items: stretch;
}

/* Colonne conditionnement */
.delivery-packaging {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-left: 3px solid #999;
}

.delivery-packaging img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 12px;
}

.delivery-packaging-title {
  font-weight: 600;
  color: #555;
  font-size: 13px;
  text-align: center;
}

.delivery-packaging-type {
  font-size: 12px;
  color: #777;
  margin-top: 6px;
  text-align: center;
}

/* Colonne adresse */
.delivery-address {
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  /*! border-left: 3px solid #47b5c2; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.delivery-address-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.delivery-address-icon {
  font-size: 20px;
  margin-right: 8px;
}

.delivery-address-title {
  font-size: 15px;
  color: #333;
}

.delivery-address-content {
  line-height: 1.8;
  font-size: 14px;
  padding-left: 28px;
}

.delivery-address-name {
  color: #111;
  font-weight: 600;
  margin-bottom: 4px;
}

.delivery-address-street,
.delivery-address-city,
.delivery-address-country {
  color: #666;
}

.delivery-address-city {
  margin-bottom: 6px;
}

.delivery-address-country {
  margin-bottom: 6px;
}

.delivery-address-phone {
  color: #47b5c2;
  font-weight: 600;
}

.delivery-address-actions {
  margin-top: 15px;
  padding-left: 28px;
}

.delivery-modify-btn {
  display: inline-block;
  padding: 6px 14px;
  background: #47b5c2;
  color: white;
  text-decoration: none;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  transition: background 0.2s;
}

.delivery-modify-btn:hover {
  background: #3da3b0;
}

/* Colonne estimation */
.delivery-estimate-wrapper {
  display: flex;
  flex-direction: column;
}

.delivery-estimate {
  padding: 25px;
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-left: 3px solid #4caf50;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.delivery-estimate-content {
  text-align: center;
  width: 100%;
}

.delivery-estimate-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.delivery-estimate-icon {
  font-size: 28px;
  margin-right: 10px;
}

.delivery-estimate-title {
  color: #2e7d32;
  font-size: 16px;
}

.delivery-date-card {
  background: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  margin: 10px;
}

.delivery-date-card:first-of-type {
  margin-bottom: 12px;
}

.delivery-date-label {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.delivery-date-value {
  color: #2e7d32;
  font-size: 14px;
  display: block;
}

#cgv_cbx {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  padding: 20px;
  border-radius: 10px;
  /*! border: 2px solid #4fb3c4; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin: 20px 0;
}

#cgv_cbx label {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

#cgv_cbx label:hover {
  color: #4fb3c4;
}

#cgv_cbx input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #4fb3c4;
  border-radius: 4px;
}

.recap-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin: 0;
}

.recap-table thead {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.recap-table th {
  padding: 18px 20px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  border-bottom: 3px solid #47b5c2;
}

.recap-table th:nth-child(2),
.recap-table th:nth-child(3),
.recap-table th:nth-child(4) {
  text-align: center;
}

.recap-table tbody tr {
  background-color: #ffffff;
}

.recap-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.recap-table tbody tr:nth-child(even) {
  background-color: #f9fafb;
}

.recap-table td {
  padding: 20px;
  font-size: 14px;
  border-bottom: 1px solid #e9ecef;
  vertical-align: middle;
}

.casevide {
  display: none !important;
}

.recap-table .tdtotal {
  font-weight: 600;
  color: #2c3e50;
  background-color: #f8f9fa !important;
  text-align: left !important;
}

.recap-table tbody tr:has(.tdtotal) {
  background-color: #f8f9fa !important;
}

#section-recap .recap-table tbody tr:has(.tdtotal) .pxpan {
  text-align: center !important;
  padding-right: 0 !important;
}

.artdescri {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px;
  margin-top: 12px;
  padding: 15px;
  border-left: 3px solid #47b5c2;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.artdescri td {
  background-color: transparent;
  padding: 8px 12px;
  vertical-align: top;
  font-size: 13px;
  color: #495057;
  line-height: 1.6;
}

.artdescri table {
  width: 100%;
  border-collapse: collapse;
}

.artdescri tr:not(:last-child) td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.oney-container {
  display: grid;
  grid-template-columns: 280px repeat(2, 1fr);
  gap: 30px;
  padding: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  margin: 30px 0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #81bc00;
}

.oney-sim {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.oney-sim img {
  max-width: 180px;
  height: auto;
}

.oney-sim a {
  color: #47b5c2;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: color 0.2s;
}

.oney-sim a:hover {
  color: #3a8d9e;
  text-decoration: underline;
}

.oney {
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  color: #2c3e50;
  font-size: 13px;
  line-height: 1.8;
}

.oney span {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #81bc00;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e9ecef;
}

.btn-enabled {
  border: 0;
  background-color: #47b5c2;
  color: white;
  font-weight: 700;
  font-size: 14px;
  float: right;
  font-family: century gothic;
  padding: 10px 20px;
  cursor: pointer;
  margin-left: 10px;
  text-decoration: none;
  border-radius: 40px;
  transition: background-color 0.3s ease;
}

.btn-enabled:hover {
  background-color: #3a8d9e;
}

.btn-disabled {
  background-color: #c4c4c4;
  color: #ffffff;
  cursor: not-allowed;
  border: 0;
  color: white;
  font-weight: 700;
  font-size: 14px;
  float: right;
  font-family: century gothic;
  padding: 10px 20px;
  cursor: not-allowed;
  margin-left: 10px;
  text-decoration: none;
  border-radius: 40px;
  transition: background-color 0.3s ease;
}

.skeepers_product__stars {
  font-weight: bold;
}

.info-box {
  background-color: #eee;
  padding: 10px;
  margin: 5px;
  font-size: 12px;
  display: flex;
  gap: 20px;
  border-radius: 4px;
  align-items: center;
}

.info-box img {
  width: 30px;
}

.error-message {
  padding: 10px;
  margin: 5px;
  font-size: 12px;
  color: #fff;
  background-color: #d7252e;
  border-radius: 4px;
  font-weight: bold;
}

.help_title {
  font-size: 14px;
  font-weight: bold;
}

.help_title::after {
  content: "";
  border-bottom: 1px solid #ccc;
  width: 50px;
  margin: 10px 0;
  display: block;
}

.config-dim {
  font-size: 12px;
  font-weight: bold;
}

.config-dim input {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 5px;
  width: 70px;
}

/* Bordure verte si valide */
.config-dim input:valid {
  border-color: green;
}

/* Bordure orange si invalide */
.config-dim input:invalid {
  border-color: red;
}

#container_lyre {
  margin: 10px;
}

#bloc_lambrequin {
  margin: auto;
  width: 75%;
}

.sansmarquage {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  gap: 15px;
  width: 100%;
}

.sansmarquage label {
  display: block;
  margin: 5px;
  color: #333;
  font-size: 14px;
  font-weight: bold;
}

.sansmarquage input {
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  /*! background-color: #1a1a1a; */
  color: #ffffff;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  width: 95%;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
  margin: 5px;
}

.sansmarquage input:focus {
  outline: none;
  border-color: #47b5c2;
}

.sansmarquage input::placeholder {
  color: #777;
}

#ral {
  border: 0;
  padding: 3px;
  font-size: 11px;
  border-radius: 4px;
  font-family: Roboto;
}

.delete-address-btn {
  position: relative;
  top: -10px;
  right: -px;
  background: none;
  border: none;
  color: #ff0000;
  font-size: 26px;
  cursor: pointer;
  /*! line-height: 1; */
  float: right;
  font-weight: bold;
  text-decoration: none;
}

.carousel-item {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  width: 100%;
}

.carousel-item.active {
  opacity: 1;
  position: relative;
}

.carousel-inner {
  position: relative;
  overflow: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

label.error {
  color: #d42a2a;
}

.mess-err-stock {
  text-align: center;
  color: white;
  padding: 10px;
  font-size: 14px;
  background-color: #a51515;
  font-weight: bold;
  border-radius: 8px;
}

.affaire {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.affaire:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(71, 181, 194, 0.2);
}

.photo_aff {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  position: relative;
}

.photo_aff img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.affaire:hover .photo_aff img {
  transform: scale(1.05);
}

.nom_aff {
  font-size: 16px;
  font-weight: 700;
  color: #2c3e50;
  margin: 15px 15px 8px;
  line-height: 1.4;
  min-height: 45px;
}

.nom_aff .dimensions {
  font-weight: 400;
  font-size: 13px;
  color: #666;
}

.descri_aff {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0 15px 15px;
  flex-grow: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.prix_aff {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  margin: 0 15px 5px;
}

.promo_aff {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ff9e40 0%, #fe8e20 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(254, 142, 32, 0.4);
  z-index: 10;
}

.prixpromo_aff {
  font-size: 24px;
  color: #47b5c2;
  font-weight: 700;
  margin: 0 15px 15px;
}

.prixpromo_aff.prix-seul {
  margin-top: auto;
}

.container-affaire {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .container-affaire {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .container-affaire {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: #f5f5f5;
  color: #2c3e50;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.pagination a:hover {
  background: #47b5c2;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(71, 181, 194, 0.3);
}

.pagination .active {
  background: #47b5c2;
  color: #fff;
  border-color: #47b5c2;
  box-shadow: 0 2px 8px rgba(71, 181, 194, 0.2);
}

/* Style du formulaire */
.search-form {
  display: flex;
  gap: 10px;
  margin: 30px auto;
  max-width: 600px;
  background: #ffffff;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.search-form input[type="text"] {
  flex: 1;
  padding: 12px 18px;
  font-size: 15px;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
  color: #2c3e50;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

.search-form input[type="text"]::placeholder {
  color: #95a5a6;
}

.search-form input[type="text"]:focus {
  border-color: #47b5c2;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(71, 181, 194, 0.1);
}

.search-form button {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #47b5c2 0%, #3a9aa8 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.search-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(71, 181, 194, 0.4);
}

.form-add-cart {
  padding: 0 15px 15px;
  margin-top: auto;
}

.form-add-cart .submit-button {
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, #47b5c2 0%, #3a9aa8 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-add-cart .submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(71, 181, 194, 0.4);
}

.form-add-cart .submit-button:active {
  transform: translateY(0);
}

.intro-promos {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 20px 0 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.intro-promos a {
  color: #47b5c2;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.intro-promos a:hover {
  color: #3a9aa8;
  text-decoration: underline;
}

/* Message aucun résultat */
.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
}

.no-results p {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

.no-results .back-link {
  color: #47b5c2;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.no-results .back-link:hover {
  color: #3a9aa8;
  text-decoration: underline;
}

.needhelp-config img {
  width: 255px;
}

.needhelp_button {
  padding: 12px 30px;
  background-color: #4fb3c4;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s;
}

.home-need {
  display: flex;
  justify-content: center;

  align-items: center;

  gap: 10px;

  flex-direction: column;
}

#ban-need-cart {
  margin-top: 50px;
  border-radius: 8px;
}

/* cache un bloc sans casser le layout (flex grid inchangés) */
.hidden {
  display: none !important;
}

/* Stock info déstockage - Affichage du stock disponible */
.stock-info-dimension {
  margin-top: 15px;
  padding: 10px;
  background: #e8f4f8;
  border-radius: 4px;
}

.stock-info-dimension > div:first-child {
  font-weight: bold;
  color: #0066cc;
  margin-bottom: 5px;
}

.stock-info-dimension #debit-calcul {
  font-size: 0.9em;
  color: #666;
}

/* pour l'auto-scroll interne (si tu utilises #container__scroll) */
#container__scroll {
  max-height: calc(100vh - 160px);
  /* ajuste si besoin */
  overflow: auto;
  scroll-behavior: smooth;
}

.is-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.stock_message {
  background-color: #cc3300;
  font-size: 12px;
  color: white;
  font-weight: bold;
  padding: 10px;
  margin-right: 10px;
  border-radius: 8px;
  display: none; /* Caché par défaut, affiché par JS si nécessaire */
}

.stock_message:not(:empty) {
  display: block; /* Afficher uniquement si contenu présent */
}

.step-content {
  padding: 10px;
}
