:root {
  --bundle-red: #EF4725;
  --bundle-red-hover: #c53a22;
  --dark-blue: #112a46;
  --dark-blue-hover: #0a1b2e;
  --bundle-blue: #0a2240;

  --bundle-blue-hover: #051326;
  --bg-light-grey: #f8f9fa;
  --border-grey: #e5e7eb;
  --text-dark: #1f2937;
  --text-white: #ffffff;
  --font-heading: "Gellix", sans-serif;
  --font-body: "Inter", sans-serif;
  --header-height: 80px;
}

html {
  font-size: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--text-white);
  line-height: 1.5;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

#navbarBundle {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html,
  body,
  #navbarBundle {
    scroll-behavior: auto;
  }

  .header-fixed {
    transition: none;
    animation: none;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--dark-blue);
}
.fw-100{
  font-weight: 100;
}
.fw-200{
  font-weight: 200;
}
.fw-300{
  font-weight: 300;
}
.fw-400{
  font-weight: 400;
}
.fw-500{
  font-weight: 500;
}
.fw-600{
  font-weight: 600;
}
.fw-700{
  font-weight: 700;
}
.fw-800{
  font-weight: 800;
}
.fw-900{
  font-weight: 900;
}

strong {
  font-weight: 700;
}

.container {
  max-width: 1820px;
  padding: 0px 40px;
}
.text-bundle{
  color:var(--bundle-blue)
}

.section-padding{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (max-width: 767.98px) {
  .container {
    padding: 0px 20px;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding: 0px 16px;
  }
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark-blue);
  position: relative;
}

.accent-text {
  color: var(--bundle-red);
}

.header-absolute {
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(2, 8, 23, 0.08);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;

  animation: header-slide-down 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes header-slide-down {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.header-fixed.header-no-anim {
  animation: none;
}

.dropdown-toggle::after{
  display:none;
}

.header-fixed .navbar-dark .navbar-nav .nav-link {
  color: var(--bundle-blue) !important;
}

.header-fixed .navbar-brand img {
  filter: none;
}

.header-fixed .text-white {
  color: var(--bundle-blue) !important;
}

.header-fixed .text-white svg path {
  stroke: currentColor;
  transition: stroke 0.3s ease;
}
.navbar>.container{
      align-items: flex-end;
      gap: 50px;
}

body.mobile-menu-open .navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.95) !important;
}

body.mobile-menu-open .text-white {
  color: #ffffff !important;
}

body.mobile-menu-open .text-white svg path {
  stroke: currentColor !important;
}

.navbar-toggler {
  padding: 6px;
  box-shadow: none !important;
}

.hamburger-icon {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 26px;
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #ffffff;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.2s ease, background-color 0.3s ease;
}

.header-fixed .hamburger-bar {
  background-color: var(--bundle-blue);
}

.mobile-menu-open .hamburger-bar {
  background-color: #ffffff !important;
}

.navbar-toggler[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.mobile-menu-open {
  overflow: hidden;
}

.menu-close-btn {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  z-index: 1101;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.menu-close-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(90deg);
}

.nav-chevron {
  transition: transform 0.25s ease;
}

.nav-link.show .nav-chevron {
  transform: rotate(180deg);
}

.navbar-dark .navbar-nav .nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  padding: 0.5rem 1rem;
  padding-bottom: 0rem;
  transition: color 0.2s ease;
  font-weight: 300;
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: 0.25rem;
  width: 0;
  height: 1px;
  background: var(--bundle-red);
  transition: width 0.25s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--text-white);
  opacity: 1;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: calc(100% - 2rem);
}

.nav-chevron {
  font-size: 0.65rem;
}

.brand-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.btn-demande {
  background-color: var(--bundle-blue);
  color: var(--text-white) !important;
  border: none;
  font-size: 1rem;
  border-radius: 0px !important;
  box-shadow: 0 4px 12px rgba(10, 34, 64, 0.15);
  transition:
    background-color 0.2s ease,
    transform 0.1s ease;
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 12px 30px;
  white-space: nowrap;
}

.btn-demande:hover {
  background-color: var(--bundle-red);
  transform: translateY(-1px);
}
.navbar{
  padding-top: 40px !important;
}
.header-fixed .navbar{
  padding-top: 40px !important;
}
.navbar .text-white {
  opacity: 0.9;
  transition:
    opacity 0.2s ease,
    color 0.15s ease;
}

.navbar .text-white:hover {
  opacity: 1;
  color: var(--bundle-red) !important;
}

.menu-nav-menu {
  gap: 50px;
  position: relative;
}

.menu-nav-menu .navbar-nav {
  gap: 50px;
   width: 100%;
    justify-content: space-between;
}

.nav-item {
  padding: 20px 0px;
}

.navbar-actions{
  /* align-items: end !important; */
  margin-left: auto !important;
  padding-bottom: 20px;
}
.navbar-brand{
  padding-bottom: 20px;
}

.mega-menu-item {
  position: static;
}

.mega-menu-item:hover .nav-link,
.nav-link.show {
  color: var(--text-white);
}

.mega-menu-item:hover .nav-link::after,
.nav-link.show::after {
  width: calc(100% - 2rem);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: auto;
  border: none;
  border-radius: 0px !important;
  padding: 0;
  margin-top: 0;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  display: block;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  border: 0px !important;
}

.mega-menu.show,
.mega-menu-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.mega-menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
   padding: 60px 70px;
}

.mega-menu-link {
  display: inline-block;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 300;
  text-decoration: none;
  position: relative;
  width: fit-content;
  transition: color 0.2s ease;
}

.mega-menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--bundle-red);
  transition: width 0.25s ease;
}

.mega-menu-link:hover {
  color: var(--bundle-blue);
}

.mega-menu-link:hover::after {
  width: 100%;
}

.mega-menu-image {
  display: block;
  overflow: hidden;
}

.mega-menu-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mega-menu-image:hover img {
  transform: scale(1.04);
}
@media (min-width: 1400px) and (max-width: 1499.98px) {
.navbar-dark .navbar-nav .nav-link{
  padding: 0.5rem 0.5rem !important;
  font-size: 1rem;
  padding-bottom: 0px !important;
}
.menu-nav-menu .navbar-nav {
  gap: 25px;
}
}
@media (min-width: 1500px) and (max-width: 1700px) {
.navbar-dark .navbar-nav .nav-link{
  padding: 0.5rem 0.5rem !important;
  font-size: 1rem;
}
}
@media (max-width: 1399.98px) {
  #navbarBundle {
    position: fixed;
    inset: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    background: var(--bundle-blue);
    padding: 76px 24px 40px;
    overflow-y: auto;
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  #navbarBundle.show,
  #navbarBundle.collapsing {
    display: flex;
    flex-direction: column;
    opacity: 1;
    gap: 0px;
  }

  .menu-nav-menu .navbar-nav {
    gap: 4px;
    width: 100%;

    margin-left: 0 !important;
    padding-left: 0;
  }

  .nav-item {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .navbar-dark .navbar-nav .nav-link {
    padding: 0.85rem 0 !important;
    font-size: 1.05rem;
  }

  .navbar-dark .navbar-nav .nav-link::after {
    left: 0;
  }

  .navbar-dark .navbar-nav .nav-link:hover::after,
  .navbar-dark .navbar-nav .nav-link.active::after,
  .mega-menu-item:hover .nav-link::after,
  .nav-link.show::after {
    width: 100%;
  }

  .mega-menu {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    box-shadow: none;
    transition: max-height 0.35s ease;
  }

  .mega-menu.show {
    max-height: 700px;
  }

  .mega-menu-inner {
    grid-template-columns: 1fr;
    padding: 0 0 20px;
    gap: 16px;
  }

  .mega-menu-links {
    gap: 14px;
  }

  .mega-menu-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
  }

  .mega-menu-link:hover {
    color: var(--text-white);
  }

  .mega-menu-image {
    display: none;
  }

  .navbar-actions {
    order: -1;
    margin-top: 0 !important;
    margin-bottom: 0px;
    padding-bottom: 20px;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
  }

  .navbar-actions .btn-demande {
    background-color: var(--bundle-red);
  }

  .navbar-actions .btn-demande:hover {
    background-color: var(--bundle-red-hover);
  }
  .header-fixed .navbar {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}
.navbar-brand {
    padding-bottom: 0px;
}
.navbar>.container {
    align-items: center;
    gap: 50px;
}
.navbar {
    padding-top: 20px !important;
}
.navbar-toggler{
  display: flex;
}
}

.hero-fullscreen {
  height: 100vh;
  min-height: 960px;
  background-color: #1f2937;
}

.hero-image-overlay {
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.15) 35%,
      transparent 70%,
      rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.15) 39%,
        transparent 100%,
        rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
  }
}

.hero-fs-img {
  z-index: 0;
  position: relative;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slider,
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item,
.hero-slide {
  height: 100%;
}

.hero-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-slide img.is-missing {
  visibility: hidden;
}

.hero-slide .hero-image-overlay {
  position: absolute;
  inset: 0;
}

.hero-slider .hero-title {
  max-width: 24ch;
  margin-inline: auto;
}

.hero-slider:not(.owl-loaded) .hero-slide:not(:first-child) {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero-slider .fadeIn {
  animation-name: fadeIn;
}

.hero-slider .animated {
  animation-duration: 0.9s;
  animation-timing-function: ease-in-out;
}

.hero-slider .owl-animated-out {
  pointer-events: none;
}

.hero-slider .owl-nav {
  margin: 0;
}

.hero-slider .owl-nav button.owl-prev,
.hero-slider .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--text-white);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.hero-slider .owl-nav button.owl-prev:hover,
.hero-slider .owl-nav button.owl-next:hover {
  background: var(--bundle-red) !important;
  border-color: var(--bundle-red);
}

.hero-slider .owl-nav button.owl-prev {
  left: 2rem;
}

.hero-slider .owl-nav button.owl-next {
  right: 2rem;
}

.hero-slider .owl-nav svg {
  width: 22px;
  height: 22px;
}

.hero-slider .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.hero-slider .owl-dots .owl-dot {
  margin: 0;
}

.hero-slider .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.hero-slider .owl-dots .owl-dot.active span,
.hero-slider .owl-dots .owl-dot:hover span {
  width: 28px;
  border-radius: 999px;
  background: var(--text-white);
}

@media (max-width: 767.98px) {
  .hero-slider .owl-nav {
    display: none;
  }

  .hero-slider .owl-dots {
    bottom: 1.25rem;
  }
}

.mission-section {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.mission-section .inspiration-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mission-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.20);
  z-index: 1;
}

.mission-text {
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.80);
  font-weight: 400;

  p {
    font-size: 1.4rem;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.80);
    font-weight: 700;
  }

  h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 3vw, 3rem);
    font-weight: 800;
    margin-bottom: 0;
    color: var(--text-white);
  }
}

