   /* Product Detail */
        .product-detail-page {
            max-width: 1400px;
            margin: 100px auto 50px;
            padding: 0 20px;
        }
        
        .breadcrumb {
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: #777;
        }
        
        .breadcrumb a {
            color: var(--accent-purple);
            text-decoration: none;
        }
        
        .breadcrumb span {
            margin: 0 8px;
        }
        
        .product-container {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            margin-top: 75px;
        }
        
        .product-gallery {
            flex: 1;
            min-width: 300px;
        }
        
        .main-image {
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #f8f4f4;
            border-radius: var(--border-radius);
            overflow: hidden;
            margin-bottom: 20px;
            position: relative;
        }
        
        .thumbnails {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }
        
        .thumbnail {
            height: 150px;
            background: #f8f4f4;
            border-radius: 10px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            transition: all var(--transition-speed);
        }
        
        .thumbnail:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        
        .thumbnail.active {
            border: 2px solid var(--accent-purple);
        }
        
        .product-single-info {
            flex: 1;
            height: initial;
            min-width: 300px;
        }
        .DescriptionProduct p {
            white-space: pre-line;
        }
        img#main-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        .product-header {
            border-bottom: 1px solid #eee;
        }
        
        .product-title {
            font-size: 2.2rem;
            margin-bottom: 10px;
        }
        
        .product-rating {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .product-price-container {
            display: flex;
            align-items: center;
        }
        
        .current-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-purple);
            margin-right: 15px;
        }
        
        .old-price {
            font-size: 1.3rem;
            color: #999;
            text-decoration: line-through;
        }
        
        .product-description {
            margin: 30px 0;
            line-height: 1.8;
        }
        
        .product-specs {
            margin: 25px 0;
        }
        
        .spec-item {
            display: flex;
            margin-bottom: 12px;
        }
        
        .spec-label {
            font-weight: 500;
            min-width: 150px;
            color: #666;
        }
        
        .add-to-cart-container {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .quantity-selector {
            display: flex;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
        }
        
        .quantity-btn {
            width: 45px;
            height: 45px;
            background: none;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
        }
        
        .quantity-input {
            width: 60px;
            height: 45px;
            text-align: center;
            border: none;
            font-size: 1.1rem;
            border-left: 1px solid #ddd;
            border-right: 1px solid #ddd;
        }
        
        .add-to-cart-btn {
            flex: 1;
            padding: 0 30px;
            background: var(--primary-gradient);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 500;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all var(--transition-speed);
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .add-to-cart-btn i {
            margin-right: 10px;
        }
        
        .add-to-cart-btn:hover {
            opacity: 0.9;
            transform: translateY(-3px);
        }
        
        .product-actions {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }
        
        .action-btn {
            display: flex;
            align-items: center;
            background: none;
            border: none;
            color: #666;
            cursor: pointer;
            transition: color var(--transition-speed);
        }
        
        .action-btn i {
            margin-right: 8px;
        }
        
        .action-btn:hover {
            color: var(--accent-purple);
        }
        
        /* Related Products */
       .related-products {
            margin-top: 80px;
            padding: 40px;
        }
        
        .section-title {
            font-size: 1.8rem;
            color: var(--accent-purple);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform var(--transition-speed);
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent-pink);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            z-index: 2;
        }
        
        .product-image {
            height: 200px;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0px;
            background: linear-gradient(to bottom, #f8f4f4, #ffffff);
        }
        
        .product-info-card {
            padding: 20px;
            border-top: 1px solid #eee;
        }
        
        .product-info-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        .product-rating-card {
            color: #ffc107;
        }
        
        .product-price-card {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .current-price-card {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent-purple);
            margin-right: 10px;
        }
        
        .old-price-card {
            font-size: 1rem;
            color: #999;
            text-decoration: line-through;
        }
        
        .add-to-cart-card {
            width: 100%;
            padding: 12px;
            background: var(--primary-gradient);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition-speed);
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .add-to-cart-card i {
            margin-right: 8px;
        }
        
        .add-to-cart-card:hover {
            opacity: 0.9;
            transform: translateY(-3px);
        }
        
        /* Loading placeholders */
        @keyframes loadingShimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }
        
        .loading-placeholder {
            background: #f0f0f0;
            background-image: linear-gradient(
                90deg,
                rgba(255, 255, 255, 0) 0,
                rgba(255, 255, 255, 0.2) 20%,
                rgba(255, 255, 255, 0.5) 60%,
                rgba(255, 255, 255, 0)
            );
            background-size: 200% 100%;
            animation: loadingShimmer 3.5s infinite;
            border-radius: 8px;
        }
        
        .loading-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 70vh;
        }
        
        .loading-spinner {
            width: 60px;
            height: 60px;
            border: 5px solid rgba(161, 140, 209, 0.2);
            border-top: 5px solid var(--accent-purple);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 20px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .loading-text {
            font-size: 1.2rem;
            color: var(--accent-purple);
            font-weight: 500;
        }
        
        .loading-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
        }
        
        .loading-image {
            width: 45%;
            height: 500px;
            background: #f0f0f0;
            border-radius: var(--border-radius);
        }
        
        .loading-info {
            width: 45%;
        }
        
        .loading-title {
            height: 40px;
            width: 70%;
            margin-bottom: 20px;
        }
        
        .loading-price {
            height: 30px;
            width: 40%;
            margin-bottom: 30px;
        }
        
        .loading-description {
            height: 20px;
            margin-bottom: 15px;
        }
        
        .loading-description:nth-child(1) { width: 100%; }
        .loading-description:nth-child(2) { width: 95%; }
        .loading-description:nth-child(3) { width: 90%; }
        .loading-description:nth-child(4) { width: 85%; }
        .loading-description:nth-child(5) { width: 80%; }
        
        .loading-spec {
            height: 20px;
            margin-bottom: 10px;
            width: 60%;
        }
        
        .loading-actions {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }
        
        .loading-quantity {
            height: 50px;
            width: 150px;
        }
        
        .loading-cart {
            height: 50px;
            width: 200px;
        }
        
        /* Footer */
        footer {
            background: #2a2a2a;
            color: white;
            padding: 70px 5% 30px;
            margin-top: 100px;
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-about p {
            margin-bottom: 20px;
            color: #bbb;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #444;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background var(--transition-speed);
        }
        
        .social-icon:hover {
            background: var(--accent-pink);
        }
        
        .footer-links h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
        }
        
        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent-pink);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 12px;
        }
        
        .footer-links ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color var(--transition-speed);
        }
        
        .footer-links ul li a:hover {
            color: var(--accent-pink);
        }
        
        .footer-contact p {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #bbb;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--accent-pink);
            min-width: 20px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 50px;
            border-top: 1px solid #444;
            color: #bbb;
            font-size: 0.9rem;
        }
        div#product-rating.loading {
            width: 25%;
        }
        div#current-price.loading , div#old-price.loading{
            width: 20%;
        }
        p.product-title.loading.loading-placeholder {
            height: 21px;
            margin-bottom: 10px;
            width: 100%;
        }
        button.add-to-cart-btn.loading.loading-placeholder {
            height: 60px;
        }
        .quantity-selector.loading.loading-placeholder {
            width: 30%;
            height: 80%;
        }
        /* Finaliser la commande */
        .Padding-20 {
            padding: 40px;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border-top: 3px solid var(--accent-purple);
        }

        .Padding-20 .huh {
            display: block;
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f0f0;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--accent-purple);
            position: relative;
        }

        .Padding-20 .huh::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 3px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }

        .ContainerInput {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
            max-width: 800px;
            margin: 0 auto;
        }

        .ContainerInput label {
            font-weight: 600;
            color: #555;
            display: block;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        .ContainerInput input {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: all var(--transition-speed);
        }

        .ContainerInput input:focus {
            border-color: var(--accent-purple);
            box-shadow: 0 0 0 3px rgba(161, 140, 209, 0.2);
            outline: none;
        }

        .ContainerBtnProduct {
            margin-top: 40px;
            text-align: center;
        }

        .ContainerBtnProduct.active {
            pointer-events: all;
            opacity: 1;
        }

        .btn-pricing {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 40px;
            background: var(--primary-gradient);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all var(--transition-speed);
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .btn-pricing:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 154, 158, 0.3);
        }

        .text-btn {
            position: relative;
            z-index: 2;
        }
        .close-filters,.filter-toggle-btn{
            display: none;
        }
        /* Loader animation */
        .loader {
            display: none;
            width: 24px;
            height: 24px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top: 3px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-left: 12px;
        }
            .pagination-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 20px;
            }

            .pagination-button {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #f5f5f5;
            color: #555;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-weight: bold;
            transition: 0.3s;
            border: none;
            }

            .pagination-button:hover {
            background-color: #e0e0e0;
            }

            .pagination-button.active {
            background-color: #a384e3;
            color: white;
            }
            div#container_brand {
                margin-top: 6rem;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                width: 100%;
            }
            .brand-card{
               cursor: pointer;
            }
            .container_img {
                width: 120px;
                cursor: pointer;
                height: 120px;
                overflow: hidden;
                border-radius: 50%;
            }
            .container_img img {
                object-fit: cover;
                width: 100%;
                height: 100%;
            }
            span.mini-title {
                color: black;
                display: block;
                font-weight: inherit;
                line-height: 45px;
                white-space: nowrap;
                width: 100%;
                overflow: hidden;
                text-overflow: ellipsis;
                font-size: 20px;
                text-align: center;
            }
            .container_img.loading.loading-placeholder {
                width: 100px;
                height: 100px;
                border-radius: 50%;
            }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .Padding-20 {
                padding: 30px 20px;
            }
            
            .Padding-20 .huh {
                font-size: 1.5rem;
            }
            
            .btn-pricing {
                width: 100%;
                padding: 15px;
            }
        }
        /* Responsive */
        @media (max-width: 992px) {
           .product-container {
                flex-direction: column;
                padding: 15px;
                gap: 14px;
            }
            .thumbnail {
                height: 100px;
            }
            .product-image {
                height: 300px;
            }
            .related-products {
                margin-top: 0px;
                padding: 15px;
            }
            .thumbnails {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 5px;
            }        
            .product-gallery, .product-info {
                width: 100%;
            }
            
            .loading-gallery {
                flex-direction: column;
            }
            
            .loading-image, .loading-info {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            
            .close-filters,.filter-toggle-btn{
                display: inline-block;
            }
            .add-to-cart-container {
                flex-direction: column;
            }
            
            .quantity-selector {
                width: 100%;
                justify-content: center;
            }
            
            .main-image {
                height: 350px;
            }
            
            .product-title {
                font-size: 1.3rem;
            }
        }