    /* Styles généraux */
    #boutique {
        padding: 80px 0;
        background: linear-gradient(135deg,rgb(35, 32, 37) 0%,rgb(47, 27, 59) 90%);
        position: relative;
        overflow: hidden;
    }
    
    #boutique::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('assets/images/pattern.png') repeat;
        opacity: 0.03;
        pointer-events: none;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        position: relative;
        z-index: 1;
    }
    
    /* En-tête de section */
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }
    
    .section-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, #3498db, #9b59b6);
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        color: #7f8c8d;
        margin-bottom: 25px;
    }
    
    .section-decoration {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }
    
    .deco-line {
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, #3498db, #9b59b6);
    }
    
    .deco-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #3498db, #9b59b6);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 15px;
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    }
    
    /* Filtres de produits */
    .products-filter {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        padding: 15px 20px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .filter-group {
        display: flex;
        align-items: center;
    }
    
    .filter-label {
        margin-right: 10px;
        font-weight: 500;
        color: #2c3e50;
    }
    
    .filter-select {
        padding: 8px 15px;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        background: white;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .filter-select:focus {
        outline: none;
        border-color: #3498db;
        box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    }
    
    .filter-count {
        color: #7f8c8d;
        font-size: 0.9rem;
    }
    
    /* Grille de produits */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }
    
    /* Carte de produit */
    .product-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        position: relative;
        opacity: 0;
        transform: translateY(20px);
    }
    
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    .product-card.show {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Badges */
    .featured-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: linear-gradient(135deg, #f39c12, #e67e22);
        color: white;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        z-index: 2;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }
    
    .featured-badge i {
        margin-right: 5px;
    }
    
    .discount-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: linear-gradient(135deg, #e74c3c, #c0392b);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        z-index: 2;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }
    
    /* Conteneur d'image */
    .product-image-container {
        position: relative;
        overflow: hidden;
        height: 250px;
    }
    
    .product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .product-card:hover .product-image {
        transform: scale(1.05);
    }
    
    .product-hover-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
    }
    
    .product-card:hover .product-hover-overlay {
        opacity: 1;
    }
    
    .quick-view-btn {
        background: white;
        color: #2c3e50;
        border: none;
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .quick-view-btn i {
        margin-right: 8px;
    }
    
    .quick-view-btn:hover {
        background: #3498db;
        color: white;
        transform: translateY(-2px);
    }
    
    /* Actions sur produit */
    .product-actions {
        position: absolute;
        bottom: 15px;
        right: 15px;
        display: flex;
        gap: 10px;
        z-index: 2;
    }
    
    .action-btn {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: white;
        border: none;
        color: #7f8c8d;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }
    
    .action-btn:hover {
        background: #3498db;
        color: white;
        transform: translateY(-3px);
    }
    
    .wishlist-btn:hover {
        background: #e74c3c;
    }
    
    .cart-btn:hover {
        background: #2ecc71;
    }
    
    .share-btn:hover {
        background: #9b59b6;
    }
    
    /* Contrôles admin */
    .admin-controls {
        position: absolute;
        top: 15px;
        right: 15px;
        display: flex;
        gap: 10px;
        z-index: 2;
    }
    
    .admin-btn {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        opacity: 0;
    }
    
    .product-card:hover .admin-btn {
        opacity: 1;
    }
    
    .edit-btn {
        background: #3498db;
        color: white;
    }
    
    .delete-btn {
        background: #e74c3c;
        color: white;
    }
    
    .feature-btn {
        background: #f39c12;
        color: white;
    }
    
    /* Info produit */
    .product-info {
        padding: 20px;
    }
    
    .product-category {
        font-size: 0.8rem;
        color: #3498db;
        margin-bottom: 5px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .product-title {
        font-size: 1.1rem;
        color: #2c3e50;
        margin-bottom: 10px;
        font-weight: 600;
        transition: color 0.3s ease;
    }
    
    .product-card:hover .product-title {
        color: #3498db;
    }
    
    .product-rating {
        color: #f39c12;
        margin-bottom: 15px;
        font-size: 0.9rem;
    }
    
    .product-rating .far {
        color: #ddd;
    }
    
    .rating-count {
        color: #95a5a6;
        font-size: 0.8rem;
        margin-left: 5px;
    }
    
    /* Pied de carte produit */
    .product-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
    }
    
    .price-container {
        display: flex;
        flex-direction: column;
    }
    
    .current-price {
        font-size: 1.2rem;
        font-weight: 700;
        color: #2c3e50;
    }
    
    .old-price {
        font-size: 0.9rem;
        text-decoration: line-through;
        color: #95a5a6;
    }
    
    .btn-order {
        background: linear-gradient(135deg, #3498db, #2980b9);
        color: white;
        border: none;
        padding: 8px 15px;
        border-radius: 30px;
        display: flex;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .btn-order:hover {
        background: linear-gradient(135deg, #2980b9, #3498db);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    }
    
    .btn-text {
        margin-right: 8px;
        font-size: 0.9rem;
    }
    
    .btn-icon {
        font-size: 0.8rem;
    }
    
    /* Pagination */
    .products-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-top: 40px;
    }
    
    .pagination-btn {
        background: white;
        border: 1px solid #e0e0e0;
        padding: 8px 20px;
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
    }
    
    .pagination-btn:hover {
        background: #3498db;
        color: white;
        border-color: #3498db;
    }
    
    .pagination-btn i {
        margin: 0 5px;
    }
    
    .page-numbers {
        display: flex;
        gap: 10px;
    }
    
    .page-number {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .page-number:hover {
        background: #f1f1f1;
    }
    
    .page-number.active {
        background: #3498db;
        color: white;
    }
    
    /* État vide */
    .no-products-container {
        text-align: center;
        padding: 60px 0;
    }
    
    .empty-state {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .empty-shop-img {
        max-width: 300px;
        margin-bottom: 30px;
    }
    
    .no-products-message {
        font-size: 1.2rem;
        color: #7f8c8d;
        margin-bottom: 25px;
    }
    
    .btn-add-product {
        background: linear-gradient(135deg, #2ecc71, #27ae60);
        color: white;
        border: none;
        padding: 12px 25px;
        border-radius: 30px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
    }
    
    .btn-add-product i {
        margin-right: 8px;
    }
    
    .btn-add-product:hover {
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
    }
    
    /* Modals */
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1000;
        overflow-y: auto;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .modal.show {
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
    }
    
    .modal-content {
        background: white;
        border-radius: 15px;
        width: 90%;
        max-width: 900px;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        animation: modalFadeIn 0.4s ease-out;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }
    
    .close-modal {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
        color: #7f8c8d;
        cursor: pointer;
        transition: color 0.3s ease;
        z-index: 1;
    }
    
    .close-modal:hover {
        color: #e74c3c;
    }
    
    /* Quick View Modal */
    .quick-view-container {
        display: flex;
        flex-direction: column;
    }
    
    @media (min-width: 992px) {
        .quick-view-container {
            flex-direction: row;
        }
    }
    
    .quick-view-gallery {
        flex: 1;
        padding: 30px;
    }
    
    .quick-view-details {
        flex: 1;
        padding: 30px;
        border-top: 1px solid #eee;
    }
    
    @media (min-width: 992px) {
        .quick-view-details {
            border-top: none;
            border-left: 1px solid #eee;
        }
    }
    
    .main-image {
        width: 100%;
        height: 400px;
        overflow: hidden;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    
    .main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .thumbnail-container {
        display: flex;
        gap: 10px;
    }
    
    .thumbnail {
        width: 70px;
        height: 70px;
        border-radius: 5px;
        overflow: hidden;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }
    
    .thumbnail:hover {
        border-color: #3498db;
    }
    
    .thumbnail.active {
        border-color: #3498db;
    }
    
    .thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .product-header {
        margin-bottom: 20px;
    }
    
    .product-meta {
        display: flex;
        gap: 15px;
        margin-top: 10px;
        font-size: 0.9rem;
        color: #7f8c8d;
    }
    
    .availability {
        color: #2ecc71;
        font-weight: 500;
    }
    
    .product-description {
        margin: 20px 0;
        line-height: 1.6;
        color: #34495e;
    }
    
    .product-options {
        margin: 25px 0;
    }
    
    .option-group {
        margin-bottom: 20px;
    }
    
    .option-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #2c3e50;
    }
    
    .size-options {
        display: flex;
        gap: 8px;
    }
    
    .size-option {
        width: 40px;
        height: 40px;
        border: 1px solid #ddd;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .size-option:hover {
        border-color: #3498db;
    }
    
    .size-option.active {
        background: #3498db;
        color: white;
        border-color: #3498db;
    }
    
    .color-options {
        display: flex;
        gap: 8px;
    }
    
    .color-option {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }
    
    .color-option:hover {
        transform: scale(1.1);
    }
    
    .color-option.active {
        border-color: #2c3e50;
        transform: scale(1.1);
    }
    
    .quantity-group {
        max-width: 150px;
    }
    
    .quantity-selector {
        display: flex;
        align-items: center;
        border: 1px solid #ddd;
        border-radius: 5px;
        overflow: hidden;
    }
    
    .quantity-btn {
        width: 35px;
        height: 35px;
        background: #f8f9fa;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .quantity-btn:hover {
        background: #e9ecef;
    }
    
    .quantity-input {
        width: 50px;
        height: 35px;
        border: none;
        text-align: center;
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }
    
    .quantity-input:focus {
        outline: none;
    }
    
    .product-actions {
        display: flex;
        gap: 15px;
        margin: 30px 0;
    }
    
    .btn-add-to-cart {
        flex: 2;
        background: linear-gradient(135deg, #74cee0, #845e25);
        color: white;
        border: none;
        padding: 12px;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-add-to-cart i {
        margin-right: 8px;
    }
    
    .btn-add-to-cart:hover {
        background: linear-gradient(135deg, #393c3e, #46427f);
        transform: translateY(-2px);
    }
    
    .btn-buy-now {
        flex: 1;
        background: linear-gradient(135deg, #2ecc71, #27ae60);
        color: white;
        border: none;
        padding: 12px;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn-buy-now i {
        margin-right: 8px;
    }
    
    .btn-buy-now:hover {
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        transform: translateY(-2px);
    }
    
    .product-meta-footer {
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    
    .meta-item {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        color: #7f8c8d;
        font-size: 0.9rem;
    }
    
    .meta-item i {
        margin-right: 10px;
        color: #3498db;
    }
    
    /* Add to Cart Modal */
    .add-to-cart-container {
        padding: 40px;
        text-align: center;
    }
    
    .success-icon {
        font-size: 4rem;
        color: #2ecc71;
        margin-bottom: 20px;
    }
    
    .product-added {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin: 30px 0;
        padding: 20px;
        background: #f9f9f9;
        border-radius: 10px;
    }
    
    .product-added img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 5px;
    }
    
    .product-info h4 {
        margin-bottom: 5px;
        color: #2c3e50;
    }
    
    .price {
        font-weight: 700;
        color: #e74c3c;
        margin-bottom: 5px;
    }
    
    .selected-options {
        font-size: 0.8rem;
        color: #7f8c8d;
    }
    
    .button-group {
        display: flex;
        gap: 15px;
        justify-content: center;
    }
    
    .btn-continue-shopping {
        background: white;
        border: 1px solid #3498db;
        color: #3498db;
        padding: 12px 25px;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .btn-continue-shopping:hover {
        background: #f8f9fa;
    }
    
    .btn-view-cart {
        background: #3498db;
        border: 1px solid #3498db;
        color: white;
        padding: 12px 25px;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .btn-view-cart:hover {
        background: #2980b9;
    }
    
    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes modalFadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
        100% {
            transform: scale(1);
        }
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .products-filter {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }
        
        .quick-view-container {
            flex-direction: column;
        }
        
        .quick-view-details {
            border-left: none;
            border-top: 1px solid #eee;
        }
        
        .product-actions {
            flex-direction: column;
        }
        
        .button-group {
            flex-direction: column;
        }
    }


    @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #333;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
    display: flex;
    align-items: center;
}

.notification i {
    margin-right: 10px;
}


/* Styles pour l'aperçu rapide et le zoom */
.main-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    cursor: zoom-in;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Réduire la taille des images dans la grille */
.product-image {
    width: 100%;
    height: 200px; /* Taille réduite */
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Conteneur d'image ajusté */
.product-image-container {
    position: relative;
    overflow: hidden;
    height: 200px; /* Ajusté pour la nouvelle taille */
}

/* Styles pour les actions sur produit */
.product-actions {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.action-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 12px;
}

.action-btn:hover {
    transform: scale(1.1);
    background: #3498db;
    color: white;
}