/**
 * Niger Laptop - Styles principaux
 * @author HAM Global-Words
 * @version 3.0 - Version complète avec page panier dédiée
 * 
 * Table des matières :
 * 1. RESET & VARIABLES
 * 2. ANIMATIONS & KEYFRAMES
 * 3. SKELETON LOADING
 * 4. SCROLLBAR & UTILITAIRES
 * 5. BOUTONS
 * 6. TOP BAR & HEADER
 * 7. HERO SECTION
 * 8. SECTION TITLES
 * 9. CATEGORIES
 * 10. PRODUCTS & FILTRES
 * 11. PAGINATION
 * 12. FEATURES & TESTIMONIALS
 * 13. ABOUT PAGE
 * 14. CONTACT PAGE
 * 15. NIGER BANNER
 * 16. NEWSLETTER
 * 17. FOOTER
 * 18. CART SIDEBAR (ancienne version - conservée)
 * 19. PAYMENT PREVIEW
 * 20. SEARCH MODAL
 * 21. MODALS GÉNÉRIQUES
 * 22. TOAST NOTIFICATION
 * 23. BACK TO TOP
 * 24. PAGE PANIER DÉDIÉE
 * 25. RESPONSIVE
 * 26. CORRECTIONS & VARIABLES MANQUANTES
 */

/* ========== 1. RESET & VARIABLES ========== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs principales */
    --orange: #e05206;
    --orange-dark: #c44805;
    --orange-light: #f06a1f;
    --green: #0cab3a;
    --green-dark: #0a8f30;
    --green-light: #15d44a;
    --danger: #dc3545;
    --dark: #1a1a2e;

    /* Couleurs de fond - Mode clair */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f1f3f5;
    
    /* Couleurs de texte - Mode clair */
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a6a;
    --text-muted: #6c757d;
    
    /* Bordures et ombres */
    --border-color: #e9ecef;
    --card-bg: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

    /* Rayons de bordure */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 28px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Dimensions globales */
    --header-height: 80px;
    --container-width: 1280px;
    --primary-color: #e05206; /* Variable ajoutée pour compatibilité */
}

/* Mode sombre */
[data-theme="dark"] {
    --bg-primary: #121212;
    --bg-secondary: #1e1e2e;
    --bg-tertiary: #2a2a3a;
    --text-primary: #f0f0f0;
    --text-secondary: #b0b0c0;
    --text-muted: #8a8a9a;
    --border-color: #2a2a3a;
    --card-bg: #1e1e2e;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.25);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.3);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.4);
}

/* Styles de base du corps */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* ========== 2. ANIMATIONS & KEYFRAMES ========== */

/* Animations principales */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.02); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(0.95); }
    50% { opacity: 0.8; transform: scale(1.08); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Classes d'animations réutilisables */
.animate-fade-up { animation: fadeUp 0.6s ease forwards; }
.animate-fade-in { animation: fadeIn 0.4s ease forwards; }
.animate-slide-left { animation: slideInLeft 0.5s ease forwards; }
.animate-slide-right { animation: slideInRight 0.5s ease forwards; }
.animate-scale { animation: scaleIn 0.4s ease forwards; }
.animate-bounce { animation: bounce 0.5s ease; }

/* Délais d'animation */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ========== 3. SKELETON LOADING ========== */

/* Squelette de chargement générique */
.skeleton {
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--border-color) 50%, var(--bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--border-radius-sm);
}

/* Squelette pour les produits */
.skeleton-product {
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.skeleton-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--border-color) 50%, var(--bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-text {
    height: 16px;
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--border-color) 50%, var(--bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin: 10px 0;
}

.skeleton-title { height: 20px; width: 70%; }
.skeleton-price { height: 24px; width: 40%; }

/* ========== 4. SCROLLBAR & UTILITAIRES ========== */

/* Scrollbar personnalisée */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-tertiary); border-radius: 4px; }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange-dark); }

/* Focus visible pour l'accessibilité */
:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

/* Conteneur principal responsive */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Sections */
.section { padding: 80px 0; }
.section-sm { padding: 40px 0; }
.section-dark { background-color: var(--bg-secondary); }

/* ========== 5. BOUTONS ========== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    outline: none;
}

.btn:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

/* Effet ripple au clic */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Variantes de boutons */
.btn-primary {
    background: var(--orange);
    color: white;
    box-shadow: 0 4px 15px rgba(224,82,6,0.3);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(224,82,6,0.4);
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
}

