/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: #24262b;
  --black-color-light: #24262b;
  --black-color-lighten: #24262b;
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  
  
  background-repeat: no-repeat;
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/* ===============================
   RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===============================
   HEADER
================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* ===============================
   NAVBAR
================================ */
.main-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  padding: 0 30px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Logo */
.main-logo img {
  max-height: 80px;
}

/* ===============================
   MENU DESKTOP
================================ */
.main-menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.main-menu li {
  position: relative;
}

.main-menu a {
  display: block;
  padding: 12px 18px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
}

.main-menu a:hover {
  color: #007bff;
}

/* ===============================
   DESKTOP DROPDOWNS
================================ */
@media (min-width: 769px) {

  .main-submenu,
  .main-subsubmenu {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.08);
    z-index: 999;
  }

  .main-submenu {
    top: 100%;
    left: 0;
  }

  .main-subsubmenu {
    top: 0;
    left: 100%;
  }

  .main-dropdown:hover > .main-submenu {
    display: block;
  }

  .main-subdropdown:hover > .main-subsubmenu {
    display: block;
  }
}

/* ===============================
   BURGER
================================ */
.main-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {

  .main-navbar {
    flex-wrap: wrap;
    height: auto;
    padding: 15px 20px;
  }

  .main-toggle {
    display: block;
  }

  /* MENU MOBILE SCROLLABLE */
  .main-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    margin-top: 15px;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }

  .main-menu.main-active {
    display: flex;
  }

  .main-menu li {
    width: 100%;
  }

  .main-menu a {
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  /* MOBILE DROPDOWNS */
  .main-submenu,
  .main-subsubmenu {
    display: none;
    position: static;
    border: none;
    box-shadow: none;
  }

  .main-dropdown.main-show > .main-submenu {
    display: block;
  }

  .main-subdropdown.main-show > .main-subsubmenu {
    display: block;
  }

  .main-submenu a {
    padding-left: 30px;
  }

  .main-subsubmenu a {
    padding-left: 45px;
  }
}

/* ===============================
   SMALL MOBILE
================================ */
@media (max-width: 480px) {

  .main-logo img {
    max-height: 60px;
  }

  .main-menu a {
    font-size: 13px;
  }
}

.hero-section {
  position: relative;
  height: 78vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 90px;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  padding-left: 80px;
}

.hero-content {
  color: white;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: white;
}


@media screen and (max-width: 768px) {
  .hero-overlay {
    padding-left: 0;
    justify-content: center;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
 
/*=============== PRODUCT HOME PURE ===============*/

.hp-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f5f7fa 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
}

.hp-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  background-color: #fff;
  flex-wrap: wrap;
}

.hp-text {
  width: 50%;
  padding: 70px 60px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeSlide 1.2s ease-out;
}

.hp-text h1 {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #002f6c;
}

.hp-text .blue {
  color: #4BB3F4;
  background-color: #fff;
}

.hp-text .navy {
  color: #002f6c;
  font-weight: 600;
}

.hp-text .tagline {
  color: #4BB3F4;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hp-text p {
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 35px;
}

.hp-image {
  width: 50%;
}

.hp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  .hp-text {
    padding: 50px 40px;
  }
  .hp-text h1 {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 768px) {
  .hp-container {
    flex-direction: column;
    border-radius: 0;
  }

  .hp-text,
  .hp-image {
    width: 100%;
  }

  .hp-text {
    padding: 40px 25px;
    text-align: center;
  }

  .hp-text h1 {
    font-size: 2rem;
  }

  .hp-image img {
    height: auto;
  }
}

@media screen and (max-width: 480px) {
  .hp-text {
    padding: 30px 15px;
  }

  .hp-text h1 {
    font-size: 1.6rem;
  }

  .hp-text p,
  .hp-text .tagline {
    font-size: 0.9rem;
  }
}

/* Animation */
@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/*=============== PRODUCT LIFEQUODE ===============*/

.B-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f4f6f2 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
}

.B-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  background-color: #87a55f;
  flex-wrap: wrap;
}

