    :root {
        --orange-dark:  #d16608;
      --orange: #CF721F;
      --orange-light: #F0BD84;
      --orange-lt :#f0bd844d;
      --green: #6D902D;
      --green-light: #BCDD62;
      --cream: #FDFBF7;
      --dark: #2D2A26;
      --sand: #E8E2D6;
      --warm-gray: #8A8279;
      --white: #FFFFFF;
      --beige: #F5F0E8;
      --btn-primary: #6D902D;

       --topbar-height: 44px;
        --navbar-height: 96px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
       font-family: 'Cairo';
      color: var(--dark);
    }

    .text-primary , .btn-primary {
      background-color: var(--btn-primary) !important;
        border: 1px solid var(--btn-primary);
    }

    .modal-title {
        margin-bottom: 0;
        color: var(--orange);
    }

    .bg-dark {
        --bs-bg-opacity: 1;
        background-color: rgb(255 255 255) !important;
    }
    

    /* ============================================
    TOP BAR
    ============================================ */
    .topbar {
        background: #CF721F;
        color: #fff;
        font-size: 13px;
        font-weight: 500;
        position: relative;
        z-index: 1100;
        min-height: var(--topbar-height);
        display: flex;
        align-items: center;
    }

    .topbar-inner {
        min-height: var(--topbar-height);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .topbar-left,
    .topbar-right {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .topbar-item {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #fff;
        text-decoration: none;
        transition: opacity 0.25s ease;
    }

    .topbar-item:hover {
        color: #fff;
        opacity: 0.85;
    }

    .topbar-item i {
        font-size: 12px;
    }

    .lang-switch-top {
        display: flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, 0.16);
        padding: 4px;
        border-radius: 999px;
    }

    .lang-switch-top a {
        cursor: pointer;
        padding: 6px 12px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.82);
        transition: all 0.25s ease;
        text-decoration: none;
    }

    .lang-switch-top a.active {
        background: #fff;
        color: #CF721F;
        text-decoration: none;
    }

/* ============================================
   NAVIGATION
============================================ */
.navbar-main {
  position: absolute;
  top: var(--topbar-height);
  left: 0;
  width: 100%;
  z-index: 1200;
  min-height: var(--navbar-height);
  backdrop-filter: blur(6px);
  box-shadow: none;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease,
    top 0.35s ease;
}


.navbar-main.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 20px rgb(207 114 31 / 16%);
  padding: 10px 0;
  min-height: 78px;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-main .navbar-brand img {
  height: 60px;
  transition: height 0.3s ease;
  /*filter:
    drop-shadow(0 0 0.25px #B0B0B0)
    drop-shadow(0 0 0.25px #B0B0B0)
    drop-shadow(0 0 0.25px #B0B0B0);*/
}

.navbar-main.scrolled .navbar-brand img {
  height: 50px;
}

.navbar-main .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  padding: 10px 14px;
  transition: all 0.2s;
  position: relative;
}

.navbar-main .nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
  color: var(--orange);
}