@media (max-width: 991.98px) {
  .mission-section {
    min-height: 420px;
  }
}

@media (max-width: 767.98px) {
  .mission-text {
    font-size: 1rem;
  }
}

.hero-content {
  z-index: 2;
  width: 100%;
  max-width: 100%;
  padding: 0 1.5rem;
  top: 50%;
  position: absolute;
  transform: translateY(-30%);
  text-align: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 160px);
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  background-color: var(--bundle-blue);
  color: var(--text-white) !important;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.5rem;
  padding: 16px 36px;
  border-radius: 0;
  border: 0px solid var(--text-white);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease;
}

.btn-hero-cta:hover {
  background-color: var(--bundle-red);
  color: var(--text-white) !important;
  transform: translateY(-2px);
}

.filter-bar {
  border-color: #f3f4f6 !important;
}

.filter-label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--bundle-blue);
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-filter,
.btn-sort {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #55657a;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.4;
  padding: 0.25rem 0;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.btn-filter:hover,
.btn-sort:hover,
.btn-filter:focus-visible,
.btn-sort:focus-visible,
.btn-filter[aria-expanded="true"],
.btn-sort[aria-expanded="true"] {
  background: transparent;
  border: 0;
  color: var(--bundle-blue);
}

.btn-sort {
  justify-content: space-between;
  min-width: 260px;
}

.filter-chevron {
  font-size: 0.7rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.btn-filter[aria-expanded="true"] .filter-chevron,
.btn-sort[aria-expanded="true"] .filter-chevron {
  transform: rotate(180deg);
}

.btn-filter.filter-active {
  color: var(--bundle-red);
}

.btn-filter.filter-active:hover,
.btn-filter.filter-active:focus-visible,
.btn-filter.filter-active[aria-expanded="true"] {
  color: var(--bundle-red);
}

.btn-filter.filter-active .filter-chevron {
  display: none;
}

.filter-count {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  color: #55657a;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .btn-sort {
    min-width: 0;
    gap: 0.5rem;
  }
}

.dropdown-menu {
  border-radius: 8px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 3vw, 3rem);
  font-weight: 700;
  margin-bottom: 0;
}

.categorie-slider-wrapper {
  overflow: hidden;
  padding-bottom: 50px;
}

.categorie-slider.owl-carousel {
  margin: 0 0rem;
}

.categorie-slider .categorie-card {
  max-width: 100%;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.categorie-slider .categorie-card:hover {
  transform: translateY(-4px);
}

.categorie-img-wrap {
  width: 100%;
  min-height: 240px;
  overflow: hidden;
  max-height: 600px;
}

.categorie-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 2 / 3;
  transition: transform 0.35s ease;
}

.categorie-card:hover .categorie-img {
  transform: scale(1.05);
}

.categorie-label {
  margin: 0.5rem 1rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  line-height: normal;
  color: var(--dark-blue);
  text-align: center;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 55px;
  text-shadow: 0 0 0 currentColor;
  transition: color 0.35s ease, text-shadow 0.35s ease;
}

.categorie-card:hover .categorie-label {
  color: var(--bundle-red);
  text-shadow: 0 0 0.6px currentColor, 0 0 0.6px currentColor;
}

.avantages-image {
  min-height: 420px;
}

.avantages-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-wrapper .section-heading {
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.avantages-intro {
  font-size: 1.5rem;
  line-height: normal;
  color: #475569;
  max-width: 620px;
  margin: 0 auto;
  letter-spacing: 5%;
  font-weight: 300;
}

.gap-80 {
  gap: 80px;
}

.btn-outline-red {
  background: transparent;
  color: var(--bundle-blue);
  border: 1px solid var(--bundle-red);
  font-size: 1.1rem;
  border-radius: 0;
  transition: all 0.3s ease;
  width: auto;
  padding: 1rem 1.5rem;
}

.btn-outline-red:hover {
  background: var(--bundle-red);
  color: var(--text-white);
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .avantages-image {
    min-height: 320px;
  }
  .categorie-slider-wrapper{
    padding-bottom: 10px;
  }
  .section-padding{
        padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .gap-80 {
    gap: 40px;
}
}

@media (max-width: 767.98px) {
  .avantages-image {
    min-height: 100%;
  }

  .section-wrapper .section-heading {
    font-size: 1.75rem;
  }

  .avantages-intro {
    font-size: 1.15rem;
  }

  .gap-80 {
    gap: 40px;
  }
}

.industrie-section {
  text-align: center;
}

.industrie-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.industrie-card:hover {
  transform: translateY(-6px);
}

.industrie-card-img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
      }

.industrie-img-wrap {
  width: 100%;

  background-color: #f8f9fa;
  overflow: hidden;
}

.industrie-card:hover .industrie-card-img {
  transform: scale(1.05);
}

.industrie-label {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--dark-blue);
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  transition: color 0.35s ease;
}

.industrie-card:hover .industrie-label {
  color: var(--bundle-red);
}

@media (min-width: 992px) {
  .col-lg-2-4 {
    flex: 0 0 calc(20% - 0.8rem);

  }
   .row.g-4{
    justify-content: space-evenly;
  }
 
}
@media (max-width: 1299.98px) {
  .industrie-label{
    font-size: 1.4rem;
  }
}
@media (max-width: 991.98px) {
  /* .industrie-img-wrap {
    aspect-ratio: 1.1;
  } */
}

@media (max-width: 767.98px) {
  .industrie-label {
    font-size: 1.5rem;
  }
}

.video-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.60);
}

.video-card {
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  background-color: #ffffff;

  aspect-ratio: 1780 / 865;
  transition: aspect-ratio 0.4s ease;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  object-fit: contain;
  background-color: #000000;
  border: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.video-card.is-playing {
  aspect-ratio: 16 / 9;
}

.video-card.is-playing .video-player {
  opacity: 1;
  visibility: visible;
}

.video-card.is-playing .video-thumb,
.video-card.is-playing .overlay,
.video-card.is-playing .video-play-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-card .overlay,
.video-thumb {
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.35s ease,
    visibility 0.35s ease;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.video-play-btn svg {
  width: 130px;
  height: 130px;
}

@media (max-width: 767.98px) {
  .video-play-btn svg {
    width: 84px;
    height: 84px;
  }
}

@media (max-width: 575.98px) {
  .video-play-btn svg {
    width: 64px;
    height: 64px;
  }
}

.astuces-section {
  background-color: rgba(239, 71, 37, 0.08);
  width: 100%;
}

.astuces-carousel .owl-item {
  display: flex;
  justify-content: center;
}

.astuces-carousel .owl-stage {
  display: flex;
}

.astuces-card {
  position: relative;
  background: #ffffff;

  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.astuces-card:hover {
  transform: translateY(-6px);
  box-shadow: none;
}

.astuces-img-wrap {
  margin: 24px;
  border-radius: 2px;
  overflow: hidden;
}

.astuces-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
  object-position: center;
}

.astuces-card:hover .astuces-card-img {
  transform: scale(1.05);
}

.astuces-card-body {
  padding: 0.5rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding-bottom: 0rem;
}

.btn-link {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(17, 42, 70, 0.80) !important;
}

.astuces-category {
  color: var(--bundle-red);
  font-weight: 500;
  font-size: 0.8rem;
  margin-bottom: 0.65rem;
}

.astuces-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.astuces-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.65rem;
  margin-bottom: 0;
  color: var(--dark-blue);
  border-left: 3px solid var(--bundle-red);
  padding-left: 10px;
  font-weight: 700;
  flex: 1 1 auto;
   overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 85px;
}

.astuces-arrow {
  flex-shrink: 0;
  color: var(--dark-blue);
  margin-top: 0.3rem;
}

.astuces-card-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #64748b;
  margin: 1rem 0 0rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.astuces-readmore {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(15, 44, 78, 0.8);
  text-decoration: underline;

  align-self: flex-start;
  transition: color 0.2s ease;
  margin-top: 1rem;
}

.astuces-readmore:hover {
  color: var(--bundle-red);
}

.astuces-card-footer {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 1rem;
}

.astuces-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.astuces-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d9dee5;
  flex-shrink: 0;
}

.astuces-author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.astuces-author-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-blue);
}

.astuces-author-date {
  font-size: 0.6rem;
  color: #94a3b8;
}

.astuces-meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.astuces-readtime {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: #64748b;
  white-space: nowrap;
}

.astuces-readtime svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--bundle-red);
}

.astuces-share {
  display: flex;
  align-items: center;
  color: var(--bundle-red);
  cursor: pointer;
}

.astuces-section .owl-nav {
  margin-top: 0rem;
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  top: 46%;
  transform: translateY(-50%);
}

.astuces-section .owl-dots {
  margin-top: 1.5rem;
}

.featured-products-section {
  background-color: #ffffff;
}

.featured-tabs {
  display: flex;
  gap: 3rem;

  padding-bottom: 0rem;
}

.featured-tab {
  background: none;
  border: none;
  color: var(--bundle-blue);
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 300;
  font-variation-settings: 'wght' 300;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease, font-variation-settings 0.3s ease;
  position: relative;
}

.featured-tab:hover {
  color: var(--dark-blue);
  font-weight: 700;
  font-variation-settings: 'wght' 700;
 }

.featured-tab.active {
  color: var(--dark-blue);
  font-weight: 700;
  font-variation-settings: 'wght' 700;
}

.featured-tab::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--dark-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.featured-tab:hover::after,
.featured-tab.active::after {
  transform: scaleX(1);
}

.featured-products-carousel .owl-item {
  display: flex;
  justify-content: center;
}

.featured-product-item {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.featured-product-item:hover {
  transform: translateY(-4px);
}

.featured-product-img-wrap {
  position: relative;
  width: 100%;
  background-color: var(--bg-light-grey);
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 1;
  border-radius: 4px;
}

.featured-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease, opacity 0.4s ease;
}

.featured-product-item:hover .featured-product-img {
  transform: scale(1.05);
}

.featured-product-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  object-fit: cover;
}

.featured-product-item:hover .featured-product-img-hover {
  opacity: 1;
}

.featured-product-item:hover .featured-product-img-main {
  opacity: 0;
}

@media (hover: none) {
  .featured-product-img-hover {
    display: none;
  }

  .featured-product-item:hover .featured-product-img-main {
    opacity: 1;
  }
}

.featured-product-body {
  text-align: left;
}

.featured-product-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.featured-product-name {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bundle-blue);
  margin-bottom: 0;
}

.featured-product-category {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 400;
  font-family: var(--font-body);
  margin: 0;
}

@media (max-width: 768px) {
  .featured-tabs {
    gap: 2rem;
  }

  .featured-tab {
    font-size: 1rem;
  }

  .featured-product-img-wrap {
    height: 300px;
  }
}

.testimonial-section {
  background-color: #f8f9fa;
  background-color: rgba(0, 0, 0, 0.03);
}

.testimonial-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-carousel .owl-item {
  display: flex;
  justify-content: center;
}

