@charset "UTF-8";
:root {
  --white: #fff;
  --black: #000;
  --primary-color: #002d3d;
  --secondary-color: #F6F6F6;
  --tertiary-color: #F2F2F2;
  --red: #D80000;
  --gris: #CECECE;
}

.variation-btn {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid #ddd;
  cursor: pointer;
  margin: 5px 5px 0 0;
  transition: 0.2s;
}

.variation-radio:checked + .variation-btn {
  border: 2px solid #000;
  background: #000;
  color: #fff;
}

h1 {
  font-size: 32px;
  font-weight: 500;
  color: var(--primary-color);
  font-family: sans-serif;
  text-align: center;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 20px;
  }
}

h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: sans-serif;
}
@media (max-width: 1024px) {
  h2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  h2 {
    font-size: 20px;
  }
}

h3 {
  text-align: center;
  font-size: 24px;
  color: var(--black);
  font-weight: 500;
}
@media (max-width: 1024px) {
  h3 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  h3 {
    font-size: 18px;
  }
}

h4 {
  text-align: left;
  font-size: 22px;
  color: var(--black);
  font-weight: 600;
}
@media (max-width: 1024px) {
  h4 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  h4 {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  h4 {
    font-size: 18px;
  }
}

h5 {
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--black);
}
@media (max-width: 1024px) {
  h5 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  h5 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  h5 {
    font-size: 14px;
  }
}

h6 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  font-family: sans-serif;
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  h6 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  h6 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  h6 {
    font-size: 14px;
  }
}

.woocommerce-MyAccount-navigation {
  display: none;
}

html {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.top-bar {
  color: white;
  background: var(--primary-color);
}
.top-bar .social-youtube:hover {
  background: #c4302b;
}
.top-bar .social-whatsapp:hover {
  background: #04cb46;
}
.top-bar .tel-top-bar a {
  color: white;
  font-weight: 500;
}
.top-bar .tel-top-bar a svg {
  width: 15px;
  fill: white;
}

.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 1rem auto 0;
}
.search-wrapper .search-form {
  position: relative;
}
.search-wrapper .search-form .icon-search {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 14px;
}
.search-wrapper .search-form .search-input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border-radius: 2em;
  border: 1px solid #ddd;
  outline: none;
  transition: all 0.2s ease;
  background-color: var(--secondary-color);
}
.search-wrapper .search-form .search-input::-moz-placeholder {
  text-align: center;
  display: block;
  width: 100%;
  font-size: 17px;
}
.search-wrapper .search-form .search-input::placeholder {
  text-align: center;
  display: block;
  width: 100%;
  font-size: 17px;
}
.search-wrapper .search-form .search-input:focus {
  border-color: var(--dark-blue-color);
}
.search-wrapper .search-form .search-input:focus::-moz-placeholder {
  opacity: 0;
}
.search-wrapper .search-form .search-input:focus::placeholder {
  opacity: 0;
}
.search-wrapper .search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: none;
  z-index: 1000;
}
.search-wrapper .search-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  text-decoration: none;
  color: #111;
  transition: background 0.2s;
}
.search-wrapper .search-item:hover {
  background: #f5f5f5;
}
.search-wrapper .search-item img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.search-wrapper .search-item .title {
  font-size: 14px;
}
.search-wrapper .search-item .price {
  font-size: 13px;
  color: #666;
}
.search-wrapper.search-mobile {
  margin-bottom: 1rem;
}
.search-wrapper.search-mobile .wrapper-close-search {
  display: flex;
  align-items: center;
}
.search-wrapper.search-mobile .search-results {
  position: static;
}
.search-wrapper.search-mobile .search-form {
  margin: 0 1rem;
  width: 85%;
}

header {
  position: fixed;
  top: 0 !important;
  left: 0;
  right: 0;
  transition: 0.15s ease-out;
  z-index: 888;
  background-color: var(--white) !important;
  border-bottom: 1px solid #EBEBEB;
}
header .box-nav-ul .menu-item {
  padding: 20px 0px;
}
header .box-nav-ul .menu-item .mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 30px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}
header .box-nav-ul .menu-item .mega-menu .cat-principale {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 1rem;
}
header .box-nav-ul .menu-item .mega-menu .cat-principale i {
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-size: 16px;
}
header .box-nav-ul .menu-item .mega-menu .cat-principale:hover i {
  opacity: 1;
  transform: translateX(0);
}
header .box-nav-ul .menu-item .mega-menu .mega-header {
  margin-bottom: 20px;
}
header .box-nav-ul .menu-item .mega-menu .mega-header a {
  font-weight: 600;
  color: var(--dark-blue-color);
  text-decoration: none;
}
header .box-nav-ul .menu-item .mega-menu .mega-header a:hover {
  text-decoration: underline;
}
header .box-nav-ul .menu-item .mega-menu .mega-title {
  font-weight: 700;
}
header .box-nav-ul .menu-item .mega-menu .mega-col {
  display: flex;
  flex-direction: column;
}
header .box-nav-ul .menu-item .mega-menu .mega-col .flex-category i {
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
header .box-nav-ul .menu-item .mega-menu .mega-col .flex-category:hover i {
  opacity: 1;
  transform: translateX(0);
}
header .box-nav-ul .menu-item .mega-menu .mega-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
  color: #111;
  text-decoration: none;
}
header .box-nav-ul .menu-item .mega-menu .mega-title:hover {
  color: var(--dark-blue-color);
}
header .box-nav-ul .menu-item .mega-menu .mega-sub {
  list-style: none;
  padding: 0;
  margin: 0;
}
header .box-nav-ul .menu-item .mega-menu .mega-sub li {
  margin-bottom: 6px;
}
header .box-nav-ul .menu-item .mega-menu .mega-sub li a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}
header .box-nav-ul .menu-item .mega-menu .mega-sub li a:hover {
  color: var(--dark-blue-color);
}
header .box-nav-ul .menu-item.open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .box-nav-ul .menu-item .flex-mega-menu-img {
  display: flex;
}
header .box-nav-ul .menu-item .flex-mega-menu-img .wrapper-gauche {
  width: 80%;
}
header .box-nav-ul .menu-item .flex-mega-menu-img .wrapper-droit {
  width: 20%;
}
header .box-nav-ul .menu-item .flex-mega-menu-img .wrapper-droit img {
  aspect-ratio: 9/12;
  -o-object-fit: contain;
     object-fit: contain;
}
header .box-nav-ul .menu-item .grid-trionix {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
header .box-nav-ul .menu-item .grid-trionix .demo-item {
  box-shadow: none !important;
  text-align: center;
  margin-bottom: 30px;
  border: none !important;
}
header .box-nav-ul .menu-item .grid-trionix .demo-image {
  background-color: var(--tertiary-color);
  border-radius: 0;
  margin-bottom: 15px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .box-nav-ul .menu-item .grid-trionix .demo-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: multiply;
  transition: transform 0.3s ease;
}
header .box-nav-ul .menu-item .grid-trionix .demo-image img:hover {
  transform: scale(1.05);
}
header .box-nav-ul .menu-item .grid-trionix .demo-name {
  font-size: 11px !important;
  font-weight: 600;
  text-transform: uppercase;
  color: #808080;
  letter-spacing: 0.5px;
  display: block;
  margin-top: 10px;
  line-height: 1.4;
}
header .box-nav-ul .menu-item .demo-label {
  display: none !important;
}

.starter-title {
  padding: 60px 0 40px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%), url("../images/qui-sommes-nous/Rectangle 2464.png") no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 100px;
}
.starter-title h2 {
  text-align: center;
}
.starter-title .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--black);
  padding-left: 70px;
}
.starter-title .breadcrumbs a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s;
}
.starter-title .breadcrumbs a:hover {
  color: var(--primary-color);
}
.starter-title .breadcrumbs i {
  font-size: 10px;
  color: var(--primary-color);
}
@media (max-width: 768px) {
  .starter-title .breadcrumbs {
    justify-content: center;
  }
}