.btn-outline:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--green);
    color: white;
}

.btn-secondary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(12,171,58,0.3);
}

.btn-sm { padding: 8px 16px; font-size: 12px; }

/* ========== 6. TOP BAR & HEADER ========== */

/* Barre supérieure orange */
.top-bar {
    background: var(--orange);
    color: white;
    padding: 8px 0;
    font-size: 13px;
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar a { color: white; text-decoration: none; margin-left: 15px; transition: opacity var(--transition-fast); }
.top-bar a:hover { opacity: 0.8; }

/* Liens de la top bar (pour la page panier) */
.top-bar-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}

.top-bar-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Bouton de changement de thème */
.theme-toggle {
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all var(--transition-fast);
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.theme-toggle:hover {
    background: var(--orange);
    color: white;
    transform: rotate(15deg);
}

/* Header principal */
.main-header {
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
}

[data-theme="dark"] .main-header {
    background: rgba(18,18,18,0.95);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 24px;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: floatLogo 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
    will-change: transform;
}

.logo-img:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(224,82,6,0.5));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(224,82,6,0.3) 0%, rgba(12,171,58,0.1) 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 2s ease-in-out infinite;
    z-index: 1;
    will-change: transform, opacity;
}

.logo span {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange) 0%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all var(--transition-normal);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--green));
    transition: width var(--transition-normal);
    border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--orange);
}

/* Actions du header (recherche, panier) */
.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-actions .cart-icon {
    display: inline-flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    color: var(--text-primary);
}

.cart-icon, .search-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    color: var(--text-primary);
    transition: transform var(--transition-fast);
    font-size: 1rem;
}

.cart-icon:hover, .search-btn:hover {
    transform: scale(1.1);
    color: var(--orange);
}

/* Compteur du panier */
.header-actions .cart-icon .cart-count,
.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--orange);
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
    animation: bounce 0.5s ease;
}

/* Menu mobile */
.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: none;
    border: none;
    color: var(--text-primary);
}

.mobile-toggle:hover { color: var(--orange); }

/* ========== 7. HERO SECTION ========== */

.hero {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotateSlow 60s linear infinite;
    will-change: transform;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Statistiques de la hero */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item { text-align: center; }
.stat-number { font-size: 36px; font-weight: 800; }
.stat-label { font-size: 14px; opacity: 0.8; }

/* ========== 8. SECTION TITLES ========== */

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--green));
    border-radius: 3px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--orange);
    border-radius: 3px;
}

/* ========== 9. CATEGORIES ========== */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 35px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--green));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.category-card:hover::before { transform: scaleX(1); }
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.category-card i {
    font-size: 48px;
    color: var(--orange);
    margin-bottom: 15px;
    transition: transform var(--transition-normal);
}

.category-card:hover i { transform: scale(1.1); }

.category-card h3 { font-size: 18px; margin-bottom: 8px; }
.category-card p { font-size: 13px; color: var(--text-muted); }

/* ========== 10. PRODUCTS & FILTRES ========== */

/* Barre d'outils des filtres */
.products-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
    margin-bottom: 30px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-md);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group label {
    font-size: 14px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.filter-group select,
.filter-group input {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* Grille des produits */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Carte produit */
.product-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    position: relative;
    will-change: transform;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Badges produit */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--orange);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-badge.sale { background: var(--danger); }
.product-badge.new { background: var(--green); }

/* Image produit */
.product-image {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    transition: transform var(--transition-normal);
    overflow: hidden;
}

.product-card:hover .product-image { transform: scale(1.05); }

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    filter: contrast(1.02) saturate(1.02) brightness(1.02);
}

.product-image:hover img { transform: scale(1.05); }

/* Informations produit */
.product-info { padding: 20px; }

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.product-category {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.product-rating {
    color: #ffc107;
    margin-bottom: 10px;
    font-size: 13px;
}

/* Prix */
.current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--orange);
}

.old-price {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 8px;
}

/* Actions produit */
.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.product-actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 13px;
}

/* Mode sombre - ajustement images */
[data-theme="dark"] .product-image img {
    filter: brightness(0.95) contrast(1.05);
}

/* ========== 11. PAGINATION ========== */

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination button {
    padding: 8px 14px;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-primary);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.pagination button.active {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}

