/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4B5563;
    --primary-dark: #374151;
    --accent-color: #6B7280;
    --text-primary: #F9FAFB;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    --bg-primary: #111827;
    --bg-secondary: #1F2937;
    --bg-card: #1F2937;
    --bg-hover: #374151;
    --border-color: #374151;
    --success-color: #059669;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    transition: width 0.2s ease;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    margin-top: 70px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(75, 85, 99, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(75, 85, 99, 0.1) 0%, transparent 50%);
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero .accent {
    color: var(--text-secondary);
    font-weight: 300;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* ===== SEARCH BAR ===== */
.search-container {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 8px;
    padding: 4px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.search-container:focus-within {
    border-color: var(--accent-color);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
    outline: none;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.search-btn:hover {
    background: var(--primary-dark);
}

/* ===== SECTIONS ===== */
.section {
    padding: 4rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ===== VENDOR SECTIONS ===== */
.vendor-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.vendor-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.vendor-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vendor-title i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.vendor-badge {
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Carrousel par vendeur pour mobile */
@media (max-width: 768px) {
    .vendor-section {
        position: relative;
        padding-bottom: 3rem;
    }
    
    .products-grid {
        display: flex;
        overflow-x: hidden;
        scroll-behavior: smooth;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .product-card {
        min-width: 85%;
        max-width: 85%;
        flex-shrink: 0;
        transition: opacity 0.3s ease;
    }
    
    .product-image {
        height: 220px;
    }
    
    /* Flèches de navigation */
    .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(17, 24, 39, 0.9);
        border: 1px solid var(--border-color);
        color: var(--text-primary);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
    }
    
    .carousel-arrow:hover {
        background: var(--accent-color);
        transform: translateY(-50%) scale(1.1);
    }
    
    .carousel-arrow.prev {
        left: -5px;
    }
    
    .carousel-arrow.next {
        right: -5px;
    }
    
    .carousel-arrow:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }
    
    .carousel-arrow:disabled:hover {
        transform: translateY(-50%);
        background: rgba(17, 24, 39, 0.9);
    }
    
    /* Indicateurs (points) */
    .carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 1rem;
        padding: 0.5rem 0;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--border-color);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .carousel-dot.active {
        background: var(--accent-color);
        width: 24px;
        border-radius: 4px;
    }
}

.product-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===== CORRECTION PRINCIPALE : AFFICHAGE DES IMAGES AMÉLIORÉ ===== */
.product-image {
    width: 100%;
    height: 260px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 6px;
}

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

/* Image par défaut si l'image ne charge pas */
.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    z-index: -1;
}

/* Icône par défaut pour les produits sans image */
.product-image i {
    font-size: 4rem;
    color: var(--text-muted);
    opacity: 0.2;
}

/* Masquer l'icône si une image est présente */
.product-image:has(img) i {
    display: none;
}

/* Alternative plus compatible pour masquer l'icône */
.product-image img ~ i {
    display: none;
}
/* ===== FIN DE LA CORRECTION ===== */

/* ===== PRODUCT BADGES ===== */
.product-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.product-badge.promo {
    background: #D97706;
}

/* NOUVEAU : Badge Phare doré avec animation */
.product-badge.featured {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    font-weight: 700;
    animation: pulse-gold 2s infinite;
    border: 1px solid #FFD700;
    top: 0.75rem;
    left: 0.75rem;
    right: auto;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.product-badge.featured:hover {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 160px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    min-height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-stock {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-stock.in-stock {
    background: rgba(5, 150, 105, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.product-stock.out-of-stock {
    background: rgba(220, 38, 38, 0.1);
    color: #DC2626;
    border: 1px solid #DC2626;
}

.product-btn {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    margin-top: 1rem;
    width: 100%;
}

.product-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.view-all-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(4px);
}

/* ===== CITY SELECTOR ===== */
.city-selector-section {
    max-width: 1280px;
    margin: -1.5rem auto 2rem;
    padding: 0 2rem;
}

.city-selector-container {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.city-selector-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.city-selector-label i {
    color: var(--accent-color);
    font-size: 0.95rem;
}

.city-selector-dropdown {
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 200px;
}

.city-selector-dropdown:hover {
    border-color: var(--accent-color);
    background: var(--bg-hover);
}

.city-selector-dropdown:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(107, 114, 128, 0.1);
}

/* Hidden states */
.vendor-section.hidden {
    display: none !important;
}

#categories.hidden {
    display: none !important;
}

.store-card.hidden {
    display: none !important;
}

/* Message aucun magasin */
.no-stores-message {
    max-width: 1280px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.no-stores-content {
    background: var(--bg-card);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
}

.no-stores-content i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.no-stores-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.no-stores-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.no-stores-suggestion {
    color: var(--accent-color) !important;
    font-weight: 500;
    margin-top: 1rem !important;
}

@media (max-width: 768px) {
    .no-stores-content {
        padding: 2rem 1.5rem;
    }
    
    .no-stores-content i {
        font-size: 3rem;
    }
    
    .no-stores-content h3 {
        font-size: 1.25rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .city-selector-container {
        margin-top: 1rem;
        gap: 0.5rem;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .city-selector-label {
        font-size: 0.8rem;
        gap: 0.3rem;
    }
    
    .city-selector-label i {
        font-size: 0.85rem;
    }
    
    .city-selector-dropdown {
        min-width: 160px;
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .city-selector-container {
        margin-top: 0.75rem;
    }
    
    .city-selector-label {
        font-size: 0.75rem;
        width: 100%;
        justify-content: center;
    }
    
    .city-selector-dropdown {
        width: 100%;
        min-width: auto;
        font-size: 0.8rem;
        padding: 0.5rem;
        text-align: center;
    }
}

/* ===== CATEGORIES GRID ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.2);
}

.category-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.category-card h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Wrapper pour le carrousel de catégories */
.categories-carousel-wrapper {
    position: relative;
}

/* Flèches et indicateurs cachés par défaut (desktop) */
.categories-arrow,
.categories-indicators {
    display: none;
}

/* Carrousel de catégories pour mobile */
@media (max-width: 768px) {
    .categories-carousel-wrapper {
        position: relative;
        padding-bottom: 2.5rem;
    }
    
    .categories-grid {
        display: flex;
        overflow-x: hidden;
        scroll-behavior: smooth;
        gap: 1rem;
        padding: 0 3rem;
    }
    
    .category-card {
        min-width: 70%;
        max-width: 70%;
        flex-shrink: 0;
        padding: 1.5rem 1rem;
        transition: opacity 0.3s ease;
    }
    
    .category-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .category-card h3 {
        font-size: 0.95rem;
    }
    
    /* Flèches de navigation */
    .categories-arrow {
        display: flex;
        position: absolute;
        top: 35%;
        transform: translateY(-50%);
        background: rgba(17, 24, 39, 0.9);
        border: 1px solid var(--border-color);
        color: var(--text-primary);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
    }
    
    .categories-arrow:hover {
        background: var(--accent-color);
        transform: translateY(-50%) scale(1.1);
    }
    
    .categories-arrow.prev {
        left: 0;
    }
    
    .categories-arrow.next {
        right: 0;
    }
    
    .categories-arrow:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }
    
    .categories-arrow:disabled:hover {
        transform: translateY(-50%);
        background: rgba(17, 24, 39, 0.9);
    }
    
    /* Indicateurs (points) */
    .categories-indicators {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 1rem;
        padding: 0.5rem 0;
    }
    
    .categories-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--border-color);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .categories-dot.active {
        background: var(--accent-color);
        width: 20px;
        border-radius: 3px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        padding: 0 2.5rem;
    }
    
    .category-card {
        min-width: 75%;
        max-width: 75%;
        padding: 1.25rem 0.75rem;
    }
    
    .category-icon {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .category-card h3 {
        font-size: 0.85rem;
    }
    
    .categories-arrow {
        width: 32px;
        height: 32px;
    }
}

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ===== STORES GRID ===== */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.store-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.store-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.store-image {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.store-details h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.store-rating {
    color: #FBBF24;
    margin-bottom: 1rem;
}

.store-info {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.store-info div {
    margin-bottom: 0.5rem;
}

.store-info i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--bg-primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: white;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }

       .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(17, 24, 39, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem 2rem;
        gap: 0;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu.active li:last-child {
        border-bottom: none;
    }
    
    .nav-menu.active a {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stores-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .search-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .search-btn {
        padding: 0.75rem;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .vendor-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* ===== STORES GRID - STRUCTURE ORIGINALE ===== */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.store-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.store-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.store-header {
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-hover));
    text-align: center;
}

.store-logo {
    width: 80px;
    height: 80px;
    background: var(--bg-primary);
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    margin: 0 auto 1rem;
}

.store-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.store-location {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.store-location i {
    color: var(--accent-color);
}

.store-info {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.store-hours,
.store-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.store-hours:last-child,
.store-contact:last-child {
    margin-bottom: 0;
}

.store-hours i,
.store-contact i {
    color: var(--accent-color);
    width: 16px;
    text-align: center;
}

.store-description {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.store-description p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

.store-actions {
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
}

.store-btn {
    flex: 1;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.store-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.store-btn-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.store-btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--text-primary);
    background: var(--bg-hover);
}

/* ===== PROMO CARDS SECTION - VERSION COMPACTE ===== */
.promo-cards-section {
    padding: 2rem 2rem 1rem;
    max-width: 1280px;
    margin: 0 auto;
}

.promo-cards-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.promo-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.promo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.promo-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.promo-card-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.promo-card:hover .promo-card-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.promo-card-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.promo-card:hover .promo-card-icon i {
    color: white;
}

.promo-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.promo-card-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Responsive pour les cartes promo */
/* Responsive pour les cartes promo */
@media (max-width: 768px) {
    .promo-cards-section {
        padding: 1rem 1rem 0.5rem;
    }

    .promo-cards-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }

    .promo-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .promo-card {
        padding: 1rem 0.5rem;
    }

    .promo-card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }

    .promo-card-icon i {
        font-size: 1.1rem;
    }

    .promo-card-title {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }

    .promo-card-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .promo-cards-title {
        font-size: 1rem;
    }

    .promo-card-icon {
        width: 35px;
        height: 35px;
    }

    .promo-card-icon i {
        font-size: 1rem;
    }

    .promo-card-title {
        font-size: 0.7rem;
    }

    .promo-card-text {
        font-size: 0.65rem;
    }
}