.accueil {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  margin-top: 75px;
}
@media (max-width: 992px) {
  .accueil {
    height: 65vh;
    margin-top: 70px;
  }
}
@media (max-width: 768px) {
  .accueil {
    height: 60vh;
  }
}
@media (max-width: 576px) {
  .accueil {
    height: 55vh;
    margin-top: 65px;
  }
}
@media (max-width: 400px) {
  .accueil {
    height: 50vh;
  }
}
.accueil .banner-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.accueil .banner-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 768px) {
  .accueil .banner-wrapper video {
    width: auto;
    height: 100%;
  }
}
.accueil .banner-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.accueil .banner-wrapper .box-content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: left !important;
}
@media (max-width: 992px) {
  .accueil .banner-wrapper .box-content {
    text-align: center !important;
  }
}
.accueil .banner-wrapper .box-content .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.accueil .banner-wrapper .box-content .container .heading {
  font-size: 70px;
  font-family: "Sequel";
}
@media (max-width: 1400px) {
  .accueil .banner-wrapper .box-content .container .heading {
    font-size: 65px !important;
  }
}
@media (max-width: 1200px) {
  .accueil .banner-wrapper .box-content .container .heading {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .accueil .banner-wrapper .box-content .container .heading {
    font-size: 45px !important;
  }
}
@media (max-width: 768px) {
  .accueil .banner-wrapper .box-content .container .heading {
    font-size: 36px !important;
  }
}
@media (max-width: 576px) {
  .accueil .banner-wrapper .box-content .container .heading {
    font-size: 28px !important;
    line-height: 1.2;
  }
}
@media (max-width: 400px) {
  .accueil .banner-wrapper .box-content .container .heading {
    font-size: 24px !important;
  }
}
.accueil .banner-wrapper .box-content .container .description {
  font-size: 24px;
  color: var(--white) !important;
  margin-bottom: 35px;
  font-weight: 400;
  opacity: 0.9;
  padding-left: 18px;
}
@media (max-width: 1400px) {
  .accueil .banner-wrapper .box-content .container .description {
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  .accueil .banner-wrapper .box-content .container .description {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .accueil .banner-wrapper .box-content .container .description {
    padding-left: 0;
    margin-bottom: 25px;
    padding-left: 10px;
  }
}
@media (max-width: 768px) {
  .accueil .banner-wrapper .box-content .container .description {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .accueil .banner-wrapper .box-content .container .description {
    font-size: 15px;
    margin-bottom: 20px;
    padding-left: 6px;
  }
}
@media (max-width: 400px) {
  .accueil .banner-wrapper .box-content .container .description {
    font-size: 14px;
  }
}
.accueil .banner-wrapper .box-content .container .tf-btn {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  padding: clamp(10px, 1.2vw, 14px) clamp(16px, 1.8vw, 20px);
  border-radius: 50px !important;
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 0.8vw, 12px);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(13px, 1.2vw, 15px);
  transition: all 0.3s ease;
  border: none;
  margin-left: 18px;
  margin-top: 20px;
}
.accueil .banner-wrapper .box-content .container .tf-btn i {
  font-size: clamp(12px, 1vw, 14px);
  transition: transform 0.3s ease;
}
.accueil .banner-wrapper .box-content .container .tf-btn:hover {
  background-color: #001a24 !important;
}
.accueil .banner-wrapper .box-content .container .tf-btn:hover i {
  transform: translateX(5px);
}
@media (max-width: 992px) {
  .accueil .banner-wrapper .box-content .container .tf-btn {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .accueil .banner-wrapper .box-content .container .tf-btn {
    padding: 12px 18px;
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .accueil .banner-wrapper .box-content .container .tf-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}
.accueil .banner-wrapper .banner-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
}
.accueil .banner-wrapper .banner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.accueil .banner-wrapper .banner-image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: black;
  opacity: 18%;
  width: 100%;
  height: 100%;
  z-index: 2;
}
@media (max-width: 768px) {
  .accueil .banner-wrapper video {
    display: none !important;
  }
  .accueil .banner-wrapper .banner-image {
    display: block;
  }
}

.categories-custom {
  padding: 20px 0 45px 0;
  background-color: var(--white);
}
.categories-custom .hover-sw-nav {
  position: relative;
  padding: 0px 50px;
}
.categories-custom .hover-sw-nav .collection-item.style-2 {
  position: relative;
  height: 100%;
}
.categories-custom .hover-sw-nav .collection-item.style-2 .collection-inner {
  background-color: var(--secondary-color);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 380px;
  max-height: 380px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.categories-custom .hover-sw-nav .collection-item.style-2 .collection-inner:hover {
  transform: translateY(-5px);
}
.categories-custom .hover-sw-nav .collection-item.style-2 .collection-image {
  width: 100%;
  flex-grow: 1;
  display: grid;
  align-items: center;
  justify-content: center;
}
.categories-custom .hover-sw-nav .collection-item.style-2 .collection-image img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.categories-custom .hover-sw-nav .collection-item.style-2 .collection-content {
  display: flex;
  justify-content: center;
  z-index: 2;
}
.categories-custom .hover-sw-nav .collection-item.style-2 .collection-content .tf-btn {
  background-color: var(--white);
  color: var(--primary-color);
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
}
.categories-custom .hover-sw-nav .collection-item.style-2 .collection-content .tf-btn span {
  font-family: sans-serif;
}
.categories-custom .hover-sw-nav .collection-item.style-2 .collection-content .tf-btn i {
  display: none;
}
.categories-custom .hover-sw-nav .collection-item.style-2 .collection-content .tf-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.categories-custom .hover-sw-nav .nav-sw.nav-prev-slider {
  right: 40px;
  margin-right: 30px;
}
.categories-custom .hover-sw-nav .nav-sw.nav-next-slider {
  margin-left: 30px;
  left: 40px;
}
.categories-custom .flat-title {
  text-align: center;
  margin-bottom: 40px;
}

.vous-aimerez-surement {
  padding: 0;
  font-family: Arial, sans-serif;
}
.vous-aimerez-surement .section-title {
  border-top: 1px solid #707070;
}
.vous-aimerez-surement .wrapper-shop {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  border-top: 1px solid #707070;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.vous-aimerez-surement .wrapper-shop::-webkit-scrollbar {
  display: none;
}
.vous-aimerez-surement .wrapper-shop .card-product {
  flex: 0 0 16.66%;
  scroll-snap-align: start;
}
@media (max-width: 1400px) {
  .vous-aimerez-surement .wrapper-shop .card-product {
    flex: 0 0 25%;
  }
}
@media (max-width: 992px) {
  .vous-aimerez-surement .wrapper-shop .card-product {
    flex: 0 0 33.33%;
  }
}
@media (max-width: 576px) {
  .vous-aimerez-surement .wrapper-shop .card-product {
    flex: 0 0 50%;
  }
}
@media (max-width: 400px) {
  .vous-aimerez-surement .wrapper-shop .card-product {
    flex: 0 0 85%;
  }
}
.vous-aimerez-surement .card-product {
  border-right: 1px solid var(--tertiary-color);
  border-bottom: 2px solid var(--tertiary-color);
  border-left: 1px solid var(--tertiary-color);
  padding: 15px;
  display: flex;
  flex-direction: column;
  background: var(--white);
}
@media (max-width: 576px) {
  .vous-aimerez-surement .card-product {
    padding: 12px;
  }
}
.vous-aimerez-surement .card-product .card-product-wrapper {
  aspect-ratio: 1/0.8;
  cursor: pointer;
}
.vous-aimerez-surement .card-product .card-product-wrapper img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.vous-aimerez-surement .card-product .card-product-wrapper img:hover {
  display: none;
}
.vous-aimerez-surement .card-product .card-product-info {
  padding-top: 0 !important;
  gap: 0px !important;
}
.vous-aimerez-surement .card-product .card-product-info .category {
  font-size: 10px;
  color: var(--primary-color);
}
@media (max-width: 576px) {
  .vous-aimerez-surement .card-product .card-product-info .category {
    font-size: 9px;
  }
}
.vous-aimerez-surement .card-product .card-product-info .title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
  height: 36px;
  overflow: hidden;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .vous-aimerez-surement .card-product .card-product-info .title {
    font-size: 12px;
  }
}
@media (max-width: 400px) {
  .vous-aimerez-surement .card-product .card-product-info .title {
    height: auto;
  }
}
.vous-aimerez-surement .card-product .card-product-info .price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 8px;
}
@media (max-width: 400px) {
  .vous-aimerez-surement .card-product .card-product-info .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.vous-aimerez-surement .card-product .card-product-info .price-row .tf-product-info-variant-picker {
  display: flex;
  gap: 5px;
  flex-direction: column;
}
.vous-aimerez-surement .card-product .card-product-info .price-row .tf-product-info-variant-picker .variant-picker-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.vous-aimerez-surement .card-product .card-product-info .price-row .tf-product-info-variant-picker .variant-picker-values .radius-60 {
  width: 26px;
  height: 26px;
}
@media (max-width: 576px) {
  .vous-aimerez-surement .card-product .card-product-info .price-row .tf-product-info-variant-picker .variant-picker-values .radius-60 {
    width: 22px;
    height: 22px;
  }
}
.vous-aimerez-surement .card-product .card-product-info .price {
  font-size: 16px;
}
@media (max-width: 768px) {
  .vous-aimerez-surement .card-product .card-product-info .price {
    font-size: 15px;
  }
}
.vous-aimerez-surement .card-product .card-product-info .add-to-cart {
  background: var(--primary-color);
  color: var(--white);
  padding: 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
@media (max-width: 576px) {
  .vous-aimerez-surement .card-product .card-product-info .add-to-cart {
    display: none;
  }
}
.vous-aimerez-surement .card-product .card-product-info .add-to-cart svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 576px) {
  .vous-aimerez-surement .card-product .card-product-info .add-to-cart svg {
    width: 18px;
    height: 18px;
  }
}
.vous-aimerez-surement .card-product .card-product-info .add-to-cart:hover {
  background: #00425a;
}
.vous-aimerez-surement .card-product .card-product-info .shipping-info {
  font-size: 12px;
  color: var(--primary-color);
}
@media (max-width: 576px) {
  .vous-aimerez-surement .card-product .card-product-info .shipping-info {
    font-size: 10px;
  }
}
.vous-aimerez-surement .card-product .card-product-info .shipping-info svg {
  margin-right: 8px;
  vertical-align: middle;
  width: 13px;
  height: 13px;
}
.vous-aimerez-surement .shop-footer {
  text-align: center;
}
@media (max-width: 576px) {
  .vous-aimerez-surement .shop-footer {
    margin-top: 25px;
  }
}

.btn-view-shop {
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 40px;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
}
@media (max-width: 576px) {
  .btn-view-shop {
    padding: 10px 30px;
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .btn-view-shop {
    width: 100%;
  }
}
.btn-view-shop:hover {
  opacity: 0.9;
}

.mille-horizons {
  padding-top: 79px;
}
.mille-horizons .container {
  padding: 0 100px;
}
@media (max-width: 1024px) {
  .mille-horizons .container {
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .mille-horizons .container {
    padding: 0 15px;
  }
}
.mille-horizons .container .hero-content {
  flex: 1;
}
.mille-horizons .container .hero-content .brand-title {
  font-size: 3rem;
  font-weight: 900;
  margin: 0;
}
@media (max-width: 768px) {
  .mille-horizons .container .hero-content .brand-title {
    max-width: 180px;
    display: block;
    margin: 0 auto 15px auto;
  }
}
.mille-horizons .container .hero-content .brand-title span {
  font-weight: 300;
}
.mille-horizons .container .hero-content .main-headline {
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 20px 0;
}
@media (max-width: 992px) {
  .mille-horizons .container .hero-content .main-headline {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .mille-horizons .container .hero-content .main-headline {
    font-size: 1.8rem;
    text-align: center;
  }
  .mille-horizons .container .hero-content .main-headline br {
    display: none;
  }
}
.mille-horizons .container .hero-content .description {
  color: var(--black);
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .mille-horizons .container .hero-content .description {
    text-align: center;
    font-size: 14px;
  }
}
.mille-horizons .container .hero-content .btn-discover {
  background: var(--black);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}
@media (max-width: 768px) {
  .mille-horizons .container .hero-content .btn-discover {
    display: table;
    margin: 20px auto;
  }
}
.mille-horizons .container .hero-content .btn-discover i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.mille-horizons .container .hero-content .btn-discover:hover {
  background: var(--primary-color);
}
.mille-horizons .tf-grid-layout {
  display: grid;
  gap: 40px;
}
@media (max-width: 768px) {
  .mille-horizons .tf-grid-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.mille-horizons .tf-image-wrap {
  height: 525px;
  overflow: hidden;
}
.mille-horizons .tf-image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media (max-width: 768px) {
  .mille-horizons .tf-image-wrap img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 992px) {
  .mille-horizons .tf-image-wrap {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .mille-horizons .tf-image-wrap {
    height: 300px;
    order: -1;
  }
}
.mille-horizons .tf-img-with-text {
  align-items: center;
  justify-content: start;
}
@media (max-width: 768px) {
  .mille-horizons .tf-img-with-text {
    flex-direction: column;
  }
}
.mille-horizons .hero-content {
  text-align: left;
}

.kayak-modulable {
  padding: 0;
  font-family: Arial, sans-serif;
}
.kayak-modulable .meta-filter-shop {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0 !important;
}
@media (max-width: 576px) {
  .kayak-modulable .meta-filter-shop {
    gap: 8px;
  }
}
.kayak-modulable .wrapper-shop {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.kayak-modulable .wrapper-shop::-webkit-scrollbar {
  display: none;
}
.kayak-modulable .wrapper-shop .card-product {
  flex: 0 0 20%;
  scroll-snap-align: start;
}
@media (max-width: 1400px) {
  .kayak-modulable .wrapper-shop .card-product {
    flex: 0 0 25%;
  }
}
@media (max-width: 992px) {
  .kayak-modulable .wrapper-shop .card-product {
    flex: 0 0 33.33%;
  }
}
@media (max-width: 576px) {
  .kayak-modulable .wrapper-shop .card-product {
    flex: 0 0 50%;
  }
}
@media (max-width: 400px) {
  .kayak-modulable .wrapper-shop .card-product {
    flex: 0 0 85%;
  }
}
.kayak-modulable .card-product {
  border-right: 1px solid var(--tertiary-color);
  border-bottom: 2px solid var(--tertiary-color);
  border-top: 2px solid var(--tertiary-color);
  border-left: 1px solid var(--tertiary-color);
  padding: 15px;
  display: flex;
  flex-direction: column;
  background: var(--white);
}
@media (max-width: 768px) {
  .kayak-modulable .card-product {
    padding: 12px;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .kayak-modulable .card-product {
    padding: 12px;
    margin-bottom: 30px;
  }
}
.kayak-modulable .card-product .card-product-wrapper {
  aspect-ratio: 1/0.8;
}
.kayak-modulable .card-product .card-product-wrapper img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.kayak-modulable .card-product .card-product-info {
  padding-top: 0 !important;
  gap: 6px !important;
}
.kayak-modulable .card-product .card-product-info .category {
  font-size: 10px;
  color: var(--primary-color);
}
@media (max-width: 576px) {
  .kayak-modulable .card-product .card-product-info .category {
    font-size: 9px;
  }
}
.kayak-modulable .card-product .card-product-info .title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary-color);
  height: 36px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .kayak-modulable .card-product .card-product-info .title {
    font-size: 12px;
  }
}
@media (max-width: 400px) {
  .kayak-modulable .card-product .card-product-info .title {
    height: auto;
  }
}
.kayak-modulable .card-product .card-product-info .price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 400px) {
  .kayak-modulable .card-product .card-product-info .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.kayak-modulable .card-product .card-product-info .price-row .tf-product-info-variant-picker {
  display: flex;
  gap: 5px;
  flex-direction: column;
}
.kayak-modulable .card-product .card-product-info .price-row .tf-product-info-variant-picker .variant-picker-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.kayak-modulable .card-product .card-product-info .price-row .tf-product-info-variant-picker .variant-picker-values .radius-60 {
  width: 26px;
  height: 26px;
}
@media (max-width: 576px) {
  .kayak-modulable .card-product .card-product-info .price-row .tf-product-info-variant-picker .variant-picker-values .radius-60 {
    width: 22px;
    height: 22px;
  }
}
.kayak-modulable .card-product .card-product-info .list-color-product {
  display: flex;
  gap: 5px;
}
.kayak-modulable .card-product .card-product-info .list-color-product .color-item {
  width: 12px;
  height: 12px;
}
@media (max-width: 576px) {
  .kayak-modulable .card-product .card-product-info .list-color-product .color-item {
    width: 10px;
    height: 10px;
  }
}
.kayak-modulable .card-product .card-product-info .price {
  font-size: 16px;
}
@media (max-width: 768px) {
  .kayak-modulable .card-product .card-product-info .price {
    font-size: 15px;
  }
}
.kayak-modulable .card-product .card-product-info .add-to-cart {
  background: var(--primary-color);
  color: var(--white);
  padding: 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
@media (max-width: 576px) {
  .kayak-modulable .card-product .card-product-info .add-to-cart {
    display: none;
  }
}
.kayak-modulable .card-product .card-product-info .add-to-cart svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 576px) {
  .kayak-modulable .card-product .card-product-info .add-to-cart svg {
    width: 18px;
    height: 18px;
  }
}
.kayak-modulable .card-product .card-product-info .add-to-cart:hover {
  background: #00425a;
}
.kayak-modulable .card-product .card-product-info .shipping-info {
  font-size: 12px;
  color: var(--primary-color);
}
@media (max-width: 576px) {
  .kayak-modulable .card-product .card-product-info .shipping-info {
    font-size: 10px;
  }
}
.kayak-modulable .card-product .card-product-info .shipping-info svg {
  margin-right: 8px;
  vertical-align: middle;
  width: 13px;
  height: 13px;
}
.kayak-modulable .shop-footer {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 576px) {
  .kayak-modulable .shop-footer {
    margin-bottom: 30px;
  }
}
.kayak-modulable .shop-footer .btn-view-shop {
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 40px;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
}
@media (max-width: 576px) {
  .kayak-modulable .shop-footer .btn-view-shop {
    padding: 10px 30px;
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .kayak-modulable .shop-footer .btn-view-shop {
    width: 100%;
  }
}
.kayak-modulable .shop-footer .btn-view-shop:hover {
  opacity: 0.9;
}

.instagram {
  padding: 0 0 60px;
  background-color: var(--white);
}
.instagram .flat-title {
  text-align: center;
  margin-bottom: 20px;
}
.instagram .flat-title .title {
  font-size: 34px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: none;
}
.instagram .hover-img .img-style img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
  min-height: 283px;
}

.partenaires {
  padding: 30px 0;
}
.partenaires .container .tf-sw-brand {
  padding: 20px 0;
}
.partenaires .container .tf-sw-brand .brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.partenaires .container .tf-sw-brand .brand-item img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(0);
  opacity: 0.8;
}
.partenaires .container .tf-sw-brand .brand-item img:hover {
  opacity: 1;
  transform: scale(1.05);
}
.partenaires .container .sw-dots {
  display: flex;
  gap: 8px;
  margin-top: 30px;
}
.partenaires .container .sw-dots.justify-content-center {
  justify-content: center;
}
.partenaires .container .sw-dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 1px solid var(--primary-color);
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
  margin: 0 !important;
}
.partenaires .container .sw-dots .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  width: 24px;
  border-radius: 10px;
  opacity: 1;
}

.avis {
  padding-bottom: 70px;
}
.avis .testimonial-item.lg-2 .icon {
  margin-bottom: 5px;
}
.avis .testimonial-item.lg-2 .text {
  font-weight: 500;
  color: var(--black);
  font-size: 23px;
}
@media (max-width: 768px) {
  .avis .testimonial-item.lg-2 .text {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media (max-width: 575px) {
  .avis .testimonial-item.lg-2 .text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}
.avis .testimonial-item.lg-2 .author .content {
  font-size: 16px;
}
.avis .testimonial-item.lg-2 .rating {
  display: flex;
  gap: 4px;
  color: #f6a623;
  margin-bottom: 0;
}
.avis .testimonial-item.lg-2 .google-logo img {
  height: 60px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  padding-left: 20px;
}

.catalogue {
  padding: 50px 0;
}
.catalogue .container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
}
.catalogue .tf-shop-control {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.catalogue .tf-shop-control .tf-btn-filter {
  text-transform: none;
}
@media (max-width: 576px) {
  .catalogue .tf-shop-control {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.catalogue .tf-row-flex {
  display: flex;
  gap: 65px;
  align-items: flex-start;
}
.catalogue .tf-row-flex .tf-shop-sidebar {
  flex: 0 0 300px;
}
.catalogue .tf-row-flex .tf-shop-sidebar .widget-facet {
  margin-bottom: 20px;
}
.catalogue .tf-row-flex .tf-shop-sidebar .widget-facet .facet-title {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 10px !important;
  padding: 0;
  cursor: pointer;
}
.catalogue .tf-row-flex .tf-shop-sidebar .widget-facet .list-categoris {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}
.catalogue .tf-row-flex .tf-shop-sidebar .widget-facet .list-categoris .cate-item {
  margin: 0 0 5px 0;
}
.catalogue .tf-row-flex .tf-shop-sidebar .widget-facet .list-categoris .cate-item a {
  text-decoration: none;
  color: var(--black);
  font-size: 14px;
}
.catalogue .tf-row-flex .tf-shop-sidebar .widget-facet .list-categoris .cate-item a:hover {
  color: var(--primary-color);
}
.catalogue .tf-row-flex .tf-shop-sidebar .widget-facet .tf-filter-group-item {
  list-style: none;
  padding: 0;
  margin: 0;
}
.catalogue .tf-row-flex .tf-shop-sidebar .widget-facet .tf-filter-group-item .checkbox-item {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}
.catalogue .tf-row-flex .tf-shop-sidebar .widget-facet .tf-filter-group-item .checkbox-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
  gap: 2px;
  font-weight: 500;
}
.catalogue .tf-row-flex .tf-shop-sidebar .widget-facet .tf-filter-group-item .checkbox-item .tf-check {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  background-color: var(--white);
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}
.catalogue .tf-row-flex .tf-shop-sidebar .widget-facet .tf-filter-group-item .checkbox-item .tf-check:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.catalogue .tf-row-flex .tf-shop-sidebar .widget-facet .tf-filter-group-item .checkbox-item .tf-check:checked::after {
  content: "✔";
  position: absolute;
  color: white;
  font-size: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.catalogue .tf-row-flex .tf-shop-sidebar .widget-facet .tf-filter-group-item .checkbox-item .label {
  font-size: 14px;
  color: var(--black);
  margin-left: 10px;
}
.catalogue .tf-row-flex .tf-shop-sidebar .widget-facet .tf-filter-group-item .checkbox-item .count {
  font-size: 14px;
  color: var(--black);
}
.catalogue .tf-row-flex .tf-shop-sidebar .widget-facet .tf-filter-group-item .checkbox-item:hover .label {
  color: #4b4b4b;
}
@media (max-width: 991px) {
  .catalogue .tf-row-flex .tf-shop-sidebar {
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 30px;
  }
}
.catalogue .tf-row-flex .tf-shop-content {
  flex: 1;
}
.catalogue .tf-row-flex .tf-shop-content .tf-grid-layout {
  flex-wrap: wrap;
  margin: 0 -10px;
  gap: 10px;
}
.catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product {
  border-right: 1px solid #F1F1F1;
  border-bottom: 2px solid #F1F1F1;
  border-top: 2px solid #F1F1F1;
  border-left: 1px solid #F1F1F1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  margin-bottom: 0;
  border-radius: 10px;
  box-shadow: none;
}
@media (max-width: 1200px) {
  .catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product {
    padding: 12px;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product {
    padding: 12px;
    margin-bottom: 30px;
  }
}
.catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-wrapper {
  aspect-ratio: 1/0.8;
}
.catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-wrapper img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-wrapper img:hover {
  opacity: 1;
}
.catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info {
  padding-top: 0 !important;
  gap: 6px !important;
}
.catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .category {
  font-size: 12px;
}
@media (max-width: 576px) {
  .catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .category {
    font-size: 9px;
  }
}
.catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  height: 36px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .title {
    font-size: 12px;
  }
}
@media (max-width: 400px) {
  .catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .title {
    height: auto;
  }
}
.catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 400px) {
  .catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .price-row .tf-product-info-variant-picker {
  display: flex;
  gap: 5px;
  flex-direction: column;
}
.catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .price-row .tf-product-info-variant-picker .variant-picker-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .price-row .tf-product-info-variant-picker .variant-picker-values .radius-60 {
  width: 26px;
  height: 26px;
}
@media (max-width: 576px) {
  .catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .price-row .tf-product-info-variant-picker .variant-picker-values .radius-60 {
    width: 22px;
    height: 22px;
  }
}
.catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .list-color-product {
  display: flex;
  gap: 5px;
}
.catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .list-color-product .color-item {
  width: 12px;
  height: 12px;
}
@media (max-width: 576px) {
  .catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .list-color-product .color-item {
    width: 10px;
    height: 10px;
  }
}
.catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .price {
  font-size: 16px;
}
@media (max-width: 768px) {
  .catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .price {
    font-size: 15px;
  }
}
.catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .add-to-cart {
  background: var(--primary-color);
  color: var(--white);
  padding: 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
@media (max-width: 576px) {
  .catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .add-to-cart {
    padding: 8px;
  }
}
.catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .add-to-cart svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 576px) {
  .catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .add-to-cart svg {
    width: 18px;
    height: 18px;
  }
}
.catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .add-to-cart:hover {
  background: #00425a;
}
.catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .shipping-info {
  font-size: 12px;
  margin-top: 10px;
  color: var(--primary-color);
}
@media (max-width: 576px) {
  .catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .shipping-info {
    font-size: 10px;
  }
}
.catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .card-product .card-product-info .shipping-info svg {
  margin-right: 8px;
  vertical-align: middle;
  width: 13px;
  height: 13px;
}
.catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .wg-pagination {
  grid-column: 1/-1;
  width: 100%;
  margin-top: 35px;
}
.catalogue .tf-row-flex .tf-shop-content .tf-grid-layout .wg-pagination .active .pagination-link {
  box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 10px 0px;
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}
@media (max-width: 1200px) {
  .catalogue .tf-row-flex .tf-shop-content .tf-grid-layout {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .catalogue .tf-row-flex .tf-shop-content .tf-grid-layout {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
}
@media (max-width: 576px) {
  .catalogue .tf-row-flex .tf-shop-content .tf-grid-layout {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}
@media (max-width: 991px) {
  .catalogue .tf-row-flex {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .catalogue {
    padding: 20px 0;
  }
}

.page-qui-sommes-nous {
  padding: 80px 0;
  background: url("../images/qui-sommes-nous/fond2.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.page-qui-sommes-nous .tf-timeline-wrap {
  max-width: 1250px;
  margin: 0 auto;
}
.page-qui-sommes-nous .tf-timeline-wrap .tf-timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #e4e4e4;
  transform: translateX(-50%);
  z-index: 1;
}
.page-qui-sommes-nous .tf-timeline-wrap .timeline-arrow-decoration {
  position: absolute;
  top: 90px;
  left: 0px;
  max-width: 195px;
  height: auto;
  z-index: 5;
  pointer-events: none;
  opacity: 0.8;
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .page-qui-sommes-nous .tf-timeline-wrap .timeline-arrow-decoration {
    display: none;
  }
}
.page-qui-sommes-nous .tf-timeline-wrap .timeline-arrow {
  position: absolute;
  top: 41px;
  width: 123px;
  right: 311px;
  height: auto;
  z-index: 2;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media (max-width: 991px) {
  .page-qui-sommes-nous .tf-timeline-wrap .timeline-arrow {
    display: none;
  }
}
.page-qui-sommes-nous .tf-timeline-wrap .tf-timeline-description {
  color: var(--primary-color);
  font-size: 16px;
  background-color: transparent !important;
  text-align: left !important;
}
.page-qui-sommes-nous .tf-timeline-wrap .tf-timeline-description span {
  font-weight: 700;
}
.page-qui-sommes-nous .tf-timeline-wrap .tf-timeline-item {
  position: relative;
}
.page-qui-sommes-nous .tf-timeline-wrap .tf-timeline-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #4B7E45;
  z-index: 3;
}
@media (max-width: 768px) {
  .page-qui-sommes-nous .tf-timeline-wrap .tf-timeline-item::before {
    display: none;
  }
}
.page-qui-sommes-nous .tf-timeline-wrap .tf-timeline-time-2 {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color) !important;
  color: var(--white);
  border-radius: 4px;
  padding: 0 35px;
  font-size: 20px;
  line-height: 36px;
}

.detail-product {
  padding: 55px 0 30px 0;
}
.detail-product .woocommerce-notices-wrapper {
  margin-top: 6rem;
}
.detail-product .container {
  max-width: 1540px;
  padding-left: 100px;
  padding-right: 100px;
}
.detail-product .container .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 13px;
  color: var(--black);
}
.detail-product .container .breadcrumbs a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s ease;
}
.detail-product .container .breadcrumbs a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
.detail-product .container .breadcrumbs i {
  font-size: 9px;
  color: var(--primary-color);
}
.detail-product .container .breadcrumbs span {
  font-weight: 400;
  color: #888888;
}
@media (max-width: 991px) {
  .detail-product .container .breadcrumbs {
    margin-bottom: 20px;
    padding: 0 5px;
    overflow-x: auto;
    white-space: nowrap;
  }
}
.detail-product .container .row {
  display: flex;
  gap: 40px;
}
.detail-product .container .row > div[class*=col-] {
  padding: 0;
}
.detail-product .container .row .col-md-6:first-child {
  flex: 0 0 60%;
  max-width: 60%;
}
.detail-product .container .row .col-md-6:last-child {
  flex: 1;
}
.detail-product .container .row .col-md-6:last-child .product-info {
  position: sticky;
  top: 20px;
  height: -moz-fit-content;
  height: fit-content;
}
.detail-product .container .product-gallery {
  display: flex;
  gap: 20px;
  position: sticky;
  top: 100px;
  height: -moz-fit-content;
  height: fit-content;
}
.detail-product .container .product-gallery .thumbs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 130px;
}
.detail-product .container .product-gallery .thumbs-list .thumb-item {
  cursor: pointer;
  position: relative;
}
.detail-product .container .product-gallery .thumbs-list .thumb-item img {
  width: 100%;
  display: block;
  border-radius: 8px;
}
.detail-product .container .product-gallery .thumbs-list .thumb-item.video-thumb::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.detail-product .container .product-gallery .main-image {
  flex: 1;
}
.detail-product .container .product-gallery .main-image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.detail-product .container .product-info .breadcrumb {
  font-size: 12px;
  color: #888;
  margin-bottom: 15px;
}
.detail-product .container .product-info .product-title {
  max-width: 400px;
  line-height: 30px;
  margin-bottom: 35px;
  font-weight: 500;
  font-size: 27px;
}
.detail-product .container .product-info .product-price {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-product .container .product-info .product-price .amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
}
.detail-product .container .product-info .product-price .oney-logo-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-left: -5px;
}
.detail-product .container .product-info .product-price .price-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.detail-product .container .product-info .product-price .price-wrapper .old-price {
  font-size: 20px;
  color: #888;
  text-decoration: line-through !important;
  display: inline-block;
}
@media (max-width: 576px) {
  .detail-product .container .product-info .product-price .price-wrapper .old-price {
    font-size: 16px;
  }
}
.detail-product .container .product-info .product-price .price-wrapper .amount {
  font-size: 32px;
  font-weight: 800;
  color: #e02b2b;
  line-height: 1;
}
@media (max-width: 576px) {
  .detail-product .container .product-info .product-price .price-wrapper .amount {
    font-size: 26px;
  }
}
.detail-product .container .product-info .product-price .price-wrapper .on-sale-wrap {
  z-index: 5;
  right: 0;
}
.detail-product .container .product-info .product-price .price-wrapper .on-sale-wrap .on-sale-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  word-break: break-word;
  padding: 0 6px;
  min-width: 40px;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  line-height: 22px;
  position: relative;
  background-color: #fc5732;
  color: var(--white);
  border-radius: 999px;
}
.detail-product .container .product-info .product-price .oney-logo-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-left: -5px;
}
.detail-product .container .product-info .product-description {
  font-size: 14px;
  line-height: 1.4;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.detail-product .container .product-info .product-description a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
}
.detail-product .container .product-info .content-video {
  margin-bottom: 2rem;
}
.detail-product .container .product-info .quantity-title {
  font-size: 14px;
  color: var(--primary-color);
}
.detail-product .container .product-info .product-actions {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 10px;
  margin-bottom: 30px;
}
.detail-product .container .product-info .product-actions .quantity-selector {
  display: flex;
  align-items: center;
  border-radius: 4px;
  height: 50px;
  background-color: var(--tertiary-color);
}
.detail-product .container .product-info .product-actions .quantity-selector .btn-quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 100%;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background 0.3s ease;
}
.detail-product .container .product-info .product-actions .quantity-selector .quantity-product {
  width: 50px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  background: transparent;
  outline: none;
}
.detail-product .container .product-info .product-actions .quantity-selector .quantity-product::-webkit-inner-spin-button, .detail-product .container .product-info .product-actions .quantity-selector .quantity-product::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.detail-product .container .product-info .product-actions .btn-add-to-cart {
  flex-grow: 1;
  height: 50px;
  padding: 0 30px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.detail-product .container .product-info .product-actions .btn-add-to-cart:hover {
  background-color: var(--black);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.detail-product .container .product-info .product-actions .btn-add-to-cart:active {
  transform: scale(0.98);
}
.detail-product .container .product-info .frequently-bought {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 5px;
}
.detail-product .container .product-info .frequently-bought h3 {
  font-size: 16px;
  margin-bottom: 15px;
}
.detail-product .container .product-info .frequently-bought .upsell-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.detail-product .container .product-info .frequently-bought .upsell-item label {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  min-width: 400px;
}
.detail-product .container .product-info .frequently-bought .upsell-item label .products {
  width: 100%;
  display: flex;
}
.detail-product .container .product-info .frequently-bought .upsell-item label .products img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0 20px;
  max-width: 100px;
  max-height: 80px;
}
.detail-product .container .product-info .frequently-bought .upsell-item label .products .item-info {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: var(--primary-color);
}
.detail-product .container .product-info .frequently-bought .upsell-item label .products .item-info strong {
  font-size: 18px;
  font-weight: 600;
}
.detail-product .container .product-info .frequently-bought .upsell-item label .products .item-info span {
  font-size: 14px;
  color: var(--black);
}
.detail-product .container .product-info .frequently-bought .upsell-item label .products .item-info .price {
  font-size: 19px;
  color: var(--primary-color);
}
.detail-product .container .product-info .frequently-bought .upsell-item label .products .item-info .price-on-sale {
  color: var(--primary);
  line-height: 28px;
  font-size: 18px;
}
.detail-product .container .product-info .frequently-bought .upsell-item label .products .item-info .compare-at-price {
  color: rgba(0, 0, 0, 0.55);
  line-height: 20px;
  font-size: 18px;
  text-decoration: line-through;
}
.detail-product .container .product-info .frequently-bought .upsell-item label .atc {
  flex: 1;
  text-align: end;
}
.detail-product .container .product-info .frequently-bought .upsell-item label .atc a {
  padding: 9px;
  border-radius: 5px;
}
.detail-product .container .product-info .frequently-bought .upsell-item label .atc a:hover {
  background: var(--primary-color);
  color: white;
}
.detail-product .container .product-info .frequently-bought .upsell-item label .atc input[type=checkbox] {
  accent-color: var(--primary-color);
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.detail-product .container .product-info .frequently-bought .upsell-item label .atc .added_to_cart {
  display: none;
}
.detail-product .container .product-info .frequently-bought .btn-complete-pack {
  display: block;
  margin: auto;
  width: 100%;
  max-width: 200px;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 10px;
  font-weight: 600;
}
.detail-product .container .product-info .tf-product-info-delivery-return {
  margin-bottom: 30px;
}
.detail-product .container .product-info .tf-product-info-delivery-return .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  gap: 0;
}
.detail-product .container .product-info .tf-product-info-delivery-return .tf-product-delivery {
  border: 1px solid #e5e5e5;
  padding: 25px 20px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 4px;
  gap: 0px;
}
.detail-product .container .product-info .tf-product-info-delivery-return .tf-product-delivery .icon {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-product .container .product-info .tf-product-info-delivery-return .tf-product-delivery .icon i::before {
  font-size: 30px;
}
.detail-product .container .product-info .tf-product-info-delivery-return .tf-product-delivery p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: var(--primary-color);
}
.detail-product .container .product-info .tf-product-info-delivery-return .tf-product-delivery p .fw-7 {
  font-weight: 700;
}
.detail-product .container .product-info .tf-product-info-delivery-return .col-xl-6 {
  padding: 0 10px;
  margin-bottom: 20px;
}
.detail-product .container .product-info .tf-product-info-delivery-return .truck img {
  max-width: 49px;
  margin-bottom: -2px;
  margin-top: -15px;
}
.detail-product .container .product-info .tf-product-info-trust-seal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 30px;
}
.detail-product .container .product-info .tf-product-info-trust-seal .tf-product-trust-mess {
  display: flex;
  align-items: center;
  gap: 12px;
}
.detail-product .container .product-info .tf-product-info-trust-seal .tf-product-trust-mess i {
  font-size: 24px;
  color: var(--black);
}
.detail-product .container .product-info .tf-product-info-trust-seal .tf-product-trust-mess p {
  font-size: 14px;
  line-height: 1.2;
  margin: 0;
  font-weight: 600;
  color: var(--black);
  text-transform: none;
}
.detail-product .container .product-info .tf-product-info-trust-seal .tf-payment {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0px;
}
.detail-product .container .product-info .tf-product-info-trust-seal .tf-payment img {
  height: 32px;
  width: auto;
  border: 1px solid var(--white);
  border-radius: 4px;
  padding: 4px 8px;
  -o-object-fit: contain;
     object-fit: contain;
}
.detail-product .container .product-info .out-of-stock {
  color: var(--primary);
  margin-bottom: 2rem;
  font-size: 17px;
  font-weight: 600;
  margin-top: 5;
}
@media (max-width: 991px) {
  .detail-product {
    padding: 120px 20px 30px 20px;
  }
  .detail-product .container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .detail-product .container .row {
    flex-direction: row !important;
    gap: 60px;
  }
  .detail-product .container .row .col-md-6:first-child,
  .detail-product .container .row .col-md-6:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .detail-product .container .row .col-md-6:last-child .product-info {
    position: relative;
    top: auto;
  }
  .detail-product .container .product-gallery {
    flex-direction: column-reverse !important;
    gap: 20px;
  }
  .detail-product .container .product-gallery .thumbs-list {
    flex-direction: row !important;
    overflow-x: auto;
    max-width: none;
    width: 100%;
    padding-bottom: 5px;
  }
  .detail-product .container .product-gallery .thumbs-list .thumb-item {
    cursor: pointer;
    position: relative;
    width: 100%;
    height: 90px;
    overflow: hidden;
    border-radius: 8px;
  }
  .detail-product .container .product-gallery .thumbs-list .thumb-item img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
    background-color: var(--white);
  }
  .detail-product .container .product-gallery .main-image {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .detail-product {
    padding: 100px 20px 20px 20px;
  }
  .detail-product .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .detail-product .product-gallery {
    gap: 15px;
  }
  .detail-product .product-gallery .thumbs-list {
    gap: 8px;
    max-width: none;
    flex-direction: row !important;
  }
  .detail-product .product-gallery .thumbs-list .thumb-item {
    flex: 0 0 65px;
  }
  .detail-product .product-info .product-title {
    font-size: 22px;
    line-height: 26px;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .detail-product .product-info .product-price .amount {
    font-size: 26px;
  }
  .detail-product .product-info .product-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .detail-product .product-info .product-actions .btn-add-to-cart {
    width: 100%;
  }
  .detail-product .product-info .frequently-bought {
    padding: 15px;
  }
  .detail-product .product-info .frequently-bought .upsell-item {
    gap: 10px;
  }
  .detail-product .product-info .frequently-bought .upsell-item img {
    max-width: 70px;
    max-height: 60px;
    margin: 0 10px;
  }
  .detail-product .product-info .frequently-bought .upsell-item .item-info strong {
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .detail-product .product-gallery .thumbs-list {
    max-width: none;
    flex-direction: row !important;
  }
  .detail-product .product-gallery .thumbs-list .thumb-item {
    flex: 0 0 55px;
  }
  .detail-product .product-info .product-price .amount {
    font-size: 22px;
  }
}
.detail-product #product-main-container {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background-repeat: no-repeat;
  background-color: #fff;
}
.detail-product #product-main-container #main-product-img {
  width: 100%;
  display: block;
  transition: opacity 0.3s;
}
.detail-product #product-main-container:hover #main-product-img {
  opacity: 0;
}

.description-product {
  padding: 0 0 40px 0;
}
.description-product summary {
  line-height: 4px;
  margin-top: 8px;
}
.description-product svg {
  max-width: 12px;
  display: none;
}
@media (max-width: 576px) {
  .description-product {
    padding: 0 0 30px 0;
  }
}
.description-product .container {
  padding-left: 84px;
  padding-right: 84px;
}
@media (max-width: 991px) {
  .description-product .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 576px) {
  .description-product .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .description-product .container .widget-tabs .widget-menu-tab {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .description-product .container .widget-tabs .widget-menu-tab .item-title {
    white-space: nowrap;
    flex-shrink: 0;
  }
}
.description-product .container .widget-content-inner {
  display: none;
  color: #535353;
  font-size: 13px;
}
@media (max-width: 576px) {
  .description-product .container .widget-content-inner {
    font-size: 14px;
    line-height: 1.6;
  }
}
.description-product .container .widget-content-inner .woocommerce-product-attributes td {
  padding-left: 0.5rem;
}
.description-product .container .widget-content-inner.active {
  display: block;
}
.description-product .container .widget-content-inner .technical-specs {
  max-width: 400px;
  line-height: 0px;
}
@media (max-width: 991px) {
  .description-product .container .widget-content-inner .technical-specs {
    max-width: 100%;
  }
}
.description-product .container .widget-content-inner .technical-specs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.description-product .container .widget-content-inner .technical-specs ul li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  margin-bottom: 2px;
}
@media (max-width: 576px) {
  .description-product .container .widget-content-inner .technical-specs ul li {
    align-items: flex-start;
    gap: 3px;
    padding: 12px 0;
    font-size: 11px;
  }
}
.description-product .container .widget-content-inner .technical-specs ul li span {
  color: #353535;
  font-weight: 400;
}
@media (max-width: 576px) {
  .description-product .container .widget-content-inner table {
    display: block;
    width: 100%;
    overflow-x: auto;
  }
}
@media (max-width: 576px) {
  .description-product .container .widget-content-inner .tab-reviews-heading .top {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .description-product .container .widget-content-inner .reply-comment-item .user {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .description-product .container .widget-content-inner .form-write-review .box-field.group-2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}

.services-icons {
  padding: 0px 260px;
}
@media (max-width: 1400px) {
  .services-icons {
    padding: 0 180px;
  }
}
@media (max-width: 1200px) {
  .services-icons {
    padding: 0 120px;
  }
}
@media (max-width: 991px) {
  .services-icons {
    padding: 0 60px;
  }
}
@media (max-width: 576px) {
  .services-icons {
    padding: 0 20px;
  }
}

.contact-form {
  margin: 40px 0;
}
.contact-form .container-narrow {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-form .container-narrow .contact-content {
  display: flex;
  justify-content: space-between;
}
.contact-form .container-narrow .contact-content .content-text {
  max-width: 600px;
  margin: 0 0.5rem;
}
.contact-form .container-narrow .contact-content .content-form {
  width: 100%;
  max-width: 600px;
  margin: 0 0.5rem;
}
.contact-form .container-narrow .contact-content .info-contact-mobile {
  display: none;
}
.contact-form .container-narrow .contact-content .info-contact-desktop {
  display: block;
}
.contact-form .container-narrow .contact-content .info-contact-desktop .contact-infos {
  text-align: start;
}
.contact-form .container-narrow .contact-content .info-contact-desktop .contact-infos strong {
  color: var(--primary-color);
}
.contact-form .container-narrow .contact-content p {
  color: var(--primary-color);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 600;
}
.contact-form .container-narrow .contact-content p a {
  text-decoration: underline;
  font-weight: 600;
  color: inherit;
}
.contact-form .container-narrow .contact-content .text-whatsapp {
  color: #23B500;
  font-weight: 700;
}
.contact-form .container-narrow .contact-content .form-contact input,
.contact-form .container-narrow .contact-content .form-contact textarea,
.contact-form .container-narrow .contact-content .form-contact select {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid #EEEEEE;
  border-radius: 6px;
  font-size: 14px;
  background-color: var(--white);
  outline: none;
  transition: border-color 0.3s;
  height: auto;
}
.contact-form .container-narrow .contact-content .form-contact input::-moz-placeholder, .contact-form .container-narrow .contact-content .form-contact textarea::-moz-placeholder, .contact-form .container-narrow .contact-content .form-contact select::-moz-placeholder {
  color: #B1B1B1;
}
.contact-form .container-narrow .contact-content .form-contact input::placeholder,
.contact-form .container-narrow .contact-content .form-contact textarea::placeholder,
.contact-form .container-narrow .contact-content .form-contact select::placeholder {
  color: #B1B1B1;
}
.contact-form .container-narrow .contact-content .form-contact .custom-select {
  position: relative;
}
.contact-form .container-narrow .contact-content .form-contact .custom-select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.contact-form .container-narrow .contact-content .form-contact .custom-select::after {
  content: "▼";
  font-size: 12px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--primary-color);
}
.contact-form .container-narrow .contact-content .form-contact .send-wrap {
  text-align: right;
  width: 100%;
}
.contact-form .container-narrow .contact-content .form-contact .btn-dark-submit {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 15px 40px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
  display: inline-block;
  width: 100%;
  max-width: 270px;
}
.contact-form .container-narrow .contact-content .form-contact .btn-dark-submit:hover {
  opacity: 0.9;
}
.contact-form .container-narrow .contact-content .form-contact .error-message {
  display: block;
  font-size: 13px;
  color: var(--black);
  margin-top: 5px;
  text-align: left;
  font-weight: 700;
}
.contact-form .container-narrow .contact-content .mb_40 {
  margin-bottom: 40px;
  text-align: left;
}
.contact-form .container-narrow .contact-content .mb_40 span {
  color: var(--primary-color);
  font-weight: 900;
}
.contact-form .container-narrow .contact-content .mb_20 {
  margin-bottom: 20px;
  text-align: left;
}
.contact-form .container-narrow .contact-content .mb_20 span {
  color: var(--primary-color);
  font-weight: 900;
}
.contact-form .container-narrow .contact-content .mb_15 {
  margin-bottom: 15px;
}
.contact-form .container-narrow .contact-content .mb_15 .custom-select {
  position: relative;
  width: 100%;
}
.contact-form .container-narrow .contact-content .mb_15 .custom-select select {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid #EEEEEE;
  border-radius: 4px;
  background-color: var(--white);
  font-size: 14px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  transition: border-color 0.3s;
  color: var(--primary-color);
}
.contact-form .container-narrow .contact-content .mb_15 .custom-select select option {
  color: #999;
  background-color: var(--white);
}
.contact-form .container-narrow .contact-content .mb_15 .custom-select::after {
  content: "▼";
  font-size: 10px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #999;
}
@media (max-width: 1100px) {
  .contact-form .contact-content {
    flex-direction: column;
    align-items: center;
  }
  .contact-form .contact-content .wpcf7-submit {
    width: 100% !important;
    max-width: none !important;
  }
  .contact-form .info-contact-mobile {
    margin-top: 3rem;
    display: block !important;
  }
  .contact-form .info-contact-mobile p {
    text-align: center !important;
  }
  .contact-form .info-contact-desktop {
    display: none !important;
  }
}

.blog {
  max-width: 1400px;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1200px) {
  .blog {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (min-width: 1400px) {
  .blog {
    padding-left: 200px;
    padding-right: 200px;
  }
}
.blog .blog-sidebar-main,
.blog .blog-list-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 3rem 0;
}
@media (min-width: 992px) {
  .blog .blog-sidebar-main,
  .blog .blog-list-main {
    flex-direction: row;
  }
}
.blog .blog-sidebar-main .tf-section-sidebar,
.blog .blog-list-main .tf-section-sidebar {
  width: 100%;
}
@media (min-width: 992px) {
  .blog .blog-sidebar-main .tf-section-sidebar,
  .blog .blog-list-main .tf-section-sidebar {
    width: calc(25% - 15px);
  }
}
.blog .blog-sidebar-main .tf-section-sidebar h4,
.blog .blog-list-main .tf-section-sidebar h4 {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .blog .blog-sidebar-main .tf-section-sidebar h4,
  .blog .blog-list-main .tf-section-sidebar h4 {
    margin-bottom: 28px;
  }
}
.blog .blog-sidebar-main .list-blog,
.blog .blog-list-main .list-blog {
  width: 100%;
}
@media (min-width: 992px) {
  .blog .blog-sidebar-main .list-blog,
  .blog .blog-list-main .list-blog {
    width: calc(75% - 15px);
  }
}
.blog .blog-sidebar-main .list-blog .blog-article-item,
.blog .blog-list-main .list-blog .blog-article-item {
  margin-bottom: 30px;
}
.blog .blog-sidebar-main .list-blog .blog-article-item img,
.blog .blog-list-main .list-blog .blog-article-item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 16/9;
}
.blog .blog-sidebar-main .list-blog .wg-pagination,
.blog .blog-list-main .list-blog .wg-pagination {
  margin-bottom: 20px;
}
.blog .blog-sidebar-main .list-blog .wg-pagination .active .pagination-item,
.blog .blog-list-main .list-blog .wg-pagination .active .pagination-item {
  background-color: var(--primary-color);
  color: var(--white);
}

.blog-detail {
  padding: 150px 0 30px 0 !important;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .blog-detail {
    padding: 60px 0;
  }
}
.blog-detail .blog-detail-main .blog-detail-main-heading {
  text-align: center;
  margin-bottom: 30px;
}
.blog-detail .blog-detail-main .blog-detail-main-heading .tags-lists a {
  text-transform: uppercase;
}
.blog-detail .blog-detail-main .blog-detail-main-heading .title {
  font-size: 24px;
  line-height: 1.3;
  margin: 15px 0;
}
@media (min-width: 992px) {
  .blog-detail .blog-detail-main .blog-detail-main-heading .title {
    font-size: 40px;
  }
}
.blog-detail .blog-detail-main .blog-detail-main-heading .image img {
  width: 100%;
  max-height: 600px;
  border-radius: 10px;
}
.blog-detail .blog-detail-main .text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
}
.blog-detail .blog-detail-main .grid-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 30px 0;
}
@media (min-width: 768px) {
  .blog-detail .blog-detail-main .grid-image {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
.blog-detail .blog-detail-main .grid-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.blog-detail .blog-detail-main .bot {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  margin-top: 40px;
  gap: 20px;
}
.blog-detail .blog-detail-main .tf-article-navigation {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 27px 0 23px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
}
@media (min-width: 768px) {
  .blog-detail .blog-detail-main .tf-article-navigation {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}
.blog-detail .blog-detail-main .tf-article-navigation .item {
  width: 100%;
}
@media (min-width: 768px) {
  .blog-detail .blog-detail-main .tf-article-navigation .item {
    width: 50%;
  }
}
.blog-detail .blog-detail-main .tf-article-navigation .item h6 {
  font-size: 14px;
  margin-top: 5px;
}
.blog-detail .blog-detail-main .tf-article-navigation .item.next {
  text-align: right;
}

.related-articles {
  margin-bottom: 30px;
}
.related-articles .blog-article-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 1s;
  aspect-ratio: 16/12;
}

.canvas-sidebar-account.offcanvas {
  width: 300px;
  background-color: var(--white) fff;
  border-right: 1px solid #e5e5e5;
}
.canvas-sidebar-account .canvas-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.canvas-sidebar-account .canvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--tertiary-color);
}
.canvas-sidebar-account .canvas-header .title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black) 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.canvas-sidebar-account .canvas-header .icon-close {
  cursor: pointer;
  font-size: 20px;
  color: #888888;
  transition: color 0.3s ease;
}
.canvas-sidebar-account .canvas-header .icon-close:hover {
  color: var(--black) 0;
}
.canvas-sidebar-account .canvas-header .icon-close::before, .canvas-sidebar-account .canvas-header .icon-close::after {
  content: "";
}
.canvas-sidebar-account .canvas-body {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  padding-top: 80px;
}
.canvas-sidebar-account .canvas-body.sidebar-mobile-append {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.canvas-sidebar-account .canvas-body .my-account-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 8px !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  position: relative;
}
.canvas-sidebar-account .canvas-body .my-account-nav .my-account-nav-item {
  display: block;
  padding: 15px 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.canvas-sidebar-account .canvas-body .my-account-nav .my-account-nav-item::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 1px;
  transition: all 0.3s ease-in-out;
}
.canvas-sidebar-account .canvas-body .my-account-nav .my-account-nav-item.active {
  background-color: var(--primary-color);
  color: white;
  cursor: default;
}
.canvas-sidebar-account .canvas-body .my-account-nav .my-account-nav-item:not(.active):not(.logout-item):hover {
  background-color: var(--tertiary-color);
  color: var(--primary-color);
}
.canvas-sidebar-account .canvas-body .my-account-nav .logout-item {
  background-color: #f9f9f9;
  color: #F10000;
}
.canvas-sidebar-account .canvas-body .my-account-nav .logout-item:hover {
  background-color: var(--tertiary-color);
  color: #F10000;
}

.tableau-de-bord {
  margin-top: 70px;
}
.tableau-de-bord .tf-btn {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--white);
}
@media (max-width: 768px) {
  .tableau-de-bord .tf-btn {
    font-size: 14px;
    padding: 10px 15px;
  }
}
@media (max-width: 480px) {
  .tableau-de-bord .tf-btn {
    font-size: 12px;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 1024px) {
  .tableau-de-bord {
    margin-top: 50px;
  }
  .tableau-de-bord .container {
    padding: 0 20px;
  }
  .tableau-de-bord .row {
    display: flex;
    flex-wrap: wrap;
  }
  .tableau-de-bord .col-lg-3,
  .tableau-de-bord .col-lg-9 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .tableau-de-bord .my-account-content {
    padding: 0;
  }
  .tableau-de-bord tf-field-input {
    font-size: 15px;
  }
  .tableau-de-bord h6 {
    font-size: 16px;
  }
  .tableau-de-bord tf-btn {
    font-size: 16px;
    padding: 12px 0;
  }
}
@media (max-width: 768px) {
  .tableau-de-bord {
    margin-top: 30px;
  }
  .tableau-de-bord .tf-field-input {
    font-size: 14px;
    padding: 10px;
  }
  .tableau-de-bord .tf-field-label {
    font-size: 14px;
  }
  .tableau-de-bord h6 {
    font-size: 14px;
  }
  .tableau-de-bord tf-btn {
    font-size: 14px;
    padding: 10px 0;
  }
}

.wrap-sidebar-account .my-account-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 15px 20px;
  border-radius: 8px !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  position: relative;
}
.wrap-sidebar-account .my-account-nav .my-account-nav-item {
  display: block;
  padding: 15px 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.wrap-sidebar-account .my-account-nav .my-account-nav-item::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 1px;
  transition: all 0.3s ease-in-out;
}
.wrap-sidebar-account .my-account-nav .my-account-nav-item.active {
  background-color: var(--primary-color);
  color: white;
  cursor: default;
}
.wrap-sidebar-account .my-account-nav .my-account-nav-item:not(.active):not(.logout-item):hover {
  background-color: var(--tertiary-color);
  color: var(--primary-color);
}
.wrap-sidebar-account .my-account-nav .logout-item {
  background-color: #f9f9f9;
  color: #F10000;
}
.wrap-sidebar-account .my-account-nav .logout-item:hover {
  background-color: var(--tertiary-color);
  color: #F10000;
}

.profil {
  padding: 70px 0;
}
@media (max-width: 768px) {
  .profil {
    padding: 30px 0;
  }
}
.profil .container .row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .profil .container .row {
    flex-direction: column;
    gap: 30px;
  }
}
.profil .container .row .account-content {
  flex: 1;
  width: 100%;
}
.profil .container .row .account-content h3 {
  font-size: 20px;
  color: var(--black);
  margin-bottom: 25px;
  font-weight: 700;
}
.profil .container .row .account-content .details-grid {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .profil .container .row .account-content .details-grid {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.profil .container .row .account-content .details-grid .profile-info-col {
  flex: 1.5;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .profil .container .row .account-content .details-grid .profile-info-col {
    width: 100%;
  }
}
.profil .container .row .account-content .details-grid .profile-info-col .name-row {
  display: flex;
  gap: 15px;
}
@media (max-width: 576px) {
  .profil .container .row .account-content .details-grid .profile-info-col .name-row {
    flex-direction: column;
    gap: 10px;
  }
}
.profil .container .row .account-content .details-grid .profile-info-col .name-row .form-group {
  flex: 1;
  margin-bottom: 20px;
  max-width: none;
}
.profil .container .row .account-content .details-grid .profile-info-col .name-row .form-group label {
  display: block;
  font-size: 14px;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-weight: 100;
}
.profil .container .row .account-content .details-grid .profile-info-col .name-row .form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #EBEBEB;
  border-radius: 8px;
  background: var(--white);
  color: var(--primary-color);
}
.profil .container .row .account-content .details-grid .profile-info-col .name-row .form-group .error-message {
  display: block;
  font-size: 13px;
  color: var(--black);
  margin-top: 5px;
  text-align: left;
  font-weight: 700;
}
.profil .container .row .account-content .details-grid .profile-info-col .btn-primary {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  max-width: 350px;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .profil .container .row .account-content .details-grid .profile-info-col .btn-primary {
    font-size: 11px;
  }
}
.profil .container .row .account-content .desactivation {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.profil .container .row .account-content .desactivation p {
  font-size: 13px;
  color: #535353;
  line-height: 1.4;
  margin-bottom: 20px;
}
.profil .container .row .account-content .desactivation .btn-delete {
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.profil .container .row .account-content .desactivation .btn-delete .icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.tf-page-title {
  margin-top: 4rem;
  padding: 69px 0 65px;
  background: var(--primary-color);
  color: white;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.tf-page-title .heading {
  font-size: 42px;
  font-weight: 400;
  line-height: 50px;
}
.tf-page-title .breadcrumbs {
  gap: 14px;
  margin-top: 5px;
}
.tf-page-title .breadcrumbs li {
  color: rgb(84, 84, 84);
}
.tf-page-title .breadcrumbs i {
  font-size: 10px;
}
.tf-page-title.style-1 {
  padding: 88px 0;
}
.tf-page-title.style-2 {
  padding: 80px 0 86px;
}

.commandes {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .commandes {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0 15px;
  }
}
.commandes .tf-btn {
  background: var(--primary-color);
  border-radius: 4px !important;
  color: var(--white);
  padding: 8px 24px;
}
.commandes .tf-btn span {
  font-size: 16px;
}
@media (max-width: 576px) {
  .commandes .tf-btn {
    padding: 6px 15px;
  }
  .commandes .tf-btn span {
    font-size: 14px;
  }
}
.commandes .account-order .wrap-account-order {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}
.commandes .account-order .wrap-account-order table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 768px) {
  .commandes .account-order .wrap-account-order table {
    min-width: 600px;
  }
}
.commandes .account-order .wrap-account-order table thead th {
  text-align: left;
  padding: 12px 15px;
  background-color: #f8f8f8;
  white-space: nowrap;
}
.commandes .account-order .wrap-account-order table tbody {
  border: 0;
}
.commandes .account-order .wrap-account-order table tbody .tf-order-item {
  border-bottom: 1px solid #E6E6E6 !important;
}
.commandes .account-order .wrap-account-order table tbody .tf-order-item td {
  padding: 15px;
  color: var(--primary-color);
  vertical-align: middle;
  white-space: nowrap;
}

.commande-details {
  padding: 80px 0;
  font-family: "Inter", sans-serif;
  background-color: var(--white);
}
.commande-details .col-lg-3 .myaccount-sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.commande-details .col-lg-3 .myaccount-sidebar .item {
  padding: 20px;
  border: 1px solid var(--tertiary-color);
  border-radius: 8px;
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  transition: all 0.3s ease;
}
.commande-details .col-lg-3 .myaccount-sidebar .item.active {
  background-color: #042933;
  color: var(--white);
  border-color: #042933;
}
.commande-details .col-lg-3 .myaccount-sidebar .item.logout {
  color: #ff0000;
}
.commande-details .order-details-container .order-status-text {
  font-size: 14px;
  color: #535353;
  margin-bottom: 15px;
}
.commande-details .order-details-container .order-status-text strong {
  font-weight: 600;
}
.commande-details .order-details-container .section-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--black);
}
.commande-details .order-details-container .order-table-card {
  background-color: var(--secondary-color);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 15px;
  margin-top: 15px;
  max-width: 370px;
}
.commande-details .order-details-container .order-table-card .order-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 15px;
}
.commande-details .order-details-container .order-table-card .order-row .product-name {
  color: var(--primary-color);
  max-width: 200px;
}
.commande-details .order-details-container .order-table-card .order-row.fw-bold {
  font-weight: 700;
}
.commande-details .order-details-container .order-table-card .order-row:last-child {
  margin-bottom: 0;
}
.commande-details .order-details-container .billing-address {
  line-height: 1.6;
  font-size: 15px;
  color: var(--primary-color);
  margin-top: 15px;
}
.commande-details .order-details-container .billing-address p {
  margin-bottom: 2px;
  color: var(--primary-color);
}
.commande-details .order-details-container .billing-address a {
  color: var(--primary-color);
  text-decoration: none;
}
.commande-details .order-details-container .billing-address a:hover {
  text-decoration: underline;
}

.guides-revendeurs {
  padding: 140px 20px 70px 20px;
  font-family: "Arial", sans-serif;
}
.guides-revendeurs .container {
  max-width: 1200px;
  margin: 0 auto;
}
.guides-revendeurs .reseller-header {
  text-align: center;
  margin-bottom: 70px;
}
.guides-revendeurs .reseller-header h2 {
  line-height: 32px !important;
  font-size: 23px;
}
.guides-revendeurs .reseller-header p {
  font-size: 16px;
  line-height: 1.4;
  color: var(--primary-color);
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .guides-revendeurs .reseller-header p {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .guides-revendeurs .reseller-header p {
    font-size: 14px;
  }
}
.guides-revendeurs .reseller-banner {
  width: 100%;
  background-color: var(--tertiary-color);
  border-radius: 15px;
  margin-bottom: 40px;
  overflow: hidden;
}
.guides-revendeurs .reseller-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.guides-revendeurs .reseller-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.guides-revendeurs .reseller-grid .reseller-item {
  padding: 40px 30px;
  border-right: 1px solid var(--gris);
  border-bottom: 1px solid var(--gris);
  transition: background 0.3s ease;
}
.guides-revendeurs .reseller-grid .reseller-item:nth-child(3n) {
  border-right: none;
}
@media (max-width: 1200px) {
  .guides-revendeurs .reseller-grid .reseller-item:nth-child(3n) {
    border-right: 1px solid var(--gris);
  }
}
@media (max-width: 768px) {
  .guides-revendeurs .reseller-grid .reseller-item:nth-child(3n) {
    border-right: 1px solid var(--gris);
  }
}
.guides-revendeurs .reseller-grid .reseller-item:hover {
  background-color: #fcfcfc;
}
.guides-revendeurs .reseller-grid .reseller-item p {
  font-size: 11px;
  line-height: 1.4;
  color: #535353;
  margin: 0;
}
@media (max-width: 768px) {
  .guides-revendeurs .reseller-grid .reseller-item p {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .guides-revendeurs .reseller-grid .reseller-item p {
    font-size: 13px;
  }
}
@media (max-width: 1024px) {
  .guides-revendeurs .reseller-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .guides-revendeurs .reseller-grid .reseller-item:nth-child(2n) {
    border-right: none;
  }
}
@media (max-width: 768px) {
  .guides-revendeurs .reseller-grid {
    grid-template-columns: 1fr;
  }
  .guides-revendeurs .reseller-grid .reseller-item {
    border-right: none;
  }
  .guides-revendeurs .reseller-grid .reseller-item:nth-child(3n) {
    border-right: none;
  }
}

.cgv {
  padding: 60px 0;
  background: var(--white) fff;
}
.cgv .container-mon-approche {
  max-width: 1100px;
  margin: 0 auto;
}
.cgv .top-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #0b5ed7;
  margin-bottom: 15px;
  display: inline-block;
}
.cgv p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}
.cgv strong {
  color: var(--black);
  font-weight: 600;
}
.cgv span {
  font-weight: 600;
  color: var(--black);
}
.cgv ul {
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 20px;
}
.cgv ul li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #555;
}
.cgv .row {
  margin-top: 20px;
}