.testimonial-item {
  max-width: 100%;
}

.testimonial-section .owl-stage {
  display: flex;
  align-items: center;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 2rem 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
}

.testimonial-quote-mark {
  margin-bottom: 1rem;
  margin-top: -0.5rem;
  display: inline-flex;
  align-items: center;
}

.testimonial-quote-mark svg {
  width: 50px;
  height: 39px;
  display: block;
}

.testimonial-text {
  font-size: 0.825rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: auto;
  font-weight: 400;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.testimonial-avatar {
  width: 36px !important;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin: 0;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  color: #fbbf24;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 2rem 1.5rem;
    min-height: auto;
  }

  .testimonial-quote-mark {
    font-size: 3rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }
}

.sort-by-text {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--dark-blue);
  margin-bottom: 5rem;
}

.owl-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.owl-prev-btn,
.owl-next-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  border-radius: 50% !important;
  background: #ffffff !important;
  color: #E89F71 !important;
  transition: all 0.2s ease;
  display: flex !important;
   box-shadow: 0px 4px 14px 1px rgba(0, 0, 0, 0.16);
}

.owl-prev {
  margin-left: -0px !important;
}

.owl-next {
  margin-right: -0px !important;
}

.owl-prev:hover,
.owl-next:hover {
  background: transparent !important;
}

.owl-prev-btn:hover,
.owl-next-btn:hover {
  background: var(--bundle-red) !important;
  color: #ffffff !important;
}

.owl-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  display: block;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.owl-dots .owl-dot.active span {
  background: var(--bundle-red) !important;
  transform: scale(1.1);

  &::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--bundle-red);
    z-index: -1;
  }
}

/* @media (max-width: 992px) {
  .categorie-slider.owl-carousel {
    margin: 0 -0.75rem;
  }
} */

@media (max-width: 768px) {
  .categorie-card {
    min-width: 280px;
  }

  .categorie-label {
    font-size: 1.5rem;
    min-height: auto;
  }

  .sort-by-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.dropdown-menu-item {
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 0.5rem 1.25rem;
}

.dropdown-menu-item:hover {
  background-color: var(--bg-light-grey);
  color: var(--bundle-red);
}

.dropdown-menu-item.active,
.dropdown-menu-item.active:hover,
.dropdown-menu-item.active:focus {
  background-color: var(--bg-light-grey);
  color: var(--bundle-red);
  font-weight: 600;
}

.product-card {
  position: relative;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-image-container {
  aspect-ratio: 1.15;
  background-color: #f5f5f7;
  overflow: hidden;
}

.product-img {
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.03);
}

.product-status-tag {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 15px;
  border-top-right-radius: 0%;
  border-bottom-left-radius: 0%;

  border: 1px solid var(--bundle-red);

  color: var(--bundle-blue);
  background-color: var(--text-white);
  white-space: nowrap;
}

.product-status-tag.secondary {
  border-color:#B7C0CA;
  color:#B7C0CA;
  background-color: transparent;
}

.product-status-tag.product-tag-floating {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
  font-size: 1rem;
  padding: 0.5rem 0.85rem;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  max-width: 170px;
   border-color: var(--bundle-blue);
  color: var(--bundle-blue);
}

.wishlist-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  border: none;
  color: var(--bundle-red);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  background-color: transparent;
  font-size: 2rem;
  cursor: pointer;
  transition:
    transform 0.2s cubic-bezier(0.18, 0.89, 0.32, 1.28),
    color 0.15s ease;
}

.wishlist-btn:hover {
  transform: scale(1.1);
  color: var(--bundle-red);
}

.wishlist-btn.active {
  color: var(--bundle-red);
}

.wishlist-btn.active i::before {
  content: "\f415";
}

.wishlist-btn svg {
  display: block;
  fill: none;
  stroke: currentColor;
  transition: fill 0.2s ease;
}

.wishlist-btn.active svg {
  fill: currentColor;
}

.product-name {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-blue);
}

.product-desc {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap !important;
  justify-content: space-between;
}

.product-category {
  font-size: 1rem;
}

.inspiration-section {
  height: 574px;
  width: 100%;
}

.inspiration-image-wrapper {
  height: 100%;
  width: 100%;
}

.inspiration-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.10);
}

.btn-outline-white {
    background: rgba(0, 0, 0, 0.20);
  color: var(--text-white);
  border: 2px solid var(--text-white);
  font-size: 0.95rem;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: var(--text-white);
  color: var(--dark-blue);
  transform: translateY(-2px);
}

.newsletter-section {
  background-color: var(--bundle-red);
  padding: 120px 0;
}

.newsletter-form-wrap {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
}

.newsletter-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}

.newsletter-input {
  flex: 1;
  min-width: 240px;
  height: 80px;
  padding: 0 1.25rem;
  border: none;
  font-family: var(--font-body);
  outline: none;
  font-size: 1rem;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-input::placeholder {
  color: #ffffff;
}

.newsletter-btn {
  height: 80px;
  padding: 0px 1.75rem;
  background-color: var(--text-white);
  color: var(--bundle-blue);
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.newsletter-btn:hover {
  background-color: var(--bundle-blue);
  color: var(--text-white);
}

@media (max-width: 991.98px) {
  .newsletter-section {
    padding: 70px 0;
  }
}

@media (max-width: 575.98px) {
  #newsletterForm {
    flex-direction: column;
  }

  .newsletter-input,
  .newsletter-btn {
    width: 100%;
    min-width: 0;
    min-height: 60px;
    height: auto;
  }

  .newsletter-title {
    font-size: 1.75rem;
  }
}

.footer {
  background-color: rgba(15, 44, 78, 0.80);
  position: relative;
}

.footer-main {
  padding: 120px 0 60px;
  background-color: var(--bundle-blue);
}

@media (max-width: 991.98px) {
  .footer-main {
    padding: 70px 0 40px;
  }
}

.footer-logo-img {
  height: 36px;
  width: auto;
}

.footer-address {
  font-size: 0.875rem;
  color: #CCCCCC;
  font-weight: 300;
}

.social-icons a {
  color: var(--text-white);
  font-size: 1.1rem;
  opacity: 0.8;
  transition:
    opacity 0.2s ease,
    color 0.15s ease;
}

.social-icons a:hover {
  opacity: 1;
  color: var(--bundle-red);
}

.footer-heading {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
  color: var(--text-white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links li {
  margin-bottom: 0rem;
}

.footer-links a {
  color: #CCCCCC;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.2s ease,
    padding-left 0.15s ease;
    font-family: var(--font-body);
}

.footer-links a:hover {
  color: var(--bundle-red);
  padding-left: 4px;
}

.footer-required {
  font-size: 0.875rem;
  color: #ffffff;
}

.footer-question {
  font-size: 0.875rem;
  color: #cccccc;
      padding: 5px 0 8px 0;
}

.footer-input {
  background-color: #ffffff !important;
  border: none !important;
  border-radius: 0 !important;
  color: var(--text-dark) !important;
  font-size: 0.875rem;
  padding: 0.6rem 0.85rem;
}

.footer-input::placeholder {
  color: #9ca3af;
}

.footer-input:focus {
  box-shadow: 0 0 0 2px var(--bundle-red) !important;
  outline: none;
}

.btn-footer-submit {
  background-color: var(--bundle-red);
  border: none;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem;
  border-radius: 0;
  transition:
    background-color 0.2s ease,
    transform 0.1s ease;
}

.btn-footer-submit:hover {
  background-color: var(--bundle-red-hover);
  color: var(--text-white);
  transform: translateY(-1px);
}

.footer-bottom {
  background-color: rgba(15, 44, 78, 0.80);
  padding: 38px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  font-family: var(--font-body);
  font-size: 1rem;
  display: none;
}

.scroll-top-btn {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  background-color: var(--text-white);
  margin-top: -50px;
  width: 100px;
  height: 100px;
  border: 8px solid var(--bundle-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 999;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.scroll-top-btn:hover {
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .hero-fullscreen {
    height: 70vh;
    min-height: 450px;
  }

  .inspiration-section {
    height: 340px;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
  }
}

@media (max-width: 575.98px) {
  .hero-fullscreen {
    height: 50vh;
  }

  .inspiration-section {
    height: 240px;
  }
}

.page-hero {
  position: relative;
   min-height: 420px;
  max-height: 1000px;
  overflow: hidden;
}
.page-hero .hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.page-hero-intro{
font-size: 1.2rem;
color: var(--text-white);
font-weight: 300;
font-family: var(--font-body);
}

.page-hero-img {
  width: 100%;
/* height: 100%; */
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.20);
}

.page-hero-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-white);
  margin: 0;
  text-transform: uppercase;
}

.about-section {
  padding-top: 10.5rem;
  padding-bottom: 5.5rem;
}

.about-text p {
  color: #475569;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-text p:last-of-type {
  margin-bottom: 2rem;
}

.about-grid {
  display: flex;
  gap: 20px;
}

.about-grid-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-grid-col:last-child {
  margin-top: -120px;
}

.about-grid-img {
  width: 100%;
  overflow: hidden;
}

.about-grid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-grid-img:hover img {
  transform: scale(1.05);
}

.mission-block-section {
  padding-top: 5.5rem;
  padding-bottom: 10.5rem;
}

.mission-phones {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  align-items: flex-end;
}

.mission-phone {
  width: auto;
  max-width: 100%;
  min-width: 0;
  display: block;
}

.mission-phone--back {
  margin-bottom: -100px;
  margin-right: -70px;
}

.mission-phone--front {
  right: 0;
  top: 0;
  height: 100%;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .mission-phones {
    height: 590px;
  }
  .mission-phone--back{
    height: 100%;
        margin-bottom: -50px;
    margin-right: 0;
  }
  .mission-phone--front{
            margin-bottom: 50px;
        margin-left: -20px;
  }
}
@media (max-width: 767.98px) {
   .mission-phones {
    height:400px;
  }
}
@media (max-width: 575.98px) {
  .mission-phones {
    height: 320px;
  }
}

.mission-block-text p {
  color: #475569;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.mission-block-text p:last-child {
  margin-bottom: 0;
  color: var(--dark-blue);
  font-weight: 700;
}

.values-section {
  padding-top: 15.5rem;
  padding-bottom: 5.5rem;
}

.value-item {
  margin-bottom: 2.5rem;
}

.value-number {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 700;
  color: #244D4D;
  margin-bottom: 0.5rem;
}

.value-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #244D4D;
  margin-bottom: 0.5rem;
}

.value-desc {
  color: #64748b;
  line-height: 1.75;
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 991.98px) {
  .about-section {
    padding-top: 3rem;
        padding-bottom: 2.5rem;
  }

  .mission-block-section {
    padding-bottom: 6rem;
        padding-top: 2.5rem;
  }

  .values-section {
    padding-top: 3rem;
  }

  .about-grid-col:last-child {
    margin-top: -40px;
  }

  .about-grid-img.is-short {
    height: 170px;
  }

  .about-grid-img.is-tall {
    height: 270px;
  }
  .value-number {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .page-hero {
    height: 40vh;
    min-height: 300px;
  }

  .about-section,
  .mission-block-section,
  .values-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .about-grid {
    margin-top: 0rem;
  }

  .about-grid-col:last-child {
    margin-top: -24px;
  }

  .about-grid-img.is-short {
    height: 140px;
  }

  .about-grid-img.is-tall {
    height: 220px;
  }
}

@media (max-width: 575.98px) {
  .about-grid-img.is-short,
  .about-grid-img.is-tall {
    height: 220px;
  }
  .value-item{
    margin-bottom: 1rem;
  }
}

.service-row {
  margin-bottom: 5rem;
}

.service-row:last-child {
  margin-bottom: 0;
}

.service-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2.2vw, 3rem);
  font-weight: 700;
  color: var(--dark-blue);
  text-align: center;
  margin-bottom: 2.5rem;
}

