/* style.css - Black & White Theme with #34495E accent */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font system */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Inter:wght@400;500;600&display=swap');

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
}

/* ====================== */
/* HEADER & NAVIGATION */
/* ====================== */
header {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #f0f0f0;
}

nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 30px;
}

.logo-section {
    display: flex;
    align-items: center;
}

#logo-image {
    width: 100px;
    height: auto;
    transition: transform 0.3s ease;
}

#logo-image:hover {
    transform: scale(1.05);
}

/* Navigation Search Bar */
.nav-search {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 600px;
    width: 100%;
    justify-self: center;
    margin-bottom: 20px;
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 5px 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.2s ease;
}

.search-input-group:focus-within {
    border-color: #34495E;
    background: white;
}

#searchInput {
    flex: 1;
    border: none;
    padding: 12px 10px 12px 0;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    color: #000000;
    background: transparent;
    outline: none;
}

#searchInput::placeholder {
    color: #999;
}

.search-actions {
    display: flex;
    align-items: center;
}

.clear-search {
    background: transparent;
    border: none;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.2s ease;
    opacity: 0;
    visibility: hidden;
}

.clear-search.show {
    opacity: 1;
    visibility: visible;
}

.clear-search:hover {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

.search-divider {
    width: 1px;
    height: 20px;
    background: #e0e0e0;
    margin: 0 8px;
}

.search-btn {
    background: #34495E;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: #2C3E50;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 73, 94, 0.3);
}

/* Nav Menu - VISIBLE sur desktop */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    justify-self: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover {
    color: #34495E;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #34495E;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Wishlist, Cart, and Tracking Icons */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wishlist-icon, .cart-icon, .tracking-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    border: 1px solid #e0e0e0;
}

.wishlist-icon i, .cart-icon i, .tracking-icon i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.wishlist-count, .cart-count, .tracking-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #34495E;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    border: 2px solid #ffffff;
}

.wishlist-icon:hover {
    background: #ffebee;
    border-color: #ff4444;
    color: #ff4444;
}

.cart-icon:hover, .tracking-icon:hover {
    background: #ecf0f1;
    border-color: #34495E;
    color: #34495E;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: #34495E;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: #2C3E50;
}

/* ====================== */
/* BANNER SLIDER - FULL SCREEN */
/* ====================== */
.banner-section {
    width: 100%;
    margin: 30px 0;
    padding: 0;
    position: relative;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: 400px;
    width: 100%;
    margin: 0;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
    width: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slide-link {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    text-decoration: none;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.slide-link:hover .slide-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    text-align: center;
    padding: 40px;
    color: white;
    z-index: 2;
}

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dot.active {
    background: white;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: rgba(52, 73, 94, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}


/* ====================== */
/* CATEGORY CARDS - ENLARGED */
/* ====================== */
.category-links {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 5%;
}

.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: #000;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #34495E;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.category-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-card:hover {
    border-color: #34495E;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(52, 73, 94, 0.2);
}

.category-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.category-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease;
    margin-bottom: 25px;
}

.category-card:hover img.category-img {
    transform: scale(1.05);
}

.category-card h3 {
    font-size: 22px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    margin-top: 15px;
    font-weight: 600;
}

/* ====================== */
/* PRODUCT SHOWCASE */
/* ====================== */
.product-showcase {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 5%;
}

.product-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.product-scroll::-webkit-scrollbar {
    height: 6px;
}

.product-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.product-scroll::-webkit-scrollbar-thumb {
    background: #34495E;
    border-radius: 10px;
}