.btn-primary-coop {
  border: 1px solid var(--green);
  color: var(--green);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.btn-primary-coop:hover {
  background: var(--green);
  color: white;
}

.btn-green {
  background: var(--orange);
  color: white;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-green:hover {
  border: 1px solid var(--orange);
  background-color: white;
  color: var(--orange);
}

    @media (max-width: 767px) {
        .topbar-inner {
            flex-direction: column;
            justify-content: center;
            padding: 8px 0;
            display: contents !important;
        }

        .topbar-left,
        .topbar-right {
            width: 100%;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .topbar-item {
            font-size: 12px;
        }

        .navbar-main {
            position: absolute;
            top: 60px;
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: none;
            padding: 12px 0;
        }

        .navbar-main.scrolled {
            position: fixed;
            top: 0;
            background: #ffffff;
        }

        .odco-slider-section .odco-slide__content {
            max-width: 100%;
            padding: 140px 20px 70px;
        }
    }


    /* ============================================
       SLIDER
    ============================================ */

    .odco-slider-section {
        position: relative;
        width: 100%;
        padding: 0;
        margin: 0;
        background: transparent;
        }

        .odco-slider-section .odco-slider {
        position: relative;
        width: 100%;
        height: 740px;
        margin: 0;
        overflow: hidden;
        border-radius: 0;
        box-shadow: none;
        background: #0f172a;
        margin-top: 0;
        }

    .odco-slider-section .odco-slider__track {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .odco-slider-section .odco-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        visibility: hidden;
        transform: scale(1.03);
        transition:
            opacity 0.9s ease,
            transform 1.2s ease,
            visibility 0.9s ease;
        z-index: 1;
    }

    .odco-slider-section .odco-slide.is-active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        z-index: 2;
    }

    .odco-slider-section .odco-slide__bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transform: scale(1);
        transition: transform 6s ease;
    }

    .odco-slider-section .odco-slide.is-active .odco-slide__bg {
        transform: scale(1.08);
    }

    .odco-slide__overlay {
        position: absolute;
        inset: 0;
        background:
            linear-gradient(
                to bottom,
                rgba(255,255,255,0.85) 0px,
                rgba(255,255,255,0.65) 120px,
                rgba(255,255,255,0.35) 200px,
                rgba(255,255,255,0.05) 300px,
                rgba(255,255,255,0) 420px
            ),
            linear-gradient(
                90deg,
                rgba(0,0,0,0.62) 0%,
                rgba(0,0,0,0.28) 45%,
                rgba(0,0,0,0.12) 100%
            );
    }

    /*.odco-slider::before {
        content:"";
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:180px;
        z-index:3;
        pointer-events:none;

        background:linear-gradient(
            to bottom,
            rgba(255,255,255,0.9) 0%,
            rgba(255,255,255,0.75) 30%,
            rgba(255,255,255,0.45) 60%,
            rgba(255,255,255,0.15) 80%,
            rgba(255,255,255,0) 100%
        );
    }*/

    .odco-slider-section .odco-slide__content {
        position: relative;
        z-index: 3;
        height: 100%;
        width: 100%;
        max-width: 1320px;
        margin: 0 auto;
        padding: 170px 12px 110px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #fff;
    }

    .odco-slider-section .odco-slide__content-inner {
        width: 100%;
        max-width: 760px;
    }

    .odco-slider-section .odco-slide__badge {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        padding: 8px 14px;
        margin-bottom: 18px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.14);
        backdrop-filter: blur(6px);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.4px;
    }

    .odco-slider-section .odco-slide__title {
        margin: 0 0 16px;
        font-size: clamp(32px, 4vw, 58px);
        line-height: 1.08;
        font-weight: 700;
    }

    .odco-slider-section .odco-slide__text {
        margin: 0 0 24px;
        font-size: 16px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.92);
    }

    .odco-slider-section .odco-slide__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
    }

    .odco-slider-section .odco-slide__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 0 22px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        transition: all 0.3s ease;
    }

    .odco-slider-section .odco-slide__btn--primary {
        background: #ffffff;
        color: #0f172a;
    }

    .odco-slider-section .odco-slide__btn--primary:hover {
        
        background: #f1f5f9;
    }

    .odco-slider-section .odco-slide__btn--secondary {
        background: rgba(207, 114, 31, 0.12);
        color: #ffffff;
        border: 1px solid rgba(207, 114, 31, 0.22);
        backdrop-filter: blur(6px);
    }

    .odco-slider-section .odco-slide__btn--secondary:hover {
        background: rgba(207, 114, 31, 0.18);
    }

    .odco-slider-section .odco-slider__nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        width: 52px;
        height: 52px;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        background: rgba(255, 255, 255, 0.16);
        color: #ffffff;
        font-size: 22px;
        backdrop-filter: blur(8px);
        transition: all 0.3s ease;
    }

    .odco-slider-section .odco-slider__nav:hover {
        background: rgba(255, 255, 255, 0.28);
    }

    .odco-slider-section .odco-slider__nav--prev {
        left: 20px;
    }

    .odco-slider-section .odco-slider__nav--next {
        right: 20px;
    }

    .odco-slider-section .odco-slider__dots {
        position: absolute;
        left: 50%;
        bottom: 26px;
        transform: translateX(-50%);
        z-index: 5;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .odco-slider-section .odco-slider__dot {
        width: 11px;
        height: 11px;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        background: rgba(255, 255, 255, 0.45);
        transition: all 0.3s ease;
    }

    .odco-slider-section .odco-slider__dot.is-active {
        width: 30px;
        border-radius: 999px;
        background: #ffffff;
    }

    @media (max-width: 1199px) {
  .odco-slider-section .odco-slider {
    height: 680px;
  }

  .odco-slider-section .odco-slide__content {
    max-width: 70%;
    padding: 155px 60px 100px;
  }

  .odco-slider-section .odco-slide__title {
    font-size: clamp(30px, 4vw, 48px);
  }
}

@media (max-width: 991px) {
  :root {
    --navbar-height: 88px;
  }

  .odco-slider-section .odco-slider {
    height: 620px;
  }

  .odco-slider-section .odco-slide__content {
    max-width: 85%;
    padding: 145px 40px 90px;
  }

  .odco-slider-section .odco-slide__text {
    font-size: 15px;
    line-height: 1.65;
  }

  .navbar-main .navbar-collapse {
    background: rgba(255, 255, 255, 0.98) !important;
    margin-top: 12px;
    border-radius: 16px;
    padding: 16px;
    
  }

  .navbar-main .navbar-nav {
    margin-bottom: 16px;
  }

  .navbar-main .nav-link {
    padding: 10px 0;
  }

  .navbar-main .nav-link::after {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --topbar-height: 96px;
    --navbar-height: 74px;
  }

  .topbar {
    padding: 3px 0;
  }

  .topbar-inner {
    min-height: auto;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 0;
  }

  .topbar-left,
  .topbar-right {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .topbar-left {
    flex-direction: column;
  }

  .topbar-item {
    font-size: 12px;
    line-height: 1.2;
  }

  .lang-switch-top span {
    padding: 5px 10px;
    font-size: 11px;
  }

  .navbar-main {
    position: absolute;
    top: var(--topbar-height);
    left: 0;
    width: 100%;
    min-height: var(--navbar-height);
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
  }

  .navbar-main.scrolled {
    position: fixed;
    top: 0;
    min-height: 68px;
    background: #ffffff;
    padding: 8px 0;
  }

  .navbar-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navbar-main .navbar-brand img {
    height: 44px !important;
  }

  .navbar-toggler {
    border: 2px solid rgba(45, 42, 38, 0.45);
    border-radius: 12px;
    padding: 8px 10px;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.92);
  }

  .navbar-toggler:focus {
    box-shadow: none !important;
  }

  .navbar-toggler-icon {
    background-image: none;
    width: 26px;
    height: 18px;
    position: relative;
    display: inline-block;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after,
  .navbar-toggler-icon span {
    content: "";
    position: absolute;
    left: 0;
    width: 26px;
    height: 2px;
    background: #6f6a64;
    border-radius: 2px;
  }

  .navbar-toggler-icon::before {
    top: 0;
  }

  .navbar-toggler-icon::after {
    bottom: 0;
  }

  .navbar-toggler-icon span {
    top: 8px;
  }

  .navbar-main .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    margin-top: 12px;
    border-radius: 16px;
    padding: 16px;
    
  }

  .navbar-main .navbar-nav {
    margin-bottom: 16px;
  }

  .navbar-main .nav-link {
    padding: 10px 0;
  }

  .navbar-main .nav-link::after {
    display: none;
  }

  .navbar-main .d-flex.align-items-center.gap-3 {
    flex-direction: column;
    align-items: stretch !important;
    gap: 10px !important;
  }

  .navbar-main .btn-green,
  .navbar-main .btn-primary-coop {
    justify-content: center;
    width: 100%;
  }

  .odco-slider-section .odco-slider {
    height: 560px;
  }

  .odco-slider-section .odco-slide__content {
    max-width: 100%;
    padding: 165px 20px 90px;
  }

  .odco-slider-section .odco-slide__title {
    font-size: 26px;
    line-height: 1.12;
    max-width: calc(100% - 70px);
  }

  .odco-slider-section .odco-slide__text {
    font-size: 13px;
    line-height: 1.55;
    max-width: calc(100% - 70px);
  }

  .odco-slider-section .odco-slide__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .odco-slider-section .odco-slide__btn {
    width: 100%;
    min-height: 44px;
    padding: 0 18px;
    font-size: 14px;
  }

  .odco-slider-section .odco-slider__nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
    top: 64%;
    background: rgba(255, 255, 255, 0.30);
  }

  .odco-slider-section .odco-slider__nav--prev {
    left: 8px;
  }

  .odco-slider-section .odco-slider__nav--next {
    right: 8px;
  }

  .odco-slider-section .odco-slider__dots {
    bottom: 18px;
  }

  .odco-slider-section .odco-slider::after {
    height: 55px;
  }
}

    @media (max-width: 575px) {
      :root {
        --topbar-height: 84px;
      }

      .topbar-left {
        flex-direction: column;
        gap: 6px;
      }

      .lang-switch-top span {
        padding: 5px 10px;
        font-size: 11px;
      }

      .odco-slider-section .odco-slider {
        height: 520px;
      }

      .odco-slider-section .odco-slide__content {
        padding: 120px 16px 80px;
      }

      .odco-slider-section .odco-slide__title {
        font-size: 24px;
      }

      .odco-slider-section .odco-slide__text {
        font-size: 13px;
      }

      .odco-slider-section .odco-slide__actions {
        flex-direction: column;
        align-items: stretch;
      }

      .odco-slider-section .odco-slide__btn {
        width: 100%;
      }
    }

    .odco-slider-section .odco-slider::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 100%;
        height: 90px;
        background: #ffffff;
        z-index: 4;
        border-top-left-radius: 50% 100%;
        border-top-right-radius: 50% 100%;
    }
    

    /* ============================================
       APPLICATION MOBILE
    ============================================ */
    .app-section {
      padding: 80px 0;
      /*background: #bcdd621f;;*/
      background: var(--orange-lt);
      position: relative;
      overflow: hidden;
    }

    .app-content {
        position: relative;
        z-index: 2;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.9s ease, transform 0.9s ease;
    }

    .app-content.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .app-phone {
        position: relative;
        z-index: 2;
    }

    .app-phone img {
        max-width: 40%;
        filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 1s ease, transform 1s ease;
    }

    .app-phone.is-visible img {
        opacity: 1;
        transform: translateY(0);
    }

    .app-phone img.phone1 {
        transition-delay: 0.15s;
    }

    .app-phone img.phone2 {
        transition-delay: 0.35s;
    }

    .app-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 600;
      color: var(--green);
      margin-bottom: 24px;
    }

    .app-title {
       font-family: 'Cairo';
      font-size: 44px;
      font-weight: 700;
      color: var(--dark);
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .app-title span {
      color: var(--orange);
    }

    .app-desc {
      font-size: 16px;
      line-height: 1.8;
      color: var(--warm-gray);
      margin-bottom: 32px;
      max-width: 480px;
    }

    .app-features {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 32px;
    }

    .app-feature {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .app-feature i {
      width: 24px;
      height: 24px;
      background: var(--green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 12px;
    }

    .app-feature span {
      font-size: 15px;
      color: var(--dark);
    }

    .store-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

    .store-btn{
  display:flex;
  align-items:center;
  gap:12px;

  width:200px;
  height:56px;

  background:var(--dark);
  padding:0 18px;

  border-radius:12px;
  text-decoration:none;
  color:white;

  transition:all 0.3s ease;
}

.store-btn i{
  font-size:26px;
  width:28px;
  text-align:center;
}

.store-btn .text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.store-btn .text small{
  font-size:10px;
  opacity:0.8;
}

.store-btn .text span{
  font-size:15px;
  font-weight:700;
}

    .store-btn:hover{
  background:var(--orange);
  color:white;
}

    /* ============================================
       SECTEURS - Style grid moderne
    ============================================ */
    .secteurs-section{
      position: relative;
      padding: 0 0 90px 0;
      background: #ffffff;
      overflow: hidden;
    }

    .secteurs-section .container{
      position: relative;
      z-index: 2;
    }

    .secteurs-section::before,
    .secteurs-section::after{
      content: "";
      position: absolute;
      z-index: 1;
      pointer-events: none;
      background-image: url('/assets/images/img-back.png');
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
    }

    .secteurs-section::before{
      top: 0px;
      right: 30px;
      width: 200px;
      height: 200px;
      opacity: 0.15;
      transform: rotate(18deg);
    }

    .secteurs-section::after{
      bottom: 0px;
      left: 30px;
      width: 200px;
      height: 200px;
      opacity: 0.15;
      transform: rotate(-18deg);
    }

    .secteurs-section .section-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .secteurs-section .section-title {
       font-family: 'Cairo';
      font-size: 42px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 14px;
    }

    .secteurs-section .section-title span {
      color: var(--orange);
    }

    .secteurs-section .section-desc {
      max-width: 760px;
      margin: 0 auto;
      font-size: 16px;
      line-height: 1.8;
      color: var(--warm-gray);
    }

    .secteurs-grid{
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      gap:22px;
    }

    .secteur-card-pro{
      position:relative;

      display:flex;
      align-items:flex-start;
      gap:16px;

      width:400px;

      padding:24px 22px;

      border:1px solid #ece7df;
      border-radius:18px;

      /*background:#fff;*/

      min-height:150px;
    }

    .secteur-card-pro::before {
      content: "";
      position: absolute;
      right: 0;
      top: 18px;
      bottom: 18px;
      width: 4px;
      border-radius: 0 6px 6px 0;
      background: linear-gradient(to bottom, var(--orange), var(--green));
      opacity: 0.9;
    }

    .secteur-card-pro__icon {
      flex: 0 0 56px;
      width: 56px;
      height: 56px;
      margin-left: 8px;
      border-radius: 14px;
      background: rgba(207, 114, 31, 0.08);
      color: var(--orange);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
    }

    .secteur-card-pro__icon img{
      width: 40px;
      height: 40px; 
      display: flex; 
      align-items: center; 
      justify-content: center;
    }

    .secteur-card-pro__body{
      flex:1;
    }

    .secteur-card-pro__title{
       font-family: 'Cairo';
      font-size:18px;
      font-weight:700;
      color:var(--dark);
      margin-bottom:6px;
    }

    .secteur-card-pro__text{
      font-size:14px;
      line-height:1.65;
      color:var(--warm-gray);
      margin-bottom:12px;
    }

    .secteur-card-pro__meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .secteur-card-pro__badge {
      display: inline-flex;
      align-items: center;
      padding: 6px 10px;
      border-radius: 999px;
      background: var(--beige);
      color: var(--dark);
      font-size: 12px;
      font-weight: 600;
    }

    .secteur-card-pro__link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--orange);
      text-decoration: none;
      font-size: 13px;
      font-weight: 700;
    }

    .secteur-card-pro__link:hover {
      color: var(--green);
    }

    .secteurs-empty {
      grid-column: 1 / -1;
      text-align: center;
      padding: 32px 20px;
      border: 1px dashed #ddd4c8;
      border-radius: 18px;
      color: var(--warm-gray);
      font-size: 15px;
    }

    @media (max-width:991px){

        .secteurs-grid{
        justify-content:center;
        }

        .secteur-card-pro{
        width:100%;
        max-width:420px;
        }

    }

    @media (max-width: 767px) {
      .secteurs-section {
        padding: 70px 0;
      }

      .secteurs-section .section-title {
        font-size: 32px;
      }

      .secteurs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .secteur-card-pro {
        padding: 20px 18px;
        min-height: auto;
      }

      .secteur-card-pro__title {
        font-size: 17px;
      }

      .secteur-card-pro__text {
        font-size: 13px;
      }
    }

      .secteur-card-pro{
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.5s ease;
    }

    .secteur-card-pro__bg{
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s ease;
      z-index: 1;
    }

    .secteur-card-pro:hover .secteur-card-pro__bg{
      transform: scale(1.1);
    }

    .secteur-card-pro__content{
      position: relative;
      z-index: 2;
      display: flex;
      gap: 16px;
    }


    /* badge style */
    .secteur-card-pro__badge{
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(6px);
    }

    .secteur-card-pro{
      position: relative;
      overflow: hidden;
      background: #fff;
      transition: all 0.4s ease;
    }

    .secteur-card-pro__bg{
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: all 0.5s ease;
      z-index: 1;
    }

    /* overlay */
    .secteur-card-pro__bg::after{
      content: "";
      position: absolute;
      inset: 0;
      background: rgb(0 0 0 / 69%);
    }

    /* content */
    .secteur-card-pro__content{
      position: relative;
      z-index: 2;
      display: flex;
      gap: 16px;
      transition: all 0.4s ease;
    }

    /* ========= HOVER ========= */
    .secteur-card-pro:hover .secteur-card-pro__bg{
      opacity: 1;
    }

    .secteur-card-pro:hover .secteur-card-pro__title,
    .secteur-card-pro:hover .secteur-card-pro__text,
    .secteur-card-pro:hover .secteur-card-pro__link{
      color: #fff;
    }

    /* badge */
    .secteur-card-pro:hover .secteur-card-pro__badge{
      background: rgba(255,255,255,0.2);
      color: #fff;
    }

    /* icon */
    .secteur-card-pro:hover .secteur-card-pro__icon{
      background: rgba(255,255,255,0.2);
      color: #fff;
    }

    /* CARD */
    .secteur-card-pro{
      position: relative;
      transform-style: preserve-3d;
      transition: transform 0.6s ease;
    }

    /* ROTATE CARD */
    .secteur-card-pro:hover{
      transform: rotateX(180deg);
    }

    /* CONTENT */
    .secteur-card-pro__content{
      position: relative;
      z-index: 2;
      transform: rotateX(0deg);
      transition: transform 0.6s ease;
    }

    .secteur-card-pro:hover .secteur-card-pro__content{
      transform: rotateX(180deg);
    }
    /* ============================================
       COOPERATIVES
    ============================================ */

    .coop-section{
    position:relative;
    padding:80px 0;
    padding-top: 0px;
    background:#fff;
    overflow:hidden;
    }

    .coop-section .section-header{
    text-align:center;
    margin-bottom:50px;
    }

    .coop-section .section-title{
    font-size:38px;
    font-weight:700;
     font-family: 'Cairo';
    color:#1d1d1d;
    }

    .coop-section .section-title span{
    color:var(--orange);
    }

    .coop-section .section-desc{
    margin-top:10px;
    color:#666;
    max-width:600px;
    margin-left:auto;
    margin-right:auto;
    }

    /* logo watermark comme secteurs */
    .coop-section::before{
    content:"";
    position:absolute;
    top:0;
    left:30px;
    width:200px;
    height:200px;
    background-image:url('/assets/images/img-back.png');
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
    opacity:0.15;
    transform:rotate(-18deg);
    pointer-events:none;
    }

    .coop-section::after{
    content:"";
    position:absolute;
    bottom:0;
    right:30px;
    width:200px;
    height:200px;
    background-image:url('/assets/images/img-back.png');
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
    opacity:0.15;
    transform:rotate(18deg);
    pointer-events:none;
    }

    .coop-actions{
    margin-top:50px;
    text-align:center;
    }

    .coop-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:26px;
    margin-top:40px;
    }

    .coop-logo-item{
    width:120px;
    height:120px;

    border-radius:50%;
    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid #ece7df;

    transition:all .3s ease;
    }

    .coop-logo-item img{
    max-width:70%;
    max-height:70%;
    object-fit:contain;
    }

    .coop-logo-item:hover{
    border-color:var(--orange);
    box-shadow:0 10px 24px rgba(0,0,0,0.08);
    }

    .coop-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:12px 26px;

    background:var(--orange);
    color:#fff;

    border-radius:30px;

    font-weight:600;
    text-decoration:none;

    transition:all .25s ease;
    }

    .coop:hover{
    background:#b85e15;
    transform:translateY(-2px);
    }
    .swiper-slide {
        flex-shrink: 0;
        width: 120px;
        height: 100%;
        position: relative;
        transition-property: transform;
    }

    .coop-slider .coop-grid{
        flex-wrap: nowrap;
        gap: 0;
    }

    .coop-slider .swiper-slide{
        display:flex;
        justify-content:center;
        align-items:center;
    }

    /* ============================================
       NEWSLETTER - Epurée
    ============================================ */
    .newsletter-section {
      padding: 80px 0;
      background: linear-gradient(135deg, var(--orange) 0%, var(--green) 100%);
    }

    .newsletter-content {
      text-align: center;
    }

    .newsletter-title {
      font-family: 'Cairo';
      font-size: 36px;
      font-weight: 700;
      color: white;
      margin-bottom: 12px;
    }

    .newsletter-desc {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 32px;
    }

    .newsletter-form {
      display: flex;
      gap: 12px;
      max-width: 500px;
      margin: 0 auto;
    }

    .newsletter-form input {
      flex: 1;
      padding: 16px 24px;
      border-radius: 50px;
      border: none;
      font-size: 14px;
      outline: none;
    }

    .newsletter-form input::placeholder {
      color: var(--warm-gray);
    }

    .newsletter-form button {
      background: var(--dark);
      color: white;
      padding: 16px 32px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: all 0.3s;
    }

    .newsletter-form button:hover {
      background: #1a1a1a;
      transform: translateY(-2px);
    }

    /* ============================================
       FOOTER - 6 colonnes
    ============================================ */
       .footer{
      background:#1d1d1d;
      color:#ccc;
      padding:70px 0 0 0;
    }

    .footer-logo{
      width:150px;
      margin-bottom:20px;
    }

    .footer-title{
      color:#fff;
      font-size:16px;
      margin-bottom:15px;
      font-weight:600;
    }

    .footer-text{
      font-size:14px;
      line-height:1.6;
    }

    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
    }

    .footer-links li{
      margin-bottom:8px;
    }

    .footer-links a{
      color:#ccc;
      text-decoration:none;
      font-size:14px;
      transition:0.2s;
    }

    .footer-links a:hover{
      color:var(--orange);
    }

    .footer-social{
      margin-top:15px;
    }

    .footer-social a{
      display:inline-flex;
      align-items:center;
      justify-content:center;

      width:36px;
      height:36px;

      border-radius:50%;
      background:#2c2c2c;
      color:#fff;

      margin-right:8px;

      transition:0.3s;
    }

    .footer-social a:hover{
      background:var(--orange);
    }

    .footer-apps img{
      width:130px;
      margin-bottom:10px;
    }

    .footer-bottom{
      margin-top:10px;
      padding:20px;
      text-align:center;
      background:#151515;
      font-size:14px;
    }

    .footer-apps{
      display:flex;
      flex-direction:column;
      gap:12px;
    }

    .app-btn{
      display:flex;
      align-items:center;
      gap:12px;

      background:#2c2c2c;
      color:#fff;

      padding:12px 16px;
      border-radius:10px;

      text-decoration:none;

      min-width:180px;
      height:54px;

      transition:0.25s;
    }

    .app-btn i{
      font-size:24px;
      width:26px;
      text-align:center;
    }

    .app-btn-text{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }

    .app-btn-text span{
      font-size:11px;
      color:#b5b5b5;
    }

    .app-btn-text strong{
      font-size:15px;
      font-weight:600;
    }

    .app-btn:hover{
      background:var(--orange);
    }

    .btn-green {
      background:var(--orange); color:white;
      padding:9px 18px; border-radius:50px; font-size:13px; font-weight:600;
      text-decoration:none;
    }
    .btn-green:hover { border:1px solid var(--orange); background-color:white; color: var(--orange);}
    /* ============================================
       RESPONSIVE
    ============================================ */
    @media (max-width: 1199px) {
      .coop-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (max-width: 991px) {
      .hero-title {
        font-size: 40px;
      }

      .hero-content {
        padding: 40px;
      }

      .hero-image-wrapper {
        min-height: 400px;
      }

      .section-title {
        font-size: 36px;
      }

      .coop-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 767px) {
      .hero-title {
        font-size: 32px;
      }

      .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
      }

      .newsletter-form {
        flex-direction: column;
      }

      .coop-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .store-buttons {
        flex-direction: column;
      }
    }

        /*******************/
    .produits-section {
  position: relative;
  background: #ffffff;
}

