/* [project]/app/globals.css [app-client] (css) */
@tailwind base;

@tailwind components;

@tailwind utilities;

:root {
  --background: #fff;
  --primary: #012b03;
  --primary-rgb: 0, 43, 109;
  --secondary: #2b0129;
  --secondary-rgb: 0, 176, 167;
  --text: #000;
  --tertiary: #f5f5f5;
}

html, body {
  scroll-behavior: smooth;
}

.snap-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.no-snap {
  scroll-snap-align: none !important;
  scroll-snap-stop: normal !important;
}

footer {
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

#hero-slider {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.header-desktop.header-transparent, .header-mobile.header-transparent {
  backdrop-filter: none;
  box-shadow: none;
  background-color: #0000;
}

.header-desktop.header-solid, .header-mobile.header-solid {
  backdrop-filter: saturate(180%) blur(8px);
  background-color: #fffffff2;
  box-shadow: 0 2px 8px #0000000f;
}

header.header-desktop.header-transparent .right nav a svg, header.header-desktop.header-transparent .right nav button svg, header.header-mobile.header-transparent .header-mobile-icons a svg, header.header-mobile.header-transparent .header-mobile-icons button svg {
  color: #fff !important;
}

header.header-desktop.header-solid .right nav a svg, header.header-desktop.header-solid .right nav button svg, header.header-mobile.header-solid .header-mobile-icons a svg, header.header-mobile.header-solid .header-mobile-icons button svg {
  color: var(--primary) !important;
}

.full-height {
  background: linear-gradient(90deg, rgba(var(--primary-rgb), .06), rgba(var(--primary-rgb), .12));
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
  overflow: hidden;
  min-height: 100vh !important;
}

.full-height > * {
  z-index: 1;
  position: relative;
}

.full-height.hero-bienfait:before, .full-height.hero-bienfait:after {
  content: "";
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
}

.full-height.hero-bienfait:before {
  background-image: url("/images/bienfait/1.jpg");
  width: 55%;
  left: 0;
}

.full-height.hero-bienfait:after {
  background-image: url("/images/bienfait/2.jpg");
  width: 55%;
  right: 0;
}

@media (width <= 640px) {
  .full-height.hero-bienfait:before, .full-height.hero-bienfait:after {
    width: 100%;
    left: 0;
    right: 0;
  }

  .full-height.hero-bienfait:before {
    height: 50%;
    top: 0;
    bottom: auto;
  }

  .full-height.hero-bienfait:after {
    height: 50%;
    top: auto;
    bottom: 0;
  }
}

@media (width >= 1024px) {
  .full-height {
    min-height: 100vh !important;
  }
}

@keyframes fade-in-down {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.animate-fade-in-down {
  animation: 1s ease-out forwards fade-in-down;
}

.animate-fade-in-up {
  opacity: 0;
  animation: 1s ease-out .5s forwards fade-in-up;
}

.animate-bounce {
  animation: 2s infinite bounce;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Inter, sans-serif;
}

body {
  background-color: var(--background);
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-top: 0;
  display: flex;
  position: relative;
  overflow-x: hidden;
}

#brand-video-container {
  width: 100%;
  max-width: 1440px;
  height: auto;
  margin: 0 auto;
}

video#brand-video {
  width: 100%;
  max-width: 1440px;
  height: auto;
}