.service-image {
  overflow: hidden;
  min-height: 340px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-text {
  color: #475569;
}

.service-text p {
  margin-bottom: 1.25rem;
  font-size: clamp(1rem, 1.8vw, 2rem);
  line-height: clamp(30px, 3vw, 46px);;
  font-weight: 300;
  font-family: var(--font-body);
}

.service-text p:last-child {
  margin-bottom: 0;
}

.border-b {
  border-bottom: 1px solid  var(--bundle-blue);
}
.border-t {
  border-top: 1px solid  var(--bundle-blue);
}

.services-cta {
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid var(--bundle-blue);
}

.header-light {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: #ffffff;
}

.header-light .navbar-dark .navbar-nav .nav-link {
  color: var(--bundle-blue) !important;
}

.header-light .text-white {
  color: var(--bundle-blue) !important;
}

.header-light .text-white svg path {
  stroke: currentColor;
  transition: stroke 0.3s ease;
}

.header-light .hamburger-bar {
  background-color: var(--bundle-blue);
}

@media (max-width: 1399.98px) {
  .header-light .navbar {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}

.error-section {
  padding-top: clamp(1.5rem, 2.5vw, 2.5rem);
  padding-bottom: clamp(3rem, 6vw, 7rem);
}

.error-grid {
  display: grid;
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.error-content {
  padding-right: clamp(1rem, 2.5vw, 3rem);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 12vw, 15rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bundle-blue);
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.5vw, 3rem);
  font-weight: 700;
  color: var(--bundle-blue);
  margin-bottom: 1.25rem;
}

.error-desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.15vw, 1.375rem);
  font-weight: 300;
  line-height: 1.6;
  color: #475569;
  max-width: 46ch;
  margin-bottom: clamp(2rem, 3vw, 3.5rem);
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-error-primary,
.btn-error-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1rem, 1.05vw, 1.25rem);
  color: var(--text-white) !important;
  border: none;
  border-radius: 0;
  padding: 0.9rem 2.25rem;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.btn-error-primary {
  background-color: var(--bundle-red);
}

.btn-error-primary:hover {
  background-color: var(--bundle-blue);
  transform: translateY(-2px);
}

.btn-error-secondary {
  background-color: var(--bundle-blue);
}

.btn-error-secondary:hover {
  background-color: var(--bundle-red);
  transform: translateY(-2px);
}

.error-scene {
  position: relative;
  container-type: inline-size;
}

.scene-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1040 / 693;
  object-fit: cover;
}

.scene-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: var(--h);
  z-index: 2;
  border-radius: 8px;
}

.scene-hotspot:focus-visible {
  outline: 2px solid var(--bundle-red);
  outline-offset: 4px;
}

.scene-card {
  position: absolute;
  left: var(--cx);
  top: var(--cy);
  width: 30%;
  margin: 0;
  padding: 2.2%;
  background: #ffffff;
  border-radius: 14px;
  border-radius: clamp(8px, 1.4cqw, 18px);
  box-shadow: 0 18px 45px rgba(17, 42, 70, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;

  pointer-events: none;
  z-index: 3;
}

.scene-hotspot:hover + .scene-card,
.scene-hotspot:focus-visible + .scene-card,
.scene-hotspot.is-active + .scene-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scene-card-media {
  display: block;
  background: #f1f1f1;
}

.scene-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.scene-card-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--bundle-blue);
  line-height: 1.2;
  font-size: 1.25rem;
  font-size: clamp(0.75rem, 2.4cqw, 1.6rem);
  margin: 14px 0 6px;
  margin: 1.6cqw 0 0.8cqw;
}

@container (max-width: 560px) {
  .scene-card {
    left: 3%;
    right: 3%;
    top: auto;
    bottom: 3%;
    width: auto;
    display: flex;
    align-items: center;
    gap: 3.5%;
    padding: 2.5%;
    transform: translateY(10px) scale(1);
  }

  .scene-card-media {
    flex: 0 0 22%;
    width: 22%;
  }

  .scene-card-name {
    margin: 0;
    font-size: clamp(0.875rem, 4.4cqw, 1.25rem);
  }
}

@media (hover: none) {
  .scene-hotspot::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid var(--bundle-red);
    box-shadow: 0 2px 10px rgba(17, 42, 70, 0.35);
    transition: transform 0.2s ease;
  }

  .scene-hotspot.is-active::after {
    transform: translate(-50%, -50%) scale(0.7);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scene-card {
    transition: opacity 0.01ms linear;
    transform: none;
  }

  .scene-hotspot:hover + .scene-card,
  .scene-hotspot:focus-visible + .scene-card,
  .scene-hotspot.is-active + .scene-card {
    transform: none;
  }

  .scene-hotspot::after {
    transition: none;
  }
}

@media (max-width: 1199.98px) {
  .error-code {
    font-size: clamp(4.5rem, 10vw, 9rem);
  }

  .btn-error-primary,
  .btn-error-secondary {
    padding: 0.85rem 1.5rem;
  }
}

@media (max-width: 991.98px) {
  .error-grid {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
  }

  .error-content {
    order: 1;
    padding-right: 0;
  }

  .error-visual {
    order: 2;
  }

  .error-code {
    font-size: clamp(5rem, 16vw, 9rem);
    margin-bottom: 1.25rem;
  }

  .error-title {
    font-size: clamp(1.5rem, 4.2vw, 2.25rem);
  }

  .error-desc {
    font-size: 1.0625rem;
    margin-bottom: 2rem;
  }

  .error-desc br {
    display: none;
  }

  .btn-error-primary,
  .btn-error-secondary {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .error-code {
    font-size: clamp(4.5rem, 20vw, 7rem);
  }

  .error-actions {
    gap: 0.75rem;
  }

  .error-actions .btn-error-primary,
  .error-actions .btn-error-secondary {
    flex: 1 1 100%;
    padding: 0.9rem 1rem;
  }
}

.services-cta p {
  max-width: 900px;
  margin: 0 auto 1.75rem;
  color: var(--bundle-blue);
  line-height: 1.75;
  font-size: 1.15rem;
}

@media (max-width: 991.98px) {
  .services-section {
    padding-top: 3.5rem;
  }

  .service-row {
    margin-bottom: 3.5rem;
  }

  .service-image {
    min-height: 280px;
  }

  .service-text p {
    font-size: 1.1rem;
    line-height: 1.75rem;
  }

  .services-cta p {
    font-size: 1.05rem;
  }
}

@media (max-width: 767.98px) {
  .service-heading {
    margin-bottom: 1.75rem;
    text-align: left;
  }

  .service-image {
    min-height: 240px;
  }

  .services-cta {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .services-cta p {
    font-size: 1rem;
  }

  .section-padding {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .categorie-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .categorie-slider-wrapper {
    padding-bottom: 5px;
  }

  .owl-dots {
    gap: 2px;
  }

  .mission-text p {
    font-size: 1rem;
    line-height: 20px;
  }
}

.industries-hero{
.page-hero-overlay {
  background: rgba(0, 0, 0, 0.40);
  z-index: 1;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.15) 39%,
        transparent 100%,
        rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
  }
}
}

.industries-hero {
  height: clamp(480px, 52.3vw, 1000px);
}

.industries-hero .page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.industries-section {
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.industry-row {
  margin-bottom: 5.5rem;
}

.industry-row:last-child {
  margin-bottom: 0;
}

.industry-image {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.industry-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.2vw, 2.25rem);
  font-weight: 800;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.industry-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background-color: var(--bundle-red);
  margin-top: 0.9rem;
  margin-bottom: 1.75rem;
}

.industry-text p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 16px;
}

.gx-10 {
  --bs-gutter-x: 7rem;
}

.industry-text p:last-of-type {
  margin-bottom: 1.25rem;
}

.industry-readmore {
  display: block;
  width: fit-content;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 1.75rem;
  transition: color 0.2s ease;
}

.industry-readmore:hover {
  color: var(--bundle-red);
}

@media (max-width: 1199.98px) {
  .gx-10 {
    --bs-gutter-x: 3rem;
  }
}

@media (max-width: 991.98px) {
  .industries-section {
    padding-top: 3.5rem;
  }

  .industry-row {
    margin-bottom: 3.5rem;
  }

  .gx-10 {
    --bs-gutter-x: 1.5rem;
  }

  .industry-image {
    aspect-ratio: 16 / 10;
  }
  .btn-hero-cta, .btn-filter, .btn-sort, .btn-outline-red {
        font-size: 1rem;
  }
  .newsletter-title{
    font-size: 2rem;
  }
  .product-name{
    font-size: 1.25rem;
  }
  .product-status-tag, .product-status-tag.product-tag-floating{
    font-size: 0.85rem;
        top: 15px;
    right: 15px;
  }
  .featured-product-name{
    font-size: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .industry-title {
    margin-bottom: 0.75rem;
  }

  .industry-title::after {
    margin-bottom: 1.25rem;
  }

  .industry-text p {
    line-height: 1.7;
  }
}

@media (max-width: 575.98px) {
  .industries-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .industry-row {
    margin-bottom: 2.75rem;
  }

  .industry-image {
    aspect-ratio: 4 / 3;
  }
}

.contact-section {
  --contact-cream: #fdf4f0;
  --contact-border: #f3d8cd;
  background-color: #ffffff;
  background-image: linear-gradient(to right,
      transparent 0 50%,
      var(--contact-cream) 50% 100%);
}

.contact-info-col {
  padding: 5rem 3rem 5rem 0;
}

.contact-form-col {
  padding: 5rem 0 5rem 3rem;
}
.contact-hero .page-hero-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.contact-card {
  border: 1px solid var(--bundle-red);
  border-radius: 24px;
  padding: 2rem;
  background: #ffffff;
}

.contact-card + .contact-photo,
.contact-photo + .contact-card {
  margin-top: 2rem;
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.2vw, 2.5rem);
  font-weight: 700;
  color: var(--bundle-blue);
  margin-bottom: 1.5rem;
}