.produits-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.produits-section .section-title {
   font-family: 'Cairo';
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.produits-section .section-title span {
  color: var(--orange);
}

.produits-section .section-desc {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: var(--warm-gray);
}

.product-card-pro {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #ece7df;
  /*border-radius: 18px;*/
  overflow: hidden;
  background: #fff;
}

.product-card-pro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  right: 0px;
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(to right, var(--orange), var(--green));
  z-index: 2;
}

.product-card-pro__media {
  position: relative;
  background: #faf8f4;
  min-height: 240px;
  height: 240px;
  overflow: hidden;
}

.product-card-pro__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card-pro__body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-card-pro__category {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--beige);
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.product-card-pro__coop {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: #6d923938;
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.product-card-pro__title {
   font-family: 'Cairo';
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.product-card-pro__meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card-pro__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--orange);
  text-align: center;
}

.product-card-pro__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  text-decoration: none;
  background: rgba(109, 144, 45, 0.08);
  color: var(--green);
  border: 1px solid rgba(109, 144, 45, 0.16);
  font-size: 14px;
  font-weight: 700;
      cursor: pointer;
}

.product-card-pro__action:hover{
    background: #6D902D;
    color:#fff;
}

.product-card-pro__action i {
  font-size: 16px;
}

@media (max-width: 991px) {
  .produits-section .section-title {
    font-size: 36px;
  }

  .product-card-pro__media {
    min-height: 210px;
  }
}