.product-card {
    min-width: 250px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.product-card:hover {
    border-color: #34495E;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(52, 73, 94, 0.15);
}

.product-image {
    width: 100%;
    height: 180px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

.product-price {
    color: #34495E;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

/* ====================== */
/* BRANDS SECTION */
/* ====================== */
.brands-section {
    background: #f8f9fa;
    padding: 60px 5%;
    margin: 60px 0;
}

.brands-grid {
    max-width: 1200px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.brand-logo {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo:hover {
    transform: scale(1.05);
    border-color: #34495E;
    box-shadow: 0 5px 15px rgba(52, 73, 94, 0.2);
}

.brand-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* ====================== */
/* WHY US SECTION */
/* ====================== */
.why-us {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 5%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.feature-box {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #34495E;
    transform: translateY(-5px);
}

.feature-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-main {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 60px;
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
    font-family: 'Roboto', sans-serif;
}

.feature-text p {
    font-size: 15px;
    color: #666;
    font-family: 'Roboto', sans-serif;
}

.feature-details {
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
    margin-top: 10px;
}

.feature-box:hover .feature-details {
    border-top-color: #34495E;
}

.feature-details-content {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    font-family: 'Roboto', sans-serif;
    padding-right: 5px;
}

/* ====================== */
/* CONTACT & SOCIAL SECTION */
/* ====================== */
.contact-social-section {
    background: #f8f9fa;
    padding: 60px 5%;
    margin: 60px 0 0;
}

.contact-social-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-social-container h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.contact-social-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #34495E;
}

/* Contact Info */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-item:hover {
    border-color: #34495E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 73, 94, 0.1);
}

.contact-item i {
    color: #34495E;
    font-size: 20px;
    margin-top: 3px;
    min-width: 24px;
}

.contact-label {
    font-size: 13px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.contact-value {
    font-size: 16px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

/* Social Media */
.social-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
}

.social-links-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link i {
    font-size: 22px;
    width: 30px;
    text-align: center;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
    border-color: transparent;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
    border-color: transparent;
}

.social-link.tiktok:hover {
    background: #000000;
    color: white;
    border-color: transparent;
}

.social-link span {
    font-weight: 500;
}

/* ====================== */
/* FOOTER */
/* ====================== */
footer {
    background: #333;
    color: #e0e0e0;
    padding: 50px 5% 30px;
    font-family: 'Roboto', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    margin-bottom: 25px;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #34495E;
}

/* Navigation Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: inline-block;
}

.footer-links a:hover {
    color: #34495E;
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #bbb;
    font-family: 'Roboto', sans-serif;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.legal-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #34495E;
}

.legal-links span {
    color: #666;
    font-size: 12px;
}

/* ====================== */
/* RESPONSIVE DESIGN */
/* ====================== */
@media (max-width: 1024px) {
    .contact-social-container {
        gap: 40px;
    }
    
    .features-grid {
        gap: 25px;
    }
    
    .feature-box {
        padding: 22px;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation - Menu at the right */
    nav {
        grid-template-columns: auto 1fr;
        gap: 15px;
        padding: 15px 3%;
    }
    
    .nav-search {
        grid-column: 1 / -1;
        grid-row: 2;
        order: 3;
        max-width: none;
    }
    
    /* Nav Menu - Show on mobile */
    
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 1;
    }
    
    .nav-right {
        order: 2;
        justify-self: end;
    }
    
    /* Contact & Social */
    .contact-social-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Why Us */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Slider */
    .slider-container {
        height: 300px;
    }
    
    .slide-content h2 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    /* Categories */
    .category-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ====================== */
/* PHONES PAGE STYLES */
/* ====================== */
.phones-page {
    padding: 40px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Layout avec filtres */
.phones-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 1024px) {
    .phones-container {
        grid-template-columns: 1fr;
    }
}

/* Products Grid */
.products-grid {
    flex: 1;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.page-title {
    font-size: 32px;
    color: #34495E;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.sort-options select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    min-width: 180px;
}

.sort-options select:focus {
    border-color: #34495E;
    outline: none;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

/* ====================== */
/* PRODUCT CARDS - HORIZONTAL LAYOUT */
/* ====================== */

/* Container des produits */
.products-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
}

/* Product Card - Layout horizontal */
.phone-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    overflow: visible;
    transition: all 0.3s ease;
    position: relative;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 15px;
    padding: 15px;
    min-height: 160px;
}

.phone-card:hover {
    border-color: #34495E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 73, 94, 0.15);
}

/* Image section */
.phone-image {
    position: relative;
    height: 130px;
    width: 140px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
}

.phone-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

/* Wishlist button - en haut à droite de l'image */
.wishlist-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ff4444;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.wishlist-btn:hover {
    background: #ffebee;
    transform: scale(1.1);
}

/* Info section */
.phone-info {
    padding: 5px 10px 5px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 130px;
}

/* Brand */
.phone-brand {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

/* Product name */
.phone-name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Masquer la qualité (nouveauté, etc.) */
.phone-quality {
    display: none;
}

/* Prix section */
.phone-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 10px;
}

.price-label {
    font-size: 12px;
    color: #999;
    font-family: 'Roboto', sans-serif;
}

.price-amount {
    font-size: 20px;
    font-weight: 700;
    color: #34495E;
    font-family: 'Roboto', sans-serif;
}

/* Button "Voir les détails" */
.view-details-btn {
    width: 100%;
    background: #34495E;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.view-details-btn:hover {
    background: #2C3E50;
}

/* ====================== */
/* RESPONSIVE - MOBILE */
/* ====================== */

@media (max-width: 768px) {
    .products-container {
        gap: 12px;
    }
    
    .phone-card {
        grid-template-columns: 120px 1fr;
        padding: 12px;
        gap: 12px;
        min-height: 140px;
    }
    
    .phone-image {
        height: 115px;
        width: 120px;
    }
    
    .phone-info {
        padding: 5px 5px 5px 0;
        min-height: 115px;
    }
    
    .phone-brand {
        font-size: 12px;
        margin-bottom: 3px;
    }
    
    .phone-name {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .price-label {
        font-size: 11px;
    }
    
    .price-amount {
        font-size: 18px;
    }
    
    .view-details-btn {
        padding: 9px 12px;
        font-size: 13px;
    }
    
    .wishlist-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
        top: 4px;
        right: 4px;
    }
}

@media (max-width: 480px) {
    .phone-card {
        grid-template-columns: 100px 1fr;
        padding: 10px;
        gap: 10px;
        min-height: 130px;
    }
    
    .phone-image {
        height: 110px;
        width: 100px;
    }
    
    .phone-info {
        min-height: 110px;
    }
    
    .phone-name {
        font-size: 14px;
    }
    
    .price-amount {
        font-size: 17px;
    }
}

/* ====================== */
/* DESKTOP - Garder une grille pour grands écrans */
/* ====================== */

@media (min-width: 769px) {
    .products-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .phone-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        padding: 0;
        gap: 0;
        min-height: auto;
    }
    
    .phone-image {
        width: 100%;
        height: 200px;
        border-radius: 12px 12px 0 0;
    }
    
    .phone-info {
        padding: 20px;
        min-height: auto;
    }
    
    .phone-brand {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .phone-name {
        font-size: 18px;
        margin-bottom: 8px;
        -webkit-line-clamp: 2;
    }
    
    .phone-price {
        margin-bottom: 15px;
    }
    
    .price-label {
        font-size: 14px;
    }
    
    .price-amount {
        font-size: 24px;
    }
    
    .view-details-btn {
        padding: 12px;
        font-size: 15px;
    }
    
    .wishlist-btn {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background: white;
    margin: 40px auto;
    max-width: 1000px;
    border-radius: 15px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #333;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    background: #f0f0f0;
    color: #ff4444;
}

.modal-body {
    padding: 40px;
}

/* Phone Details Styles */
.phone-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.phone-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    width: 100%;
    height: 300px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail.active {
    border-color: #34495E;
}

.thumbnail img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.phone-specs {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.phone-title {
    font-size: 32px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
}

.phone-modal-price {
    font-size: 28px;
    color: #34495E;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

/* Options Sections */
.options-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.options-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Roboto', sans-serif;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.option-btn {
    padding: 12px 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.option-btn.active {
    background: #34495E;
    color: white;
    border-color: #34495E;
}

.option-btn:hover:not(.active) {
    border-color: #34495E;
}

.option-price {
    display: block;
    font-size: 12px;
    color: #777;
    margin-top: 5px;
}

/* Colors Section */
.colors-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.color-option-large {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.color-option-large.active {
    border-color: #34495E;
}

.color-option-large:hover {
    transform: scale(1.1);
}

.color-name {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.color-option-large:hover .color-name {
    opacity: 1;
}

/* Accessories Section */
.accessories-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accessory-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.accessory-item i {
    color: #34495E;
    font-size: 18px;
}

/* Delivery Options */
.delivery-options {
    display: flex;
    gap: 15px;
}

.delivery-option {
    flex: 1;
    padding: 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.delivery-option.active {
    border-color: #34495E;
    background: #f8f9fa;
}

.delivery-price {
    display: block;
    font-size: 14px;
    color: #34495E;
    font-weight: 600;
    margin-top: 5px;
}

/* Final Price */
.final-price {
    background: #34495E;
    color: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-total {
    font-size: 24px;
    font-weight: 700;
}

.add-to-cart-btn {
    background: white;
    color: #34495E;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Responsive Design for Products Pages */
@media (max-width: 768px) {
    .phones-page {
        padding: 20px 3%;
    }
    
    .products-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .products-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .modal-content {
        margin: 20px;
        padding: 0;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .delivery-options {
        flex-direction: column;
    }
}

/* Breadcrumb Navigation */
.breadcrumb {
    padding: 15px 0;
    margin: 0 auto;
    max-width: 1200px;
    font-family: 'Inter', sans-serif;
}

.breadcrumb-links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.breadcrumb-links a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.breadcrumb-links a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #999;
}

.breadcrumb-current {
    color: #333;
    font-weight: 500;
}

/* Responsive breadcrumb */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 10px 15px;
    }
    
    .breadcrumb-links {
        font-size: 13px;
    }
}

/* ====================== */
/* UPDATED MODAL STYLES */
/* ====================== */
.phone-description-container {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-top: 10px;
}

.description-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    border-bottom: 2px solid #34495E;
    padding-bottom: 10px;
}

.phone-description {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
}

.phone-description::-webkit-scrollbar {
    width: 6px;
}

.phone-description::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.phone-description::-webkit-scrollbar-thumb {
    background: #34495E;
    border-radius: 10px;
}

.phone-modal-price {
    font-size: 24px;
    color: #34495E;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 15px;
}

.main-image {
    width: 100%;
    height: 250px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail.active {
    border-color: #34495E;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .phone-details {
        grid-template-columns: 1fr;
    }
    
    .phone-gallery {
        order: 1;
    }
    
    .phone-specs {
        order: 2;
    }
    
    .main-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .main-image {
        height: 200px;
    }
    
    .phone-title {
        font-size: 24px;
    }
    
    .phone-modal-price {
        font-size: 22px;
    }
    
    .phone-description-container {
        padding: 15px;
    }
    
    .description-title {
        font-size: 16px;
    }
    
    .phone-description {
        font-size: 14px;
        max-height: 150px;
    }
}

@media (max-width: 480px) {
    .main-image {
        height: 180px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .phone-title {
        font-size: 22px;
    }
    
    .phone-modal-price {
        font-size: 20px;
    }
    
    .phone-description {
        max-height: 120px;
    }
}

/* Styles spécifiques pour la page de suivi */
.tracking-page {
    padding: 40px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.tracking-header {
    margin-bottom: 40px;
}

.tracking-title {
    font-size: 32px;
    color: #34495E;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tracking-title i {
    color: #34495E;
    font-size: 36px;
}

.tracking-subtitle {
    color: #666;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 30px;
}

/* Form Section */
.track-form-section {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}

.track-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.order-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.order-input:focus {
    border-color: #34495E;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 73, 94, 0.1);
}

.track-button {
    background: #34495E;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.track-button:hover {
    background: #2C3E50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 73, 94, 0.2);
}

.order-help {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    border-left: 4px solid #34495E;
}

.order-help p {
    font-weight: 600;
    color: #34495E;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-help ul {
    list-style: none;
    padding-left: 30px;
}

.order-help li {
    margin-bottom: 8px;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.order-help li:before {
    content: "•";
    color: #34495E;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Result Section */
.result-section {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    display: none;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.order-id-display {
    font-size: 22px;
    font-weight: 600;
    color: #34495E;
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
}

.order-date {
    color: #666;
    font-size: 14px;
}

.order-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.summary-item h4 {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
}

.summary-item p {
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

/* Tracking Steps */
.tracking-steps-container {
    margin-top: 40px;
}

.steps-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}

.tracking-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.tracking-steps:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step.completed .step-icon {
    background: #27ae60;
}

.step.active .step-icon {
    background: #34495E;
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(52, 73, 94, 0.2);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.step-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.step-date {
    color: #34495E;
    font-size: 13px;
    font-weight: 600;
    background: #f0f7ff;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
}

/* No Result Message */
.no-result {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-result i {
    font-size: 64px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.no-result h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

/* Examples Section */
.examples-section {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
}

.examples-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.example-step {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.example-step h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #34495E;
    margin-bottom: 15px;
}

.example-step p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.example-id {
    background: #34495E;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-family: monospace;
    margin-top: 15px;
    font-size: 13px;
}

/* Responsive Design for Tracking Page */
@media (max-width: 768px) {
    .tracking-page {
        padding: 20px 3%;
    }

    .track-form-section,
    .result-section,
    .examples-section {
        padding: 25px;
    }

    .track-input-group {
        flex-direction: column;
    }

    .track-button {
        width: 100%;
        justify-content: center;
    }

    .result-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .order-summary {
        grid-template-columns: 1fr;
    }

    .tracking-steps:before {
        left: 15px;
    }

    .step {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .tracking-title {
        font-size: 24px;
    }

    .tracking-subtitle {
        font-size: 16px;
    }

    .form-title {
        font-size: 20px;
    }

    .examples-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Styles spécifiques pour la page panier */
.cart-page {
    padding: 40px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.cart-header {
    margin-bottom: 40px;
}

.cart-title {
    font-size: 32px;
    color: #34495E;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-title i {
    color: #34495E;
    font-size: 36px;
}

.cart-subtitle {
    color: #666;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

/* Cart Items Section */
.cart-items-section {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
}

.cart-section-header {
    padding: 25px 30px;
    background: #f8f9fa;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-section-title {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.clear-cart-btn {
    background: #ffebee;
    color: #e74c3c;
    border: 1px solid #ffcdd2;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.clear-cart-btn:hover {
    background: #ffcdd2;
}

/* Empty Cart */
.empty-cart {
    padding: 60px 40px;
    text-align: center;
}

.empty-cart-icon {
    font-size: 64px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.empty-cart h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.empty-cart p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.shop-now-btn {
    background: #34495E;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.shop-now-btn:hover {
    background: #2C3E50;
    transform: translateY(-2px);
}

/* Cart Items List */
.cart-items-list {
    padding: 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    padding: 25px 30px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item:hover {
    background: #fafafa;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.cart-item-details {
    padding-right: 20px;
}

.cart-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.cart-item-category {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-item-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.option-tag {
    background: #f0f7ff;
    color: #34495E;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-item-price {
    font-size: 20px;
    font-weight: 700;
    color: #34495E;
}

/* Item Actions */
.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.quantity-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: white;
    color: #34495E;
}

.quantity-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.item-total {
    font-size: 22px;
    font-weight: 700;
    color: #34495E;
    text-align: right;
}

.remove-item {
    background: #ffebee;
    color: #e74c3c;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.remove-item:hover {
    background: #ffcdd2;
    transform: scale(1.1);
}

/* Summary Section */
.summary-section {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.summary-title {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #34495E;
}

.summary-details {
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.summary-label {
    color: #666;
    font-size: 15px;
}

.summary-value {
    color: #333;
    font-weight: 500;
    font-size: 16px;
}

.summary-total {
    border-top: 2px solid #34495E;
    padding-top: 20px;
    margin-top: 20px;
}

.summary-total .summary-label {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.summary-total .summary-value {
    font-size: 24px;
    font-weight: 700;
    color: #34495E;
}

.checkout-btn {
    width: 100%;
    background: #34495E;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.checkout-btn:hover {
    background: #2C3E50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 73, 94, 0.2);
}

.checkout-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.payment-methods {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.payment-methods p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 24px;
    color: #666;
}

/* Delivery Options */
.delivery-options {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.delivery-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding: 12px 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delivery-option:hover {
    border-color: #34495E;
}

.delivery-option.selected {
    border-color: #34495E;
    background: #f0f7ff;
}

.delivery-option input[type="radio"] {
    display: none;
}

.delivery-checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-option.selected .delivery-checkmark {
    background: #34495E;
    border-color: #34495E;
}

.delivery-option.selected .delivery-checkmark::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.delivery-info {
    flex: 1;
}

.delivery-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.delivery-price {
    font-size: 14px;
    color: #34495E;
    font-weight: 600;
}

.delivery-time {
    font-size: 12px;
    color: #777;
}

/* Responsive Design for Cart Page */
@media (max-width: 1024px) {
    .cart-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .summary-section {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-page {
        padding: 20px 3%;
    }
    
    .cart-item {
        grid-template-columns: 100px 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .cart-item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-top: 15px;
        border-top: 1px solid #f0f0f0;
        margin-top: 15px;
    }
    
    .cart-item-image {
        width: 100px;
        height: 100px;
    }
    
    .cart-section-header {
        padding: 20px;
    }
    
    .summary-section {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .cart-title {
        font-size: 24px;
    }
    
    .cart-subtitle {
        font-size: 16px;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .cart-item-image {
        width: 100%;
        height: 150px;
        margin: 0 auto;
    }
    
    .cart-item-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .item-quantity {
        width: 100%;
        justify-content: center;
    }
    
    .item-total {
        text-align: center;
    }
}

/* Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideIn 0.3s ease forwards;
}

/* Styles spécifiques pour la page wishlist */
.wishlist-page {
    padding: 40px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.wishlist-header {
    margin-bottom: 40px;
    text-align: center;
}

.wishlist-title {
    font-size: 32px;
    color: #34495E;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.wishlist-title i {
    color: #e74c3c;
    font-size: 40px;
}

.wishlist-subtitle {
    color: #666;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
}

/* Wishlist Controls */
.wishlist-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
}

.clear-wishlist-btn {
    background: #ffebee;
    color: #e74c3c;
    border: 2px solid #ffcdd2;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.clear-wishlist-btn:hover {
    background: #ffcdd2;
    transform: translateY(-2px);
}

/* Empty Wishlist */
.empty-wishlist {
    text-align: center;
    padding: 80px 40px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 40px;
}

.empty-wishlist-icon {
    font-size: 72px;
    color: #ffcdd2;
    margin-bottom: 25px;
}

.empty-wishlist h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.empty-wishlist p {
    color: #666;
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.explore-btn {
    background: #34495E;
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.explore-btn:hover {
    background: #2C3E50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 73, 94, 0.2);
}

/* Wishlist Grid */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Product Card */
.wishlist-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.wishlist-card:hover {
    border-color: #e74c3c;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.1);
}

.wishlist-card-header {
    position: relative;
}

.product-image {
    width: 100%;
    height: 200px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.remove-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #e74c3c;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.remove-wishlist-btn:hover {
    background: #ffebee;
    transform: scale(1.1);
}

.wishlist-card-body {
    padding: 20px;
}

.product-category {
    font-size: 13px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 500;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    height: 50px;
    overflow: hidden;
}

.product-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    height: 60px;
    overflow: hidden;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #34495E;
    margin-bottom: 20px;
}

.card-actions {
    display: flex;
    gap: 10px;
}


/* Responsive Design for Wishlist Page */
@media (max-width: 1024px) {
    .wishlist-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .wishlist-page {
        padding: 20px 3%;
    }

    .wishlist-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .wishlist-title {
        font-size: 24px;
    }

    .wishlist-subtitle {
        font-size: 16px;
    }

    .wishlist-grid {
        grid-template-columns: 1fr;
    }

    .card-actions {
        flex-direction: column;
    }

    .empty-wishlist {
        padding: 40px 20px;
    }

    .empty-wishlist h2 {
        font-size: 22px;
    }
}

/* ===== STYLE SIMPLIFIÉ POUR CONDITIONS GÉNÉRALES ===== */
.legal-page {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Container principal */
.legal-container {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 20px;
}

/* Header avec logo */
.legal-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
}

.legal-logo {
    width: 200px;
    margin: 0 auto 20px;
}

.legal-logo img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.legal-title {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.legal-subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.legal-date {
    color: #7f8c8d;
    font-weight: 500;
    font-size: 1rem;
}

/* Table des matières */
.toc-container {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid #3498db;
}

.toc-title {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toc-title i {
    color: #3498db;
}

.toc-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
}

.toc-item {
    padding: 8px 0;
}

.toc-link {
    display: flex;
    align-items: center;
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s;
    padding: 5px 0;
}

.toc-link:hover {
    color: #3498db;
}

.toc-number {
    font-weight: bold;
    color: #3498db;
    margin-right: 8px;
    min-width: 25px;
}

/* Contenu principal */
.legal-content {
    margin-top: 30px;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ecf0f1;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.section-number {
    background: #3498db;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.section-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.section-content {
    color: #34495E;
}

.section-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.section-content ul, .section-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.section-content li {
    margin-bottom: 10px;
    padding-left: 5px;
}

/* Box importantes */
.highlight-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #3498db;
    margin: 25px 0;
    border-radius: 0 5px 5px 0;
}

.highlight-box strong {
    color: #2c3e50;
}

/* Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.timeline-step {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-top: 3px solid #3498db;
}

.step-number {
    background: #3498db;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.step-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-description {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Tableau des paiements */
.payment-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.payment-table th {
    background: #3498db;
    color: white;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.payment-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.payment-table tr:nth-child(even) {
    background: #f8f9fa;
}

.payment-table tr:hover {
    background: #e8f4fc;
}

/* Pied de page */
.legal-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.legal-footer p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.whatsapp-contact {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.whatsapp-contact:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 10px;
    }
    
    .legal-container {
        padding: 25px;
    }
    
    .legal-title {
        font-size: 1.8rem;
    }
    
    .toc-list {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        grid-template-columns: 1fr;
    }
    
    .payment-table {
        font-size: 0.9rem;
    }
    
    .payment-table th, 
    .payment-table td {
        padding: 10px;
    }
    
    .breadcrumb-links {
        padding: 0 25px;
    }
}

@media (max-width: 480px) {
    .legal-container {
        padding: 20px 15px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .legal-logo {
        width: 150px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 12px 3%;
    }
    
    #logo-image {
        width: 80px;
    }
    
    .mobile-menu-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .wishlist-icon, .cart-icon, .tracking-icon {
        width: 36px;
        height: 36px;
    }
    
    .wishlist-icon i, .cart-icon i, .tracking-icon i {
        font-size: 16px;
    }
    
    /* Slider */
    .slider-container {
        height: 250px;
    }
    
    .slide-content h2 {
        font-size: 22px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    /* Categories - Fixed for mobile */
    .category-links {
        padding: 0 3%;
    }
    
    .category-card {
        padding: 20px;
        min-height: auto;
    }
    
    .category-img {
        height: 200px;
        width: 100%;
        object-fit: contain;
        object-position: center;
        margin-bottom: 15px;
    }
    
    .category-card h3 {
        font-size: 18px;
    }
    
    /* Contact */
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-item i {
        margin-top: 0;
    }
    
    /* Social Links */
    .social-link {
        padding: 15px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    footer {
        padding: 40px 3% 25px;
    }
}

/* ====================== */
/* FIX 1: MENU MOBILE - Position à droite */
/* ====================== */
@media (max-width: 768px) {
    /* Nav Menu mobile - slide depuis la droite */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
        flex-direction: column;
        padding: 0;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        z-index: 9999;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        justify-content: flex-start;
        align-items: stretch;
    }
    
    .nav-menu.active {
        display: flex;
        right: 0;
    }
    
    /* Header du menu */
    .nav-menu::before {
        content: 'Menu';
        display: block;
        padding: 25px 20px;
        background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
        color: white;
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-align: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        margin-bottom: 10px;
    }
    
    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateX(30px);
        animation: slideInMenu 0.3s ease forwards;
        margin: 0;
        padding: 0;
    }
    
    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.25s; }
    
    @keyframes slideInMenu {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .nav-menu a {
        display: flex;
        align-items: center;
        padding: 18px 25px;
        margin: 0 15px 8px 15px;
        border-radius: 10px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        color: #333;
        font-size: 16px;
        font-weight: 500;
        border-bottom: none;
        text-align: left;
        justify-content: flex-start;
    }
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: #34495E;
        border-radius: 0 4px 4px 0;
        transition: height 0.3s ease;
    }
    
    .nav-menu a:hover::before,
    .nav-menu a.active::before {
        height: 70%;
    }
    
    .nav-menu a:hover {
        background: linear-gradient(to right, rgba(52, 73, 94, 0.1) 0%, transparent 100%);
        color: #34495E;
        transform: translateX(5px);
    }
    
    .nav-menu a.active {
        background: linear-gradient(to right, rgba(52, 73, 94, 0.15) 0%, transparent 100%);
        color: #34495E;
        font-weight: 600;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    /* Footer du menu mobile */
    .nav-menu::after {
        content: 'Moza Store © 2025';
        display: block;
        margin-top: auto;
        padding: 20px;
        text-align: center;
        color: #999;
        font-size: 12px;
        border-top: 1px solid #e0e0e0;
        margin-top: 20px;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Overlay pour menu mobile */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

body.menu-open {
    overflow: hidden;
}

/* ====================== */
/* FIX 2: BOUTON VIDER LA WISHLIST */
/* ====================== */
.wishlist-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
}

.clear-wishlist-btn {
    background: #ffebee;
    color: #e74c3c;
    border: 2px solid #ffcdd2;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 14px;
}

.clear-wishlist-btn:hover {
    background: #ffcdd2;
    transform: translateY(-2px);
}
/* Responsive Slider */
@media (max-width: 768px) {
    .slider-container {
        height: 300px;
    }
    
    .slide-content h2 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 250px;
    }
    
    .slide-content h2 {
        font-size: 22px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    .slide-content {
        padding: 20px;
    }
}
/* ========================================== */
/* BANNIÈRES RESPONSIVE - DESKTOP / MOBILE */
/* ========================================== */

/* Par défaut, afficher les bannières desktop */
.desktop-banner {
    display: block;
}

.mobile-banner {
    display: none;
}

/* Sur mobile (moins de 768px), afficher les bannières mobile */
@media (max-width: 768px) {
    .desktop-banner {
        display: none;
    }
    
    .mobile-banner {
        display: block;
    }
    
    .slider-container {
        height: 200px;
    }
}

/* Sur très petit mobile (moins de 480px) */
@media (max-width: 480px) {
    .slider-container {
        height: 180px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .slider-arrow.prev {
        left: 5px;
    }
    
    .slider-arrow.next {
        right: 5px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
}