
        body {
            font-family: 'Arial', sans-serif;
            background: #f5f5f5;
        }

        .carousel-container {
            max-width: 1400px;
            margin: 83px auto;
            padding: 6px 0px;
        }

        .carousel {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            border-radius: 0px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0);
        }

        .carousel-inner {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .carousel-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px;
            color: white;
        }

        .carousel-overlay h2 {
            font-size: 3.5em;
            margin-bottom: 20px;
            animation: slideInLeft 0.8s ease-out;
        }

        .carousel-overlay p {
            font-size: 1.3em;
            max-width: 600px;
            line-height: 1.6;
            margin-bottom: 30px;
            animation: slideInLeft 1s ease-out;
        }

        .carousel-overlay .btn-discover {
            background: #5bbdb5;
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            width: fit-content;
            transition: all 0.3s ease;
            animation: slideInLeft 1.2s ease-out;
        }

        .carousel-overlay .btn-discover:hover {
            background: #bed000;
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(190, 208, 0, 0.4);
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Boutons de navigation */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            color: #333;
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .carousel-btn:hover {
            background: #5bbdb5;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn.prev {
            left: 30px;
        }

        .carousel-btn.next {
            right: 30px;
        }

        /* Indicateurs */
        .carousel-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .indicator.active {
            background: #bed000;
            width: 40px;
            border-radius: 10px;
        }

        .indicator:hover {
            background: rgba(255, 255, 255, 0.8);
        }

        /* Numérotation */
        .slide-counter {
            position: absolute;
            top: 30px;
            right: 30px;
            background: rgba(91, 189, 181, 0.9);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1em;
            z-index: 10;
        }

        /* Responsive */
        @media screen and (max-width: 480px) {
           
            .carousel-container {
            max-width: 1400px;
            margin: 67px 0px;
            
            border-radius: 0px;
        }
        }

        @media (max-width: 768px) {
            .carousel {
                height: 400px;
            }

            .carousel-overlay {
                padding: 40px 30px;
            }

            .carousel-overlay h2 {
                font-size: 2em;
            }

            .carousel-overlay p {
                font-size: 1em;
            }

            .carousel-btn {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .carousel-btn.prev {
                left: 15px;
            }

            .carousel-btn.next {
                right: 15px;
            }
        }
        /* Section 1 - Galerie de produits */
        .product-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-image {
            width: 100%;
            height: 200px;
            background: #f5f5f5;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        .product-placeholder {
            width: 80%;
            height: 120px;
            background: #2c3e50;
            border-radius: 8px;
        }

        .product-info {
            text-align: center;
        }

        .product-title {
            font-size: 1.1em;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .product-description {
            font-size: 0.9em;
            color: #7f8c8d;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .product-price {
            font-size: 1.3em;
            color: #5bbdb5;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .product-tags {
            display: flex;
            gap: 10px;
            justify-content: center;
        }

        .tag {
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85em;
            border: 1px solid #ddd;
            color: #7f8c8d;
        }

        /* Section 2 - Bannière large avec canapé */
        .hero-banner {
            background: white;
            border-radius: 15px;
            padding: 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 40px;
            overflow: hidden;
            height: 400px;
            position: relative;
        }

        .hero-content {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-sofa {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        /* Section 3 - Grille avec décoration */
        .decoration-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }

        .decoration-large {
            background: #4a5f6d;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .deco-item {
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .deco-placeholder {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        .deco-cta {
            background: #FF9A76;
            height: 50px;
            grid-column: 1 / -1;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            cursor: pointer;
        }

        .info-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .info-title {
            font-size: 1.2em;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .info-text {
            font-size: 0.9em;
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .info-button {
            background: #2c3e50;
            color: white;
            padding: 12px 30px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-size: 0.9em;
        }

        /* Section 4 - Mobile showcase */
        .mobile-showcase {
            background: #3d4f5d;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 40px;
        }

        .mobile-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .mobile-phone {
            background: #2c3e50;
            border-radius: 30px;
            padding: 20px;
            height: 500px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .phone-screen {
            background: #1a252f;
            border-radius: 20px;
            height: 100%;
            padding: 20px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            grid-template-rows: auto repeat(3, 1fr);
        }

        .phone-header {
            grid-column: 1 / -1;
            color: white;
            font-weight: bold;
        }

        .phone-item {
            background: #34495e;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .phone-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .phone-item.highlight {
            background: #FF9A76;
        }

        .mobile-text h2 {
            color: white;
            font-size: 2em;
            margin-bottom: 20px;
        }

        .mobile-text p {
            color: #95a5a6;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .cta-button {
            background: #FF9A76;
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            border: none;
            cursor: pointer;
            font-size: 1em;
            font-weight: bold;
            display: inline-block;
        }

        /* Section 5 - Bottom section */
        .bottom-section {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 30px;
        }

        .about-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-title {
            font-size: 2.5em;
            font-weight: 300;
            letter-spacing: 3px;
            margin-bottom: 30px;
        }

        .about-description {
            color: #7f8c8d;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        

        .social-icon {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            color:#5bbdb5;
            cursor: pointer;
        }

        .cta-section {
            background: #f5f5f5;
            padding: 30px;
            border-radius: 10px;
        }

        .chair-image {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chair-placeholder {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 10px;
        }

        .hotels-card {
            background: #e8ecef;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
        }

        .hotels-title {
            font-size: 2em;
            margin-bottom: 20px;
        }

        .hotels-subtitle {
            color: #7f8c8d;
            margin-bottom: 30px;
        }

        .hotels-description {
            color: #7f8c8d;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .hotels-button {
            background: #2c3e50;
            color: white;
            padding: 15px 40px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            width: 100%;
            font-size: 1em;
        }

        .circle-badge {
            position: absolute;
            top: 40px;
            right: 40px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #FF9A76;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5em;
        }

        @media (max-width: 1024px) {
            .product-gallery {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .decoration-grid {
                grid-template-columns: 1fr;
            }
            
            .bottom-section {
                grid-template-columns: 1fr;
            }
            
            .mobile-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .product-gallery {
                grid-template-columns: 1fr;
            }
            
            .decoration-large {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        /* Section conteneur pour tous les produits */
        .products-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Navigation par onglets */
        .product-tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .product-tab {
            padding: 12px 24px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1em;
            font-weight: 500;
            color: #7f8c8d;
            transition: all 0.3s ease;
        }

        .product-tab:hover {
            border-color: #5bbdb5;
            color: #5bbdb5;
        }

        .product-tab.active {
            background: #5bbdb5;
            border-color: #5bbdb5;
            color: white;
        }

        .product-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 2px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .product-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            padding: 60px;
        }

        /* Section Gauche - Images */
        .product-images {
            position: relative;
        }

        .main-image-container {
            background: #f8f8f8;
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 500px;
            position: relative;
        }

        .main-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .image-placeholder {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 10px;
        }

        .nav-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;
        }

        .arrow-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #5bbdb5;
            color: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2em;
            pointer-events: all;
            transition: all 0.3s ease;
        }

        .arrow-btn:hover {
            background: #bed000;
            transform: scale(1.1);
        }

        .thumbnail-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }

        .thumbnail {
            background: #f8f8f8;
            border-radius: 10px;
            padding: 15px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .thumbnail:hover {
            border-color: #5bbdb5;
        }

        .thumbnail.active {
            border-color: #5bbdb5;
            background: white;
        }

        .thumbnail-placeholder {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 5px;
        }

        /* Section Droite - Informations */
        .product-info {
            padding: 20px 0;
        }

        .product-badge {
            display: inline-block;
            background: #d4f4dd;
            color: #2d8659;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85em;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .product-title {
            font-size: 2em;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .product-category {
            color: #95a5a6;
            font-size: 0.95em;
            margin-bottom: 20px;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .current-price {
            font-size: 2.2em;
            color: #2c3e50;
            font-weight: bold;
        }

        .original-price {
            font-size: 1.3em;
            color: #95a5a6;
            text-decoration: line-through;
        }

        .product-description {
            color: #7f8c8d;
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 0.95em;
        }

        .product-meta {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #ecf0f1;
        }

        .meta-item {
            margin-bottom: 20px;
        }

        .meta-label {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
            font-size: 0.9em;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .meta-value {
            color: #7f8c8d;
            font-size: 0.95em;
        }

        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag {
            background: #ecf0f1;
            color: #7f8c8d;
            padding: 6px 14px;
            border-radius: 15px;
            font-size: 0.85em;
        }

        .social-share {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .share-label {
            font-weight: 600;
            color: #2c3e50;
            margin-right: 5px;
        }


        .social-icon:hover {
            transform: translateY(-3px);
        }

        .social-icon.facebook {
            background: #3b5998;
        }

        .social-icon.twitter {
            background: #1da1f2;
        }

        .social-icon.pinterest {
            background: #bd081c;
        }

        .social-icon.whatsapp {
            background: #25d366;
        }

        @media (max-width: 968px) {
            .product-content {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 40px;
            }

            .main-image-container {
                height: 400px;
            }

            .product-title {
                font-size: 1.6em;
            }

            .current-price {
                font-size: 1.8em;
            }
        }

        @media (max-width: 640px) {
            .product-content {
                padding: 30px 20px;
            }

            .thumbnail-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .product-title {
                font-size: 1.4em;
            }
        }