@media (max-width: 767px) {
  .produits-section {
    padding: 70px 0;
  }

  .produits-section .section-title {
    font-size: 32px;
  }

  .product-card-pro__media {
    min-height: 200px;
    padding: 24px 16px 16px;
  }

  .product-card-pro__body {
    padding: 18px 16px 18px;
  }

  .product-card-pro__title {
    font-size: 17px;
    min-height: auto;
  }
}


    @media (max-width: 1199px) {
  .odco-slider-section .odco-slide__content {
    padding: 155px 12px 100px;
  }

  .odco-slider-section .odco-slide__content-inner {
    max-width: 70%;
  }
}

@media (max-width: 991px) {
  .odco-slider-section .odco-slide__content {
    padding: 145px 12px 90px;
  }

  .odco-slider-section .odco-slide__content-inner {
    max-width: 85%;
  }
}

@media (max-width: 767px) {
  .odco-slider-section .odco-slide__content {
    padding: 165px 16px 90px;
  }

  .odco-slider-section .odco-slide__content-inner {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .odco-slider-section .odco-slide__content {
    padding: 175px 16px 82px;
  }

  .odco-slider-section .odco-slide__content-inner {
    max-width: 100%;
  }
}

.odco-slider-section .odco-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 6s ease;
  will-change: transform;
}