.contact-card-text {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--bundle-blue);
  margin-bottom: 1.75rem;
  max-width: 34ch;
}

.contact-photo {
  border-radius:24px;
  overflow: hidden;
}

.contact-photo img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--bundle-blue);
}

.contact-details li + li {
  margin-top: 1.15rem;
}

.contact-details a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 500;
}

.contact-details a:hover {
  color: var(--bundle-red);
}

.contact-details-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--bundle-red);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
  font-weight: 600;
  color: var(--bundle-blue);
  margin-bottom: 0.75rem;
}

.contact-required,
.contact-label,
.contact-note {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color:var(--bundle-blue);
  font-weight: 500;
}

.contact-required {
  margin-bottom: 1.5rem;
}

.contact-star {
  color: var(--bundle-red);
}

.contact-label {
  display: block;
  margin: 1.75rem 0 0.75rem;
}

.contact-note {
  margin: 1rem 0 2rem;
}

.contact-input {
  width: 100%;
  background: #ffffff;
  border: 0px solid var(--contact-border);
  border-radius: 12px;
  padding: 0.85rem 1.15rem;
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--bundle-blue);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-input::placeholder {
  color: #98a4b3;
  opacity: 1;
}

.contact-input:focus {
  outline: none;
  border-color: var(--bundle-red);
  box-shadow: 0 0 0 3px rgba(239, 71, 37, 0.12);
}

.contact-textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 3rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='13' viewBox='0 0 22 13' fill='none'%3E%3Cpath d='M2 2L10.8942 10.7285L19.7885 2' stroke='%23EF4725' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-position: right 1.15rem center;
  cursor: pointer;
}

.contact-select.is-placeholder {
   color: #98a4b3;
}

.contact-select option {
  color: var(--bundle-blue);
}

.contact-form.was-validated .contact-input:invalid {
  border-color: var(--bundle-red);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.btn-contact-red,
.btn-contact-navy {
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-white);
  padding: 0.9rem 1.75rem;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.btn-contact-red {
  background-color: var(--bundle-red);
}

.btn-contact-red:hover,
.btn-contact-red:focus-visible {
  background-color: var(--bundle-red-hover);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-contact-navy {
  background-color: var(--bundle-blue);
}

.btn-contact-navy:hover,
.btn-contact-navy:focus-visible {
  background-color: var(--bundle-blue-hover);
  color: var(--text-white);
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .contact-section {
    background-image: none;
  }

  .contact-info-col {
    padding: 3.5rem 0 2.5rem;
  }

  .contact-form-col {
    position: relative;
    padding: 3rem 0 3.5rem;
  }

  .contact-form-col::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--contact-cream);
    z-index: 0;
  }

  .contact-form-col > * {
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 575.98px) {
  .contact-card {
    padding: 1.5rem;
  }

  .contact-card-text {
    max-width: none;
  }

  .contact-actions {
    gap: 0.75rem;
  }

  .contact-actions .btn {
    flex: 1 1 100%;
  }
}

.blog-hero .page-hero-img {
  height: clamp(420px, 41vw, 800px);
  min-height: 0;
}
.blog-hero .page-hero-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.blog-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.blog-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 2.9vw, 4rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-white);
  margin: 0 0 clamp(1rem, 1.6vw, 1.75rem);
}

.blog-hero-intro {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.25vw, 2rem);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);

  margin: 0;
  border-left: 9px solid var(--bundle-red);
  padding-left: clamp(0.75rem, 1vw, 1.25rem);
}

.blog-section {
  background-color: rgba(239, 71, 37, 0.08);
  padding-top: clamp(2rem, 3vw, 3.25rem);
  padding-bottom: clamp(3rem, 5vw, 6rem);
}

.blog-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 clamp(1.25rem, 2vw, 2rem);
  padding: 0;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--bundle-blue);
}

.blog-breadcrumb li {
  display: flex;
  align-items: center;
}

.blog-breadcrumb li + li::before {
  content: "\F285";
  font-family: "bootstrap-icons";
  font-size: 0.9em;
  line-height: 1;
  margin-right: 0.5rem;
  color: rgba(17, 42, 70, 0.35);
  -webkit-font-smoothing: antialiased;
}

.blog-breadcrumb a {
  color: var(--bundle-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-breadcrumb a:hover {
  color: var(--bundle-red);
}

.blog-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
}

.blog-tab {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 4px clamp(1rem, 1.6vw, 1.75rem);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--bundle-blue);
  transition: color 0.2s ease;
}

.blog-tab:first-child {
  padding-left: 0;
}

.blog-tab + .blog-tab {
  border-left: 1px solid var(--bundle-blue);
}

.blog-tab:hover {
  color: var(--bundle-red);
  font-weight:700;
}

.blog-tab.is-active {
  color: var(--bundle-red);
  font-weight: 700;
}

.blog-grid {
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.blog-grid > [class*="col-"] {
  display: flex;
}

.blog-grid .astuces-card {
  width: 100%;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.blog-pagination ul {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 1vw, 1rem);
  list-style: none;
  margin: 0;
  padding: 0.7rem clamp(0.75rem, 1.4vw, 1.5rem);
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}

.blog-pagination li {
  flex: 0 0 auto;
}

.blog-pagination a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--bundle-blue);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.blog-pagination a:hover {
  background: rgba(239, 71, 37, 0.12);
  color: var(--bundle-red);
}

.blog-pagination a.is-active {
  background: var(--bundle-red);
  color: var(--text-white);
}

.blog-pagination .blog-page-arrow {
  font-size: 1.2rem;
  color: rgba(17, 42, 70, 0.7);
}

.blog-pagination .blog-page-arrow.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.blog-cta {
  position: relative;
  max-width: 1180px;
  margin: 0 auto clamp(3rem, 4vw, 4.5rem);
  padding: clamp(2.5rem, 4vw, 4rem) clamp(1.25rem, 3vw, 3rem) 0;
  background: var(--bundle-blue);
  text-align: center;
}

.blog-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.3vw, 3.4rem);
  font-weight: 600;
  color: var(--text-white);
  margin: 0 0 0.85rem;
  letter-spacing: 1%;
}

.blog-cta-text {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1vw, 1.2rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
   letter-spacing: 1%;
}

.blog-cta-form {
  position: relative;
  bottom: -32px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: min(100%, 700px);
  margin: clamp(1.75rem, 3vw, 2.75rem) auto 0;
  padding: 1rem;
  background: #ffffff;

  box-shadow: 0 12px 30px rgba(10, 34, 64, 0.18);
}

.blog-cta-icon {
  display: flex;
  flex-shrink: 0;
  color: #94a3b8;
}
.blog-cta-icon svg{
  width: 2rem;
  height: 2rem;
}

.blog-cta-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0.65rem 0.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: transparent;
}

.blog-cta-input::placeholder {
  color: #9aa5b4;
}

.blog-cta-btn {
  flex-shrink: 0;
  border: 0;
  border-radius: 0px;
  background: var(--bundle-red);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 16%;
  text-transform: uppercase;
  padding: 0.85rem clamp(1.25rem, 2.5vw, 2.75rem);
  transition: background-color 0.2s ease;
}

.blog-cta-btn:hover {
  background: var(--bundle-blue-hover);
}

.blog-grid .astuces-card-img {
  height: auto;
  aspect-ratio: 16 / 10;
}

.blog-grid .astuces-card-title {
  height: auto;
  font-size: clamp(1.125rem, 1.35vw, 1.5rem);
  line-height: 1.3;

  min-height: 3.9em;
}

@media (max-width: 991.98px) {
  .blog-hero .page-hero-img {
    height: clamp(400px, 52vw, 520px);
  }

  .blog-hero-content {
    padding-top: 72px;
  }

  .blog-hero-title {
    max-width: 100%;
  }

  .blog-hero-intro {
    max-width: 52ch;
    border-left-width: 5px;
  }
}

@media (max-width: 767.98px) {
  .blog-tab {
    padding: 0 0.85rem;
    font-size: 0.95rem;
  }

  .blog-pagination ul {
    gap: 0.1rem;
    padding: 0.5rem 0.6rem;
  }

  .blog-pagination a {
    width: 30px;
    height: 30px;
    font-size: 0.875rem;
  }

  .blog-cta-text br {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .blog-hero .page-hero-img {
    height: 420px;
  }

  .blog-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .blog-tabs::-webkit-scrollbar {
    display: none;
  }

  .blog-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .blog-pagination ul {
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .blog-pagination ul::-webkit-scrollbar {
    display: none;
  }

  .blog-pagination a {
    width: 28px;
    height: 28px;
  }

  .blog-cta-form {
    flex-wrap: wrap;
    padding: 0.85rem;
    bottom: -28px;
  }

  .blog-cta-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .blog-cta-input {
    flex: 1 1 60%;
  }

  .blog-cta-btn {
    flex: 1 1 100%;
    padding: 0.85rem 1rem;
  }
}

.article-hero .page-hero-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.article-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.article-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.625rem, 2.6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
  max-width: 24ch;
  margin: 0;
}

.article-section {
  padding-top: clamp(1.5rem, 2.5vw, 3rem);
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
}

.article-topbar {
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
}

.article-topbar .blog-breadcrumb ol {
  margin-bottom: clamp(1.5rem, 2.5vw, 2.75rem);
}

.article-topbar .blog-breadcrumb li + li::before {
  margin-right: 0.65rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.25rem, 2vw, 2rem);
}

.article-date {
  margin: 0;
  padding: 0.4rem 0 0.4rem 0.85rem;
  border-left: 5px solid var(--bundle-red);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #667085;
}

.article-stats {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.25rem);
}

.article-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--bundle-blue);
}

.article-stat i {
  color: var(--bundle-red);
  font-size: 1.15em;
  line-height: 1;
}

.article-tag {
  display: inline-block;
  background: var(--bundle-red);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  border-radius: 0px 8px 8px 8px;
  padding: 8px 30px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.article-tag:hover {
  background: var(--bundle-blue);
  color: var(--text-white);
  transform: translateY(-2px);
}

.article-body {
  font-family: var(--font-body);
  font-size: 24px;
  line-height: 1.75;
  color: #475569;
}

.article-body > *:first-child {
  margin-top: 0;
}

.article-body > *:last-child {
  margin-bottom: 0;
}

.article-body p {
  margin: 0 0 1.25rem;
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--bundle-blue);
  margin: clamp(2rem, 3vw, 2rem) 0 2rem;
}

.article-body h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--bundle-blue);
  margin: clamp(1.75rem, 2.5vw, 2.5rem) 0 0.85rem;
}

.article-body h4 {
  font-family: var(--font-heading);
  font-size:  24px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--bundle-blue);
  margin: 1.5rem 0 0.6rem;
}
.article-body img{
  max-width: 100%;
}

