    :root {
      --primary-green: #a8d160;
      /* Extracted from Logo */
      --primary-orange: #ff9800;
      /* Existing Juicy Orange */
      --primary-blue: #74bbe4;
      /* Extracted from Logo */
      --text-green-dark: #2e7d32;
      /* Readable text green */
      --text-orange-dark: #e65100;
      /* Readable text orange */
      --glass-bg: rgba(255, 255, 255, 0.9);
      --text-dark: #333;
    }

    * {
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: linear-gradient(135deg, #fafafa 0%, #f0f8ff 100%);
      overflow-x: hidden;
    }

    /* Navigation avec effet glassmorphism */
    .navbar {
      background: linear-gradient(90deg, var(--primary-green), #4caf50);
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 32px rgba(76, 175, 80, 0.2);
      padding: 15px 0;
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(168, 209, 96, 0.95);
      /* Brand Green with opacity */
      backdrop-filter: blur(15px);
    }

    .navbar .nav-link,
    .navbar-brand {
      color: white !important;
      font-weight: 600;
      transition: all 0.3s ease;
      position: relative;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    .navbar .nav-link:hover {
      color: #fff !important;
      transform: translateY(-2px);
    }

    .navbar .nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 50%;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, #fff, #f0f0f0);
      transition: all 0.3s ease;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .navbar .nav-link:hover::after {
      width: 80%;
    }

    .navbar-brand {
      font-size: 1.8rem;
      font-weight: 800;
      /* Gradient text effect for brand name */
      background: linear-gradient(45deg, #ffffff, #fffde7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    /* Hero avec animations */
    .hero {
      background: linear-gradient(135deg, var(--primary-orange), #ff5722);
      color: white;
      padding: 100px 20px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
      margin-top: 76px;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 200%;
      height: 100%;
      background: linear-gradient(45deg,
          transparent 30%,
          rgba(255, 255, 255, 0.1) 50%,
          transparent 70%);
      animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
      0% {
        left: -100%;
      }

      100% {
        left: 100%;
      }
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero img {
      max-width: 600px;
      width: 100%;
      height: auto;
      margin-bottom: 30px;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    .hero img:hover {
      transform: scale(1.05) translateY(-10px);
    }

    /* Sections avec dégradés colorés */
    .section {
      padding: 80px 20px;
      position: relative;
    }

    .section-orange {
      background: linear-gradient(135deg, #fff3e0, #ffe0b2);
      color: var(--text-dark);
      position: relative;
    }

    .section-green {
      background: linear-gradient(135deg, #f1f8e9, #dcedc8);
      /* Lighter green bg */
      color: var(--text-dark);
      position: relative;
    }

    .bg-light-gradient {
      background: linear-gradient(135deg, #ffffff, #f5f5f5) !important;
    }

    /* Cards avec effets premium */
    .card {
      border: none;
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      background: white;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-orange), var(--primary-green));
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .card:hover::before {
      opacity: 1;
    }

    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .card-title {
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 15px;
    }

    /* Produits avec cadres uniformes et colorés */
    .product-img-wrapper {
      height: 250px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: #fff;
      border-bottom: 1px solid #f0f0f0;
      position: relative;
    }

    .product-img-wrapper img {
      max-height: 85%;
      max-width: 85%;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .card:hover .product-img-wrapper img {
      transform: scale(1.05);
    }

    /* Galerie avec effet mosaïque */
    .gallery-item {
      height: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border-radius: 15px;
      background: #fff;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.4s ease;
      position: relative;
      cursor: pointer;
    }

    .gallery-item:hover {
      transform: scale(1.02);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    /* Boutons avec effets premium */
    .btn-primary {
      background: linear-gradient(135deg, var(--primary-orange), #f57c00);
      border: none;
      font-weight: 600;
      padding: 15px 35px;
      border-radius: 50px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
    }

    .btn-success {
      background: linear-gradient(135deg, var(--primary-green), #689f38);
      border: none;
      font-weight: 600;
      padding: 15px 35px;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(168, 209, 96, 0.4);
    }

    .btn-success:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(168, 209, 96, 0.5);
    }

    .btn-outline-secondary {
      color: #fff;
      border: 2px solid white;
      font-weight: 600;
      padding: 13px 33px;
      border-radius: 50px;
      transition: all 0.3s ease;
      background: transparent;
    }

    .btn-outline-secondary:hover {
      background: white;
      color: var(--primary-orange);
      transform: translateY(-3px);
    }

    /* Footer premium */
    .footer {
      background: #263238;
      color: #cfd8dc;
      padding: 50px 0 30px;
      position: relative;
    }

    .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-orange), var(--primary-green));
    }

    .footer a {
      color: #90a4ae;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer a:hover {
      color: var(--primary-orange);
    }

    /* Titres avec effets */
    .section-title {
      position: relative;
      display: inline-block;
      margin-bottom: 3rem;
      font-weight: 800;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--primary-green);
      border-radius: 2px;
    }

    /* Couleurs personnalisées */
    .text-orange {
      color: var(--text-orange-dark) !important;
    }

    .text-green {
      color: var(--text-green-dark) !important;
    }

    .text-blue {
      color: #1976d2 !important;
    }

    /* Icônes */
    .icon-orange {
      color: var(--primary-orange);
    }

    .icon-green {
      color: var(--primary-green);
    }

    .icon-blue {
      color: var(--primary-blue);
    }

    /* Contact form */
    .form-control {
      border-radius: 10px;
      border: 1px solid #dee2e6;
      padding: 12px 20px;
      transition: all 0.3s ease;
      background-color: #f8f9fa;
    }

    .form-control:focus {
      background-color: #fff;
      border-color: var(--primary-green);
      box-shadow: 0 0 0 4px rgba(168, 209, 96, 0.1);
    }

    /* Animations */
    .fade-in {
      animation: fadeIn 1s ease-in;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .scroll-reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .scroll-reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }

    /* Loader */
    .page-loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: white;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 0.5s ease;
    }

    .loader-spinner {
      width: 50px;
      height: 50px;
      border: 3px solid #f3f3f3;
      border-top: 3px solid var(--primary-green);
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% {
        transform: rotate(0deg);
      }

      100% {
        transform: rotate(360deg);
      }
    }