.odco-slider-section .odco-slide.is-active .odco-slide__bg {
  transform: scale(1.08);
}

.odco-slider-section .odco-slide.is-first-active .odco-slide__bg {
  transform: scale(1);
}


/****** Régiones *****/
.regions-section {
  background: #fff;
}

.regions-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.regions-section .section-title {
   font-family: 'Cairo';
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.regions-section .section-title span {
  color: var(--orange);
}

.regions-section .section-desc {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: var(--warm-gray);
}

.regions-showcase {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 620px;

  background: linear-gradient(130deg, var(--orange-dark) 0%, var(--orange) 60%, var(--orange-lt) 100%);
}

.regions-showcase::after {
    content:''; position:absolute; right:-80px; top:-80px;
    width:340px; height:340px; border-radius:50%;
    background:rgb(255 255 255 / 20%);; pointer-events:none;
}

/*.regions-showcase__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 226, 196, 0.75) 0%,
    rgba(255, 215, 176, 0.55) 45%,
    rgba(255, 235, 214, 0.35) 100%
  );
  z-index: 1;
}*/

.regions-showcase__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  min-height: 620px;
  padding: 56px 56px 48px;
  gap: 40px;
}

.regions-showcase__left,
.regions-showcase__right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.regions-showcase.is-visible .regions-showcase__left,
.regions-showcase.is-visible .regions-showcase__right {
  opacity: 1;
  transform: translateY(0);
}

