        :root {
            --primary-red: #e31837; /* Rouge Perfect House */
            --dark-bg: #1a1a1a;
            --text-dark: #222222;
            --text-gray: #666666;
            --light-gray: #f8f9fa;
            --border-color: #e5e5e5;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Top Bar */
        .top-bar {
            background-color: var(--dark-bg);
            color: white;
            font-size: 0.85rem;
            padding: 8px 0;
        }
        .top-bar a {
            color: white;
            transition: color 0.3s ease;
        }
        .top-bar a:hover {
            color: var(--primary-red);
        }

        /* Header */
        .main-header {
            padding: 20px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .logo-text {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary-red);
            line-height: 1.1;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-text img{
            max-height: 50px;
        }
        .logo-subtext {
            font-size: 0.75rem;
            color: var(--text-gray);
            font-weight: 400;
        }
        .logo-icon {
            font-size: 2rem;
        }
        
        /* Search Bar */
        .search-bar .form-control {
            border-radius: 4px 0 0 4px;
            border: 1px solid var(--border-color);
            padding: 10px 15px;
        }
        .search-bar .btn {
            background-color: var(--primary-red);
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            padding: 10px 20px;
        }

        /* Header Icons */
        .header-action {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .action-item {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            position: relative;
        }
        .action-item i {
            font-size: 1.5rem;
            color: var(--text-dark);
        }
        .action-item .badge-count {
            position: absolute;
            top: -5px;
            left: 15px;
            background-color: var(--primary-red);
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 0.7rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Navigation */
        .main-nav {
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 0.9rem;
        }
        .nav-list li a {
            text-transform: uppercase;
            padding: 10px;
        }
        .nav-list li a:hover {
            color: var(--primary-red);
        }
        .nav-list .all-products-btn {
            background-color: #e9ecef;
            border-radius: 20px;
            padding: 8px 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .text-promo {
            color: var(--primary-red) !important;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            background: url('https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
            height: 550px;
            display: flex;
            align-items: center;
            color: white;
        }
        .hero-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
        }
        .hero-badge {
            background-color: var(--primary-red);
            display: inline-block;
            padding: 4px 12px;
            font-size: 0.8rem;
            font-weight: bold;
            border-radius: 4px;
            margin-bottom: 20px;
        }
        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        .hero-title span {
            color: var(--primary-red);
        }
        .hero-text {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: #ddd;
        }
        .btn-red {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 4px;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .btn-red:hover {
            background-color: #c0142b;
            color: white;
        }
        .btn-outline-white {
            border: 1px solid white;
            color: white;
            padding: 12px 24px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-outline-white:hover {
            background-color: white;
            color: black;
        }
        .hero-quote-card {
            background: white;
            color: var(--text-dark);
            padding: 25px;
            border-radius: 8px;
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            z-index: 2;
            width: 300px;
        }
        .hero-quote-card h4 {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        .hero-quote-card a {
            color: var(--primary-red);
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Features Bar */
        .features-bar {
            background-color: rgba(20, 20, 20, 0.9);
            color: white;
            padding: 20px 0;
            position: absolute;
            bottom: 0;
            width: 100%;
            z-index: 2;
        }
        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .feature-item i {
            font-size: 1.5rem;
        }
        .feature-item div p {
            margin: 0;
            font-size: 0.8rem;
            color: #aaa;
        }
        .feature-item div h6 {
            margin: 0;
            font-size: 0.9rem;
            font-weight: 600;
        }

        /* Categories Section */
        .categories-section {
            padding: 40px 0;
            border-bottom: 1px solid var(--border-color);
            background-color: white;
        }
        .categories-wrapper {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding-bottom: 15px;
            scroll-behavior: smooth;
            /* Hide scrollbar for WebKit/Blink */
            &::-webkit-scrollbar {
                display: none;
            }
            /* Hide scrollbar for Firefox */
            scrollbar-width: none;
        }
        .hide-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .hide-scrollbar {
            scrollbar-width: none;
        }
        .category-item {
            text-align: center;
            padding: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
            min-width: 130px;
            border-radius: 8px;
        }
        .category-item:hover {
            transform: translateY(-5px);
        }
        .category-img-wrapper {
            width: 100px;
            height: 100px;
            margin: 0 auto 15px auto;
            border-radius: 12px; /* Carré arrondi comme sur la maquette */
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06); /* Ombre douce */
            border: 1px solid var(--border-color);
        }
        .category-img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* Contenu isolé sans recadrage */
            transition: transform 0.3s;
        }
        .category-item:hover .category-img {
            transform: scale(1.1);
        }
        .category-title {
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 4px;
            color: var(--text-dark);
        }
        .category-count {
            font-size: 0.8rem;
            color: var(--text-gray);
        }

        /* Product Cards - Consolidated & Fixed */
        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0;
        }
        .view-all {
            color: var(--primary-red);
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
        }
        .product-card {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden; /* IMPORTANT : L'image touche les bords, plus de marges */
            position: relative;
            transition: box-shadow 0.3s;
            height: 100%;
            background: white;
            display: flex;
            flex-direction: column;
            padding: 0; /* Suppression du padding global pour étendre l'image */
        }
        .product-card:hover {
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .discount-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: var(--primary-red);
            color: white;
            padding: 4px 8px;
            font-size: 0.8rem;
            font-weight: 800;
            border-radius: 4px;
            z-index: 2;
        }
        .product-img-wrapper {
            width: 100%;
            height: 220px; /* Hauteur fixe pour l'uniformité */
            overflow: hidden;
            position: relative;
            background-color: #f8f9fa; /* Fond léger */
            border-bottom: 1px solid #f0f0f0;
            margin: 0; /* Aucune marge */
            padding: 0; /* Aucun padding */
        }
        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* L'image remplit tout le conteneur */
            object-position: center;
            transition: transform 0.5s ease;
            display: block; /* Évite les espaces vides sous l'image */
        }
        .product-card:hover .product-img {
            transform: scale(1.05); /* Zoom au survol */
        }
        .product-info {
            padding: 20px; /* Le texte a de l'espace, mais pas l'image */
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .product-title {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 5px;
            line-height: 1.3;
            color: var(--text-dark);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .product-ref {
            font-size: 0.8rem;
            color: var(--text-gray);
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        .rating {
            color: #ffc107;
            font-size: 0.85rem;
            margin-bottom: 15px;
        }
        .rating-count {
            color: var(--text-gray);
            font-size: 0.8rem;
            margin-left: 5px;
        }
        .price-container {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 10px;
            margin-top: auto; /* Pousse le prix vers le bas de la carte */
        }
        .new-price {
            color: var(--primary-red);
            font-weight: 800;
            font-size: 1.3rem;
        }
        .old-price {
            color: var(--text-gray);
            text-decoration: line-through;
            font-size: 0.9rem;
        }
        .stock-status {
            color: #28a745;
            font-size: 0.85rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .stock-status::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: #28a745;
            border-radius: 50%;
        }

        /* Carousel Navigation Buttons */
        .carousel-nav-btn {
            width: 45px;
            height: 45px;
            background-color: white;
            border: 1px solid var(--border-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            color: var(--text-dark);
            position: absolute;
            top: 40%;
            transform: translateY(-50%);
            z-index: 10;
            transition: all 0.2s ease;
            cursor: pointer;
        }
        .carousel-nav-btn:hover {
            background-color: var(--primary-red);
            color: white;
            border-color: var(--primary-red);
        }
        .carousel-nav-prev {
            left: -15px;
        }
        .carousel-nav-next {
            right: -15px;
        }
        .carousel-container {
            position: relative;
        }

        /* Inspiration Section */
        .inspiration-card {
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            height: 250px;
            margin-bottom: 20px;
        }
        .inspiration-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .inspiration-card:hover img {
            transform: scale(1.05);
        }
        .inspiration-overlay {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
        }
        .inspiration-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        .inspiration-link {
            color: #f1c40f; /* Yellowish gold */
            font-size: 0.85rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Pro Section */
        .pro-section {
            background-color: #1c1c1c;
            color: white;
            border-radius: 12px;
            margin-bottom: 40px;
            overflow: hidden;
            position: relative;
        }
        .pro-content {
            padding: 50px;
            z-index: 2;
            position: relative;
        }
        .pro-icons-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 20px;
        }
        .pro-icon-item {
            text-align: center;
        }
        .pro-icon-item i {
            font-size: 2rem;
            color: var(--primary-red);
            margin-bottom: 12px;
        }
        .pro-icon-item p {
            font-size: 0.85rem;
            margin: 0;
            font-weight: 600;
        }
        .pro-icon-item span {
            display: block;
            font-size: 0.75rem;
            color: #aaa;
        }
        .pro-image-container {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 35%;
        }
        .pro-image {
            height: 100%;
            width: 100%;
            object-fit: cover;
            object-position: top center;
        }
        .pro-image-gradient {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to right, #1c1c1c 0%, rgba(28,28,28,0.7) 40%, transparent 100%);
        }

        /* Pre-Footer Light Features */
        .light-features {
            padding: 30px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        /* Bouton Ajouter au panier */
        .btn-add-cart {
            width: 100%;
            margin-top: 15px;
            background-color: var(--primary-red);
            color: white;
            border: 1px solid var(--primary-red);
            padding: 10px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }
        .btn-add-cart:hover {
            background-color: var(--dark-bg);
            color: white;
            border-color: var(--dark-bg);
        }

        /* Footer Modernisé */
        .main-footer {
            background-color: #111111;
            color: #d1d5db;
            padding: 60px 0 20px 0;
            font-size: 0.9rem;
        }
        .main-footer .footer-title {
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .main-footer .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .main-footer .footer-links li {
            margin-bottom: 12px;
        }
        .main-footer .footer-links a {
            color: #a1a1aa;
            text-decoration: none;
            transition: color 0.3s ease, padding-left 0.3s ease;
            display: inline-block;
        }
        .main-footer .footer-links a:hover {
            color: var(--primary-red);
            padding-left: 5px;
        }
        .newsletter-input {
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
        }
        .newsletter-input:focus {
            background-color: rgba(255, 255, 255, 0.15);
            border-color: var(--primary-red);
            color: white;
            box-shadow: none;
        }
        .newsletter-input::placeholder {
            color: #9ca3af;
        }
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background-color: var(--primary-red);
            transform: translateY(-3px);
        }
        .social-icons i {
            font-size: 1.2rem;
        }
        .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .payment-methods {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .payment-methods img {
            height: 25px;
            background: white;
            padding: 3px 6px;
            border-radius: 4px;
            opacity: 0.9;
            transition: opacity 0.3s;
        }
        .payment-methods img:hover {
            opacity: 1;
        }

        /* Back to top button */
        #backToTopBtn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 99;
            background-color: var(--primary-red);
            color: white;
            border: none;
            outline: none;
            cursor: pointer;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: opacity 0.3s, transform 0.3s, visibility 0.3s, background-color 0.3s;
        }
        #backToTopBtn.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        #backToTopBtn:hover {
            background-color: #c0142b;
            transform: translateY(-3px) scale(1.05);
        }