
    /* HEADER GALERIE */
    .gallery-header {
      background: linear-gradient(135deg, var(--light-cream) 0%, #ffe4cc 100%);
      padding: 80px 40px 60px;
      text-align: center;
    }

    .gallery-header {
  background:
    linear-gradient(
      rgba(255, 250, 245, 0.8),
      rgba(255, 250, 245, 0.9)
    ),
    url("https://images.pexels.com/photos/1055272/pexels-photo-1055272.jpeg");
  background-size: cover;
  background-position: center;
  height: auto;

}

    .gallery-header h1 {
      font-family: 'Pacifico', cursive;
      font-size: 56px;
      color: var(--secondary);
      margin-bottom: 15px;
    }

    .gallery-header p {
      font-size: 20px;
      color: #666;
      max-width: 700px;
      margin: 0 auto 40px;
    }

    /* FILTRES */
    .filters {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .filter-btn {
      padding: 12px 30px;
      background: white;
      border: 2px solid var(--primary);
      color: var(--secondary);
      border-radius: 25px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
      font-size: 15px;
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--primary);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(254, 153, 0, 0.3);
    }

    /* GALERIE GRID */
    .gallery-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 40px 30px 80px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 35px;
    }

    /* CARTE PRODUIT */
    .gallery-item {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: all 0.4s ease;
      cursor: pointer;
    }

    .gallery-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .gallery-item-image {
      position: relative;
      width: 100%;
      height: 300px;
      overflow: hidden;
    }

    .gallery-item-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .gallery-item:hover .gallery-item-image img {
      transform: scale(1.1);
    }

    /* BADGE CATÉGORIE */
    .category-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(254, 153, 0, 0.95);
      color: white;
      padding: 6px 15px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* ICÔNE FAVORIS */
    .favorite-icon {
      position: absolute;
      top: 15px;
      left: 15px;
      background: white;
      color: #ff4444;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      cursor: pointer;
      transition: all 0.3s ease;
      opacity: 0;
    }

    .gallery-item:hover .favorite-icon {
      opacity: 1;
    }

    .favorite-icon:hover {
      transform: scale(1.2);
    }

    /* CONTENU CARTE */
    .gallery-item-content {
      padding: 25px;
    }

    .gallery-item-content h3 {
      font-size: 24px;
      color: var(--secondary);
      margin-bottom: 12px;
      font-weight: 700;
    }

    .gallery-item-content p {
      font-size: 15px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    /* FOOTER CARTE */
    .gallery-item-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 15px;
      border-top: 1px solid #f0f0f0;
    }

    .price {
      font-size: 22px;
      font-weight: 700;
      color: var(--primary);
    }

    .order-btn {
      padding: 10px 25px;
      background: var(--secondary);
      color: white;
      border: none;
      border-radius: 20px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
      font-size: 14px;
    }

    .order-btn:hover {
      background: var(--primary);
      transform: scale(1.05);
    }

    /* MODAL LIGHTBOX */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.95);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: white;
      border-radius: 25px;
      max-width: 900px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
    }

    .modal-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 25px 25px 0 0;
    }

    .modal-body {
      padding: 35px;
    }

    .modal-body h2 {
      font-size: 32px;
      color: var(--secondary);
      margin-bottom: 15px;
      font-family: 'Pacifico', cursive;
    }

    .modal-body p {
      font-size: 17px;
      line-height: 1.8;
      color: #555;
      margin-bottom: 25px;
    }

    .modal-price {
      font-size: 28px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 25px;
    }

    .modal-order-btn {
      width: 100%;
      padding: 15px;
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 25px;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .modal-order-btn:hover {
      background: var(--secondary);
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }

    .close-modal {
      position: absolute;
      top: 20px;
      right: 20px;
      background: white;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
    }

    .close-modal:hover {
      background: var(--primary);
      color: white;
      transform: rotate(90deg);
    }

    /* CTA SECTION */
    .cta-section {
      background: linear-gradient(135deg, var(--secondary) 0%, #8b4513 100%);
      color: white;
      padding: 60px 30px;
      text-align: center;
      margin-top: 40px;
    }

    .cta-section h2 {
      font-family: 'Pacifico', cursive;
      font-size: 42px;
      margin-bottom: 20px;
    }

    .cta-section p {
      font-size: 18px;
      margin-bottom: 30px;
      opacity: 0.95;
    }

    .cta-btn {
      padding: 15px 40px;
      background: var(--primary);
      color: white;
      text-decoration: none;
      border-radius: 30px;
      font-weight: 600;
      display: inline-block;
      transition: all 0.3s ease;
      font-size: 18px;
      box-shadow: 0 5px 20px rgba(254, 153, 0, 0.4);
    }

    .cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(254, 153, 0, 0.6);
    }

    /* WHATSAPP */
    .whatsapp {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background: #25D366;
      color: white;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 28px;
      text-decoration: none;
      box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
      z-index: 2000;
      transition: all 0.3s ease;
    }

    .whatsapp:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    }