.article-body ul,
.article-body ol {
  margin: 0 1rem 1.5rem;
  padding-left: 1.25rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-body ul li::marker {
  color: var(--bundle-blue);
}

.article-body a:not(.btn) {
  color: var(--bundle-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.article-body a:not(.btn):hover {
  color: var(--bundle-red);
}

.article-body hr {
  border: 0;
  border-top: 1px solid rgba(17, 42, 70, 0.12);
  opacity: 1;
  margin: clamp(2rem, 3.5vw, 3.5rem) 0;
}

.article-body--natural .article-split-media img {
  aspect-ratio: auto;
}

.article-figure {
  margin: clamp(1.75rem, 3vw, 2.5rem) 0;
}

.article-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.article-figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-style: italic;
  color: #64748b;
}

.article-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 2.5vw, 3rem);
  align-items: center;
  margin: clamp(1.75rem, 3vw, 2.5rem) 0;
}

.article-split-text > *:first-child {
  margin-top: 0;
}

.article-split-text > *:last-child {
  margin-bottom: 0;
}

.article-split-media {
  margin: 0;
}

.article-split-media img {
  display: block;
  width: 100%;
  height: auto;
}

.article-split--media-first .article-split-media {
  order: -1;
}

.article-split-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.4vw, 1.5rem);
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.categories-sidebar-card,
.popular-sidebar-card,
.comments-sidebar-card {
  padding: clamp(1.5rem, 2.4vw, 2.25rem);
}

.categories-sidebar-card {
  background: rgba(239, 71, 37, 0.06);
}

.popular-sidebar-card,
.comments-sidebar-card {
  background: #F7F7F7;
}

.sidebar-title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.15vw, 2.5rem);
  font-weight: 700;
  color: #3A424D;
  margin: 0 0 clamp(1.5rem, 2.2vw, 2.25rem);
}

.sidebar-cats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.2vw, 2rem);
}

.sidebar-cat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-body);
  font-size: 24px;
  color: #3A424D;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.sidebar-cat::before {
  content: "";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--bundle-red);
  border-radius: 0px 5px 0px 5px;
  transition: background-color 0.2s ease;
  background: #ffffff;
}

.sidebar-cat:hover {
  color: var(--bundle-red);
}

.sidebar-cat:hover::before,
.sidebar-cat.is-active::before {
  background: var(--bundle-red);
}

.sidebar-cat.is-active {
  color: var(--bundle-red);
}

.sidebar-cat:focus-visible {
  outline: 2px solid var(--bundle-blue);
  outline-offset: 3px;
}

.sidebar-tabs {
  display: flex;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(17, 42, 70, 0.35);
}

.sidebar-tab {
  position: relative;
  flex: 1 1 auto;
  background: none;
  border: 0;
  padding: 0 0.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bundle-blue);
  transition: color 0.2s ease;
}

.sidebar-tab + .sidebar-tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.15em;
  background: rgba(17, 42, 70, 0.35);
}

.sidebar-tab:hover,
.sidebar-tab.is-active {
  color: var(--bundle-red);
}

.sidebar-posts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-post {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.sidebar-post + .sidebar-post {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(239, 71, 37, 0.25);
}

.sidebar-post-img {
  flex: 0 0 25%;
  max-width: 128px;
  overflow: hidden;
}

.sidebar-post-img img {
  display: block;
  width: 100%;
  aspect-ratio: 7 / 6;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.sidebar-post-img:hover img {
  transform: scale(1.06);
}

.sidebar-post-body {
  min-width: 0;
  flex: 1 1 auto;
}

.sidebar-post-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.85rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.sidebar-post-title a {
  color: var(--bundle-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sidebar-post-title a:hover {
  color: var(--bundle-red);
}

.sidebar-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.sidebar-post-author {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.sidebar-post-name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #3A424D;
}

.sidebar-post-date {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #3A424D;
}

.sidebar-post-tag {
  display: inline-block;
  background: var(--bundle-red);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  border-radius: 5px;
  padding: 0.45rem 0.7rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.sidebar-post-tag:hover {
  background: var(--bundle-blue);
  color: var(--text-white);
}

.comment-form {
  margin-bottom: clamp(1.5rem, 2.2vw, 2rem);
  position: relative;
}

.comment-input {
  display: block;
  width: 100%;
  min-height: 120px;
  resize: vertical;
  padding: 1rem;
  border: 1px solid rgba(17, 42, 70, 0.15);
  border-radius: 0px 16px 0px 16px;
  background: #ffffff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-dark);
  resize: none;
}

.comment-input::placeholder {
  color: #9aa5b4;
}

.comment-input:focus {
  outline: 0;
  border-color: var(--bundle-red);
}

.comment-submit {
  display: block;
  margin: 0.85rem 0 0 auto;
  border: 0;
  border-radius: 0px 16px 0px 16px ;
  background: var(--bundle-red);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  padding: 0.4rem 1.15rem;
  transition: background-color 0.2s ease;
  position: absolute;
  bottom: 0;
  right: 0;
}

.comment-submit:hover {
  background: var(--bundle-blue);
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment {
  display: flex;
  gap: 0.85rem;
}

.comment + .comment {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(17, 42, 70, 0.08);
}

.comment-avatar {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-body {
  min-width: 0;
  flex: 1 1 auto;
}

.comment-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bundle-blue);
  margin: 0 0 0.35rem;
}

.comment-text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: #64748b;
  margin: 0 0 0.6rem;
}

.comment-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.comment-time {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: #94a3b8;
}

.comment-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.comment-action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: 0;
  padding: 0;
  color: var(--bundle-red);
  font-size: 0.95rem;
  line-height: 1;
  transition: color 0.2s ease;
}

.comment-action:hover {
  color: var(--bundle-blue);
}

.comment-action span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: #94a3b8;
}

.article-major-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.4vw, 64px) !important;
  font-weight: 700 !important;
  line-height: 1.25;
  color: var(--bundle-blue);
  max-width: 60%;
  margin: clamp(2.5rem, 4vw, 4rem) 0 clamp(1.5rem, 2.5vw, 2.5rem);
}

.article-table-wrap {
  overflow-x: auto;
  margin: 0 0 2rem;
  -webkit-overflow-scrolling: touch;
}

.article-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 1rem;
  background: transparent;
}

.article-table th,
.article-table td {
  width: 50%;
  padding: 0.5rem 1rem 0.5rem 2rem;
  border: 0;
  text-align: left;
  vertical-align: top;
   font-size: 24px;
}

.article-table thead th {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bundle-blue);
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bundle-red);
}

.article-table thead th span {
  color: var(--bundle-red);
}

.article-table tbody td {
  color: var(--bundle-blue);
}
.article-table thead th:last-child {
  background: #FEF9F8;
}
.article-table tbody td:last-child {
  background: #FEF9F8;
}

.article-table tbody tr:first-child td {
  padding-top: 1.5rem;
}

.article-table tbody tr:last-child td {
  padding-bottom: 1.5rem;
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2.5rem, 4vw, 4rem);
  padding-top: clamp(1.5rem, 2.5vw, 2rem);
  border-top: 2px solid var(--bundle-red);
}

.article-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: #3A424D;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.article-nav-link span {
  position: relative;
}

.article-nav-link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--bundle-red);
  transition: width 0.25s ease;
}

.article-nav-link:hover,
.article-nav-link:focus-visible {
  color: var(--bundle-red) !important;
}

.article-nav-link:hover span::after,
.article-nav-link:focus-visible span::after {
  width: 100%;
}

.article-body {
  container-type: inline-size;

  overflow-wrap: break-word;
}

@container (max-width: 620px) {
  .article-split {
    grid-template-columns: 1fr;
  }

  .article-split--media-first .article-split-media {
    order: 0;
  }

  .article-split-media img,
  .article-body--natural .article-split-media img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 1399.98px) {
  .article-body {
    font-size: 21px;
  }

  .article-body h2 {
    font-size: 29px;
  }

  .article-body h3 {
    font-size: 25px;
  }

  .article-body h4 {
    font-size: 22px;
  }

  .article-table td,
  .article-table thead th {
    font-size: 21px;
  }
}

@media (max-width: 1199.98px) {
  .article-body {
    font-size: 19px;
  }

  .article-body h2 {
    font-size: 26px;
  }

  .article-body h3 {
    font-size: 23px;
  }

  .article-body h4 {
    font-size: 20px;
  }

  .article-table td,
  .article-table thead th {
    font-size: 19px;
  }

  .sidebar-cat {
    font-size: 18px;
  }

  .sidebar-post-img {
    flex-basis: 76px;
    width: 76px;
  }
}

@media (max-width: 991.98px) {
  .article-body {
    font-size: 18px;
  }

  .article-body h2 {
    font-size: 25px;
  }

  .article-body h3 {
    font-size: 22px;
  }

  .article-body h4 {
    font-size: 19px;
  }

  .article-table td,
  .article-table thead th {
    font-size: 18px;
  }

  .sidebar-cat {
    font-size: 17px;
  }

  .article-hero-content {
    padding-top: 72px;
  }

  .article-hero-title {
    max-width: 100%;
  }

  .article-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .article-sidebar .comments-sidebar-card {
    grid-column: 1 / -1;
  }

  .sidebar-tabs {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .sidebar-tabs::-webkit-scrollbar {
    display: none;
  }

  .sidebar-tab {
    flex: 1 0 auto;
    white-space: nowrap;
  }
}

@media (max-width: 767.98px) {
  .article-body {
    font-size: 17px;
  }

  .article-body h2 {
    font-size: 23px;
  }

  .article-body h3 {
    font-size: 20px;
  }

  .article-body h4 {
    font-size: 18px;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .article-table {
    min-width: 420px;
  }

  .article-table th,
  .article-table td {
    padding: 0.65rem 0.9rem;
    font-size: 16px;
  }

  .article-table thead th {
    font-size: 15px;
    padding-bottom: 0.8rem;
  }

  .article-nav {
    justify-content: space-between;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .article-topbar .blog-breadcrumb ol {
    font-size: 15px;
    gap: 0.4rem;
  }

  .article-topbar .blog-breadcrumb li + li::before {
    margin-right: 0.4rem;
  }

  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .article-tag {
    padding: 8px 20px;
  }

  .article-body {
    font-size: 16px;
  }

  .article-body h2 {
    font-size: 21px;
  }

  .article-body h3 {
    font-size: 19px;
  }

  .article-body h4 {
    font-size: 17px;
  }

  .article-body ul,
  .article-body ol {
    margin-left: 0;
  }

  .sidebar-cat {
    font-size: 16px;
  }

  .sidebar-post-img {
    flex-basis: 68px;
    width: 68px;
  }

  .sidebar-post-tag {
    white-space: normal;
  }
}

.wishlist-breadcrumb ol {
  font-size: 1rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}

.wishlist-breadcrumb [aria-current="page"] {
  color: var(--bundle-red);
}

.wishlist-item-img {
  position: relative;
  background: #f2f2f2;
  overflow: hidden;
}

.wishlist-item-img a {
  display: block;
}

.wishlist-item-img img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.wishlist-item-img a:hover img {
  transform: scale(1.05);
}

.wishlist-item-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bundle-blue);
  margin: 1rem 0 0.3rem;
}

.wishlist-item-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.wishlist-item-name a:hover {
  color: var(--bundle-red);
}

.wishlist-item-category {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
}

.wishlist-carousel .owl-dots {
  margin-top: clamp(1.5rem, 2.5vw, 3.5rem) !important;
}

@media (max-width: 991.98px) {
  .wishlist-item-name {
    font-size: 1.125rem;
  }

  .wishlist-item-category {
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .wishlist-item-name {
    font-size: 1rem;
    margin-top: 0.75rem;
  }

  .wishlist-item-category {
    font-size: 0.85rem;
  }

  .wishlist-btn {
    width: 34px;
    height: 34px;
    bottom: 6px;
    right: 6px;
    font-size: 1.5rem;
  }
}

.auth-section {
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 52%);
  align-items: stretch;

  min-height: clamp(560px, 44vw, 855px);
}

.auth-visual {
  position: relative;
  overflow: hidden;
}

.auth-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mt-2rem{
margin-top: 2rem;
}
.auth-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(1.25rem, 4vw, 3rem);
}

