/* Styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-family: 'Lato', sans-serif;
    
}

body {
    background-color: #f5f5f5;
    color: #333;
    padding-bottom: 60px; /* Espace pour la barre mobile */
      font-family: 'Lato', sans-serif;
}

/* Header et navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    
}

.top-bar {
    background-color: #000;
    color: #fff;
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.navbar {

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    font-family: 'Playfair Display', serif;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

.logo a {
    padding-left: 190px;
}


.logo span {
    color: #ffd700;
}
.logo h6 {
    font-size: 12px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    padding-left: 30px;
    font-family: 'Arial', sans-serif;
}

.desktop-nav {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: #ffd700;
}

.nav-icons {
    display: flex;
    gap: 20px;
}

.nav-icons a {
    color: #000;
    font-size: 18px;
    transition: color 0.3s;
}

.nav-icons a:hover {
    color: #ffd700;
}

/* Menu hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    width: 30px;
}
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
                z-index: 1001;
        position: relative;
    }
    
    .hero-content h1 {
        font-family: 'Playfair Display', serif;




  

    }
    
    .hero-content p {
        font-size: 18px;
        font-family: 'Lato', sans-serif;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 70px;
        right: 20px;
    }
    
    .mobile-bottom-bar {
        display: block;
    }
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #000;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: left 0.3s ease;
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.mobile-nav a:hover {
    color: #ffd700;
}

.mobile-nav a i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.menu-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-logo {
    font-size: 22px;
    font-weight: bold;
}

.close-menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Section principale */
.hero {
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
    url('test.jpg');
    
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 30px;
    margin-bottom: 20px;
    color: yellow;
}
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-subtitle {
    font-size: 10px;
    color: #666;
    font-weight: normal;
    letter-spacing: 1px;
    margin-top: 2px;
    line-height: 1;
    
}

.logo-img:hover {
    opacity: 0.8;
}
.logo-subtitle {
    font-size: 10px;
    color: #666;
    font-weight: normal;
    letter-spacing: 2px;
    margin-top: 2px;
    line-height: 1;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

/* Version mobile */
@media (max-width: 768px) {
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        padding-left: 274px;
        padding-top: 0px;
    }

    .logo-subtitle {
        position: relative;
        left: -143px;
        top: -35px;
        
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-subtitle {
        font-size: 9px;
    }
}

/* Version mobile */
@media (max-width: 768px) {
    .logo-img {
        height: 35px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.hero-content p {
    font-size: 15px;
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.5;
}

.btn {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #ffd700;

}

.btn:hover {
    background-color: #ffed4e;

}

/* Barre mobile fixe en bas */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 998;
    padding: 10px 0;
}

.mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    transition: color 0.3s;
}

.mobile-bottom-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.mobile-bottom-item:hover,
.mobile-bottom-item.active {
    color: #ffd700;
}

/* WhatsApp flottant */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}




/* Footer */
.main-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 8%;
    position: relative;
    top: 100px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.footer-section {
    width: 30%;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-left: 120px;
}

.pb-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 5px;
}

.slogan {
    font-size: 0.6em;
    text-align: left;
    line-height: 1.2;
    margin-top: 5px;
    opacity: 0.8;
}

.contact-list,
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li,
.footer-section li {
    margin-bottom: 8px;
    font-size: 0.9em;
}

.contact-list .icon {
    margin-right: 5px;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #999999;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8em;
    max-width: 1200px; 
    margin: 0 auto; 
}

.footer-bottom a{
    color: #c8a050;
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    padding: 10px;
    background-image: linear-gradient(180deg, #30c578, #25D366); 
    border: 3px solid #ffffff;
}

.whatsapp-icon:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-section {
        width: 100%;
        min-width: auto;
    }

    .quick-links, .categories {
        margin-top: 20px;
    }
}

/* Barre des réseaux sociaux - Mobile uniquement */
.social-bar {
    background-color: #000;
    color: white;
    padding: 8px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #333;
    display: none;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ccc;
}

@media (max-width: 768px) {
    .social-bar {
        display: flex;
    }
}

/* Header mobile spécifique */
.mobile-header {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 0;
}

.mobile-nav-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 12px;
}