.regions-showcase__right {
  transition-delay: 0.15s;
}

.regions-current__label {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 18px;
}

.regions-current__title {
   font-family: 'Cairo';
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 28px;
  line-height: 1.05;
}

.regions-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 34px;
}

.region-stat-card {
  min-width: 220px;
  padding: 24px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
}

.region-stat-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-size: 28px;
  margin-bottom: 18px;
}

.region-stat-card__value {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
}

.region-stat-card__label {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
}

.regions-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  text-decoration: none;
  background: rgba(207, 114, 31, 0.88);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.regions-btn:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.regions-map-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.regions-map {
  width: 100%;
  max-width: 460px;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.22));
}

@media (max-width: 991px) {
  .regions-showcase__content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 42px 28px 36px;
    gap: 30px;
  }

  .regions-showcase {
    min-height: auto;
  }

  .regions-current__title {
    font-size: 42px;
  }

  .regions-stats {
    gap: 16px;
  }

  .region-stat-card {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }

  .regions-map {
    max-width: 360px;
  }
}

@media (max-width: 767px) {
  .regions-section {
    padding: 70px 0;
  }

  .regions-section .section-title {
    font-size: 32px;
  }

  .regions-showcase {
    border-radius: 22px;
  }

  .regions-showcase__content {
    padding: 28px 18px 24px;
  }

  .regions-current__title {
    font-size: 34px;
    margin-bottom: 22px;
  }

  .regions-stats {
    flex-direction: column;
  }

  .region-stat-card {
    width: 100%;
    padding: 20px 18px;
  }

  .region-stat-card__icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
    margin-bottom: 14px;
  }

  .region-stat-card__value {
    font-size: 34px;
  }

  .region-stat-card__label {
    font-size: 15px;
  }

  .regions-btn {
    width: 100%;
    justify-content: center;
  }

  .regions-map {
    max-width: 280px;
  }
}