.auth-card {
  width: 100%;
  max-width: 380px;
}

.auth-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.2vw, 2.25rem);
  font-weight: 700;
  color: var(--bundle-blue);
  margin: 0 0 0.75rem;
}

.auth-wave {
  font-size: 0.9em;
}

.auth-subtitle {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--bundle-blue);
  margin: 0 0 2rem;
}

.auth-field {
  margin-bottom: 1.25rem;
}

.auth-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bundle-blue);
  margin-bottom: 0.5rem;
}

.auth-field input {
  display: block;
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-field input::placeholder {
  color: #94a3b8;
}

.auth-field input:focus {
  outline: 0;
  border-color: var(--bundle-red);
  box-shadow: 0 0 0 3px rgba(239, 71, 37, 0.12);
}

.auth-form.was-validated input:invalid {
  border-color: #dc2626;
}

.auth-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0.25rem 0 1.5rem;
}

.auth-remember {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--bundle-blue);
  cursor: pointer;
}

.auth-remember input {
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  background: #ffffff;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.auth-remember input::after {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg) translate(1px, -2px);
  opacity: 0;
}

.auth-remember input:checked {
  background: var(--bundle-red);
  border-color: var(--bundle-red);
}

.auth-remember input:checked::after {
  opacity: 1;
}

.auth-remember input:focus-visible {
  outline: 2px solid var(--bundle-blue);
  outline-offset: 2px;
}

.auth-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.auth-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.auth-submit {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: var(--bundle-red);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.85rem 1rem;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.auth-submit:hover {
  background: var(--bundle-red-hover);
  transform: translateY(-1px);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.75rem 0;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: #e2e8f0;
}

.auth-divider span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #64748b;
  white-space: nowrap;
}

.auth-social {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.auth-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--bundle-blue);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.auth-social-btn:hover {
  background: #eef2f7;
  border-color: #cbd5e1;
  color: var(--bundle-blue);
}

.auth-footnote {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--bundle-blue);
  text-align: center;
  margin: 1.75rem 0 0;
}

.auth-footnote .auth-link {
  font-size: inherit;
}

@media (max-width: 991.98px) {
  .auth-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .auth-visual {
    position: static;
  }

  .auth-visual img {
    position: static;
    height: clamp(200px, 34vw, 340px);
  }

  .auth-panel {
    padding-top: clamp(2rem, 5vw, 3rem);
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
  }
}

