/* Styles pour le site AOTL Cyclisme */

:root {
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-color: #94a3b8;
    --text-color: #334155;
    --light-text: #ffffff;
    --border-radius: 12px;
    --box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
    padding-top: 80px; /* Espace pour le header fixe */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* HEADER AVEC INFOS UTILISATEUR DANS LE MENU - Remplacer la section header dans style.css */

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    flex-shrink: 0;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 25px;
    order: 1;
}

/* Wrapper de navigation */
.nav-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-between;
    order: 2;
}

/* Menu navigation avec utilisateur intégré */
nav#nav-menu {
    order: 1;
    margin-right: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2px;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
    font-size: 0.9rem;
}

nav ul li a:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-2px);
}

nav ul li a.active {
    background-color: var(--primary-color);
    color: var(--light-text);
}

/* Élément utilisateur dans le menu */
.user-menu-item {
    margin-left: 15px; /* Séparation avec le dernier menu */
    padding-left: 15px;
    border-left: 1px solid rgba(0, 0, 0, 0.1); /* Séparateur visuel */
}

/* Conteneur des infos utilisateur inline */
.user-details-inline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 4px 8px;
}

.user-name {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.2;
    white-space: nowrap;
}

.logout-link {
    color: #ef4444;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 2px 4px;
    border-radius: 3px;
    transition: all 0.3s ease;
    line-height: 1;
    white-space: nowrap;
}

.logout-link:hover {
    color: #dc2626;
    background: rgba(239, 68, 68, 0.1);
    text-decoration: none;
}

/* Sous-menus */
nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    min-width: 200px;
    padding: 10px 0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    animation: fadeIn 0.3s ease;
}

nav ul li:hover > ul {
    display: block;
}

nav ul li ul li {
    width: 100%;
}

nav ul li ul li a {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Section auth simplifiée - seulement paniers */
.auth-section {
    display: flex;
    align-items: center;
    gap: 8px;
    order: 2;
}

/* Paniers */
.cart-container {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 8px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
    position: relative;
    transition: all 0.3s ease;
    min-width: 70px;
    justify-content: center;
}

.cart-link:hover {
    transform: translateY(-1px);
    text-decoration: none;
    color: white;
}

.cart-link.cotisations {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.cart-link.cotisations:hover {
    background: rgba(34, 197, 94, 0.25);
    border-color: rgba(34, 197, 94, 0.6);
    color: #22c55e;
}

.cart-link.boutique {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #3b82f6;
}

.cart-link.boutique:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.6);
    color: #3b82f6;
}

.cart-icon {
    font-size: 0.85rem;
}

.cart-amount {
    font-weight: 600;
    font-size: 0.8rem;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cart-badge.cotisations {
    background: #22c55e;
}

.cart-badge.boutique {
    background: #3b82f6;
}

/* Login button */
.login-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
    font-size: 0.9rem;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    text-decoration: none;
    color: var(--light-text);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    order: 3;
    margin-left: 10px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-container {
        max-width: 100%;
        padding: 0 12px;
    }
    
    .logo {
        font-size: 1.5rem;
        margin-right: 20px;
    }
    
    nav ul {
        gap: 1px;
    }
    
    nav ul li a {
        padding: 5px 10px;
        font-size: 0.85rem;
    }
    
    .user-menu-item {
        margin-left: 10px;
        padding-left: 10px;
    }
    
    .user-name {
        font-size: 0.8rem;
    }
    
    .logout-link {
        font-size: 0.7rem;
    }
}

