
        .whatsapp-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #25D366;
            color: white;
            padding: 15px 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 10000;
            display: flex;
            align-items: center;
            animation: slideIn 0.5s ease-out;
        }
        
        .whatsapp-notification i {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        
        .whatsapp-notification a {
            color: white;
            text-decoration: underline;
            margin-left: 5px;
        }
        
        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        @keyframes slideOut {
            from { transform: translateX(0); opacity: 1; }
            to { transform: translateX(100%); opacity: 0; }
        }
        
        /* Amélioration du formulaire */
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: #555;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #d4af37;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }
        
        .grid-cols-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        @media (max-width: 768px) {
            .grid-cols-2 {
                grid-template-columns: 1fr;
            }
        }



    .mobile-only {
        display: none; 
    }


   .desk-only {
        display: block; 
    }
    

 /* Inversion pour mobile */
@media (max-width: 768px) {
    .mobile-only {
        display: block; 
    }
     
     .desk-only {
        display: none; 
    }
    
}




:root {
    --taskafe-gold: #d4af37;
    --taskafe-coffee-brown: #6f4e37;
    --taskafe-gray: #666;
    --taskafe-gray-light: #f5f5f5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--taskafe-gold);
    color: #333;
}

.btn-primary:hover {
    background-color: var(--taskafe-coffee-brown);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--taskafe-gold);
    border: 2px solid var(--taskafe-gold);
}

.btn-secondary:hover {
    background-color: var(--taskafe-gold);
    color: #333;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 1.1rem;
}

.grid {
    display: grid;
    gap: 20px;
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.grid-cols-2 {
    grid-template-columns: 1fr 1fr;
}

.bg-white {
    background-color: white;
}

.rounded-lg {
    border-radius: 10px;
}

.shadow-md {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.p-6 {
    padding: 1.5rem;
}

.text-center {
    text-align: center;
}

.text-2xl {
    font-size: 1.5rem;
}

.font-semibold {
    font-weight: 600;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.border-b {
    border-bottom: 1px solid #e0e0e0;
}

.pb-4 {
    padding-bottom: 1rem;
}

.w-20 {
    width: 80px;
}

.h-20 {
    height: 80px;
}

.object-cover {
    object-fit: cover;
}

.rounded {
    border-radius: 5px;
}

.ml-4 {
    margin-left: 1rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-gray {
    color: var(--taskafe-gray);
}

.text-gold {
    color: var(--taskafe-gold);
}

.line-through {
    text-decoration: line-through;
}

.pt-6 {
    padding-top: 1.5rem;
}

.border-t {
    border-top: 1px solid #e0e0e0;
}

.h-fit {
    height: fit-content;
}

.w-full {
    width: 100%;
}

.border {
    border: 1px solid #e0e0e0;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
}

/* Début des modifications pour le responsive mobile */
@media (max-width: 768px) {
    /* Forcer la grille principale en une seule colonne */
    #cart-content > div {
        grid-template-columns: 1fr !important;
    }
    
    /* Réorganiser les éléments du panier en colonne */
    #cart-content .flex.items-center.border-b {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    /* Ajuster la largeur des éléments */
    #cart-content .flex.items-center.border-b > img,
    #cart-content .flex.items-center.border-b > div {
        width: 100%;
        margin-left: 0;
    }
    
    /* Réorganiser les contrôles de quantité et prix */
    #cart-content .flex.items-center.border-b > div:last-child {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    /* Aligner horizontalement quantité et bouton suppression */
    #cart-content .flex.items-center.border-b > div:last-child > div:first-child {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Aligner le prix à gauche sur mobile */
    #cart-content .flex.items-center.border-b > div:last-child > div:nth-child(2) {
        text-align: left;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    /* Ajuster le bouton suppression */
    #cart-content .flex.items-center.border-b > div:last-child > button {
        margin-left: 0;
    }
    
    /* Espacement entre les éléments du récapitulatif */
    #cart-content .space-y-3 {
        margin-top: 1.5rem;
    }
    
    /* Ajuster la section "Continuer mes achats" */
    #cart-content .mt-6 {
        margin-top: 1.5rem;
    }
}
/* Fin des modifications pour le responsive mobile */



        /* Style pour le toast */
        .toast {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #25D366;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .toast.show {
            opacity: 1;
        }






        /* Style de base du menu mobile - fermé */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

/* Classe active pour l'ouverture */
.mobile-menu.active {
  transform: translateX(0);
}

/* Overlay pour fond sombre */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 10;
}