.B-text {
  width: 50%;
  padding: 70px 60px;
  background-color: rgba(181, 196, 164, 0.9);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeSlide 1.2s ease-out;
}

.B-text h1 {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #2e3d22;
}

.B-text .blue {
  color: #4BB3F4; /* consistent with your other sections */
}

.B-text .na {
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.B-text .tagline {
  color: #4BB3F4;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.B-text p {
  color: #2f2f2f;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 35px;
}

.B-image {
  width: 50%;
}

.B-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
  .B-text {
    padding: 50px 40px;
  }
  .B-text h1 {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 768px) {
  .B-container {
    flex-direction: column;
    border-radius: 0;
  }

  .B-text,
  .B-image {
    width: 100%;
  }

  .B-text {
    padding: 40px 25px;
    text-align: center;
  }

  .B-text h1 {
    font-size: 2rem;
  }

  .B-image img {
    height: auto;
  }
}

@media screen and (max-width: 480px) {
  .B-text {
    padding: 30px 15px;
  }

  .B-text h1 {
    font-size: 1.6rem;
  }

  .B-text p,
  .B-text .tagline {
    font-size: 0.9rem;
  }
}

/* Animation */
@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==== PRODUCT  DESC  watches --------------------------------==== */

.w-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f4f6f2 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
}

.w-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  background-color: #C8BFAF;
  flex-wrap: wrap;
}

.w-text {
  width: 50%;
  padding: 70px 60px;
  background-color: rgba(200, 191, 175, 0.9);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeSlide 1.2s ease-out;
}

.w-text h1 {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #2e3d22;
}

.w-text .blue {
  color: #4BB3F4;
}