.header-desktop {
  z-index: 100;
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 768px;
  max-width: 100%;
  height: 60px;
  margin: 0 auto;
  padding: 0 20px;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.header-desktop .left {
  align-items: center;
  width: 50%;
  height: 100%;
  display: flex;
}

.header-desktop .left img {
  width: 166px;
}

.header-desktop .right {
  align-items: center;
  gap: 2rem;
  width: auto;
  height: 100%;
  display: flex;
}

.right .search-container {
  width: 285px;
  position: relative;
}

.right .search-container .search-input {
  border: 1px solid var(--primary);
  border-radius: 50px;
  width: 100%;
  height: 42px;
  padding-left: 12px;
  font-size: 14px;
  transition: all .3s;
}

header .right .search-container .search-input:focus {
  border-color: var(--primary);
  outline: none;
}

header .right .search-container .search-icon {
  color: #fff;
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

header .right nav {
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  width: auto;
  height: 100%;
  display: flex;
}

header .right nav a {
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  display: flex;
}

header .right nav a svg {
  color: #fff;
  width: 24px;
  height: 24px;
}

header .right nav .button {
  border: 1px solid var(--tertiary);
  width: 107px;
  height: 42px;
  color: var(--primary);
  background-color: #0000;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  display: flex;
}

header .right nav .button:hover {
  background-color: var(--primary);
  color: var(--tertiary);
  cursor: pointer;
}

header .navbar-desktop .right nav .button:active {
  transform: scale(.9);
}

.header-mobile {
  z-index: 100;
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 375px;
  max-width: 100%;
  height: 60px;
  margin: 0 auto;
  padding: 0 10px;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.header-mobile .header-first-line {
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  width: 100%;
  height: 50%;
  display: flex;
}

.header-mobile .header-first-line img {
  width: auto;
  height: 25px;
}

.header-mobile .header-mobile-icons {
  align-items: center;
  gap: 1rem;
  display: flex;
}

.header-mobile-icons a {
  color: var(--text);
}

.mobile-menu-toggle {
  cursor: pointer;
  color: var(--primary);
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

.mobile-menu {
  z-index: 1001;
  background-color: #fff;
  width: 85%;
  height: 100vh;
  transition: transform .3s;
  position: fixed;
  top: 0;
  right: -85%;
  overflow-y: auto;
  box-shadow: -5px 0 15px #0000001a;
}

.mobile-menu.open {
  transform: translateX(-100%);
}

.mobile-menu-content {
  padding: 4rem 1.5rem 1.5rem;
}

.mobile-menu-section {
  margin-bottom: 2rem;
}

.mobile-menu-section h3 {
  color: var(--primary);
  border-bottom: 2px solid var(--secondary);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  font-size: 18px;
  font-weight: 700;
}

.mobile-menu-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu-section ul li {
  margin-bottom: .75rem;
}

.mobile-menu-section ul li a {
  color: var(--text);
  border-radius: 4px;
  padding: .5rem;
  text-decoration: none;
  transition: background-color .2s;
  display: block;
}

.mobile-menu-section ul li a:hover {
  color: var(--primary);
  background-color: #0000000d;
}

.mobile-menu-overlay {
  z-index: 1000;
  backdrop-filter: blur(2px);
  background-color: #0006;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.header-mobile .header-second-line {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  height: 50%;
  display: flex;
}

.header-mobile .header-second-line .search-container {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.header-mobile .header-second-line .search-input {
  border: 1px solid var(--primary);
  border-radius: 50px;
  width: 100%;
  height: 42px;
  padding-left: 12px;
  font-size: 14px;
  transition: all .3s;
}

.header-mobile .search-input:focus {
  border-color: var(--primary);
  outline: none;
}

.header-mobile .search-icon {
  color: var(--primary);
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.header-mobile .header-second-line .button {
  border: 1px solid var(--tertiary);
  width: 107px;
  height: 42px;
  color: var(--primary);
  background-color: #0000;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  display: flex;
}

.pro-button {
  text-decoration: none;
}

.pro-page-container {
  width: 100%;
  max-width: 100%;
}

.pro-hero {
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  background-image: linear-gradient(#002b6de6, #002b6db3);
  background-position: center;
  background-size: cover;
  padding: 100px 20px;
}

.pro-hero-content h1 {
  margin-bottom: 20px;
  font-size: 3rem;
}

.hero-subtitle {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.5rem;
}

.pro-section {
  padding: 80px 20px;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pro-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 50px;
  font-size: 2.2rem;
}

.pro-why {
  background-color: var(--tertiary);
}

.advantages-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  display: grid;
}

.advantage-card {
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  transition: transform .3s;
  box-shadow: 0 5px 15px #0000000d;
}

.advantage-card:hover {
  transform: translateY(-5px);
}

.advantage-icon {
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.advantage-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

.pro-solutions {
  background-color: #fff;
}

.solutions-list {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  display: grid;
}

.solution-category {
  border-left: 4px solid var(--secondary);
  background-color: var(--tertiary);
  border-radius: 0 8px 8px 0;
  padding: 20px;
}

.solution-category h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.solution-category ul {
  padding-left: 20px;
}

.solution-category li {
  margin-bottom: 10px;
}

.cart-icon-container {
  display: inline-flex;
  position: relative;
}

.cart-badge {
  background-color: var(--secondary);
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  position: absolute;
  top: -8px;
  right: 0;
}

.already-in-cart {
  text-align: center;
  color: var(--primary);
  border: 1px solid var(--tertiary);
  background-color: #f9f9f9;
  border-radius: 4px;
  margin: 10px 0;
  padding: 10px;
  font-size: .9rem;
}

.product-cart-info {
  text-align: center;
  color: #fff;
  background-color: var(--primary);
  margin: 10px 0;
  border-radius: 4px;
  margin-block: 1.25rem;
  padding: 8px 12px;
  font-size: .9rem;
}

.quantity-btn {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  transition: all .2s;
  display: flex;
}

.quantity-btn:hover {
  background-color: #f5f5f5;
}

.quantity-btn:active {
  background-color: #e8e8e8;
  transform: scale(.95);
}

.product-tabs-container {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.tabs-container {
  width: 100%;
  margin-top: 2rem;
}

.tabs-header {
  border-bottom: 1px solid #e0e0e0;
  flex-wrap: wrap;
  gap: 4px;
  display: flex;
}

.tab-button {
  cursor: pointer;
  color: #555;
  background-color: #f5f5f5;
  border: none;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding: 10px 20px;
  font-size: .9rem;
  font-weight: 500;
  transition: all .2s;
}

.tab-button:hover {
  background-color: #eaeaea;
}

.tab-button.active {
  background-color: var(--primary);
  color: #fff;
}

.tab-content {
  padding: 1.5rem 0;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.features-table-grid {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  display: grid;
}

.feature-item {
  border: 1px solid #eee;
  border-radius: 4px;
  flex-direction: column;
  gap: .5rem;
  display: flex;
}

.feature-name {
  color: #555;
  font-size: .9rem;
  font-weight: 600;
}

.feature-value {
  color: #333;
}

.notice-link {
  background-color: var(--primary);
  color: #fff;
  border-radius: 4px;
  margin-top: 10px;
  padding: 10px 15px;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.notice-link:hover {
  background-color: #346beb;
  transform: translateY(-2px);
}

.product-description-container {
  max-width: 100%;
  margin: 0 auto;
}

.product-description-header {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 1.5rem;
  padding-bottom: .5rem;
}

.product-description-header h3 {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 600;
}

.product-description-content {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.product-full-description {
  line-height: 1.6;
}

.product-full-description img {
  border-radius: 4px;
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
}

.product-full-description p {
  margin-bottom: 1rem;
}

.product-full-description ul, .product-full-description ol {
  margin-bottom: 1rem;
  margin-left: 1.5rem;
}

.label-container {
  padding: 1.5rem 0;
}

.label-image-container {
  justify-content: center;
  margin: 1.5rem 0;
  display: flex;
}

.label-image {
  object-fit: contain;
  border-radius: 4px;
  max-width: 100%;
  height: auto;
  max-height: 400px;
}

.pro-benefits {
  background-color: var(--tertiary);
}

.benefits-columns {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  display: grid;
}

.benefit-column {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px #0000000d;
}

.benefit-column h3 {
  color: var(--primary);
  text-align: center;
  border-bottom: 2px solid var(--secondary);
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.benefit-column ul {
  padding-left: 20px;
}

.benefit-column li {
  margin-bottom: 12px;
}

.pro-contact {
  background-color: #fff;
}

.contact-container {
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  display: grid;
}

.contact-info {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.contact-info p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-methods p {
  margin-bottom: 15px;
}

.contact-form {
  background-color: var(--tertiary);
  border-radius: 10px;
  padding: 40px;
}

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

.form-group label {
  margin-bottom: 8px;
  font-weight: 500;
  display: block;
}

.form-group input, .form-group textarea {
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
  padding: 12px;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-button {
  background-color: var(--primary);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color .3s;
}

.submit-button:hover {
  background-color: #002b6de6;
}

@media (width <= 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .pro-hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }
}

@media (width <= 768px) {
  .pro-hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .pro-section {
    padding: 50px 20px;
  }

  .pro-section h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
}

.header-mobile .header-second-line .button:hover {
  background-color: var(--primary);
  color: var(--tertiary);
  cursor: pointer;
}

.header-mobile .header-second-line .button:active {
  transform: scale(.9);
}

.header-mobile .header-mobile-icons a {
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  display: flex;
}

.header-mobile .header-mobile-icons a svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.header-mobile .header-mobile-icons a:hover {
  cursor: pointer;
}

.categories-list {
  text-align: center;
  flex-direction: column;
  align-self: center;
  width: 100%;
  max-width: 1200px;
  height: 25px;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.categories-list ul {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.categories-list ul li {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.categories-list ul li a {
  height: 100%;
  color: var(--text);
  justify-content: center;
  padding-bottom: 3px;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.categories-list ul li a:hover {
  border-bottom: 3px solid var(--primary);
}

.categories-list > ul > li.active > a {
  border-bottom: 3px solid var(--primary);
  color: var(--primary);
  font-weight: 500;
}

.categories-list ul li a.active {
  border-bottom: 3px solid var(--primary);
}

.categories-list ul li a.orange {
  color: var(--secondary);
  font-weight: 600;
}

.slider-desktop {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 500px;
  margin-block: 1.5rem;
  display: flex;
}

.slider-mobile {
  cursor: pointer;
  width: 100%;
  margin-block: 1.5rem;
}

.slider-mobile .image {
  width: 100%;
  height: auto;
}

.top-categories {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 1.5rem auto;
  display: flex;
}

.top-categories h2 {
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
}

.top-categories-list {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 1.5rem auto;
  display: flex;
}

.top-categories-list ul {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.top-categories-list ul li {
  justify-content: center;
  align-items: center;
  min-width: 200px;
  height: 130px;
  display: flex;
}

.top-categories-list ul li a {
  height: 100%;
  color: var(--primary);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.top-categories-list ul li a:hover, .top-categories-list ul li a.active {
  border-bottom: 3px solid var(--primary);
}

.top-categories-list ul li a.orange {
  color: var(--secondary);
  font-weight: 600;
}

.top-ventes {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 1.5rem auto;
  display: flex;
}

.top-ventes h2 {
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
}

.top-ventes-list, .categorie-content {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  overflow-x: auto;
}

.top-ventes-list ul {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  gap: .75rem;
  width: auto;
  margin-block: 1.5rem;
  padding: .5rem;
  display: flex;
  overflow-x: visible;
}

.categorie-content ul {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  margin: 1.5rem auto;
  display: flex;
}

.top-ventes-list ul li:not(:has(.product-card-container)), .categorie-content ul li:not(:has(.product-card-container)) {
  text-align: center;
  cursor: pointer;
  background-color: #f7f7f7;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  min-width: 288px;
  height: 300px;
  display: flex;
  position: relative;
}

.top-ventes-list ul li, .categorie-content ul li {
  background: none;
  min-width: auto;
  height: auto;
  display: flex;
}

.top-ventes-list ul li .product-card-container, .nos-nouveautes-list ul li .product-card-container {
  flex-shrink: 0;
  width: 350px !important;
  min-width: 350px !important;
}

.top-ventes-list ul li:hover, .categorie-content ul li:hover {
  background-color: #d3d3d3;
}

.top-ventes-list ul li h3, .categorie-content ul li h3 {
  color: #000;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
}

.top-ventes-list ul li p, .categorie-content ul li p {
  color: #000;
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 400;
}

.top-ventes-list ul li h4, .categorie-content ul li h4 {
  color: var(--primary);
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
}

.top-ventes-list ul li button, .categorie-content ul li button {
  background-color: var(--secondary);
  padding: 0;
  color: #fff;
  border: none;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 42px;
  margin: 0;
  padding-inline: 1rem;
  font-size: 15px;
  font-weight: 500;
  display: flex;
}

.top-ventes-list ul li button:hover, .categorie-content ul li button:hover {
  background-color: var(--primary);
  color: var(--tertiary);
  cursor: pointer;
}

.top-ventes-list ul li button:active, .categorie-content ul li button:active {
  transform: scale(.9);
}

.nos-nouveautes {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 1.5rem auto;
  display: flex;
}

.nos-nouveautes h2 {
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
}

.nos-nouveautes-list {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  overflow-x: auto;
}

.nos-nouveautes-list ul {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  gap: .75rem;
  width: auto;
  margin-block: 1.5rem;
  padding: .5rem;
  display: flex;
  overflow-x: visible;
}

.nos-nouveautes-list ul li {
  text-align: center;
  cursor: pointer;
  background-color: #f7f7f7;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  min-width: 170px;
  height: 300px;
  display: flex;
  position: relative;
}

.nos-nouveautes-list ul li:hover {
  background-color: #d3d3d3;
}

.nos-nouveautes-list ul li h3 {
  color: #000;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
}

.nos-nouveautes-list ul li p {
  color: #000;
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 400;
}

.nos-nouveautes-list ul li h4 {
  color: var(--primary);
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
}

.nos-nouveautes-list ul li button {
  background-color: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 42px;
  margin: 0;
  padding: 0;
  padding-inline: 1rem;
  font-size: 15px;
  font-weight: 500;
  display: flex;
}

.nos-nouveautes-list ul li button:hover {
  background-color: var(--primary);
  color: var(--tertiary);
  cursor: pointer;
}

.nos-nouveautes-list ul li button:active {
  transform: scale(.9);
}

.home-history {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-block: 1.5rem;
}

.home-history-banner, .home-history-banner img {
  width: 100%;
  height: auto;
}

.home-history-container {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  width: 100%;
  margin-block: 1.5rem;
  display: flex;
}

.home-history-content {
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  width: 46%;
  height: 255px;
  display: flex;
}

.home-history-content h4 {
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
}

.home-history-content p {
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.home-history-content button {
  border: solid 2px var(--primary);
  width: 150px;
  height: 42px;
  color: var(--primary);
  cursor: pointer;
  background-color: #0000;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  padding-inline: 1rem;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  display: flex;
}

.home-history-content button:hover {
  background-color: var(--primary);
  color: var(--tertiary);
  cursor: pointer;
}

.home-history-image {
  justify-content: center;
  align-items: center;
  width: 46%;
  height: 255px;
  display: flex;
  position: relative;
}

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

.policy {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 4rem auto;
  display: flex;
}

.policy img {
  width: 100%;
  height: auto;
}

.site-footer {
  background-color: var(--primary);
  color: #f5f5f5;
  padding: 40px 0 0;
  font-size: 15px;
}

.footer-content {
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  margin-bottom: 30px;
  padding: 0 20px;
  display: flex;
}

.footer-brand, .footer-nav, .footer-social {
  flex: 1;
  min-width: 220px;
}

.footer-brand {
  flex-basis: 30%;
}

.footer-logo {
  filter: brightness(0) invert();
  width: 150px;
  margin-bottom: 15px;
}

.footer-tagline {
  color: #ccc;
  font-style: italic;
}

.footer-nav h4, .footer-social h4 {
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}

.footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: #f5f5f5;
  text-decoration: none;
  transition: color .2s, padding-left .2s;
}

.footer-nav a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.social-icons {
  gap: 15px;
  display: flex;
}

.social-icons a {
  color: #f5f5f5;
  font-size: 24px;
  transition: color .2s, transform .2s;
}

.social-icons a:hover {
  color: var(--secondary);
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  color: #ccc;
  background-color: #0003;
  padding: 15px 20px;
  font-size: 14px;
}

@media (width <= 768px) {
  .footer-content {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand, .footer-nav, .footer-social {
    align-items: center;
    width: 100%;
    max-width: 300px;
  }

  .social-icons {
    justify-content: center;
  }
}

.checkout-container {
  background: var(--tertiary);
  border-radius: 18px;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  min-width: 340px;
  max-width: 920px;
  min-height: 65vh;
  margin: 2.5rem auto;
  padding: 2.5rem 1.5rem 2rem;
  display: flex;
  box-shadow: 0 2px 10px #002b6d0f;
}

.checkout-layout {
  flex-direction: row;
  align-items: flex-start;
  gap: 2.5rem;
  width: 100%;
  min-width: 0;
  display: flex;
}

.checkout-steps-vertical {
  background: none;
  flex-direction: column;
  gap: .5rem;
  min-width: 160px;
  max-width: 210px;
  padding: .7rem .2rem;
  display: flex;
}

.checkout-step-vertical {
  color: var(--primary);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  border-radius: 12px;
  outline: none;
  align-items: center;
  gap: .7em;
  height: auto;
  min-height: 44px;
  padding: .6em .8em;
  font-size: 1.06rem;
  font-weight: 500;
  transition: background .18s, color .18s;
  display: flex;
  position: relative;
}

.checkout-step-vertical .checkout-step-index-vertical {
  background: var(--secondary);
  width: 2em;
  height: 2em;
  color: var(--primary);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-right: .5em;
  font-size: 1.07em;
  font-weight: 700;
  display: inline-flex;
}

.checkout-step-vertical.active {
  background: var(--primary);
  color: #fff;
}

.checkout-step-vertical.active .checkout-step-index-vertical {
  color: var(--primary);
  border: 2px solid var(--primary);
  background: #fff;
}

.checkout-step-vertical.done {
  background: var(--secondary);
  color: var(--primary);
  opacity: .95;
}

.checkout-step-vertical:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.checkout-step-label-vertical {
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 1.06rem;
  font-weight: 500;
  overflow: hidden;
}

.checkout-content-vertical {
  background: #fff;
  border-radius: 14px;
  flex-direction: column;
  flex: 1;
  align-items: center;
  min-width: 0;
  min-height: 410px;
  padding: 2rem 1.5rem 3.5rem;
  transition: height .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  overflow: hidden;
  box-shadow: 0 1px 4px #002b6d0a;
}

@media (width <= 900px) {
  .checkout-container {
    max-width: 99vw;
    padding: 1.2rem .2rem;
  }

  .checkout-layout {
    flex-direction: column;
    gap: 1.5rem;
  }

  .checkout-steps-vertical {
    background: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    padding: .5rem .2rem;
  }

  .checkout-step-vertical {
    justify-content: flex-start;
    width: 100%;
    min-width: 200px;
    margin-bottom: 5px;
    padding: .5em .8em;
    font-size: .97rem;
  }

  .checkout-step-label-vertical {
    font-size: .97rem;
  }

  .checkout-content-vertical {
    width: 100%;
    margin: 0 auto;
    padding: 1rem .5rem;
  }
}

.payment-step {
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
}

.payment-step h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.monetico-payment-container {
  background-color: #fff;
  border-radius: 12px;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 450px;
  padding: 1rem;
  display: flex;
  box-shadow: 0 4px 12px #00000014;
}

.payment-secure-header {
  color: var(--primary);
  align-items: center;
  gap: 10px;
  display: flex;
}

.payment-secure-header svg {
  color: #28a745;
}

.payment-secure-header h2 {
  margin: 0;
  font-size: 1.25rem;
}

.payment-amount-box {
  background-color: rgba(var(--primary-rgb), .05);
  text-align: center;
  border-radius: 8px;
  width: 100%;
  padding: 1.2rem;
}

.payment-amount-label {
  color: #666;
  margin-bottom: 5px;
  font-size: 1rem;
}

.payment-amount-value {
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: bold;
}

.payment-button {
  background-color: var(--primary);
  color: #fff;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 4px 8px rgba(var(--primary-rgb), .2);
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.payment-button:hover {
  box-shadow: 0 6px 12px rgba(var(--primary-rgb), .25);
  background-color: #001f4f;
  transform: translateY(-2px);
}

.payment-button:disabled {
  cursor: not-allowed;
  box-shadow: none;
  background-color: #6c757d;
  transform: none;
}

.payment-loader {
  border: 3px solid #ffffff4d;
  border-top-color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: 1s linear infinite spin;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.payment-error {
  color: #dc3545;
  background-color: #fff3f3;
  border-left: 4px solid #dc3545;
  border-radius: 4px;
  width: 100%;
  padding: 1rem;
  font-size: .9rem;
}

.payment-note {
  color: #6c757d;
  text-align: center;
  font-size: .85rem;
}

.payment-step ~ .checkout-nav-controls {
  display: none;
}

.auth-success {
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.auth-tabs {
  width: 100%;
  box-shadow: 0 2px 6px rgba(var(--primary-rgb), .1);
  background-color: #f5f5f5;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.auth-tab {
  text-align: center;
  cursor: pointer;
  color: #666;
  z-index: 1;
  background: none;
  border: none;
  flex: 1;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 500;
  transition: all .3s;
  position: relative;
}

.auth-tab.active {
  color: var(--primary);
  font-weight: 600;
}

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

.auth-tab.active:after {
  width: 80%;
}

.auth-forms {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.checkout-steps {
  justify-content: space-between;
  align-items: flex-end;
  gap: .5rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.checkout-step {
  color: var(--primary);
  cursor: pointer;
  white-space: normal;
  word-break: break-word;
  text-align: center;
  background: #fff;
  border: none;
  border-bottom: 2px solid #0000;
  border-radius: 18px 18px 0 0;
  outline: none;
  flex-direction: column;
  flex: 1 1 0;
  align-items: center;
  min-width: 70px;
  max-width: 110px;
  padding: .7rem .2rem;
  font-size: 1.01rem;
  font-weight: 500;
  transition: background .18s, color .18s;
  display: flex;
}

.checkout-step .checkout-step-index {
  margin-bottom: .2em;
  font-size: .9em;
  font-weight: 700;
}

.checkout-step.active {
  background: var(--primary);
  color: #fff;
  border-bottom: 2px solid var(--secondary);
  z-index: 2;
}

.checkout-step.done {
  background: var(--secondary);
  color: var(--primary);
}

.checkout-step:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.checkout-content {
  background: #fff;
  border-radius: 14px;
  flex-direction: column;
  align-items: center;
  min-height: 330px;
  padding: 2rem 1.5rem;
  transition: min-height .35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  overflow: hidden;
  box-shadow: 0 1px 4px #002b6d0a;
}

.checkout-panel h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}

.checkout-form {
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
  min-height: 320px;
  padding-bottom: 2.5rem;
  display: flex;
}

.checkout-form input {
  border: 1px solid var(--primary);
  color: var(--text);
  background: #fff;
  border-radius: 40px;
  outline: none;
  padding: .7rem 1.2rem;
  font-size: 1rem;
  transition: border .2s;
}

.checkout-form input:focus {
  border-color: var(--secondary);
}

.checkout-form button {
  margin-top: .6rem;
}

.checkout-payment-choice {
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-bottom: 1.2rem;
  display: flex;
}

.checkout-payment-method {
  background: var(--tertiary);
  color: var(--primary);
  border: 2px solid #0000;
  border-radius: 12px;
  padding: 1rem;
  font-size: 1.1rem;
  transition: border .18s, background .18s;
}

.checkout-payment-method.selected {
  border-color: var(--primary);
  background: #fff;
  font-weight: 700;
}

.checkout-payment-method.disabled {
  opacity: .5;
  cursor: not-allowed;
}

.checkout-summary {
  color: var(--primary);
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.checkout-nav-controls {
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  display: flex;
}

@media (width <= 700px) {
  .checkout-container {
    max-width: 98vw;
    padding: 1rem .2rem;
  }

  .checkout-content {
    padding: 1rem .5rem;
  }

  .checkout-panel h2 {
    font-size: 1.1rem;
  }

  .checkout-form input {
    padding: .6rem .8rem;
    font-size: .96rem;
  }
}

.cart-content {
  background: var(--tertiary);
  border-radius: 18px;
  flex-direction: column;
  gap: 2rem;
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  box-shadow: 0 2px 10px #002b6d0f;
}

.cart-bottom {
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
  display: flex;
}

.cart-title {
  color: var(--primary);
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.cart-items {
  flex-direction: column;
  gap: 1.5rem;
  min-height: 120px;
  display: flex;
}

.cart-empty {
  text-align: center;
  color: #888;
  padding: 2rem 0;
  font-size: 1.1rem;
}

.cart-summary {
  text-align: center;
  border-top: 1px solid #e0e0e0;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1rem 0 0;
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
}

.cart-summary-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 220px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
}

.cart-summary-label {
  font-weight: 500;
}

.cart-summary-value {
  font-weight: 600;
}

.cart-summary-total .cart-summary-label, .cart-summary-total .cart-summary-value, .cart-total, .cart-total {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 700;
}

.cart-actions {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
}

.cart-btn {
  cursor: pointer;
  white-space: nowrap;
  border: none;
  border-radius: 40px;
  padding: .7rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;
  transition: background .2s, color .2s, box-shadow .2s;
  box-shadow: 0 1px 2px #002b6d0d;
}

.cart-btn.primary {
  background: var(--primary);
  color: #fff;
}

.cart-btn.primary:hover {
  background: var(--secondary);
  color: var(--primary);
}

.cart-btn.secondary {
  color: var(--primary);
  border: 1px solid var(--primary);
  background: #fff;
}

.cart-btn.secondary:hover {
  background: var(--primary);
  color: #fff;
}

.cart-item {
  background: #fff;
  border-radius: 12px;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
  transition: box-shadow .18s;
  display: flex;
  box-shadow: 0 1px 4px #002b6d0f;
}

.cart-item:hover {
  box-shadow: 0 4px 12px #002b6d21;
}

.cart-item-img {
  background: var(--tertiary);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-width: 80px;
  max-width: 80px;
  min-height: 80px;
  max-height: 80px;
  display: flex;
  overflow: hidden;
}

.cart-item-img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
}

.cart-item-info {
  flex-direction: column;
  flex: 1;
  gap: .3rem;
  display: flex;
}

.cart-item-header {
  color: var(--text);
  margin-bottom: .2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.cart-item-details {
  align-items: center;
  gap: 1.2rem;
  font-size: 1rem;
  display: flex;
}

.cart-item-qty {
  background: var(--tertiary);
  color: var(--primary);
  border-radius: 16px;
  padding: .2rem .8rem;
  font-size: .95rem;
  font-weight: 500;
}

.cart-item-price {
  color: var(--secondary);
  font-size: 1.1rem;
  font-weight: 700;
}

@media (width <= 700px) {
  .cart-content {
    max-width: 98vw;
    padding: 1rem .2rem;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: .7rem;
    padding: 1rem .5rem;
  }

  .cart-summary {
    flex-direction: column;
    align-items: stretch;
    gap: .7rem;
    width: 100%;
    padding-top: 1.5rem;
  }

  .cart-summary-row {
    width: 100%;
    max-width: 280px;
  }

  .cart-bottom {
    flex-direction: column;
    padding: 0 1rem;
    display: flex;
  }

  .cart-voucher {
    flex-direction: column;
    align-items: stretch;
    gap: .8rem;
    width: 100%;
    margin: 1.5rem 0;
  }

  .cart-voucher-input {
    width: 100%;
    min-width: 0;
  }

  .cart-actions {
    flex-flow: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }

  .cart-btn {
    text-align: center;
    min-width: 200px;
    margin: .3rem 0;
    padding: .7rem 1rem;
  }

  .cart-btn.voucher {
    min-width: 100%;
  }
}

.cart-item-ref {
  color: #444;
  margin-left: .4em;
  font-size: .8em;
  font-weight: 400;
}

.cart-item-header {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.cart-remove-btn {
  color: #b00;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: 1rem;
  padding: 0 .5rem;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  transition: color .2s;
}

.cart-remove-btn:hover {
  color: #fff;
  background: #b00;
  border-radius: 50%;
}

.cart-qty-controls {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.cart-qty-btn {
  background: var(--tertiary);
  width: 28px;
  height: 28px;
  color: var(--primary);
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background .15s, color .15s;
  display: flex;
}

.cart-qty-btn:hover {
  background: var(--primary);
  color: #fff;
}

.cart-voucher {
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 .5rem;
  display: flex;
}

.cart-voucher-input {
  border: 1px solid var(--primary);
  min-width: 200px;
  color: var(--text);
  background: #fff;
  border-radius: 40px;
  outline: none;
  flex: 1;
  padding: .5rem 1rem;
  font-size: 1rem;
  transition: border .2s;
}

.cart-voucher-input:focus {
  border-color: var(--secondary);
}

.cart-btn.voucher {
  background: var(--secondary);
  color: var(--primary);
  white-space: nowrap;
  border: none;
  border-radius: 40px;
  min-width: 120px;
  padding: .5rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.cart-btn.voucher:disabled {
  color: #aaa;
  cursor: not-allowed;
  background: #eee;
}

.cart-discount {
  color: var(--secondary);
  margin-left: 1rem;
  font-weight: 600;
}

.copyright {
  text-align: right;
  position: absolute;
  bottom: 10px;
  right: 24px;
}

footer .copyright p {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}

.fil-ariane {
  width: 100%;
  max-width: 1200px;
  height: 50px;
  color: var(--text);
  justify-content: left;
  align-items: center;
  margin: 0 auto;
  padding: 0 1rem;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

.fil-ariane a {
  color: var(--text);
  text-decoration: none;
}

.fil-ariane a:hover {
  text-decoration: underline;
}

.fil-ariane p {
  margin: 0;
  padding: 0;
}

.fil-ariane .separator {
  color: var(--text-light);
  margin: 0 .5rem;
  padding: 0;
}

.fil-ariane .current-page {
  color: var(--primary);
  font-weight: 600;
}

.categorie-title {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  width: 100%;
  margin-block: 1.5rem;
  display: flex;
}

.categorie-title h1 {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  font-size: 28px;
  font-weight: 600;
}

.categorie-title h2.subcategory-title {
  color: var(--text);
  margin-top: .25rem;
  font-size: 16px;
  font-weight: 500;
}

.categorie-title .product-count {
  color: #666;
  font-size: 16px;
  font-weight: 400;
}

.categorie {
  flex-flow: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: flex;
}

.categorie-filter {
  border: solid 1px var(--tertiary);
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 10px;
  flex-direction: column;
  width: 25%;
  height: fit-content;
  max-height: 80vh;
  padding: 1.5rem;
  display: flex;
  position: sticky;
  top: 20px;
  overflow-y: auto;
  box-shadow: 0 0 15px #00000014;
}

.categorie-content {
  flex-direction: column;
  width: 75%;
  height: auto;
  min-height: 60vh;
  display: flex;
}

.categorie-filter h2 {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 1px solid #0000001a;
  margin: 0 0 15px;
  padding-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}

.categorie-filter h2:not(:first-child) {
  margin-top: 30px;
}

.categorie-filter ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.categorie-filter li {
  cursor: pointer;
  color: #555;
  border-radius: 6px;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 10px;
  font-size: 14px;
  transition: all .2s;
  display: flex;
}

.categorie-filter li:hover {
  background-color: rgba(var(--primary-rgb), .08);
  color: var(--primary);
  padding-left: 15px;
}

.category-filters {
  margin-bottom: 1.5rem;
}

.category-filters ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-filters li {
  border-left: 3px solid #0000;
  margin-bottom: .5rem;
  padding: 0;
  transition: all .2s;
  position: relative;
}

.category-filters li.active {
  border-left: 3px solid var(--primary);
  font-weight: 600;
}

.category-filters li.active a {
  color: var(--primary);
}

.category-filters a {
  color: var(--text-dark);
  width: 100%;
  height: 100%;
  padding: .4rem .7rem;
  text-decoration: none;
  transition: color .2s;
  display: block;
}

.category-filters li:hover {
  border-left: 3px solid var(--primary-light, #335d9e);
}

.category-filters a:hover {
  color: var(--primary);
}

.category-filters .no-subcategories {
  color: #6c757d;
  font-style: italic;
}

.nos-nouveautes-list, .top-ventes-list {
  position: relative;
}

.nos-nouveautes-list.with-arrows, .top-ventes-list.with-arrows {
  padding: 0;
}

@media (width <= 767px) {
  .nos-nouveautes-list.with-arrows, .top-ventes-list.with-arrows {
    padding: 0;
  }

  .scroll-arrow {
    display: none !important;
  }
}

.nos-nouveautes-list ul, .top-ventes-list ul {
  scroll-behavior: smooth;
  flex-wrap: nowrap;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  display: flex;
  overflow-x: auto;
}

.nos-nouveautes-list ul li, .top-ventes-list ul li {
  flex: none;
  width: 288px;
  min-width: 288px;
}

.nos-nouveautes-list ul.hide-scrollbar, .top-ventes-list ul.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.nos-nouveautes-list ul.hide-scrollbar::-webkit-scrollbar, .top-ventes-list ul.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.scroll-arrow {
  background-color: var(--primary);
  color: #fff;
  cursor: pointer;
  z-index: 10;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 2px 5px #0003;
}

.scroll-arrow:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 4px 8px #0000004d;
}

.scroll-arrow:disabled {
  cursor: not-allowed;
  opacity: .5;
  background-color: #ccc;
}

.scroll-left {
  left: 10px;
}

.scroll-right {
  right: 10px;
}

.products-list {
  flex-wrap: wrap;
  justify-content: space-around;
  row-gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.product-card-container {
  flex-direction: column;
  width: 288px;
  display: flex;
}

.product-card {
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  flex-direction: column;
  flex-grow: 0;
  flex-shrink: 0;
  width: 288px;
  height: auto;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  overflow: hidden;
}

.product-link {
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  display: flex;
  color: #000 !important;
  text-decoration: none !important;
}

.product-card:hover {
  cursor: pointer;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px #0000001a;
}

.product-image-wrapper {
  justify-content: center;
  align-items: center;
  height: 230px;
  margin-bottom: .75rem;
  display: flex;
}

.product-image {
  object-fit: contain;
  max-height: 100%;
  transition: transform .3s;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-info {
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  width: 95%;
  height: 130px;
  display: flex;
}

.product-info h3 {
  color: #000;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.product-description {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}

.product-price-row {
  flex-direction: column;
  align-items: center;
  margin: .5rem 0;
  display: flex;
}

.price {
  color: var(--primary);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.sale-price {
  color: var(--primary);
  text-align: center;
  margin-top: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.product-button-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: .75rem 0 1rem;
  display: flex;
}

.add-to-cart {
  background-color: var(--secondary);
  color: #fff;
  cursor: pointer;
  text-align: center;
  border: none;
  border-radius: 50px;
  width: 180px;
  height: 40px;
  padding: .6rem 1.5rem;
  font-weight: 500;
  transition: background-color .2s;
}

.add-to-cart:hover {
  background-color: var(--primary);
}

.no-products-message {
  text-align: center;
  color: var(--text-muted);
  grid-column: 1 / -1;
  padding: 2rem;
  font-style: italic;
}

.categorie-filter li:active {
  background-color: rgba(var(--primary-rgb), .15);
}

.categorie-filter li:before {
  content: "";
  background-color: var(--tertiary);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  transition: all .2s;
}

.categorie-filter li:hover:before {
  background-color: var(--primary);
  transform: scale(1.2);
}

.banner1, .banner2 {
  margin: 1rem auto;
}

.banner1 img, .banner2 img {
  width: 100%;
  max-width: 1200px;
  height: auto;
}

.qui-sommes-nous, .tout-savoir-sur-nos-produits, .une-equipe-specialise {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  display: flex;
}

.qui-sommes-nous-text, .tout-savoir-sur-nos-produits-text, .une-equipe-specialise-text {
  width: 47.5%;
}

.qui-sommes-nous-text h1, .tout-savoir-sur-nos-produits-text h1, .une-equipe-specialise-text h1 {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-block: 1rem;
  font-size: 22px;
  font-weight: 600;
}

.qui-sommes-nous-text p, .tout-savoir-sur-nos-produits-text p, .une-equipe-specialise-text p {
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
}

.tout-savoir-sur-nos-produits-text p, .une-equipe-specialise-text p {
  margin-block: 1rem;
}

.tout-savoir-sur-nos-produits-text button, .une-equipe-specialise-text button {
  color: var(--primary);
  border: solid 1px var(--primary);
  cursor: pointer;
  background-color: #0000;
  border-radius: 50px;
  margin: 1rem 0;
  padding: .75rem 2rem;
  font-size: 16px;
  font-weight: 600;
}

.tout-savoir-sur-nos-produits-text button:hover, .une-equipe-specialise-text button:hover {
  background-color: var(--primary);
  color: var(--tertiary);
}

.qui-sommes-nous-text h2 {
  margin-block: 1rem;
  font-size: 16px;
  font-weight: 600;
}

.qui-sommes-nous-image, .tout-savoir-sur-nos-produits-image, .une-equipe-specialise-image {
  justify-content: center;
  width: 47.5%;
  display: flex;
}

.qui-sommes-nous-image img, .tout-savoir-sur-nos-produits-image img, .une-equipe-specialise-image img {
  object-fit: contain;
  width: 100%;
  max-width: 580px;
  height: auto;
}

.stats {
  background-color: var(--primary);
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  min-height: 360px;
  margin: 1rem auto;
  display: flex;
}

.stats-title {
  color: #fff;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  margin-block: 1.5rem;
  display: flex;
}

.stats-title h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-block: 1rem;
  font-size: 22px;
  font-weight: 500;
}

.stats-title h2 span {
  font-weight: 600;
}

.stats-content {
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  display: flex;
}

.stats-content-item {
  justify-content: center;
  align-items: center;
  width: 25%;
  display: flex;
}

.productElementLink {
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.product-container {
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 12px;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  box-shadow: 0 4px 16px #00000014;
}

.product-page-photo {
  flex-direction: column;
  gap: 1rem;
  width: 50%;
  display: flex;
}

.main-image-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.product-main-image {
  object-fit: contain;
  width: 100%;
  height: auto;
  max-height: 600px;
  transition: opacity .3s ease-in-out;
}

.fade-in {
  animation: .3s ease-in-out fadeIn;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.image-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.loading-placeholder {
  width: 100%;
  height: 300px;
  color: var(--text);
  background-color: #f5f5f5;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 16px;
  display: flex;
}

.carousel-arrow {
  cursor: pointer;
  z-index: 2;
  background-color: #fffc;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: background-color .3s;
  display: flex;
  position: absolute;
}

.carousel-arrow:hover {
  background-color: #fff;
}

.carousel-arrow-left {
  left: 10px;
}

.carousel-arrow-right {
  right: 10px;
}

.thumbnails-container {
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.thumbnails-wrapper {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: .5rem;
  width: calc(100% - 60px);
  margin: 0 auto;
  padding: .5rem 0;
  display: flex;
  overflow-x: auto;
}

.thumbnails-wrapper::-webkit-scrollbar {
  display: none;
}

.thumbnail {
  cursor: pointer;
  border: 2px solid #0000;
  border-radius: 4px;
  flex: none;
  width: 80px;
  height: 80px;
  transition: border-color .3s;
  overflow: hidden;
}

.thumbnail.active {
  border-color: var(--primary);
}

.thumbnail img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.thumbnail-scroll-button {
  cursor: pointer;
  z-index: 2;
  background-color: #fffc;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  transition: background-color .3s;
  display: flex;
  position: absolute;
}

.thumbnail-scroll-button:hover {
  background-color: #fff;
}

.thumbnail-scroll-left {
  left: 0;
}

.thumbnail-scroll-right {
  right: 0;
}

.product-details {
  width: 50%;
}

.product-title {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  margin-bottom: .75rem;
  padding: 0 1rem .5rem;
  font-size: 26px;
  font-weight: 700;
}

.product-reference-container {
  color: var(--text-light);
  margin-bottom: 1rem;
  padding: 0 1rem;
  font-size: 14px;
}

.product-short-description {
  border-left: 3px solid var(--primary);
  background-color: #f5f5f5;
  margin-bottom: 1.5rem;
  padding: 1rem;
  font-size: 16px;
  line-height: 1.5;
}

.product-price-container {
  flex-direction: column;
  margin-bottom: 1rem;
  padding: 0 1rem;
  display: flex;
}

.product-price {
  color: var(--secondary);
  font-size: 28px;
  font-weight: 700;
}

.eco-part {
  color: var(--text-light);
  margin-top: .25rem;
  font-size: 14px;
}

.product-color {
  color: var(--text);
  margin-bottom: 1rem;
  padding: 0 1rem;
  font-size: 15px;
}

.product-quantity {
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
  display: flex;
}

.quantity-selector {
  background: #fff;
  border: none;
  border-radius: 50px;
  align-items: center;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 8px #0000001a;
}

.quantity-selector button {
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  border: none;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 20px;
  transition: all .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.quantity-selector button:active {
  transform: scale(.92);
}

.quantity-selector button:after {
  content: "";
  opacity: 0;
  background: #ffffff4d;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition: transform .4s, opacity .4s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)scale(0);
}

.quantity-selector button:active:after {
  opacity: 1;
  transition: all;
  transform: translate(-50%, -50%)scale(1.5);
}

.quantity-selector span {
  text-align: center;
  width: 50px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
}

.add-to-cart-button {
  background-color: var(--secondary);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 50px;
  width: 75%;
  margin: 0 auto;
  padding: .75rem 2rem;
  font-size: 16px;
  font-weight: 600;
  transition: all .3s;
  display: block;
  box-shadow: 0 2px 4px #0000001a;
}

.add-to-cart-button:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px #00000026;
}

.product-features {
  margin-top: 2rem;
  padding: 0 1rem;
}

.product-description h2, .product-features h2 {
  color: var(--primary);
  margin-block: 1rem;
  font-size: 18px;
  font-weight: 600;
}

.description-content {
  background-color: #f8f9fa;
  border-radius: 10px;
  margin-top: 1rem;
  padding: 1.2rem;
  position: relative;
  box-shadow: inset 0 0 10px #0000000d;
}

.show-more-button {
  background-color: var(--primary);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 20px;
  margin-top: .8rem;
  padding: .6rem 1.2rem;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
  box-shadow: 0 2px 5px #0000001a;
}

.show-more-button:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px #00000026;
}

.features-table {
  border: 1px solid var(--border);
  border-radius: 4px;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  display: grid;
  overflow: hidden;
}

.product-features-full-width {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.product-features-full-width h2 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  position: relative;
}

.product-features-full-width h2:after {
  content: "";
  background-color: var(--secondary);
  width: 80px;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.features-table-grid {
  border: 1px solid var(--primary);
  background-color: #fff;
  border-radius: 8px;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  display: grid;
  box-shadow: 0 4px 12px #0000000d;
}

.feature-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  overflow: hidden;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px #0000001a;
}

.feature-item .feature-name {
  background-color: rgba(var(--primary-rgb), .1);
  border-bottom: 1px solid var(--border);
  color: var(--primary);
  padding: .5rem;
  font-size: 14px;
  font-weight: 600;
}

.feature-item .feature-value {
  flex-grow: 1;
  align-items: center;
  padding: .5rem;
  font-size: 14px;
  display: flex;
}

.cart-content {
  background-color: var(--tertiary);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 2rem auto;
  display: flex;
}

.cart-content > h1 {
  color: var(--primary);
  text-align: center;
  width: 100%;
  margin-block: 1rem;
  font-size: 24px;
  font-weight: 600;
}

.cart-items {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 95%;
  display: flex;
}

.cart-items .cart-item {
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  display: flex;
}

.cart-items .cart-item img {
  object-fit: cover;
  border-radius: 4px;
  width: 75px;
  height: 75px;
}

.cart-items .cart-item h1 {
  color: var(--primary);
  margin-left: 1rem;
  font-size: 16px;
  font-weight: 600;
}

.cart-items .cart-item p {
  color: var(--text-light);
  font-size: 14px;
}

.cart-actions {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 30%;
  display: flex;
}

@media (width <= 992px) {
  .features-table-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (width <= 768px) {
  .features-table-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 480px) {
  .features-table-grid {
    grid-template-columns: 1fr;
  }
}

.feature-row {
  display: contents;
}

.feature-name, .feature-value {
  padding: .75rem 1rem;
}

.feature-name {
  border-bottom: 1px solid var(--border);
  background-color: #f9f9f9;
  font-weight: 600;
}

.feature-value {
  border-bottom: 1px solid var(--border);
}

.feature-row:last-child .feature-name, .feature-row:last-child .feature-value {
  border-bottom: none;
}

.modal-overlay {
  z-index: 1000;
  backdrop-filter: blur(4px);
  background-color: #000c;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
  animation: .3s fadeIn;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.modal-content {
  border: 2px solid var(--primary);
  background-color: #fff;
  border-radius: 16px;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  animation: .4s slideUp;
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 30px #00000040;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  background-color: var(--primary);
  color: #fff;
  border-bottom: none;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  display: flex;
}

.modal-header h2 {
  color: #fff;
  letter-spacing: .5px;
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.modal-close {
  cursor: pointer;
  color: #fff;
  background: #fff3;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: .5rem;
  transition: all .3s;
  display: flex;
}

.modal-close:hover {
  background-color: var(--secondary);
  transform: rotate(90deg);
}

.modal-body {
  max-height: calc(90vh - 80px);
  padding: 2rem;
  font-size: 16px;
  line-height: 1.6;
  overflow-y: auto;
}

.product-modal-title {
  color: var(--primary);
  border-bottom: 1px solid #eaeaea;
  margin-bottom: .5rem;
  padding-bottom: .5rem;
  font-size: 22px;
  font-weight: 700;
}

.product-modal-reference {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 14px;
}

.product-modal-description {
  margin-top: 1rem;
}

.product-modal-description h1, .product-modal-description h2, .product-modal-description h3 {
  color: var(--primary);
  margin: 1rem 0 .5rem;
  font-weight: 600;
}

.modal-body p {
  margin-bottom: 1rem;
}

.modal-body img {
  border-radius: 8px;
  max-width: 100%;
  margin: 1rem 0;
  box-shadow: 0 3px 10px #0000001a;
}

@media (width <= 768px) {
  .modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .modal-header, .modal-body {
    padding: 1rem;
  }

  .product-container {
    border-radius: 8px;
    flex-direction: column;
    gap: 1rem;
    width: calc(100% - 1rem);
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem;
  }

  .product-page-photo, .product-details {
    width: 100%;
  }

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

  .product-reference {
    font-size: 13px;
  }

  .product-price {
    font-size: 22px;
  }

  .product-features-table {
    overflow-x: auto;
  }

  .product-description {
    padding: .5rem;
  }

  .show-more-button {
    padding: .5rem 1rem;
    font-size: 14px;
  }

  .quantity-selector {
    margin: .5rem 0;
  }

  .stats-content {
    flex-wrap: wrap;
  }

  .stats-content-item {
    width: 50%;
  }

  .stats-content-item img {
    width: auto;
    height: auto;
  }

  .qui-sommes-nous, .une-equipe-specialise {
    flex-direction: column;
  }

  .tout-savoir-sur-nos-produits {
    flex-direction: column-reverse;
  }

  .qui-sommes-nous-text, .tout-savoir-sur-nos-produits-text, .une-equipe-specialise-text, .qui-sommes-nous-image, .tout-savoir-sur-nos-produits-image, .une-equipe-specialise-image {
    width: 95%;
  }

  .categories-list {
    display: none;
  }

  .categorie {
    flex-direction: column;
  }

  .categorie-filter {
    width: 100%;
    max-height: none;
    margin-bottom: 2rem;
    margin-right: 0;
    position: relative;
    top: 0;
  }

  .categorie-content {
    width: 100%;
  }

  .top-categories {
    width: 95%;
    margin: 0 auto;
  }

  .top-categories-list ul {
    justify-content: center;
    align-items: center;
  }

  .top-categories-list ul li {
    min-width: 45%;
  }

  .top-ventes, .nos-nouveautes {
    width: 95%;
    margin: 0 auto;
  }

  .home-history-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 95%;
    margin: 1rem auto;
  }

  .home-history-content {
    align-items: center;
    width: 100%;
  }

  .home-history-image {
    width: 100%;
  }

  .policy {
    width: 95%;
    margin: 1.25rem auto;
  }

  .policy img {
    width: 75%;
    max-width: 400px;
    height: auto;
  }

  footer {
    flex-direction: column;
    height: auto;
    padding-block: 1rem;
  }

  footer .footer-clatronic {
    width: 95%;
  }

  footer .footer-links {
    gap: 1rem;
    width: 90%;
    margin: 2rem 0;
  }

  footer .footer-links div {
    width: 100%;
  }
}

@media (width >= 768px) and (width <= 1200px) {
  .header-desktop, .categories-list {
    width: 95%;
  }

  .slider-desktop {
    margin: 0 auto;
    width: 95%;
    height: auto;
    margin-block: 1.5rem;
  }

  .slider-desktop .image {
    width: 100%;
    height: auto;
  }

  .top-categories {
    width: 95%;
    margin: 0 auto;
  }

  .top-categories-list ul li {
    min-width: 30%;
  }

  .top-ventes, .nos-nouveautes {
    width: 95%;
    margin: 0 auto;
  }

  footer .footer-links div {
    width: 45%;
  }
}

@media (width <= 768px) {
  .categorie {
    flex-direction: column;
  }

  .categorie-filter {
    background-color: #0000;
    border-right: none;
    width: 100%;
    margin-bottom: 20px;
  }

  .categorie-content {
    width: 100%;
  }

  .products-list {
    justify-content: center;
  }

  .categorie-filter > h2:not(:first-child), .categorie-filter > ul:not(.category-filters ul) {
    display: none;
  }

  .filter-content.active {
    padding: 0;
  }

  .filter-content > ul {
    padding: 10px 0;
  }

  .categorie-content .products-list {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    display: grid;
  }

  .product-card {
    width: 100%;
    margin: 0;
  }

  .nos-nouveautes .product-card, .top-ventes .product-card {
    width: 230px;
  }
}


/*# sourceMappingURL=app_globals_73c37791.css.map*/