.regions-map-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.map-container {
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.regions-map-svg {
  width: 100%;
  height: auto;
  max-height: 520px;
  display: block;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.22));
}

.regions-map-svg path {
  fill: #97ab67;
  stroke: #ffffff;
  stroke-width: 1;
  transition: fill 0.35s ease, opacity 0.35s ease;
}

.regions-map-svg path.region-active {
  fill: #cf3b2f;
  opacity: 1;
}

.regions-map-svg path.region-muted {
  fill: #97ab67;
  opacity: 1;
}

.regions-map-svg path.region-hoverable:hover {
  fill: #e38d43;
}

.loader-white {
    display: block;
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: auto;
    margin-top: 15px;
    text-align: left;
}

@media (max-width: 991px) {
  .map-container {
    max-width: 380px;
  }
}

@media (max-width: 767px) {
  .map-container {
    max-width: 290px;
  }

  .regions-map-svg path {
    stroke-width: 3;
  }
}

.map-container{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* SVG responsive */
.morocco-map{
    width:100%;
    height:auto;
    max-height:520px;
}

/* style des régions */
.morocco-map path{
    fill: #9fb36b !important;
    stroke: #ffffff !important;
    stroke-width: 2 !important;
    vector-effect: non-scaling-stroke;
    transition: fill .25s ease, opacity .25s ease;
    cursor: pointer;
}

.morocco-map path.region-muted{
    fill:#9fb36b !important;
    opacity:0.45;
}

.morocco-map path.region-active{
    fill:#CF721F !important;
    stroke:#ffffff !important;
    opacity:1 !important;
}

.morocco-map path.region-hoverable:hover{
    fill:#e38a35 !important;
}

/* hover */
.morocco-map path:hover{
    fill:#c1272d;
}

svg, path {
  fill: currentColor;
}

.regions-showcase__right,
.map-container,
.morocco-map{
    color: initial !important;
}

.regions-current__label{
  display:flex;
  align-items:center;
  gap:8px;
}

a {
    text-decoration: none !important;
}

/***************/
@media (max-width: 991px) {
        .section_header{
            margin-top: 35px !important;
        }
      
        .section_header::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -1px;
            width: 100%;
            height: 40px;
            background: white;
            z-index: 4;
            border-top-left-radius: 50% 100%;
            border-top-right-radius: 50% 100%;
        }
    
        .odco-slider-section .odco-slider::after
        {
            content: "";
            position: absolute;
            left: 0;
            bottom: -1px;
            width: 100%;
            height: 50px;
            background: #ffffff;
            z-index: 4;
            border-top-left-radius: 50% 100%;
            border-top-right-radius: 50% 100%;
        }
    }

    @media (max-width: 767px) {
      .section_header{
        margin-top: 35px !important;
      }
      
      .section_header::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -1px;
            width: 100%;
            height: 40px;
            background: white;
            z-index: 4;
            border-top-left-radius: 50% 100%;
            border-top-right-radius: 50% 100%;
        }
    
        .odco-slider-section .odco-slider::after
        {
            content: "";
            position: absolute;
            left: 0;
            bottom: -1px;
            width: 100%;
            height: 50px;
            background: #ffffff;
            z-index: 4;
            border-top-left-radius: 50% 100%;
            border-top-right-radius: 50% 100%;
        }
    }



