@charset "UTF-8";
.hautHeader {
  padding: 10px;
  text-align: center;
}

.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-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

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

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

.header-logo-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(79, 179, 196, 0.25) 30%, rgba(79, 179, 196, 0.35) 50%, rgba(79, 179, 196, 0.25) 70%, transparent);
}

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

.header-badge-ofg {
  background: linear-gradient(135deg, rgba(79, 179, 196, 0.08), rgba(79, 179, 196, 0.05));
  border: 1px solid rgba(79, 179, 196, 0.25);
  border-radius: 6px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-base);
}

.header-badge-ofg:hover {
  background: linear-gradient(135deg, rgba(79, 179, 196, 0.12), rgba(79, 179, 196, 0.08));
  border-color: rgba(79, 179, 196, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(79, 179, 196, 0.15);
}

.header-badge-ofg img {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}

.header-badge-ofg2 {
  padding: 6px 10px;
}

.header-badge-ofg2 img {
  height: 38px;
  width: auto;
}

.header-badge-text {
  border-left: 1.5px solid rgba(79, 179, 196, 0.4);
  padding-left: 7px;
  line-height: 1.2;
}

.header-badge-title {
  color: #ffffff;
  font-weight: 600;
  font-size: 9px;
  margin-bottom: 1px;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.header-badge-subtitle {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.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);
}

.breadcrumb-container {
  background-color: #333;
  font-size: 0.9rem;
  padding: 12px 20px;
  overflow-x: auto;
  width: 100%;
  box-sizing: border-box;
}

.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-link:hover {
  color: #5fc5d3;
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #fff;
}

@media (max-width: 768px) {
  .breadcrumb-container {
    padding: 10px 15px;
  }
  .breadcrumb {
    justify-content: center;
    gap: 6px;
  }
}
/* Menu burger - caché sur desktop */
#toggle_bar,
.dropdown_logo_bar_li {
  display: none;
}

/* Éléments exclusifs au tiroir mobile — masqués sur desktop */
.nav-drawer-header,
.nav-overlay,
.hamburger-label {
  display: none;
}

.container__big-navbar {
  width: 100%;
  background: linear-gradient(180deg, #18222e 0%, #111923 100%);
  box-shadow: 0 8px 18px rgba(5, 10, 16, 0.28);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 100;
}

.navbar_container {
  display: flex;
  justify-content: center;
  padding: 6px 14px;
}

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

.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: rgba(241, 245, 248, 0.9);
  font-weight: 600;
  font-size: 13.5px;
  display: block;
  padding: 13px 10px 11px;
  border-radius: 0;
  background: transparent;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-base), border-color var(--transition-base), opacity var(--transition-base);
  position: relative;
  letter-spacing: 0.15px;
  white-space: nowrap;
}

.navbar_level_1_link::after {
  content: none;
}

.navbar_level_1_link:hover {
  color: #fff;
  background: transparent;
  border-bottom-color: rgba(99, 196, 210, 0.6);
  box-shadow: none;
}

.navbar_level_1_link.is-active {
  color: #fff;
  background: transparent;
  border-bottom-color: #63c4d2;
  box-shadow: none;
}

.navbar_level_1_link.is-active::after,
.navbar_level_1_link:hover::after {
  width: 0;
  box-shadow: none;
}

.navbar_level_1_link_promo {
  text-decoration: none;
  color: #f4fcfe;
  font-weight: 700;
  font-size: 13.5px;
  display: block;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color var(--transition-base), border-color var(--transition-base), background-color var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  letter-spacing: 0.15px;
  white-space: nowrap;
  background: linear-gradient(180deg, rgba(99, 196, 210, 0.12) 0%, rgba(99, 196, 210, 0.05) 100%);
  border: 1px solid rgba(99, 196, 210, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 4px 10px rgba(8, 18, 28, 0.18);
}

.navbar_level_1_link_promo.is-active {
  color: #fff;
  background: linear-gradient(180deg, rgba(99, 196, 210, 0.18) 0%, rgba(99, 196, 210, 0.08) 100%);
  border-color: rgba(120, 221, 234, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 6px 14px rgba(8, 18, 28, 0.22);
}

.navbar_level_1_link_promo:hover {
  color: #fff;
  background: linear-gradient(180deg, rgba(99, 196, 210, 0.2) 0%, rgba(99, 196, 210, 0.09) 100%);
  border-color: rgba(129, 227, 239, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 6px 14px rgba(8, 18, 28, 0.24);
  transform: none;
}

.navbar_level_1_link_promo.is-active:hover {
  border-color: rgba(129, 227, 239, 0.68);
}

.mega_dropdown_container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  background: linear-gradient(180deg, rgba(21, 34, 50, 0.98) 0%, rgba(15, 26, 39, 0.98) 100%);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
  padding: 10px;
  z-index: 99000;
  width: clamp(560px, 58vw, 860px);
  max-height: 500px;
  overflow-y: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(111, 223, 236, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-2px);
  will-change: opacity, transform;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.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: 10px;
  flex-direction: row;
  padding: 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
  align-items: center;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 74px;
}

.box:focus-visible {
  outline: 2px solid rgba(125, 217, 230, 0.95);
  outline-offset: 2px;
  background: rgba(79, 179, 196, 0.2) !important;
}

.box:hover {
  background: rgba(79, 179, 196, 0.16) !important;
  transform: translateY(-1px);
  border-color: rgba(125, 217, 230, 0.32);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.box img {
  width: 74px;
  height: 52px;
  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: #f2f5f9;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.35;
  transition: color 0.3s ease;
  flex: 1;
}

.box:hover .dropdown_text {
  color: #cceff4;
}

.navbar_level_1_li:hover .mega_dropdown_container {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.navbar_level_1_li:focus-within .mega_dropdown_container {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .navbar_container {
    padding: 6px 8px;
  }
  .main_navbar_ul {
    gap: 4px;
  }
  .navbar_level_1_link,
  .navbar_level_1_link_promo {
    font-size: 12.5px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 1180px) {
  .mega_dropdown_container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(560px, 100vw - 24px);
  }
}
@media (max-width: 860px) {
  .mega_dropdown_container {
    grid-template-columns: 1fr;
    width: min(420px, 100vw - 20px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mega_dropdown_container,
  .box,
  .box img {
    transition: none !important;
  }
}
.navbar_container {
  max-width: 1333px;
  margin: 0 auto;
}

#toggle_bar {
  cursor: pointer;
  font-size: 24px;
}

.toggle {
  display: none;
}

@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;
  }
}
.footer {
  background: #1a1a1a;
  color: #b8b8b8;
  padding: 60px 20px 20px;
  font-family: "Roboto", sans-serif;
  border-top: 3px solid #4fb3c4;
}

.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__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__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__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 {
  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;
}

@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;
  }
}

/*# sourceMappingURL=mobile-layout.css.map */