.w-text .na {
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.w-text .tagline {
  color: #4BB3F4;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.w-text p {
  color: #2f2f2f;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 35px;
}

.w-image {
  width: 50%;
}

.w-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
  .w-text {
    padding: 50px 40px;
  }
  .w-text h1 {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 768px) {
  .w-container {
    flex-direction: column;
    border-radius: 0;
  }

  .w-text,
  .w-image {
    width: 100%;
  }

  .w-text {
    padding: 40px 25px;
    text-align: center;
  }

  .w-text h1 {
    font-size: 2rem;
  }

  .w-image img {
    height: auto;
  }
}

@media screen and (max-width: 480px) {
  .w-text {
    padding: 30px 15px;
  }

  .w-text h1 {
    font-size: 1.6rem;
  }

  .w-text p,
  .w-text .tagline {
    font-size: 0.9rem;
  }
}

/* Animation */
@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====------------------------------- LIGHT SEC ===================================================================================== */
.light-table {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 14px;
    padding: 10px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.light-row {
    display: grid;
    grid-template-columns: 35px 120px 1fr; /* MUCH smaller columns */
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    gap: 15px;
}

.light-row:last-child {
    border-bottom: none;
}

.light-row:hover {
    background: #f5f5f5;
}

.light-color {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    box-shadow: 0 0 8px currentColor;
}

/* Colors */
.red { background: #ff3b3b; color: #ff3b3b; }
.green { background: #3ed76f; color: #3ed76f; }
.blue { background: #3fa0ff; color: #3fa0ff; }
.white { background: #ffffff; color: #ffffff; border: 1px solid #ddd; }
.infrared {
    background: linear-gradient(45deg, #b40000, #ff784e);
    color: #ff784e;
}

.light-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
}

.light-desc {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.45;
}


/* ===================== Button ===================== */

.amezcu-btn {
    background: #0ea5e9;           /* blue color */
    color: #fff;                   /* white text */
    font-weight: 700;
    font-size: 16px;
    padding: 10px 28px;
    border: none;
    border-radius: 50px;           /* rounded capsule */
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    transition: 0.25s ease;
}

.amezcu-btn:hover {
    background: #0284c7;           /* darker on hover */
}

/* ===================== TABLE CHIPENDANT  ===================== */


.features-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: white; /* White background as you requested */
    padding: 20px;
}

.features-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 25px; /* space between rows */
}

.icon-cell {
    width: 90px;
    vertical-align: top;
}

.icon-cell img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.text-cell {
    vertical-align: top;
    padding-left: 15px;
}

.text-cell h3 {
    margin: 0;
    color: #0075ff; /* blue title color similar to screenshot */
    font-size: 18px;
    font-weight: bold;
}

.text-cell p {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}


/* ===================== GLOBAL ===================== */
/* ===================== GLOBAL STYLES ===================== */
img {
    display: block;
}

/* ===================== MAIN WRAPPER ===================== */
.main-wrapper {
    min-height: auto;
    padding: 40px 0;
    background: radial-gradient(circle at top right, #eef1ff 0%, #dce4ff 30%, #f6f6f9 100%);
    position: relative;
    overflow: hidden;
}

/* Glowing gradient blobs */
.main-wrapper::before,
.main-wrapper::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.6;
}

.main-wrapper::before {
    top: 0;
    right: 0;
    background: #cbb2ff;
}

.main-wrapper::after {
    bottom: 0;
    left: 0;
    background: #ffd3e0;
}

.container_d {
    max-width: 1200px;
    padding: 0 1rem;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

/* ===================== PRODUCT DIV ===================== */
.product-div {
    margin: 1rem 0;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(40px);
    transition: 0.9s ease;
}

/* ===================== LEFT SIDE ===================== */
.product-div-left {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: 1s ease;
}

/* MAIN IMAGE - FIXED SIZE */
.img-container img {
    width: 280px;      /* fixed width */
    height: 280px;     /* fixed height */
    object-fit: cover; /* maintain aspect ratio and fill */
    border-radius: 15px;
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
    transition: 0.4s ease;
}

.img-container img:hover {
    transform: scale(1.03);
}

/* THUMBNAILS */
.hover-container {
    display: flex;
    margin-top: 28px;
    gap: 12px;
}

.hover-container div {
    border: 2px solid transparent;
    padding: 10px;
    border-radius: 10px;
    transition: 0.3s;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

.hover-container div:hover {
    border-color: #3b5bdb;
}

.hover-container img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    cursor: pointer;
    transition: 0.3s ease;
}

.hover-container img:hover {
    transform: scale(1.2) rotate(2deg);
}

.hover-container .active {
    border-color: #3b5bdb !important;
}

/* ===================== RIGHT SIDE ===================== */
.product-right {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    max-width: 1000px;        /* 🔥 nouveau : section moins large */
    opacity: 0;
    transform: translateY(50px);
    transition: 1s ease;
}

.product-title {
    font-size: 26px;         /* 🔥 réduit */
    font-weight: 800;
    margin-bottom: 15px;     /* 🔥 réduit */
    color: #2d2d2d;
}

/* TABLE COMPACTE */
.spec-table {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr; /* deux colonnes */
    gap: 10px 20px; /* espace horizontal + vertical */
}

.spec-table div {
    background: #f8f9fa;
    padding: 10px 12px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
    font-size: 13px;
}

.spec-label {
    font-weight: 600;
    color: #3b5bdb;
    margin-right: 5px;
}

.spec-value {
    color: #555;
}


/* ===================== ACCORDION ===================== */
.accordion {
    border-top: 1px solid #ddd;
}

.accordion-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.accordion-title {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #2c2c2c;
    font-weight: 600;
    transition: 0.3s;
}

.accordion-title:hover {
    color: #3b5bdb;
}

.accordion-icon {
    font-size: 24px;
    margin-right: 15px;
    color: #3b5bdb;
    transition: 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    color: #131212;
    font-size: 17px;
    padding-left: 40px;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

/* ===================== ANIMATION ON SCROLL ===================== */
.product-div.show-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

.product-div-left.show-on-scroll,
.product-right.show-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .product-div {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .product-right {
        margin-top: 20px;
    }

    .img-container img {
        width: 280px;   /* keep main image same size */
        height: 280px;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 24px;
    }

    .product-right {
        padding: 20px;
    }

    .img-container img {
        width: 280px;   /* keep main image same size */
        height: 280px;
    }

    .hover-container img {
        width: 50px;
        height: 50px;
    }

    .spec-label {
        flex: 0 0 120px;
    }

    .spec-table div {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .product-div-left,
    .product-right {
        opacity: 1;
        transform: translateY(0);
    }

    .img-container img {
        width: 280px;   /* same size on mobile */
        height: 280px;
    }

    .hover-container img {
        width: 45px;
        height: 45px;
    }

    .product-title {
        font-size: 20px;
    }

    .product-right {
        padding: 15px;
    }

    .spec-label {
        flex: 0 0 120px;
    }

    .spec-table div {
        font-size: 12px;
        padding: 10px;
    }

    .accordion-title {
        font-size: 15px;
    }
}


/* ============================== TESTIMONY  =================================== */

/* ===== TESTIMONY ===== */
.testimony {
  width: 100%;
  min-height: 100vh;
  background-color: #fcfcfc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-T{
  position: relative;
  width: 100%;
  min-height: 450px;
  background-color: #f5f5f5;
}

.container-T .contents-test{
  width: 70%;
  min-height: inherit;
  margin: 30px auto;
  text-align: center;
}

.contents-test .headers h1{
  position: relative;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
}

.contents-test .headers h1::before{
  content: '';
  width: 200px;
  height: 2px;
  background-color: #4BB3F4;
  border-radius: 15px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}

.contents-test .testRow{
  width: 100%;
  min-height: inherit;
  position: relative;
  overflow: hidden;
}


/* SECTION BACKGROUND COLOR */
.testimonial-section {
  background: #f4f4f4;      /* <-- You can change this color */
  padding: 120px 0;
}

/* Slider container */
.testimonial-slider {
  width: 100%;
  max-width: 850px;
  margin: auto;
  position: relative;
}

/* Card wrapper with shadow */
.ts-container {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  background: #fff;
  padding: 60px 40px 80px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

/* Track that moves */
.ts-track {
  display: flex;
  transition: transform 0.7s ease;
}

/* Individual slide */
.ts-slide {
  min-width: 100%;
  text-align: center;
  position: relative;
}

/* Profile avatar */
.ts-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid #fff;
}

/* Quote text */
.ts-text {
  margin-top: 150px;
  font-size: 20px;
  line-height: 1.6;
  color: #222;
}

/* Bottom info */
.ts-info {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.ts-info h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.ts-info span {
  font-size: 14px;
  color: #666;
}

/* Navigation arrows */
.ts-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  border: none;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
  z-index: 10;
}

.ts-arrow:hover {
  background: #f0f0f0;
}

.ts-arrow.left {
  left: -70px;
}

.ts-arrow.right {
  right: -70px;
}

/* Dots */
.ts-dots {
  text-align: center;
  margin-top: 25px;
}

.ts-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  margin: 0 4px;
  cursor: pointer;
  transition: 0.3s;
}

.ts-dots button.active {
  background: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .ts-arrow.left { left: 10px; }
  .ts-arrow.right { right: 10px; }
  .ts-container { padding: 60px 20px 80px; }
}

/* ===================================== CATEGORIES ================================================== */

.unites-slider {
  width: 100%;
  padding: 60px 20px;
  text-align: center;
  max-width: 1500px;
  margin: 0 auto;
  background-color: #be723f;
  box-sizing: border-box; /* empêche le padding de dépasser la largeur */
  overflow-x: hidden; /* évite tout débordement horizontal */
}

/* ====== TITRES ====== */
.unites-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.unites-subtitle {
  font-size: 18px;
  color: #eee;
  margin-bottom: 40px;
}

/* ====== CONTAINER DU SLIDER ====== */
.unites-slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

/* ====== SLIDES ====== */
.unites-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.unites-slide {
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ====== CARTES ====== */
.unites-card {
  width: calc(25% - 15px);
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-color: #ddd;
  cursor: pointer;
  box-sizing: border-box;
}

.unites-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ====== OVERLAY ====== */
.unites-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.unites-card:hover .unites-overlay {
  background: rgba(75, 179, 244, 0.7);
}

/* ====== LABEL ====== */
.unites-label {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  transition: all 0.3s;
  border-radius: 5px;
}

/* ====== POINTS DE NAVIGATION ====== */
.unites-dots {
  margin-top: 30px;
}

.unites-dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s;
}

.unites-dot.active {
  background: #000;
}

/* ====== RESPONSIVE TABLETTE ====== */
@media (max-width: 1024px) {
  .unites-card {
    width: calc(50% - 10px);
    height: 200px;
  }
}

/* ====== RESPONSIVE MOBILE ====== */
@media (max-width: 600px) {
  .unites-slide {
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 0;
  }

  .unites-card {
    width: 100%;
    height: 220px;
  }
}

/* ====== SÉCURITÉ GLOBALE ====== */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* empêche toute barre horizontale */
}





/* ======================================= PRODUCT CATEGORIESE ---------------------------------------------------------------------------- ==== */
/* ====== SECTION SLIDER ====== */
.unite-slider {
  width: 100%;
  padding: 60px 20px;
  text-align: center;
  max-width: 1500px;
  margin: 0 auto;
  background-color: #C8BFAF;
  box-sizing: border-box; /* empêche le padding de dépasser la largeur */
  overflow-x: hidden; /* évite tout débordement horizontal */
}

/* ====== TITRES ====== */
.unite-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.unite-subtitle {
  font-size: 18px;
  color: #eee;
  margin-bottom: 40px;
}

/* ====== CONTAINER DU SLIDER ====== */
.unite-slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

/* ====== SLIDES ====== */
.unite-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.unite-slide {
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ====== CARTES ====== */
.unite-card {
  width: calc(25% - 15px);
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background-color: #ddd;
  cursor: pointer;
  box-sizing: border-box;
}

.unite-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ====== OVERLAY ====== */
.unite-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.unite-card:hover .unite-overlay {
  background: rgba(166, 124, 130, 0.7);
}

/* ====== LABEL ====== */
.unite-label {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  transition: all 0.3s;
  border-radius: 5px;
}

/* ====== POINTS DE NAVIGATION ====== */
.unite-dots {
  margin-top: 30px;
}

.unite-dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s;
}

.unite-dot.active {
  background: #000;
}

/* ====== RESPONSIVE TABLETTE ====== */
@media (max-width: 1024px) {
  .unite-card {
    width: calc(50% - 10px);
    height: 200px;
  }
}

/* ====== RESPONSIVE MOBILE ====== */
@media (max-width: 600px) {
  .unite-slide {
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 0;
  }

  .unite-card {
    width: 100%;
    height: 220px;
  }
}

/* ====== SÉCURITÉ GLOBALE ====== */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* empêche toute barre horizontale */
}






/* ==== FOOTER ==== */
/* ===================== BASE STYLES ===================== */
.container_f {
  max-width: 1170px;
  margin: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

ul {
  list-style: none;
}

.footer {
  background-color: #24262b;
  padding: 70px 0;
}

.footer-col {
  width: 25%;
  padding: 0 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}

.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #4BB3F4;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #bbbbbb;
  text-decoration: none;
  font-weight: 300;
  display: block;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255,255,255,0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

/* ---------- RESPONSIVE DESIGN ---------- */

/* Tablets & small laptops */
@media (max-width: 992px) {
  .footer {
    padding: 50px 20px;
  }
  .footer-col {
    width: 50%;
    margin-bottom: 40px;
  }
  .footer-col h4 {
    font-size: 17px;
  }
  .footer-col ul li a {
    font-size: 15px;
  }
}

/* Smartphones */
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
    text-align: center;
  }
  .footer-col h4::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-col .social-links a {
    height: 35px;
    width: 35px;
    line-height: 35px;
    margin: 5px;
  }
}

/* Small phones (≤ 480px) */
@media (max-width: 480px) {
  .footer {
    padding: 40px 10px;
  }
  .footer-col {
    width: 100%;
    margin-bottom: 25px;
  }
  .footer-col h4 {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .footer-col ul li a {
    font-size: 14px;
  }
  .footer-col .social-links a {
    height: 32px;
    width: 32px;
    line-height: 32px;
    margin: 4px;
  }
}
