/* === MEDIA QUERIES RESPONSIVE MODERNES === */
@media (max-width: 1280px) {
    body { font-size: 1.08em; }
    .container, .main, .content { max-width: 98vw; }
}
@media (max-width: 900px) {
    body { font-size: 1em; }
    .container, .main, .content { max-width: 100vw; padding: 0 1rem; }
}
@media (max-width: 600px) {
    body { font-size: 0.95em; }
    .container, .main, .content { max-width: 100vw; padding: 0 0.5rem; }
    .card, .box, .panel { width: 100vw !important; margin: 0 !important; border-radius: 0 !important; }
}
/* Bouton Option supplémentaire moderne et élégant - version unique */
.btn-option-supplementaire {
    background: linear-gradient(90deg, #6366f1 0%, #3b82f6 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 32px !important;
    padding: 10px 28px 10px 18px !important;
    font-size: 1.02rem !important;
    font-weight: 800 !important;
    margin-top: 10px !important;
    margin-left: 8px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
    box-shadow: 0 6px 24px rgba(99,102,241,0.18) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s !important;
    outline: none !important;
    border: none !important;
}

.btn-option-supplementaire:hover, .btn-option-supplementaire:focus {
    background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%) !important;
    color: #fff !important;
    box-shadow: 0 12px 36px rgba(99,102,241,0.22) !important;
    transform: translateY(-3px) scale(1.07) !important;
}
.btn-option-supplementaire .option-icon {
    font-size: 1.2em !important;
    margin-right: 8px !important;
    display: inline-block !important;
    color: #fff !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.13)) !important;
}
/* Bouton option supplémentaire chic */
.chic-btn {
    background: linear-gradient(135deg, #f3f4f6, #e0e7ef);
    color: #444;
    border: none;
    border-radius: 18px;
    padding: 6px 16px 6px 10px;
    font-size: 0.95em;
    font-weight: 600;
    margin-left: 8px;
    margin-top: 6px;
    box-shadow: 0 2px 8px rgba(140,116,78,0.07);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s;
}
.chic-btn .icon {
    font-size: 1.1em;
    color: #be995b;
    margin-right: 2px;
}
.chic-btn:hover {
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    color: #be995b;
    box-shadow: 0 4px 16px rgba(140,116,78,0.13);
}

/* Mini bouton supprimer */
.mini-btn {
    background: #ef4444;
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.18em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    margin-top: 6px;
    cursor: pointer;
    transition: all 0.2s;
}
.mini-btn:hover {
    background: #dc2626;
    color: #fff;
    transform: scale(1.08);
}
/* ======================================
   SAZULIS CART SYSTEM STYLES
   Styles pour le système de panier et commandes
   ====================================== */

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    padding: 16px 24px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.notification-error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.notification-info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.notification i {
    margin-right: 8px;
}

.close-notification {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-left: 12px;
    opacity: 0.8;
}

.close-notification:hover {
    opacity: 1;
}

/* Panier vide */
.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--medium-brown);
}

.empty-cart h3 {
    margin: 1rem 0;
    color: var(--dark-brown);
}

.empty-cart .btn-primary {
    margin-top: 2rem;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.empty-cart .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(140, 116, 78, 0.3);
}

/* Items du panier */
.cart-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(140, 116, 78, 0.1);
    transition: all 0.3s ease;
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(140, 116, 78, 0.15);
}

.item-info h4 {
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.item-category {
    color: var(--medium-brown);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.item-price {
    color: var(--primary-gold);
    font-weight: 800;
    font-size: 1.1rem;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-cream);
    border-radius: 25px;
    padding: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--primary-gold);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--secondary-gold);
    transform: scale(1.1);
}

.quantity {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--dark-brown);
}

.remove-btn {
    background: #ef4444;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.item-total {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-gold);
    text-align: right;
}

/* Compteur panier */
.cart-counter, .panier-count {
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -8px;
}

/* Chargement */
.loading-cart {
    text-align: center;
    padding: 3rem;
    color: var(--medium-brown);
}

.loading-cart i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

/* Formulaire de commande */
.order-form, .checkout-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(140, 116, 78, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-brown);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-cream);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(140, 116, 78, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Boutons */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(140, 116, 78, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: white;
}

.clear-cart-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-cart-btn:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

/* ===== FOOTER REVOLUTIONARY ===== */
.footer-revolutionary {
    background: linear-gradient(120deg, #191b23 0%, #1a2340 60%, #22305a 100%);
    color: #e6e6e6;
    padding: 0;
    margin-top: 4rem;
    position: relative;
    box-shadow: 0 -8px 32px rgba(20, 30, 60, 0.18);
    border-top: 1px solid #2a3142;
    z-index: 10;
}
.footer-particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 1.5rem 2rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    /* No change, but ensure text color is light */
    color: #e6e6e6;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-brand {
    flex: 1 1 260px;
    min-width: 220px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
}
.footer-logo-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #8c744e 0%, #be995b 100%);
    border-radius: 16px;
    padding: 0.5rem 0.7rem;
    color: #fff;
    box-shadow: 0 2px 8px #8c744e22;
}
.footer-logo h3 {
    font-size: 2rem;
    color: #4f8cff;
    margin: 0;
    font-weight: 800;
    letter-spacing: 1px;
}
.footer-logo p {
    font-size: 1.05rem;
    color: #b8c6e6;
    margin: 0;
    font-weight: 600;
}
.footer-description {
    font-size: 1.1rem;
    color: #e6e6e6;
    margin-bottom: 1.2rem;
    margin-top: 0.5rem;
    line-height: 1.5;
}
.footer-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.5rem;
}
.footer-social .social-link img {
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px #4f8cff44;
    background: #232b3d;
    border-radius: 16px;
}
.footer-social .social-link img:hover {
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 6px 18px #4f8cff99;
}
.footer-links {
    display: flex;
    gap: 2.5rem;
    flex: 2 1 400px;
    min-width: 320px;
    justify-content: flex-end;
    color: #e6e6e6;
}
.footer-column {
    min-width: 140px;
}
.footer-column h4 {
    color: #247cff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li {
    margin-bottom: 0.7rem;
}
.footer-column ul li a {
    color: #e6e6e6;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
    font-weight: 500;
}
.footer-column ul li a:hover {
    color: #4f8cff;
    text-decoration: underline;
}
.footer-bottom {
    border-top: 1px solid #2a3142;
    margin-top: 2.5rem;
    padding-top: 1.2rem;
    text-align: center;
}
.footer-copyright {
    color: #b8c6e6;
    font-size: 1rem;
    letter-spacing: 0.5px;
}
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
        align-items: flex-start;
    }
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
        min-width: 0;
    }
}
@media (max-width: 600px) {
    .footer-container {
        padding: 2rem 0.5rem 1rem 0.5rem;
    }
    .footer-logo h3 {
        font-size: 1.1rem;
    }
    .footer-logo-icon {
        font-size: 1.5rem;
        padding: 0.3rem 0.5rem;
    }
    .footer-content {
        gap: 1.2rem;
    }
    .footer-links {
        gap: 0.7rem;
    }
}