@media (max-height: 520px) and (max-width: 991.98px) {
  .auth-visual {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .auth-social {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .auth-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .auth-field input {
    font-size: 16px;
  }

  .auth-row {
    margin-bottom: 1.25rem;
  }

  .auth-divider {
    margin: 1.5rem 0;
  }

  .auth-footnote {
    margin-top: 1.5rem;
  }
}
.auth-back {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin: 1.5rem 0 0;
}

.auth-back .auth-link {
  font-size: inherit;
}
.auth-error {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #dc2626;
  margin: 0.4rem 0 0;
}
.lang-switch {
  flex-shrink: 0;
}

.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.5rem;
  border: 0;
  border-radius: 4px;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: inherit;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.lang-switch-btn i {
  font-size: 1.15em;
  line-height: 1;
}

.lang-switch-chevron {
  font-size: 0.7em;
  transition: transform 0.25s ease;
}

.lang-switch-btn[aria-expanded="true"] .lang-switch-chevron {
  transform: rotate(180deg);
}

.lang-switch-btn:focus-visible {
  outline: 2px solid var(--bundle-red);
  outline-offset: 2px;
}

.lang-switch-menu,
.profile-menu {
  min-width: 160px;
  padding: 0.4rem;
  margin-top: 0.5rem;
  border: 1px solid rgba(17, 42, 70, 0.08);
  border-radius: 8px;
  box-shadow: 0 10px 25px -5px rgba(2, 8, 23, 0.15);
}

.profile-menu {
  min-width: 200px;
}

.lang-switch-option,
.profile-option {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--bundle-blue);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-switch-option:hover,
.lang-switch-option:focus-visible {
  background: rgba(239, 71, 37, 0.08);
  color: var(--bundle-red);
}

.lang-switch-option.is-active {
  color: var(--bundle-red);
  font-weight: 600;
}

.profile-toggle {
  background: none;
  border: 0;
  line-height: 1;
}

.profile-toggle:focus-visible {
  outline: 2px solid var(--bundle-red);
  outline-offset: 2px;
}

.profile-menu .dropdown-divider {
  margin: 0.35rem 0.25rem;
  border-top-color: rgba(17, 42, 70, 0.1);
}

.profile-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.profile-option i {
  flex-shrink: 0;
  font-size: 1.05em;
  line-height: 1;
  color: var(--bundle-blue);
  transition: color 0.2s ease, transform 0.2s ease;
}

/* Solid fill rather than the language menu's light wash — these are actions,
   so the hovered row reads as the one that will fire. */
.profile-option:hover,
.profile-option:focus-visible {
  background: var(--bundle-blue);
  color: var(--text-white);
  padding-left: 1rem;
}

.profile-option:hover i,
.profile-option:focus-visible i {
  color: var(--text-white);
  transform: translateX(2px);
}

/* Signing out is the destructive one, so it fills in the accent instead */
.profile-logout:hover,
.profile-logout:focus-visible {
  background: var(--bundle-red);
}

@media (prefers-reduced-motion: reduce) {
  .profile-option {
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .profile-option:hover,
  .profile-option:focus-visible {
    padding-left: 0.75rem;
  }

  .profile-option:hover i,
  .profile-option:focus-visible i {
    transform: none;
  }
}

@media (max-width: 1399.98px) {
  .lang-switch-menu {
    margin-top: 0.35rem;
  }
}

@media (max-width: 575.98px) {
  .lang-switch-btn {
    font-size: 0.95rem;
    padding: 0.35rem 0.4rem;
  }
}
.profile-identity {
  padding: 0.6rem 0.75rem 0.75rem;
}

.profile-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bundle-blue);
  margin: 0 0 0.15rem;
}

.profile-email {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navbar-actions a svg path,
.navbar-actions button svg path {
  stroke: currentColor;
  transition: stroke 0.2s ease;
}

.navbar-actions a svg,
.navbar-actions button svg {
  transition: transform 0.2s ease;
}

.navbar-actions a:hover svg,
.navbar-actions a:focus-visible svg,
.navbar-actions button:hover svg,
.navbar-actions button:focus-visible svg {
  transform: scale(1.1);
}

@media (prefers-reduced-motion: reduce) {
  .navbar-actions a svg,
  .navbar-actions button svg {
    transition: none;
  }

  .navbar-actions a:hover svg,
  .navbar-actions a:focus-visible svg,
  .navbar-actions button:hover svg,
  .navbar-actions button:focus-visible svg {
    transform: none;
  }
}

@media (min-width: 1400px) and (max-width: 1758.98px) {
  .navbar > .container {
    gap: 24px;
  }

  .menu-nav-menu {
    gap: 24px;
  }

  .menu-nav-menu .navbar-nav {
    gap: 20px;
  }

  .navbar-dark .navbar-nav .nav-link {
    font-size: 1.05rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .navbar-dark .navbar-nav .nav-link::after {
    left: 0.5rem;
  }

  .navbar-dark .navbar-nav .nav-link:hover::after,
  .navbar-dark .navbar-nav .nav-link.active::after,
  .mega-menu-item:hover .nav-link::after,
  .nav-link.show::after {
    width: calc(100% - 1rem);
  }

  .btn-demande {
    font-size: 0.9rem;
    padding: 10px 18px;
  }

  .navbar-actions {
    gap: 0.6rem !important;
  }

  .brand-logo-img {
    height: 24px;
  }
}

@media (max-width: 1399.98px) {
  .navbar-actions .btn-demande {
    margin-right: auto;
  }

  .lang-switch {
    order: 0;
    margin-right: 0;
  }
}

@media (max-width: 575.98px) {
  .navbar-actions {
    flex-wrap: wrap;
    row-gap: 1rem;
    gap: 0.5rem !important;
    justify-content: end;
  }

  .navbar-actions .btn-demande {
    order: 2;
    flex: 1 1 100%;
    margin-right: 0;
    text-align: center;
        padding: 12px 30px !important;
  }

  .navbar-actions a,
  .navbar-actions .profile-toggle {
    padding: 0.15rem !important;
  }

  .brand-logo-img {
    height: 24px;
  }
}

.product-detail-section {
  padding-top: clamp(1.5rem, 2.5vw, 2.5rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.product-breadcrumb ol {
  font-size: 1rem;
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

.product-gallery,
.product-info {
  min-width: 0;
}

.product-gallery-slider,
.product-gallery .owl-stage-outer {
  max-width: 100%;
}

.product-gallery {
  position: relative;
}

.product-gallery .wishlist-btn {
  top: 30px;
  right: 30px;
  bottom: auto;
}

.product-gallery-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
}

.product-gallery .owl-nav {
  position: absolute;
  inset: 0;

  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  pointer-events: none;
}

.product-gallery .owl-nav button {
  pointer-events: auto;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.product-gallery .owl-nav .owl-prev-btn,
.product-gallery .owl-nav .owl-next-btn {
  width: 40px;
  height: 40px;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(17, 42, 70, 0.45) !important;
  transition: color 0.2s ease, transform 0.2s ease;
}

.product-gallery .owl-nav button:hover .owl-prev-btn,
.product-gallery .owl-nav button:hover .owl-next-btn {
  color: var(--bundle-red) !important;
}

.product-gallery .owl-nav button:hover .owl-prev-btn {
  transform: translateX(-3px);
}

.product-gallery .owl-nav button:hover .owl-next-btn {
  transform: translateX(3px);
}

.product-gallery .owl-nav button:focus-visible .owl-prev-btn,
.product-gallery .owl-nav button:focus-visible .owl-next-btn {
  color: var(--bundle-red) !important;
  outline: 2px solid var(--bundle-red);
  outline-offset: 2px;
}

.product-gallery .owl-nav svg {
  width: 40px;
  height: 40px;
}

@media (prefers-reduced-motion: reduce) {
  .product-gallery .owl-nav button:hover .owl-prev-btn,
  .product-gallery .owl-nav button:hover .owl-next-btn {
    transform: none;
  }
}

.product-gallery .owl-dots {
 position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.product-info{
  padding-top: 2rem;
}
.product-sku {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin: 0 0 0.35rem;
}

.product-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 3.25rem);
  font-weight: 700;
  color: var(--bundle-blue);
  margin: 0 0 clamp(1.5rem, 2.5vw, 2.25rem);
}

.product-label {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--bundle-blue);
  margin: 0 0 0.65rem;
}

.product-swatches {
  display: flex;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
}

.product-swatch {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--swatch, #E8E7E3);
  cursor: pointer;
  outline: 2px solid transparent;
  outline-offset: 4px;
  transition: transform 0.25s ease, outline-color 0.25s ease;
}

.product-swatch:hover {
  transform: scale(1.04);
 outline:2px solid  var(--swatch, #E8E7E3) !important;
}

.product-swatch.is-active {
  outline:2px solid  var(--swatch, #E8E7E3) !important;
}

@media (prefers-reduced-motion: reduce) {
  .product-swatch {
    transition: outline-color 0.25s ease;
  }

  .product-swatch:hover {
    transform: none;
  }
}

.product-swatch:focus-visible {
  outline-color: var(--bundle-red);
  outline-offset: 4px;
  box-shadow: 0 0 0 2px rgba(10, 34, 64, 0.35);
}

.product-buy {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.85rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.product-qty {
  display: inline-flex;
  align-items: center;
 background:#0F2C4E0D;
}

.product-qty-btn {
  width: 34px;
  align-self: stretch;
  border: 0;
  background: none;
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1;
  color: var(--bundle-blue);
  cursor: pointer;
  transition: color 0.2s ease;
}

.product-qty-btn:hover {
  color: var(--bundle-red);
}

.product-qty-input {
  width: 34px;
  border: 0;
  padding: 0.7rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--bundle-blue);
  text-align: center;
  -moz-appearance: textfield;
  appearance: textfield;
  background: none;
}
input:focus-visible {
    outline-offset: 0px;
    outline: 0px solid var(--bundle-red);
}

.product-qty-input::-webkit-outer-spin-button,
.product-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  max-width: 320px;
  background: var(--bundle-red);
  color: var(--text-white) !important;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.product-cta:hover {
  background: var(--bundle-blue);
  transform: translateY(-1px);
}

.product-tabs {
  display: flex;
  gap: clamp(1.5rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(17, 42, 70, 0.12);
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.product-tab {
  position: relative;
  background: none;
  border: 0;
  padding: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(17, 42, 70, 0.7);
  cursor: pointer;
  transition: color 0.2s ease;
  width: 100%;
}

.product-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--bundle-red);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.product-tab:hover {
  color: var(--bundle-red);
}

.product-tab.is-active {
  color: var(--bundle-blue);
}

.product-tab.is-active::after {
  transform: scaleX(1);
}

.product-panel {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

.product-panel p {
  margin: 0 0 1rem;
}

.product-spec-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bundle-blue);
  margin: 1.5rem 0 0.6rem;
}

.product-panel > .product-spec-title:first-child {
  margin-top: 0;
}

.product-spec-list {
  margin: 0 0 0.5rem;
  padding-left: 1.15rem;
}

.product-spec-list li {
  margin-bottom: 0.35rem;
}

.product-spec-list li::marker {
  color: var(--bundle-blue);
}

.product-spec-note {
  margin: 0;
}

@media (max-width: 991.98px) {
  .product-detail {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .product-gallery {
    width: 100%;
    max-width: 460px;
    margin-inline: auto;
  }

  .product-title {
    margin-bottom: 1.5rem;
  }

  .product-cta {
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .product-gallery .owl-nav .owl-prev-btn,
  .product-gallery .owl-nav .owl-next-btn,
  .product-gallery .owl-nav svg {
    width: 28px;
    height: 28px;
  }

  .product-gallery .wishlist-btn {
    top: 14px;
    right: 14px;
  }

  .product-gallery .owl-dots {
    bottom: 14px;
  }
}

@media (max-width: 575.98px) {
  .product-buy {
    gap: 0.6rem;
  }

  .product-cta {
    flex: 1 1 100%;
    max-width: none;
  }

  .product-tabs {
    gap: 1.5rem;
  }

  .product-tab {
    font-size: 0.95rem;
  }

  .product-swatch {
    width: 38px;
    height: 38px;
  }

  .product-swatches {
    gap: 0.75rem;
  }
}

.product-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-card:hover .product-name a {
  color: var(--bundle-red);
}

.product-name a:focus-visible {
  outline: 2px solid var(--bundle-red);
  outline-offset: 3px;
}
.btn-filter-reset {
  border: 0;
  background: none;
  padding: 0.25rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--bundle-red);
  text-decoration: underline;
  cursor: pointer;
}

.btn-filter-reset:hover {
  color: var(--bundle-blue);
}

.filter-empty {
  margin: 2.5rem 0 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #64748b;
  text-align: center;
}
.dropdown-menu-item {
  position: relative;
  padding-right: 2.25rem;
}

.dropdown-menu-item.is-selected {
  color: var(--bundle-red);
  /* font-weight: 600; */
}

.dropdown-menu-item.is-selected::after {
  content: "";
  position: absolute;
  right: 0.9rem;
  top: 50%;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--bundle-red);
  border-bottom: 2px solid var(--bundle-red);
  transform: translateY(-70%) rotate(-45deg);
}
.filter-bar .dropdown[data-filter] {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.filter-clear {
  border: 0;
  background: none;
  padding: 0.15rem;
  line-height: 1;
  font-size: 0.7rem;
  color: var(--bundle-red);
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.filter-clear:hover {
  color: var(--bundle-blue);
  transform: scale(1.15);
}

.filter-clear:focus-visible {
  outline: 2px solid var(--bundle-red);
  outline-offset: 2px;
}
.profile-toggle--avatar {
  display: inline-flex;
  padding: 0;
  border-radius: 50%;
  line-height: 0;
}

.profile-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.55);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.profile-toggle--avatar:hover .profile-avatar,
.profile-toggle--avatar[aria-expanded="true"] .profile-avatar {
  border-color: var(--bundle-red);
  transform: scale(1.05);
}

.header-fixed .profile-avatar,
.header-light .profile-avatar {
  border-color: rgba(10, 34, 64, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .profile-toggle--avatar:hover .profile-avatar,
  .profile-toggle--avatar[aria-expanded="true"] .profile-avatar {
    transform: none;
  }
}
.wishlist-empty {
  max-width: 460px;
  margin: clamp(2rem, 5vw, 4rem) auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 3vw, 2.5rem);
  background: rgba(239, 71, 37, 0.06);
  border: 1px solid rgba(239, 71, 37, 0.18);
  border-radius: 12px;
  text-align: center;
}

.wishlist-empty-icon {
  display: inline-flex;
  color: var(--bundle-red);
  opacity: 0.55;
  margin-bottom: 1.25rem;
}

.wishlist-empty-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--bundle-blue);
  margin: 0 0 0.65rem;
}

.wishlist-empty-text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0 0 1.75rem;
}

@media (max-width: 575.98px) {
  .wishlist-empty {
    margin-left: 0;
    margin-right: 0;
  }

  .wishlist-empty-text {
    font-size: 0.95rem;
  }
}
.astuces-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.astuces-card:hover .astuces-card-title a {
  color: var(--bundle-red);
}

.astuces-card-title a:focus-visible {
  outline: 2px solid var(--bundle-red);
  outline-offset: 3px;
}

.astuces-share {
  position: relative;
  z-index: 2;
}



 /* Empty state: 0 products */

.products-empty-wrap {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.products-empty {
  position: relative;
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  background: #ffffff;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
}

.products-empty::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  width: 320px;
  height: 240px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(239, 71, 37, 0.09), rgba(239, 71, 37, 0));
  pointer-events: none;
}

.products-empty-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: var(--bg-light-grey);
  border: 1px solid var(--border-grey);
  color: var(--bundle-blue);
}

.products-empty-icon svg {
  width: 52px;
  height: 52px;
  opacity: 0.85;
}

.products-empty-count {
  position: absolute;
  top: 4px;
  right: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 0.5rem;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: var(--bundle-red);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}

.products-empty-eyebrow {
  margin: 0 0 0.4rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bundle-red);
}

.products-empty-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--bundle-blue);
}

.products-empty-text {
  max-width: 460px;
  margin: 0 auto 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
}

.products-empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.products-empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--bundle-red);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.products-empty-btn i {
  transition: transform 0.25s ease;
}

.products-empty-btn--primary {
  background: var(--bundle-red);
  color: var(--text-white);
}

.products-empty-btn--primary:hover,
.products-empty-btn--primary:focus-visible {
  background: var(--bundle-red-hover);
  border-color: var(--bundle-red-hover);
  color: var(--text-white);
  transform: translateY(-2px);
}

.products-empty-btn--primary:hover i,
.products-empty-btn--primary:focus-visible i {
  transform: translateX(3px);
}

.products-empty-btn--outline {
  background: transparent;
  color: var(--bundle-blue);
}

.products-empty-btn--outline:hover,
.products-empty-btn--outline:focus-visible {
  background: var(--bundle-red);
  color: var(--text-white);
  transform: translateY(-2px);
}

.products-empty-suggest {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-grey);
}

.products-empty-suggest-label {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
}

.products-empty-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.products-empty-tags a {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--border-grey);
  border-radius: 999px;
  background: var(--bg-light-grey);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--bundle-blue);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.products-empty-tags a:hover,
.products-empty-tags a:focus-visible {
  background: var(--bundle-blue);
  border-color: var(--bundle-blue);
  color: var(--text-white);
}

.products-empty-btn:focus-visible,
.products-empty-tags a:focus-visible {
  outline: 2px solid var(--bundle-red);
  outline-offset: 3px;
}

@media (max-width: 575.98px) {
  .products-empty-actions,
  .products-empty-btn {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .products-empty-btn,
  .products-empty-btn i,
  .products-empty-tags a {
    transition: none;
  }
  .products-empty-btn:hover,
  .products-empty-btn:focus-visible,
  .products-empty-btn:hover i,
  .products-empty-btn:focus-visible i {
    transform: none;
  }
}