
    :root {
      --primary: #00C853;
      --primary-light: #5EFC82;
      --primary-dark: #007E33;
      --secondary: #8B9467;
      --accent: #4E342E;
      --text: #2E3D49;
      --light: #F9F5F0;
      --white: #FFFFFF;
      --cream: #FFF9F0;
      --gold: #D4AF37;
      --shadow: 0 12px 40px rgba(0, 200, 83, 0.15);
      --shadow-hover: 0 20px 60px rgba(0, 200, 83, 0.25);
      --radius: 24px;
      --radius-sm: 12px;
      --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      --transition-fast: all 0.3s ease-out;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background-color: var(--light);
      color: var(--text);
      line-height: 1.7;
      overflow-x: hidden;
      background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 200, 83, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(139, 148, 103, 0.03) 0%, transparent 30%);
    }

    /* Animation de fond élégante */
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: 
        linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(245,255,245,0.95) 100%);
      z-index: -2;
    }

    body::after {
      content: '';
      position: fixed;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background-image: 
        url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M30,50 Q50,30 70,50 T90,50" stroke="%2300C853" stroke-width="0.3" fill="none" opacity="0.1"/></svg>'),
        url('data:image/svg+xml;utf8,<svg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><circle cx="40" cy="40" r="3" fill="%238B9467" opacity="0.1"/></svg>');
      background-size: 100px 100px, 80px 80px;
      animation: grain 8s steps(10) infinite;
      pointer-events: none;
      z-index: -1;
      opacity: 0.3;
    }

    @keyframes grain {
      0%, 100% { transform: translate(0, 0); }
      10% { transform: translate(-5%, -10%); }
      30% { transform: translate(3%, -15%); }
      50% { transform: translate(12%, 9%); }
      70% { transform: translate(9%, 4%); }
      90% { transform: translate(-1%, 7%); }
    }

    /* Header premium */
    header {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0, 200, 83, 0.1);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
      padding: 15px 40px;
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: var(--transition);
    }

    header.scrolled {
      padding: 10px 40px;
      box-shadow: 0 10px 30px rgba(0, 200, 83, 0.1);
    }

    .header-container {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 15px;
      position: relative;
    }

    .logo-container::before {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(to right, var(--primary), var(--gold));
      transition: var(--transition);
    }

    .logo-container:hover::before {
      width: 100%;
    }

    .logo {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      border: 2px solid var(--primary);
      transition: var(--transition);
      overflow: hidden;
    }

    .logo img {
      width: 80%;
      height: auto;
      transition: var(--transition);
    }

    .logo:hover {
      transform: rotate(15deg) scale(1.1);
      box-shadow: 0 8px 25px rgba(0, 200, 83, 0.2);
    }

    .logo:hover img {
      transform: scale(1.1);
    }

    .brand {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 600;
      color: var(--primary-dark);
      letter-spacing: 0.5px;
      position: relative;
    }

    .brand::after {
      content: '🐇';
      position: absolute;
      right: -25px;
      top: -5px;
      font-size: 20px;
      animation: bounce 2s ease-in-out infinite;
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
      40% { transform: translateY(-10px); }
      60% { transform: translateY(-5px); }
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    /* Bouton panier mobile */
    .mobile-cart-btn {
      display: none;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      border: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 5px 20px rgba(0, 200, 83, 0.3);
      position: relative;
    }

    .mobile-cart-btn #mobile-cart-count-small {
      position: absolute;
      top: -5px;
      right: -5px;
      background: linear-gradient(135deg, var(--gold), #D4A017);
      color: white;
      padding: 3px 8px;
      border-radius: 50%;
      font-size: 11px;
      font-weight: bold;
      min-width: 20px;
      text-align: center;
    }

    /* Boutons premium */
    .btn {
      padding: 12px 24px;
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      border: none;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      position: relative;
      overflow: hidden;
      letter-spacing: 0.5px;
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: var(--transition);
    }

    .btn:hover::before {
      left: 100%;
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary-dark);
      position: relative;
    }

    .btn-outline:hover {
      background: var(--primary);
      color: var(--white);
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
    }

    .btn-outline i {
      transition: var(--transition-fast);
    }

    .btn-outline:hover i {
      transform: scale(1.2);
    }

    /* Barre de recherche élégante */
    .search-bar {
      background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(245,255,245,0.9));
      padding: 30px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .search-bar::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(0, 200, 83, 0.3), transparent);
    }

    .search-container {
      position: relative;
      display: inline-block;
      width: 90%;
      max-width: 700px;
    }

    .search-icon {
      position: absolute;
      left: 25px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--primary);
      font-size: 18px;
      z-index: 2;
    }

    .search-bar input {
      width: 100%;
      padding: 18px 25px 18px 60px;
      border: none;
      border-radius: var(--radius);
      font-size: 16px;
      transition: var(--transition);
      background: var(--white);
      color: var(--text);
      box-shadow: var(--shadow);
      font-weight: 500;
      border: 1px solid rgba(0, 200, 83, 0.1);
    }

    .search-bar input:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 5px rgba(0, 200, 83, 0.1), var(--shadow-hover);
    }

    /* Section principale */
    .lapins {
      padding: 60px 30px;
      max-width: 1600px;
      margin: 0 auto;
      position: relative;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      font-weight: 600;
      color: var(--primary-dark);
      margin-bottom: 50px;
      text-align: center;
      position: relative;
      display: inline-block;
      left: 50%;
      transform: translateX(-50%);
    }

    .section-title::before, .section-title::after {
      content: '';
      position: absolute;
      top: 50%;
      width: 50px;
      height: 2px;
      background: linear-gradient(to right, var(--gold), var(--primary));
    }

    .section-title::before {
      left: -70px;
    }

    .section-title::after {
      right: -70px;
    }

    .section-title i {
      margin-right: 15px;
      color: var(--gold);
    }

    /* Cartes produits premium - RÉDUIT */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 30px;
      justify-items: center;
    }

    .card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      width: 100%;
      max-width: 300px;
      overflow: hidden;
      transition: var(--transition);
      cursor: pointer;
      position: relative;
      border: 1px solid rgba(0, 200, 83, 0.1);
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(0,200,83,0.03) 0%, transparent 100%);
      opacity: 0;
      transition: var(--transition);
      z-index: 1;
    }

    .card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: var(--shadow-hover);
      border-color: rgba(0, 200, 83, 0.2);
    }

    .card:hover::before {
      opacity: 1;
    }

    .card-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: linear-gradient(135deg, var(--gold), #D4A017);
      color: white;
      padding: 6px 12px;
      border-radius: var(--radius-sm);
      font-size: 12px;
      font-weight: bold;
      z-index: 10;
      box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .card-image-container {
      width: 100%;
      height: 200px;
      overflow: hidden;
      position: relative;
    }

    .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .card:hover img {
      transform: scale(1.1);
      filter: brightness(1.05);
    }

    .card-content {
      padding: 20px;
      position: relative;
      z-index: 2;
      background: var(--white);
    }

    .card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      margin-bottom: 12px;
      color: var(--accent);
      font-weight: 600;
      position: relative;
      display: inline-block;
    }

    .card h3::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(to right, var(--primary), var(--gold));
      transition: var(--transition);
    }

    .card:hover h3::after {
      width: 100%;
    }

    .card p {
      margin: 8px 0;
      font-size: 14px;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 8px;
      opacity: 0.9;
    }

    .card p i {
      color: var(--primary);
      width: 16px;
      text-align: center;
      font-size: 14px;
    }

    .price {
      font-size: 22px;
      font-weight: 700;
      color: var(--primary-dark);
      margin: 15px 0;
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Montserrat', sans-serif;
    }

    .price i {
      color: var(--gold);
    }

    .card-actions {
      display: flex;
      justify-content: space-between;
      margin-top: 20px;
      gap: 12px;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      flex-grow: 1;
      padding: 12px;
      font-weight: 600;
      letter-spacing: 0.5px;
      border: none;
      transition: var(--transition);
      box-shadow: 0 5px 20px rgba(0, 200, 83, 0.3);
      position: relative;
      overflow: hidden;
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, var(--primary-dark), #006400);
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0, 200, 83, 0.4);
    }

    .btn-icon {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: var(--white);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      border: 1px solid rgba(0, 200, 83, 0.2);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
    }

    .btn-icon::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(0, 200, 83, 0.1), transparent);
      transition: var(--transition);
    }

    .btn-icon:hover::before {
      left: 100%;
    }

    .btn-icon:hover {
      color: var(--white);
      background: var(--primary);
      transform: rotate(15deg) scale(1.1);
      box-shadow: 0 8px 25px rgba(0, 200, 83, 0.2);
    }

    /* État vide */
    .empty-state {
      text-align: center;
      padding: 100px 20px;
      grid-column: 1 / -1;
    }

    .empty-state i {
      font-size: 70px;
      color: var(--primary-light);
      margin-bottom: 30px;
      opacity: 0.7;
      animation: float 4s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }

    .empty-state h3 {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      margin-bottom: 15px;
      color: var(--text);
    }

    .empty-state p {
      font-size: 16px;
      color: var(--text);
      opacity: 0.7;
      margin-bottom: 30px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Panier modal premium */
    #panier-modal {
      display: none;
      position: fixed;
      top: 0;
      right: -500px;
      width: 450px;
      height: 100%;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: -15px 0 50px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      overflow-y: auto;
      padding: 0;
      transition: right 0.5s cubic-bezier(0.22, 1, 0.36, 1);
      border-left: 1px solid rgba(0, 200, 83, 0.1);
    }

    #panier-modal.show {
      right: 0;
    }

    #panier-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 999;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    #panier-overlay.show {
      opacity: 1;
    }

    .panier-header {
      padding: 25px;
      background: var(--white);
      border-bottom: 1px solid rgba(0, 200, 83, 0.1);
      position: sticky;
      top: 0;
      z-index: 10;
    }

    .panier-header h3 {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      color: var(--primary-dark);
      margin: 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .close-panier {
      background: none;
      border: none;
      font-size: 24px;
      color: var(--text);
      opacity: 0.7;
      cursor: pointer;
      transition: var(--transition-fast);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .close-panier:hover {
      color: var(--primary);
      opacity: 1;
      background: rgba(0, 200, 83, 0.1);
      transform: rotate(90deg);
    }

    .panier-content {
      padding: 25px;
    }

    .panier-item {
      display: flex;
      gap: 20px;
      margin-bottom: 20px;
      padding: 20px;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(0, 200, 83, 0.1);
      transition: var(--transition-fast);
      position: relative;
      overflow: hidden;
    }

    .panier-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(to bottom, var(--primary), var(--primary-light));
    }

    .panier-item:hover {
      transform: translateX(5px);
      box-shadow: 0 5px 20px rgba(0, 200, 83, 0.1);
    }

    .panier-item img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: var(--radius-sm);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .panier-item-details {
      flex: 1;
    }

    .panier-item h4 {
      font-size: 17px;
      margin-bottom: 10px;
      color: var(--accent);
      font-weight: 600;
      position: relative;
    }

    .quantity-controls {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-top: 15px;
    }

    .quantity-btn {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      border: none;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition-fast);
      box-shadow: 0 3px 10px rgba(0, 200, 83, 0.2);
    }

    .quantity-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
    }

    .quantity-btn i {
      font-size: 12px;
    }

    .remove-btn {
      background: none;
      border: none;
      color: #ff6b6b;
      cursor: pointer;
      padding: 8px;
      border-radius: 50%;
      transition: var(--transition-fast);
      position: absolute;
      top: 15px;
      right: 15px;
    }

    .remove-btn:hover {
      background: rgba(255, 107, 107, 0.1);
      transform: rotate(15deg) scale(1.1);
    }

    .panier-footer {
      position: sticky;
      bottom: 0;
      background: var(--white);
      padding: 25px;
      border-top: 1px solid rgba(0, 200, 83, 0.1);
      box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    }

    .panier-total {
      display: flex;
      justify-content: space-between;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 25px;
      color: var(--accent);
    }

    .panier-total span:last-child {
      color: var(--primary-dark);
    }

    #commander-btn {
      width: 100%;
      padding: 18px;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.5px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border: none;
      border-radius: var(--radius-sm);
      color: white;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 5px 20px rgba(0, 200, 83, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    #commander-btn:hover {
      background: linear-gradient(135deg, var(--primary-dark), #006400);
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0, 200, 83, 0.4);
    }

    #cart-count {
      background: linear-gradient(135deg, var(--gold), #D4A017);
      color: white;
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: bold;
      margin-left: 8px;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
    }

    /* User profile premium */
    .user-profile {
      display: flex;
      align-items: center;
      gap: 15px;
      background: rgba(255, 255, 255, 0.8);
      padding: 10px 20px;
      border-radius: var(--radius);
      border: 1px solid rgba(0, 200, 83, 0.2);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .user-profile::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(to bottom, var(--primary), var(--primary-light));
      transition: var(--transition);
    }

    .user-profile:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0, 200, 83, 0.1);
    }

    .user-profile:hover::before {
      width: 6px;
    }

    .user-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background:rgba(0, 0, 0, 0.56);;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      box-shadow: 0 5px 15px rgba(99, 107, 103, 0.2);
    }

    .user-name {
      font-weight: 600;
      color: var(--primary-dark);
    }

    /* Footer premium */
    footer {
      background: linear-gradient(135deg, var(--primary-dark), #c0e4c0ff);
      color: white;
      padding: 80px 40px 40px;
      margin-top: 100px;
      position: relative;
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 20px;
      background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23FFFFFF" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23FFFFFF" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23FFFFFF"/></svg>');
      background-size: cover;
    }

    .footer-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 60px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
      z-index: 2;
      position: relative;
    }

    .footer-logo img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 2px solid white;
    }

    .footer-logo span {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 600;
    }

    .footer-about p {
      opacity: 0.8;
      margin-bottom: 20px;
      line-height: 1.8;
    }

    .footer-social {
      display: flex;
      gap: 15px;
      margin-top: 30px;
    }

    .social-link {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 18px;
      transition: var(--transition);
    }

    .social-link:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-5px) rotate(10deg);
    }

    .footer-links h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      margin-bottom: 25px;
      position: relative;
      display: inline-block;
    }

    .footer-links h3::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 50%;
      height: 2px;
      background: var(--gold);
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 15px;
    }

    .footer-links a {
      color: white;
      text-decoration: none;
      opacity: 0.8;
      transition: var(--transition-fast);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-links a:hover {
      opacity: 1;
      transform: translateX(5px);
    }

    .footer-links a i {
      color: var(--gold);
      font-size: 14px;
    }

    .footer-contact p {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
      opacity: 0.8;
    }

    .footer-contact i {
      color: var(--gold);
      font-size: 20px;
      width: 24px;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 60px;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      opacity: 0.7;
      font-size: 14px;
    }

    /* Menu Burger */
    .burger-menu {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 30px;
      cursor: pointer;
      z-index: 1001;
    }

    .burger-menu span {
      width: 100%;
      height: 3px;
      background-color: var(--primary-dark);
      border-radius: 10px;
      transition: var(--transition);
      transform-origin: left;
    }

    .burger-menu.active span:nth-child(1) {
      transform: rotate(45deg);
    }

    .burger-menu.active span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
      transform: rotate(-45deg);
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      left: -100%;
      width: 80%;
      max-width: 350px;
      height: 100vh;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 1000;
      padding: 80px 30px 30px;
      transition: left 0.5s cubic-bezier(0.22, 1, 0.36, 1);
      box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
      overflow-y: auto;
    }

    .mobile-menu.active {
      left: 0;
    }

    .mobile-menu-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(191, 218, 218, 0.5);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      z-index: 999;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.active {
      display: block;
      opacity: 1;
    }

    .mobile-nav {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 40px;
      position: relative;
      z-index: 1002;
    }

    .mobile-nav .btn {
      width: 100%;
      justify-content: center;
      padding: 15px;
    }

    .mobile-user {
      padding: 20px;
      background: rgba(8, 8, 8, 0.05);
      border-radius: var(--radius-sm);
      margin-bottom: 30px;
      text-align: center;
    }

    .mobile-user-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: black;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 20px;
      margin: 0 auto 15px;
      box-shadow: 0 5px 15px rgba(6, 7, 7, 0.2);
    }

    .mobile-user-name {
      font-weight: 600;
      color: var(--primary-dark);
      margin-bottom: 5px;
      position: relative;
      z-index: 1002;
    }

    .mobile-user-email {
      font-size: 14px;
      opacity: 0.7;
      position: relative;
      z-index: 1002;
    }

    .mobile-menu-footer {
      margin-top: auto;
      padding-top: 30px;
      border-top: 1px solid rgba(0, 200, 83, 0.1);
      text-align: center;
      position: relative;
      z-index: 1002;
    }

    .mobile-menu-footer p {
      font-size: 14px;
      opacity: 0.7;
      margin-top: 20px;
    }

    
    /* Responsive */
    @media (max-width: 1200px) {
      .section-title {
        font-size: 36px;
      }
      
      .section-title::before, .section-title::after {
        width: 30px;
      }
      
      .section-title::before {
        left: -50px;
      }
      
      .section-title::after {
        right: -50px;
      }
    }

    @media (max-width: 992px) {
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
      }
      
      .section-title::before, .section-title::after {
        display: none;
      }
    }

    @media (max-width: 768px) {
      header {
        padding: 15px 20px;
      }
      
      .header-container {
        flex-direction: row;
        gap: 15px;
      }
      
      .header-actions {
        display: none;
      }
      
      .burger-menu {
        display: flex;
      }
      
      .mobile-cart-btn {
        display: flex;
      }
      
      #panier-modal {
        width: 100%;
        right: -100%;
      }
      
      /* AFFICHER 2 PRODUITS PAR LIGNE EN MODE MOBILE */
      .cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
      
      .section-title {
        font-size: 32px;
        margin-bottom: 30px;
      }
      
      .card-image-container {
        height: 180px;
      }
      
      .card-content {
        padding: 15px;
      }
      
      .card h3 {
        font-size: 18px;
      }
      
      .card p {
        font-size: 13px;
      }
      
      .price {
        font-size: 20px;
      }
    }

    @media (max-width: 576px) {
      .search-bar input {
        padding: 15px 15px 15px 50px;
      }
      
      .footer-container {
        grid-template-columns: 1fr;
      }
      
      .footer-links {
        margin-top: 30px;
      }
      
      .card-content {
        padding: 15px;
      }
      
      .card-actions {
        flex-direction: column;
      }
      
      .btn-primary, .btn-icon {
        width: 100%;
      }
      
      .mobile-menu {
        width: 85%;
      }
      
      /* Ajustements pour très petits écrans */
      .cards {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    /* Animations spécifiques */
    @keyframes cardEntrance {
      from {
        opacity: 0;
        transform: translateY(50px) rotate(5deg);
      }
      to {
        opacity: 1;
        transform: translateY(0) rotate(0);
      }
    }

    .card {
      animation: cardEntrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      opacity: 0;
    }

    .card:nth-child(1) { animation-delay: 0.1s; }
    .card:nth-child(2) { animation-delay: 0.2s; }
    .card:nth-child(3) { animation-delay: 0.3s; }
    .card:nth-child(4) { animation-delay: 0.4s; }
    .card:nth-child(5) { animation-delay: 0.5s; }
    .card:nth-child(6) { animation-delay: 0.6s; }

    /* Effet de particules au survol */
    .card:hover {
      position: relative;
      overflow: hidden;
    }

    .card:hover::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 20% 30%, rgba(0, 200, 83, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 148, 103, 0.1) 0%, transparent 40%);
      pointer-events: none;
      z-index: 1;
    }