.pagination button:hover:not(.active):not(:disabled) {
    background: var(--bg-tertiary);
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========== 12. FEATURES & TESTIMONIALS ========== */

/* Grille des fonctionnalités */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast);
}

.feature-card:hover { transform: translateY(-5px); }
.feature-card i { color: var(--orange); margin-bottom: 15px; }

/* Témoignages */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    font-style: italic;
}

.testimonial-card strong {
    display: block;
    margin-top: 15px;
    font-style: normal;
    color: var(--orange);
}

/* ========== 13. ABOUT PAGE ========== */

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-icon {
    font-size: 64px;
    color: var(--orange);
    margin-bottom: 20px;
}

.legal-info { margin-top: 30px; }

/* ========== 14. CONTACT PAGE ========== */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.contact-card i {
    font-size: 24px;
    color: var(--orange);
    margin-bottom: 10px;
}

/* Liens de contact */
.contact-link {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Formulaire de contact */
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; margin-bottom: 6px; font-weight: 500; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* ========== 15. NIGER BANNER ========== */

.niger-banner {
    background: linear-gradient(135deg, var(--orange) 0%, var(--green) 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.niger-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotateSlow 40s linear infinite;
    will-change: transform;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content i {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Couleurs du drapeau nigérien */
.flag-colors {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.flag-colors span {
    width: 60px;
    height: 8px;
    border-radius: 4px;
}

.color-orange { background: var(--orange); }
.color-white { background: white; }
.color-green { background: var(--green); }

/* ========== 16. NEWSLETTER ========== */

.newsletter-section {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    padding: 70px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotateSlow 60s linear infinite;
    will-change: transform;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 30px auto 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 16px;
    background: white;
    color: #1a1a2e;
}

[data-theme="dark"] .newsletter-form input {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

/* ========== 17. FOOTER ========== */

.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--orange);
}

.footer-logo-wrapper { margin: 15px 0; }

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all var(--transition-normal);
    animation: floatLogo 3s ease-in-out infinite;
    will-change: transform;
}

.footer-logo-img:hover {
    transform: scale(1.05) translateY(-3px);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(224,82,6,0.5));
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: all var(--transition-fast);
}

.footer-col a:hover {
    color: var(--orange);
    transform: translateX(5px);
}

/* Liens du footer */
.footer-link {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: inherit;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Mini drapeau dans le footer */
.flag-mini {
    display: flex;
    gap: 8px;
    margin: 20px 0;
}

.flag-mini span {
    width: 35px;
    height: 4px;
    border-radius: 2px;
}

.flag-mini span:nth-child(1) { background: var(--orange); }
.flag-mini span:nth-child(2) { background: white; }
.flag-mini span:nth-child(3) { background: var(--green); }

/* Réseaux sociaux */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

/* Bas du footer */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.design-credit {
    margin-top: 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.design-credit strong { color: var(--orange); }

/* ========== 18. CART SIDEBAR (ancienne version - conservée) ========== */

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100vh;
    background: var(--bg-primary);
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    transition: right var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open { right: 0; }

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    display: none;
    backdrop-filter: blur(4px);
}

.cart-overlay.open { display: block; }

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cart-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-primary);
}

.cart-close:hover {
    color: var(--orange);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    animation: slideInRight 0.3s ease;
    will-change: transform;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
}

.cart-item-details { flex: 1; }
.cart-item-title { font-weight: 600; margin-bottom: 5px; }
.cart-item-price { color: var(--orange); font-weight: 600; font-size: 14px; }
.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.quantity-btn:hover {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}

.cart-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: all var(--transition-fast);
}

.cart-item-remove:hover {
    color: var(--danger);
    transform: scale(1.1);
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.cart-promo {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.cart-promo input {
    flex: 1;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-width: 120px;
}

.promo-message {
    font-size: 12px;
    margin-top: 5px;
    width: 100%;
}

.promo-message.success { color: var(--green); }
.promo-message.error { color: var(--danger); }

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cart-buttons {
    display: flex;
    gap: 15px;
}

.cart-buttons .btn { flex: 1; }

/* ========== 19. PAYMENT PREVIEW ========== */

.payment-preview {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-secondary) 100%);
    border-radius: var(--border-radius-md);
    padding: 25px;
    margin: 20px 0;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--orange);
}