.mobile-nav-icon i {
    font-size: 20px;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .header-section.right-section .icon-link:first-child {
        display: none;
    }
    
    .mobile-header {
        display: block;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .main-header {
        padding: 10px 15px;
    }
    
    .header-section.left-section {
        flex: 1;
    }
    
    .header-section.center-section {
        flex: 2;
        text-align: center;
    }
    
    .header-section.right-section {
        flex: 1;
        justify-content: flex-end;
    }
    
    .delivery-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .delivery-text {
        font-size: 10px;
    }
    
    .logo img {
        max-height: 120px;
        position: relative;
        left: -95px;
        width: 100px;
        height: 100px;
    }
    
    .nav-icons {
        gap: 10px;
    }
    
    .header-section.right-section {
        display: none !important;
    }
}

.full-width-line {
    width: 100%;
    border: 1px solid #ffd700;
    margin: 0;
    position: relative;
    top: 90px;
}


        /* Styles pour le panier */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 350px;
            height: 100vh;
            background-color: #fff;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .cart-sidebar.active {
            right: 0;
        }
        
        .cart-header {
            padding: 20px;
            background-color: #000;
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .cart-title {
            font-size: 18px;
            font-weight: bold;
            margin: 0;
        }
        
        .close-cart {
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
        }
        
        .cart-content {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }
        
        .cart-empty {
            text-align: center;
            padding: 40px 0;
            color: #777;
        }
        
        .cart-item {
            display: flex;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .cart-item-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .cart-item-details {
            flex: 1;
        }
        
        .cart-item-name {
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .cart-item-price {
            color: #777;
            margin-bottom: 10px;
        }
        
        .cart-item-quantity {
            display: flex;
            align-items: center;
        }
        
        .quantity-btn {
            width: 25px;
            height: 25px;
            border: 1px solid #ddd;
            background-color: #f9f9f9;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .quantity-input {
            width: 40px;
            height: 25px;
            text-align: center;
            border: 1px solid #ddd;
            border-left: none;
            border-right: none;
        }
        
        .cart-item-remove {
            background: none;
            border: none;
            color: #777;
            cursor: pointer;
            margin-left: 10px;
        }
        
        .cart-footer {
            padding: 20px;
            border-top: 1px solid #eee;
        }
        
        .cart-total {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .cart-checkout {
            width: 100%;
            padding: 12px;
            background-color: #000;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .cart-checkout:hover {
            background-color: #333;
        }
        
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #ffd700;
            color: #000;
            font-size: 12px;
            font-weight: bold;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .nav-icons {
            display: flex;
            gap: 20px;
            position: relative;
        }
        
        .nav-icons a {
            color: #000;
            font-size: 18px;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-icons a:hover {
            color: #ffd700;
        }
        
        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s;
        }
        
        .cart-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Responsive pour le panier */
        @media (max-width: 768px) {
            .cart-sidebar {
            width: 85%; /* Sur mobile, on peut garder une largeur plus grande */
            right: -85%;
            }
        }

        /* Barre mobile fixe en bas */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 8px 0;
    display: none;
}

.mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
}

.mobile-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 80px;
}

.mobile-bottom-item i {
    font-size: 18px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.mobile-bottom-item span {
    font-size: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-bottom-item.active {
    color: #000;
}

.mobile-bottom-item.active i {
    color: #ffd700;
}

.mobile-bottom-item:hover {
    color: #000;
    background-color: #f8f8f8;
}

.mobile-bottom-item:hover i {
    color: #ffd700;
}

/* Afficher seulement sur mobile */
@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: block;
    }
    
    body {
        padding-bottom: 70px;
    }
}

/* Version très petits mobiles */
@media (max-width: 480px) {
    .mobile-bottom-item {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .mobile-bottom-item i {
        font-size: 16px;
    }
    
    .mobile-bottom-item span {
        font-size: 9px;
    }
    
    body {
        padding-bottom: 65px;
    }
}















        /* Styles pour le panier */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -50%;
            width: 50%;
            height: 100vh;
            background-color: #fff;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .cart-sidebar.active {
            right: 0;
        }
        
        .cart-header {
            padding: 20px;
            background-color: #000;
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .cart-title {
            font-size: 18px;
            font-weight: bold;
            margin: 0;
        }
        
        .close-cart {
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
        }
        
        .cart-content {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }
        
        .cart-empty {
            text-align: center;
            padding: 40px 0;
            color: #777;
        }
        
        .cart-item {
            display: flex;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .cart-item-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .cart-item-details {
            flex: 1;
        }
        
        .cart-item-name {
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .cart-item-price {
            color: #777;
            margin-bottom: 10px;
        }
        
        .cart-item-quantity {
            display: flex;
            align-items: center;
        }
        
        .quantity-btn {
            width: 25px;
            height: 25px;
            border: 1px solid #ddd;
            background-color: #f9f9f9;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .quantity-input {
            width: 40px;
            height: 25px;
            text-align: center;
            border: 1px solid #ddd;
            border-left: none;
            border-right: none;
        }
        
        .cart-item-remove {
            background: none;
            border: none;
            color: #777;
            cursor: pointer;
            margin-left: 10px;
        }
        
        .cart-footer {
            padding: 20px;
            border-top: 1px solid #eee;
        }
        
        .cart-total {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .cart-checkout {
            width: 100%;
            padding: 12px;
            background-color: #000;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .cart-checkout:hover {
            background-color: #333;
        }
        
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #ffd700;
            color: #000;
            font-size: 12px;
            font-weight: bold;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .nav-icons {
            display: flex;
            gap: 20px;
            position: relative;
        }
        
        .nav-icons a {
            color: #000;
            font-size: 18px;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-icons a:hover {
            color: #ffd700;
        }
        
        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s;
        }
        
        .cart-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Styles pour la wishlist */
        .wishlist-sidebar {
            position: fixed;
            top: 0;
            right: -50%;
            width: 50%;
            height: 100vh;
            background-color: #fff;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .wishlist-sidebar.active {
            right: 0;
        }
        
        .wishlist-header {
            padding: 20px;
            background-color: #000;
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .wishlist-title {
            font-size: 18px;
            font-weight: bold;
            margin: 0;
        }
        
        .close-wishlist {
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
        }
        
        .wishlist-content {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }
        
        .wishlist-empty {
            text-align: center;
            padding: 40px 0;
            color: #777;
        }
        
        .wishlist-item {
            display: flex;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .wishlist-item-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .wishlist-item-details {
            flex: 1;
        }
        
        .wishlist-item-name {
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .wishlist-item-price {
            color: #777;
            margin-bottom: 10px;
        }
        
        .wishlist-item-actions {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        
        .wishlist-add-to-cart {
            padding: 8px 12px;
            background-color: #000;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 12px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .wishlist-add-to-cart:hover {
            background-color: #333;
        }
        
        .wishlist-item-remove {
            background: none;
            border: none;
            color: #777;
            cursor: pointer;
            font-size: 14px;
        }
        
        .wishlist-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #ff0000;
            color: #fff;
            font-size: 12px;
            font-weight: bold;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .wishlist-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s;
        }
        
        .wishlist-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Responsive pour le panier et la wishlist */
        @media (max-width: 768px) {
            .cart-sidebar,
            .wishlist-sidebar {
                width: 85%;
                right: -85%;
            }
        }
        
        @media (max-width: 480px) {
            .cart-sidebar,
            .wishlist-sidebar {
                width: 90%;
                right: -90%;
            }
        }

                /* Styles pour le panier */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -50%;
            width: 50%;
            height: 100vh;
            background-color: #fff;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .cart-sidebar.active {
            right: 0;
        }
        
        .cart-header {
            padding: 20px;
            background-color: #000;
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .cart-title {
            font-size: 18px;
            font-weight: bold;
            margin: 0;
        }
        
        .close-cart {
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
        }
        
        .cart-content {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }
        
        .cart-empty {
            text-align: center;
            padding: 40px 0;
            color: #777;
        }
        
        .cart-item {
            display: flex;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .cart-item-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .cart-item-details {
            flex: 1;
        }
        
        .cart-item-name {
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .cart-item-price {
            color: #777;
            margin-bottom: 10px;
        }
        
        .cart-item-quantity {
            display: flex;
            align-items: center;
        }
        
        .quantity-btn {
            width: 25px;
            height: 25px;
            border: 1px solid #ddd;
            background-color: #f9f9f9;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .quantity-input {
            width: 40px;
            height: 25px;
            text-align: center;
            border: 1px solid #ddd;
            border-left: none;
            border-right: none;
        }
        
        .cart-item-remove {
            background: none;
            border: none;
            color: #777;
            cursor: pointer;
            margin-left: 10px;
        }
        
        .cart-footer {
            padding: 20px;
            border-top: 1px solid #eee;
        }
        
        .cart-total {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .cart-checkout {
            width: 100%;
            padding: 12px;
            background-color: #000;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .cart-checkout:hover {
            background-color: #333;
        }
        
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #ffd700;
            color: #000;
            font-size: 12px;
            font-weight: bold;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .nav-icons {
            display: flex;
            gap: 20px;
            position: relative;
        }
        
        .nav-icons a {
            color: #000;
            font-size: 18px;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-icons a:hover {
            color: #ffd700;
        }
        
        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s;
        }
        
        .cart-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Styles pour la wishlist */
        .wishlist-sidebar {
            position: fixed;
            top: 0;
            right: -50%;
            width: 50%;
            height: 100vh;
            background-color: #fff;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 1001;
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .wishlist-sidebar.active {
            right: 0;
        }
        
        .wishlist-header {
            padding: 20px;
            background-color: #000;
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .wishlist-title {
            font-size: 18px;
            font-weight: bold;
            margin: 0;
        }
        
        .close-wishlist {
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
        }
        
        .wishlist-content {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }
        
        .wishlist-empty {
            text-align: center;
            padding: 40px 0;
            color: #777;
        }
        
        .wishlist-item {
            display: flex;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .wishlist-item-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .wishlist-item-details {
            flex: 1;
        }
        
        .wishlist-item-name {
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .wishlist-item-price {
            color: #777;
            margin-bottom: 10px;
        }
        
        .wishlist-item-actions {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        
        .wishlist-add-to-cart {
            padding: 8px 12px;
            background-color: #000;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 12px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .wishlist-add-to-cart:hover {
            background-color: #333;
        }
        
        .wishlist-item-remove {
            background: none;
            border: none;
            color: #777;
            cursor: pointer;
            font-size: 14px;
        }
        
        .wishlist-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #ff0000;
            color: #fff;
            font-size: 12px;
            font-weight: bold;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Styles pour les compteurs de la barre mobile */
        .mobile-bottom-item {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #000;
            font-size: 12px;
        }

        .mobile-bottom-count {
            position: absolute;
            top: -5px;
            right: 5px;
            background-color: #ff0000;
            color: #fff;
            font-size: 10px;
            font-weight: bold;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .mobile-bottom-count.cart {
            background-color: #ffd700;
            color: #000;
        }
        
        /* Responsive pour le panier et la wishlist */
        @media (max-width: 768px) {
            .cart-sidebar,
            .wishlist-sidebar {
                width: 85%;
                right: -85%;
            }
        }
        
        @media (max-width: 480px) {
            .cart-sidebar,
            .wishlist-sidebar {
                width: 90%;
                right: -90%;
            }
        }
        

    .cart-item {
        display: flex;
        align-items: center;
        padding: 15px;
        border-bottom: 1px solid #eee;
        gap: 12px;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 8px;
        border: 1px solid #eee;
    }

    .cart-item-details {
        flex: 1;
    }

    .cart-item-name {
        font-weight: 600;
        margin-bottom: 5px;
        font-size: 14px;
    }

    .cart-item-price {
        color: #d4af37;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .cart-item-quantity {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .quantity-btn {
        width: 25px;
        height: 25px;
        border: 1px solid #ddd;
        background: white;
        border-radius: 4px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .quantity-btn:hover {
        background: #f5f5f5;
    }

    .quantity {
        font-weight: 600;
        min-width: 20px;
        text-align: center;
    }

    .cart-item-remove {
        background: none;
        border: none;
        color: #ff4444;
        cursor: pointer;
        padding: 5px;
        border-radius: 4px;
    }

    .cart-item-remove:hover {
        background: #ffebee;
    }

    .cart-empty {
        text-align: center;
        padding: 40px 20px;
        color: #666;
    }

    .cart-empty i {
        font-size: 48px;
        margin-bottom: 15px;
        color: #ddd;
    }

    .cart-total {
        display: flex;
        justify-content: space-between;
        font-weight: 600;
        font-size: 18px;
        padding: 15px;
        border-top: 2px solid #eee;
    }

    .cart-checkout {
        width: 100%;
        padding: 15px;
        background: #d4af37;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        margin-top: 15px;
        transition: background 0.3s ease;
    }

    .cart-checkout:hover {
        background: #b8941f;
    }

    .cart-checkout:disabled {
        background: #ccc;
        cursor: not-allowed;
    }