/* Styles pour le bouton d'installation PWA */
.install-pwa-btn {
  /* Positionnement */
  position: fixed;
  top: 80px;
  right: 30px;
  z-index: 1000;
  
  /* Apparence */
  background: linear-gradient(135deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4, #FECA57);
  background-size: 300% 300%;
  animation: gradient-shift 4s ease infinite;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 25px;
  
  /* Typographie */
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  font-weight: 600;
  
  /* Layout */
  display: flex;
  align-items: center;
  gap: 8px;
  
  /* Interactions */
  cursor: pointer;
  user-select: none;
  
  /* Ombres et effets */
  box-shadow: 
    0 4px 15px rgba(255, 107, 107, 0.4),
    0 2px 5px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(200px);
  opacity: 0;
}

/* Animation d'apparition */
.install-pwa-btn.show {
  transform: translateY(0) translateX(0);
  opacity: 1;
}

/* États du bouton */
.install-pwa-btn:hover {
  background: linear-gradient(135deg, #FF5252, #26D0CE, #2196F3, #66BB6A, #FFB74D);
  background-size: 300% 300%;
  animation: gradient-shift 2s ease infinite;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 8px 25px rgba(255, 107, 107, 0.6),
    0 4px 15px rgba(0, 0, 0, 0.2);
}

.install-pwa-btn:active {
  transform: translateY(0);
  box-shadow: 
    0 2px 10px rgba(76, 175, 80, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.1);
}

.install-pwa-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: translateY(0);
}

/* État de succès */
.install-pwa-btn.success {
  background: linear-gradient(135deg, #4CAF50, #66BB6A, #81C784);
  background-size: 200% 200%;
  animation: pulse-success 0.6s ease-out, gradient-shift 3s ease infinite;
}

/* Icône SVG dans le bouton */
.install-pwa-btn svg {
  transition: transform 0.3s ease;
}

.install-pwa-btn:hover svg {
  transform: scale(1.1);
}

/* Spinner de chargement */
.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Animation du dégradé coloré */
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  25% { background-position: 100% 50%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
  100% { background-position: 0% 50%; }
}

/* Autres animations */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse-success {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Variantes de couleur */
.install-pwa-btn.blue {
  background: linear-gradient(135deg, #2196F3, #1976D2);
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.install-pwa-btn.blue:hover {
  background: linear-gradient(135deg, #1976D2, #1565C0);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.5);
}

.install-pwa-btn.orange {
  background: linear-gradient(135deg, #FF9800, #F57C00);
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.install-pwa-btn.orange:hover {
  background: linear-gradient(135deg, #F57C00, #EF6C00);
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.5);
}

/* Version compacte */
.install-pwa-btn.compact {
  padding: 12px 20px;
  font-size: 14px;
}

.install-pwa-btn.compact svg {
  width: 16px;
  height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .install-pwa-btn {
    top: 80px;
    right: 20px;
    padding: 12px 20px;
    font-size: 15px;
  }
  
  .install-pwa-btn svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .install-pwa-btn {
    top: 80px;
    right: 15px;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 25px;
  }
  
  .install-pwa-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* Mode sombre */
@media (prefers-color-scheme: dark) {
  .install-pwa-btn {
    background: linear-gradient(135deg, #388E3C, #2E7D32);
    box-shadow: 
      0 4px 15px rgba(56, 142, 60, 0.4),
      0 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  .install-pwa-btn:hover {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    box-shadow: 
      0 6px 20px rgba(56, 142, 60, 0.5),
      0 4px 10px rgba(0, 0, 0, 0.4);
  }
}

/* Masquer le bouton si PWA déjà installée */
@media (display-mode: standalone) {
  .install-pwa-btn {
    display: none !important;
  }
}

/* Animation pour les écrans haute résolution */
@media (min-resolution: 2dppx) {
  .install-pwa-btn {
    box-shadow: 
      0 8px 30px rgba(76, 175, 80, 0.3),
      0 4px 10px rgba(0, 0, 0, 0.1);
  }
}