.payment-preview__header {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.payment-preview__header i {
    font-size: 32px;
    color: var(--orange);
}

.payment-preview__header h3 {
    font-size: 18px;
    margin: 0;
}

.preview-badge {
    background: var(--orange);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
}

.payment-preview__methods {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.method-card {
    flex: 1;
    min-width: 180px;
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.payment-logo {
    max-width: 80px;
    max-height: 60px;
    object-fit: contain;
}

.status-pending {
    background: #fff3e0;
    color: var(--orange);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    display: inline-block;
}

.payment-preview__info {
    background: rgba(12,171,58,0.1);
    border-radius: var(--border-radius-sm);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--green);
}

.payment-preview__credit {
    margin-top: 15px;
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
}

/* ========== 20. SEARCH MODAL ========== */

.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 4000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.search-modal.open { display: flex; }

.search-modal-content {
    background: var(--bg-primary);
    border-radius: var(--border-radius-xl);
    max-width: 600px;
    width: 90%;
    padding: 30px;
    position: relative;
    animation: scaleIn 0.3s ease;
}

.search-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-primary);
}

.search-modal-close:hover {
    color: var(--orange);
    transform: rotate(90deg);
}

.search-modal-content input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: 16px;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.search-modal-content input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(224,82,6,0.2);
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
    margin-top: 20px;
}

.search-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.search-result-item:hover {
    background: var(--bg-secondary);
    transform: translateX(5px);
}

.search-result-price {
    color: var(--orange);
    font-weight: 600;
}

/* ========== 21. MODALS GÉNÉRIQUES ========== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.open { display: flex; }

.modal-content {
    background: var(--bg-primary);
    border-radius: var(--border-radius-xl);
    max-width: 500px;
    width: 90%;
    padding: 40px;
    text-align: center;
    animation: scaleIn 0.3s ease;
    position: relative;
}

.modal-product {
    max-width: 600px;
    text-align: left;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-primary);
}

.success-icon {
    font-size: 70px;
    color: var(--green);
    margin-bottom: 20px;
    animation: bounce 0.5s ease;
}

.confirm-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

/* ========== 22. TOAST NOTIFICATION ========== */

.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 10000;
}

