.boutique-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--white) !important;
  }
  
  .navbar-collapse .nav-link,
  .navbar-collapse .dropdown-item {
    color: var(--dark-text) !important;
  }
}
/* Style des cartes produits */
.product-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Style du carrousel */
.carousel {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    height: 200px;
}

.carousel-inner, .carousel-item {
    height: 100%;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/* Style du badge de catégorie */
.category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    font-size: 0.8rem;
    padding: 5px 10px;
}

/* Style de l'indicateur vidéo */
.video-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    z-index: 10;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.video-indicator:hover {
    background: rgba(0,0,0,0.9);
}

.video-indicator i {
    margin-right: 5px;
}

/* Style du corps de la carte */
.card-body {
    padding: 15px;
    flex-grow: 1;
}

.product-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2c3e50;
}

.product-description {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.product-meta {
    margin-top: auto;
}

.seller-info, .location {
    font-size: 0.85rem;
    color: #34495e;
    margin-bottom: 5px;
}

.seller-info i, .location i {
    margin-right: 5px;
    color: #3498db;
}

/* Style du pied de carte */
.card-footer {
    background: white !important;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 15px !important;
}

.price-tag {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
}

/* Style des actions produit */
.product-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Style amélioré du bouton WhatsApp */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-whatsapp i {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Effet de vague au survol */
.btn-whatsapp::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-whatsapp:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Style du bouton panier */
.btn-cart {
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-cart:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Style du champ quantité */
.quantity-input {
    width: 50px;
    text-align: center;
    border-radius: 50px;
    border: 1px solid #ddd;
    padding: 5px;
    margin-right: 5px;
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.lightbox-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-lightbox:hover {
    color: #ccc;
}

/* Modal vidéo */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
}

.video-modal-content video {
    width: 100%;
}

.close-video {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .btn-whatsapp {
        min-width: auto;
        padding: 8px 12px;
    }
    
    .btn-whatsapp span {
        display: none;
    }
    
    .btn-whatsapp i {
        margin-right: 0;
        font-size: 1.4rem;
    }
    
    .product-actions {
        gap: 5px;
    }
    
    .quantity-input {
        width: 40px;
    }
}
.btn-cart {
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.btn-cart:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Styles pour le carrousel et les médias */
.carousel {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    height: 200px;
}

.carousel-inner, .carousel-item {
    height: 100%;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.video-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    z-index: 10;
}

.video-indicator:hover {
    background: rgba(0,0,0,0.9);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.lightbox-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 5px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

/* Modal vidéo */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
}

.video-modal-content video {
    width: 100%;
}

.close-video {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* Autres styles */
.product-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.price-tag {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .btn-whatsapp {
        min-width: auto;
        padding: 8px 12px;
    }
    
    .btn-whatsapp span {
        display: none;
    }
}

/* Alertes fixes */
.fixed-alert {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}