.section_header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 60px;
    background: white;
    z-index: 4;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
}

  /**********products-wrapper*************/
  .products-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
 
 
  /* ── Header ───────────────────────────────────── */
  .col-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0f0f0;
  }
 
  .col-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
  }
 
  .nav-btns {
    display: flex;
    gap: 4px;
  }
 
  .nav-btn {
    width: 30px; height: 30px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 3px;
    cursor: pointer;
    font-size: .8rem;
    color: #555;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, border-color .2s, color .2s;
    line-height: 1;
  }
  .nav-btn:hover { background: #111; color: #fff; border-color: #111; }
  .nav-btn:disabled { opacity: .35; cursor: not-allowed; }
  .nav-btn:disabled:hover { background: #fff; color: #555; border-color: #ddd; }
 
  /* ── Slider ───────────────────────────────────── */
  .slider-viewport {
    overflow: hidden;
  }
 
  .slider-product-track {
    display: flex;
    flex-direction: column;
    transition: transform .4s cubic-bezier(.77,0,.18,1);
  }
 
  /* ── Product card ─────────────────────────────── */
  .product-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border-radius: 4px;
    background: #f7f8fa;
    margin-bottom: 10px;
    flex-shrink: 0;
    transition: box-shadow .2s;
    cursor: pointer;
  }
 
  .product-img {
    width: 80px; height: 80px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 3px;
  }
 
 
  .product-name {
    font-family: 'Cairo';
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
 
  .product-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--orange);
  }
 
  /* ── Responsive ───────────────────────────────── */
  @media (max-width: 768px) {
    .products-wrapper { grid-template-columns: 1fr; }
  }


  /* ── Product meta badges ───────────────────────── */
  .product-meta {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 6px;
  }

  /* Base badge */
  .badge {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    line-height: 1;
    white-space: nowrap;
  }

  /* Secteur (neutral) */
  .badge.secteur {
    background: var(--beige);
    color: var(--dark);
  }

  /* Coopérative (highlight) */
  .badge.coop {
    background: #6d923938;
    color: var(--dark);
  }

  
  /***********************/
    /*.coop-slider-wrapper {*/
    /*position: relative;*/
    /*overflow: hidden;*/
    /*display: flex;*/
    /*align-items: center;*/
    /*}*/
    /*.coop-slider-track {*/
    /*display: flex;*/
    /*transition: transform 0.5s ease;*/
    /*}*/
    /*.coop-slide {*/
    /*flex: 0 0 auto;*/
    /*width: 120px; */
    /*margin: 0 10px;*/
    /*}*/
    
    .coop-slider-wrapper {
      overflow: hidden;
      width: 100%;
      padding: 2.5rem 0;
      background: white;
    }

    .coop-slider {
      display: flex;
      width: max-content;
      animation: scroll 95s linear infinite;
    }

    .coop-slider:hover {
      animation-play-state: paused;
    }

    .coop-slider-item img {
      width: 150px;
      padding: 30px 30px;
      display: block;
      border: 1px solid var(--orange);
      border-radius: 50%;
      height: 150px;
      margin: 10px;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(50%);
      }
    }

    /******************/
    .rencontrezcoop-section {
      position: relative;
      background: #ffffff;
    }

    .rencontrezcoop-section .section-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .rencontrezcoop-section .section-title {
      font-family: 'Cairo';
      font-size: 42px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 14px;
    }

    .rencontrezcoop-section .section-title span {
      color: var(--orange);
    }

    .rencontrezcoop-section .section-desc {
      max-width: 760px;
      margin: 0 auto;
      font-size: 16px;
      line-height: 1.8;
      color: var(--warm-gray);
    }