.toast-notification.show { transform: translateX(0); }
.toast-notification.success { border-left: 4px solid #10b981; }
.toast-notification.error { border-left: 4px solid #dc2626; }

.toast-notification i { font-size: 20px; }
.toast-notification.success i { color: #10b981; }
.toast-notification.error i { color: #dc2626; }

/* ========== 23. BACK TO TOP ========== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1500;
    box-shadow: var(--shadow-md);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
}

/* ========== 24. PAGE PANIER DÉDIÉE ========== */

.cart-page {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

.page-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.page-title i {
    margin-right: 12px;
    color: var(--primary-color);
}

/* Mise en page à 2 colonnes */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
}

/* Colonne des produits */
.cart-products {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cart-header-row {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    padding: 12px 0;
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
    color: var(--text-muted);
    font-size: 14px;
}

.cart-items-list { min-height: 200px; }

/* Ligne d'un produit dans le panier */
.cart-item-row {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    background: var(--bg-secondary);
}

.cart-item-product h4 {
    margin: 0 0 5px;
    font-size: 16px;
}

.cart-item-category {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.cart-item-price,
.cart-item-total { font-weight: 500; }

/* Contrôle de quantité */
.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.remove-btn {
    background: none;
    border: none;
    color: #dc2626;
    cursor: pointer;
    font-size: 18px;
    transition: opacity 0.2s;
}

.remove-btn:hover { opacity: 0.7; }

/* Message panier vide */
.empty-cart-message {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-message i {
    font-size: 64px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.empty-cart-message h3 { margin-bottom: 10px; }
.empty-cart-message .btn { margin-top: 20px; }

/* Colonne résumé */
.cart-summary {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 16px;
}

.total-row {
    font-size: 20px;
    font-weight: 700;
    border-top: 2px solid var(--border-color);
    margin-top: 10px;
    padding-top: 15px;
}

.discount { color: #10b981; }
.discount-row { color: #10b981; }

/* Section code promo */
.promo-section {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.promo-section input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-secondary);
}

.promo-message {
    width: 100%;
    font-size: 12px;
}

.promo-message.success { color: #10b981; }
.promo-message.error { color: #dc2626; }

/* Moyens de paiement */
.payment-methods {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.payment-methods h4 {
    margin: 0 0 15px;
    font-size: 14px;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.payment-item img,
.payment-item i {
    width: 50px;
    height: 40px;
    object-fit: contain;
    font-size: 30px;
    color: var(--text-muted);
}

.payment-info {
    font-size: 12px;
    color: var(--text-muted);
    margin: 10px 0 0;
    text-align: center;
}

.payment-info i { margin-right: 5px; }

/* Boutons du panier */
.cart-actions {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.cart-actions .btn {
    flex: 1;
    padding: 14px;
}

.continue-shopping {
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 12px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
}

.continue-shopping:hover { text-decoration: underline; }

/* ========== 25. RESPONSIVE ========== */

/* Tablettes */
@media (max-width: 992px) {
    .hero h1 { font-size: 42px; }
    .section-title { font-size: 30px; }
    .cart-sidebar { width: 380px; right: -380px; }
}

/* Mobiles */
@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }
    
    .nav-menu.active { display: flex; }
    .nav-menu a {
        width: 100%;
        padding: 12px;
        text-align: center;
    }
    
    .cart-sidebar { width: 100%; right: -100%; }
    
    .hero { padding: 60px 0; }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 16px; }
    
    .section { padding: 50px 0; }
    .section-title { font-size: 24px; }
    
    .logo-img { height: 35px; }
    .logo span { font-size: 18px; }
    .footer-logo-img { height: 45px; }
    
    .hero-stats { gap: 25px; }
    .stat-number { font-size: 24px; }
    
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
    .payment-preview__methods { flex-direction: column; }
    .products-toolbar { flex-direction: column; align-items: stretch; }
    .filter-group { flex-wrap: wrap; }
    .contact-wrapper { grid-template-columns: 1fr; }
    
    /* Responsive page panier */
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
    
    .cart-header-row { display: none; }
    
    .cart-item-row {
        grid-template-columns: 1fr;
        gap: 12px;
        position: relative;
        padding: 20px;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        margin-bottom: 15px;
    }
    
    .cart-item-product { grid-column: 1; }
    
    .cart-item-price,
    .cart-item-quantity,
    .cart-item-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .cart-item-price::before { content: "Prix :"; font-weight: 600; }
    .cart-item-total::before { content: "Total :"; font-weight: 600; }
    
    .cart-item-remove {
        position: absolute;
        top: 10px;
        right: 10px;
    }
}

/* Petits mobiles */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .btn { padding: 10px 20px; font-size: 13px; }
    .product-actions { flex-direction: column; }
    .cart-buttons { flex-direction: column; }
    .modal-content { padding: 30px 20px; }
    .products-grid { grid-template-columns: 1fr; }
}

/* ========== 26. CORRECTIONS & VARIABLES MANQUANTES ========== */

/* Support des animations AOS */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Images par défaut pour le placeholder */
#featuredProductsGrid .product-image img,
#allProductsGrid .product-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.placeholder-img {
    object-fit: contain;
    background-color: #f5f5f5;
}

[data-theme="dark"] .placeholder-img {
    background-color: #1a1a2e;
}

/* Message d'erreur */
.error-message {
    text-align: center;
    padding: 60px 20px;
    color: #dc2626;
}

.error-message i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}
/* ========== OPTIONS DE LIVRAISON ========== */
.delivery-options {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
}

.delivery-options h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.delivery-choice {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.2s;
    background: var(--bg-secondary);
}

.delivery-option:hover {
    border-color: var(--orange);
    background: var(--bg-primary);
}

.delivery-option input[type="radio"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--orange);
}

.delivery-option-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.delivery-option-content strong {
    font-size: 15px;
}

.delivery-option-content span {
    font-size: 12px;
    color: var(--text-muted);
}

.delivery-price {
    font-weight: 600;
    color: var(--orange);
}

/* ========== FORMULAIRE D'ADRESSE ========== */
.address-form {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
}

.address-form h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.address-form .form-group {
    margin-bottom: 12px;
}

.address-form input,
.address-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: inherit;
}

.address-form input:focus,
.address-form textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 2px rgba(224,82,6,0.2);
}

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

/* ========== OPTIONS DE PAIEMENT ========== */
.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.2s;
    background: var(--bg-secondary);
}

.payment-option:hover {
    border-color: var(--orange);
}

.payment-option input[type="radio"] {
    accent-color: var(--orange);
}

.payment-option-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-option-content i {
    font-size: 20px;
    color: var(--orange);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .delivery-option {
        padding: 12px;
    }
}