.footer-bar {
  background-color: var(--primary-color);
  width: 100%;
}
@media (max-width: 576px) {
  .footer-bar {
    padding: 6px 0;
  }
}
.footer-bar .px_15 {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 768px) {
  .footer-bar .px_15 {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 400px) {
  .footer-bar .px_15 {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.footer-bar .px_15 .tf-top-bar_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0px;
}
@media (max-width: 576px) {
  .footer-bar .px_15 .tf-top-bar_wrap {
    justify-content: center;
  }
}
.footer-bar .px_15 .tf-top-bar_wrap .text-center {
  text-align: right;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 768px) {
  .footer-bar .px_15 .tf-top-bar_wrap .text-center {
    text-align: center;
  }
}
.footer-bar .px_15 .tf-top-bar_wrap .text-center .swiper {
  width: 100%;
}
@media (max-width: 576px) {
  .footer-bar .px_15 .tf-top-bar_wrap .text-center .swiper {
    padding: 2px 0;
  }
}
.footer-bar .px_15 .tf-top-bar_wrap .text-center .swiper .announcement-text {
  color: var(--secondary-color);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  margin: 0;
  font-weight: 500;
}
@media (max-width: 992px) {
  .footer-bar .px_15 .tf-top-bar_wrap .text-center .swiper .announcement-text {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .footer-bar .px_15 .tf-top-bar_wrap .text-center .swiper .announcement-text {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .footer-bar .px_15 .tf-top-bar_wrap .text-center .swiper .announcement-text {
    font-size: 13px;
    line-height: 1.4;
  }
}
@media (max-width: 400px) {
  .footer-bar .px_15 .tf-top-bar_wrap .text-center .swiper .announcement-text {
    font-size: 12px;
  }
}
.footer-bar .px_15 .tf-top-bar_wrap .text-center .swiper .announcement-text a {
  color: var(--secondary-color);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
@media (max-width: 576px) {
  .footer-bar .px_15 .tf-top-bar_wrap .text-center .swiper .announcement-text a {
    text-underline-offset: 2px;
  }
}
.footer-bar .px_15 .tf-top-bar_wrap .text-center .swiper .announcement-text a:hover {
  opacity: 0.7;
}

.footer {
  background-color: var(--secondary-color);
  padding-top: 20px !important;
  font-family: sans-serif;
}
@media (max-width: 767px) {
  .footer {
    text-align: center;
  }
}
.footer .footer-body {
  padding-bottom: 35px;
}
.footer .footer-body .footer-logo {
  margin-bottom: 0px !important;
}
@media (max-width: 767px) {
  .footer .footer-body .footer-logo {
    margin-bottom: 15px !important;
  }
}
.footer .footer-body .footer-description {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--black);
  max-width: 320px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .footer .footer-body .footer-description {
    margin: 0 auto 25px;
  }
}
.footer .footer-body .tf-social-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 35px;
}
@media (max-width: 767px) {
  .footer .footer-body .tf-social-icon {
    justify-content: center;
    margin-bottom: 30px;
  }
}
.footer .footer-body .tf-social-icon li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .footer-body .tf-social-icon li a {
  text-decoration: none;
  display: flex;
  transition: transform 0.3s ease;
}
.footer .footer-body .tf-social-icon li a i {
  font-size: 32px;
  color: var(--primary-color);
  display: block;
}
.footer .footer-body .tf-social-icon li a.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--primary-color);
  transition: 0.3s ease;
}
.footer .footer-body .tf-social-icon li a.social-icon svg {
  width: 37px;
  height: 37px;
}
@media (max-width: 991px) {
  .footer .footer-body .footer-col-block {
    margin-bottom: 30px;
  }
}
.footer .footer-body .footer-col-block .footer-heading {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .footer .footer-body .footer-col-block .footer-heading {
    margin-bottom: 15px;
  }
}
.footer .footer-body .footer-col-block .footer-heading h6 {
  font-size: 19px;
  font-weight: 500;
  margin: 0;
  color: #313131;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.footer .footer-body .footer-col-block .footer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-body .footer-col-block .footer-menu-list li {
  font-size: 14px;
  color: #717171;
}
.footer .footer-body .footer-col-block .footer-menu-list .footer-menu_item {
  text-decoration: none;
  color: #717171;
  transition: color 0.3s;
  font-size: 15px;
}
.footer .footer-body .footer-col-block .footer-menu-list .footer-menu_item:hover {
  color: #002b45;
}
.footer .footer-body .footer-col-block .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-body .footer-col-block .footer-contact-list li {
  line-height: 1.9;
  color: #717171;
  font-size: 16px;
}
.footer .footer-body .footer-col-block .footer-contact-list li strong {
  font-weight: 600;
}
.footer .footer-body .footer-col-block .footer-contact-list li a {
  line-height: 1.9;
  color: #717171;
  font-size: 16px;
}
.footer .footer-body .footer-col-block.first-child {
  padding-left: 70px;
}
@media (max-width: 1200px) {
  .footer .footer-body .footer-col-block.first-child {
    padding-left: 0;
  }
}
.footer .footer-body .footer-col-block.second-child {
  padding-left: 35px;
}
@media (max-width: 1200px) {
  .footer .footer-body .footer-col-block.second-child {
    padding-left: 0;
  }
}
@media (max-width: 1200px) {
  .footer .footer-body .footer-col-block.third-child, .footer .footer-body .footer-col-block.fourth-child {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .footer .footer-body {
    padding-top: 0px !important;
    justify-content: center;
  }
}
.footer .footer-bottom {
  position: relative;
  padding: 20px 0;
}
.footer .footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  border-top: 1px solid #e5e5e5;
  max-width: 1440px;
}
.footer .footer-bottom .footer-bottom-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-top: none !important;
}
@media (max-width: 767px) {
  .footer .footer-bottom .footer-bottom-wrap {
    flex-direction: column;
    text-align: center;
  }
}
.footer .footer-bottom .copyright {
  font-size: 13px;
  color: #888;
}
@media (max-width: 767px) {
  .footer .footer-bottom .copyright {
    order: 2;
  }
}
.footer .footer-bottom .copyright a {
  text-decoration: none;
  color: #888;
}
.footer .footer-bottom .copyright a:hover {
  text-decoration: underline;
}
.footer .footer-bottom .tf-payment {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer .footer-bottom .tf-payment {
    order: 1;
    justify-content: center;
  }
}
.footer .footer-bottom .tf-payment img {
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(0.2);
}