@media (max-width: 1024px) {
    .cart-amount {
        display: none;
    }
    
    .cart-link {
        min-width: 35px;
        padding: 5px;
    }
    
    .user-name {
        font-size: 0.75rem;
        max-width: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .logout-link {
        font-size: 0.65rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 8px;
    }
    
    .logo {
        font-size: 1.3rem;
        margin-right: 15px;
    }
    
    /* Menu mobile */
    nav#nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    
    nav#nav-menu.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    
    nav ul li a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        font-size: 0.9rem;
    }
    
    /* Infos utilisateur en mobile */
    .user-menu-item {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 2px solid var(--primary-color);
        margin-top: 10px;
        padding-top: 10px;
    }
    
    .user-details-inline {
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .user-name {
        font-size: 0.9rem;
        max-width: none;
    }
    
    .logout-link {
        font-size: 0.8rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .cart-container {
        gap: 4px;
    }
    
    .cart-link {
        padding: 4px;
        min-width: 30px;
    }
    
    .cart-icon {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }
    
    .user-name {
        font-size: 0.85rem;
    }
    
    .logout-link {
        font-size: 0.75rem;
    }
}

/* //////////////////////////////////////////Sous-menus /////////////////////////////////////////////////////////*/
nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    min-width: 200px;
    padding: 10px 0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    animation: fadeIn 0.3s ease;
}

nav ul li:hover > ul {
    display: block;
}

nav ul li ul li {
    width: 100%;
}

nav ul li ul li a {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Bouton hamburger pour mobile */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* Login button */
.login-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

/* Styles pour l'utilisateur connecté */
.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.user-name {
    font-weight: 600;
    color: var(--primary-color);
}

.logout-link {
    color: #ef4444;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.logout-link:hover {
    color: #dc2626;
    text-decoration: underline;
}

/* Styles pour le panier */
.cart-link {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.cart-link:hover {
    transform: translateY(-2px);
}

.cart-icon {
    font-size: 1.2rem;
    margin-right: 5px;
}

.cart-amount {
    background: var(--primary-color);
    color: white;
    padding: 3px 8px;
    border-radius: 50px;
    font-size: 0.85rem;
}

/* Overlay pour mobile */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 900;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay.active {
    display: block;
    opacity: 1;
}

/* Main Content */
.main-content {
    padding-bottom: 80px;
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/img/theo.png');
    background-position: center top;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    position: relative;
    margin-top: -80px; /* Annuler le padding du header */
    padding-top: 80px; /* Remettre l'espace du header */
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Sections */
section {
    padding: 80px 0;
}

/* News Section */
.news-section {
    background-color: var(--light-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.news-img-container {
    height: 200px;
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-img {
    transform: scale(1.1);
}

.news-content {
    padding: 20px;
}

.news-date {
    color: var(--gray-color);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.news-excerpt {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.news-link:hover {
    color: var(--secondary-color);
}

.news-link::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.news-link:hover::after {
    transform: translateX(5px);
}

.news-more, .events-more, .gallery-more, .partners-more {
    text-align: center;
}

/* About Section */
.about-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.05));
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
}

.about-image {
    position: relative;
}

.rounded-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Events Section */
.events-section {
    background-color: white;
}

.events-timeline {
    max-width: 800px;
    margin: 0 auto 40px;
}

.event-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.event-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.event-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.event-content {
    flex-grow: 1;
}

.event-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.event-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--gray-color);
    font-size: 0.95rem;
}

.event-date, .event-location {
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.event-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Gallery Section */
.gallery-section {
    background-color: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    transition: var(--transition);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
    font-size: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    padding: 100px 0;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-item {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-content {
    background: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 6rem;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: serif;
}

.testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-name {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.testimonial-role {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.testimonial-prev, .testimonial-next {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-prev:hover, .testimonial-next:hover {
    background: var(--primary-color);
    color: white;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Partners Section */
.partners-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.partners-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.partner-item {
    max-width: 180px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
    transform: scale(0.9);
}

.partner-item:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1);
}

.partner-logo {
    width: 100%;
    height: auto;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0;
}

.newsletter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.newsletter-content {
    flex: 1;
    min-width: 300px;
}

.newsletter-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.newsletter-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    display: flex;
    max-width: 500px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.form-control {
    flex-grow: 1;
    padding: 15px 20px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    background: white;
    color: var(--primary-color);
    padding: 15px 30px;
}

.newsletter-form .btn:hover {
    background: var(--accent-color);
    color: white;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;  /* Ajoutez cette ligne */
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.footer-slogan {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-address, .footer-contact {
    margin-bottom: 20px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-list a:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.hours-table {
    font-size: 0.95rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.hours-day {
    font-weight: 600;
}

.hours-time {
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styles pour le panier */
.cart-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    margin: 0 15px;
    position: relative;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cart-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.cart-icon {
    font-size: 1.2rem;
    margin-right: 5px;
    color: var(--primary-color);
}

.cart-amount {
    font-weight: 600;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ef4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