#goTop {
  bottom: 90px !important;
}
@media (max-width: 767px) {
  #goTop {
    bottom: 145px !important;
    right: 26px;
  }
}

.chatbot-launcher {
  position: fixed;
  right: 33px;
  bottom: 25px;
  z-index: 1000;
}
.chatbot-launcher .chatbot-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #F68601;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.chatbot-launcher .chatbot-button img {
  width: 20px;
  height: auto;
}
@media (max-width: 767px) {
  .chatbot-launcher {
    bottom: 80px;
    right: 20px;
  }
}

.canvas-search .tf-search-head .title {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 0 0px;
}

.btn-sidebar-account,
.btn-sidebar-style2 {
  border-radius: 3px;
}
.btn-sidebar-account button,
.btn-sidebar-style2 button {
  width: 38px;
  height: 38px;
  display: flex;
  border: 1px solid var(--line-2);
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--white);
}
.btn-sidebar-account button .icon,
.btn-sidebar-style2 button .icon {
  font-size: 17px;
  color: var(--white) !important;
}

.form-sign-in .modal-content {
  padding: 30px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.form-sign-in .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.form-sign-in .header .demo-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
}
.form-sign-in .header .icon-close {
  cursor: pointer;
  font-size: 20px;
  color: #666;
  transition: color 0.3s;
}
.form-sign-in .header .icon-close:hover {
  color: #000;
}
.form-sign-in .tf-login-form p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.form-sign-in .tf-login-form .tf-field {
  position: relative;
  margin-bottom: 20px;
}
.form-sign-in .tf-login-form .tf-field .tf-input {
  width: 100%;
  height: 50px;
  padding: 10px 15px;
  border: 1px solid var(--black);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s;
}
.form-sign-in .tf-login-form .tf-field .tf-input:focus {
  border-color: var(--black);
}
.form-sign-in .tf-login-form .tf-field .tf-field-label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.2s ease all;
  color: #999;
}
.form-sign-in .tf-login-form .tf-field .tf-input:not(:-moz-placeholder-shown) ~ .tf-field-label {
  top: 0;
  font-size: 12px;
  background: var(--white);
  padding: 0 5px;
  color: var(--primary-color);
}
.form-sign-in .tf-login-form .tf-field .tf-input:focus ~ .tf-field-label,
.form-sign-in .tf-login-form .tf-field .tf-input:not(:placeholder-shown) ~ .tf-field-label {
  top: 0;
  font-size: 12px;
  background: var(--white);
  padding: 0 5px;
  color: var(--primary-color);
}
.form-sign-in .btn-link {
  font-size: 14px;
  text-decoration: underline;
  color: var(--primary-color);
  display: inline-block;
  margin-bottom: 15px;
}
.form-sign-in .btn-link.link {
  transition: opacity 0.3s;
}
.form-sign-in .btn-link.link:hover {
  opacity: 0.7;
}
.form-sign-in .bottom {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-sign-in .bottom .tf-btn {
  border: none;
  padding: 15px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.form-sign-in .bottom .tf-btn.btn-fill {
  background-color: var(--primary-color);
  color: var(--white);
}
.form-sign-in .bottom .tf-btn.btn-fill:hover {
  background-color: var(--black);
}

#cookie-law-info-again {
  display: none !important;
}

.nav-ul-mb .btn-open-sub {
  position: relative;
}
.nav-ul-mb .btn-open-sub::before, .nav-ul-mb .btn-open-sub::after {
  content: "";
  position: absolute;
  background-color: var(--main);
  transition: none;
  margin: auto;
}
.nav-ul-mb .btn-open-sub::before {
  width: 12px;
  height: 2px;
}
.nav-ul-mb .btn-open-sub::after {
  width: 2px;
  height: 12px;
}
.nav-ul-mb .btn-open-sub[aria-expanded=true]::after {
  transform: scaleY(0);
}

.wrapper-header #gt_float_wrapper {
  right: 155px !important;
  top: 16px !important;
  position: sticky !important;
}
.wrapper-header #gt_float_wrapper .gt_float_switcher {
  border: none !important;
  box-shadow: none !important;
}
.wrapper-header #gt_float_wrapper .gt_float_switcher img {
  width: 24px;
}
.wrapper-header #gt_float_wrapper .gt_float_switcher .gt-current-lang {
  padding: 10px 4px;
}
.wrapper-header #gt_float_wrapper .gt_float_switcher .gt-lang-code {
  display: none;
}
@media (max-width: 768px) {
  .wrapper-header #gt_float_wrapper {
    display: none;
  }
}