 
        
        .furniture-hero {
            padding: 4rem 0 8rem;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
        }

        .furniture-hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(90deg, #1a1a1a 0%, #7971ea 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .furniture-hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            color: #6c757d;
            max-width: 600px;
        }

        .hero-img-wrap {
            position: relative;
            transition: transform 0.5s ease;
            z-index: 2;
        }

        .floating {
            animation: floating 6s ease-in-out infinite;
        }

        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        .dot-pattern {
            position: absolute;
            top: -40px;
            left: -35px;
            width: 120px;
            height: 120px;
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            grid-template-rows: repeat(7, 1fr);
            gap: 20px;
            z-index: 1;
            pointer-events: none;
        }

        .dot {
            width: 6px;
            height: 6px;
            background-color: #7971ea;
            border-radius: 50%;
            opacity: 0.4;
        }

        .overlap-image {
            position: absolute;
            top: 180px;
            right: 30px;
            width: 300px;
            height: 330px;
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            z-index: 3;
            transform: rotate(10deg);
            transition: all 0.3s ease;
        }

        .overlap-image2 {
            position: absolute;
            top: 0;
            right: 30px;
            width: 170px;
            height: 172px;
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            z-index: 3;
            transform: rotate(10deg);
            transition: all 0.3s ease;
        }

        /* Quote Section */
        .quote-section {
            padding: 1.4rem;
            border-radius: 0.5rem;
            margin: 3rem 0;
        }

        .quote-section p {
            font-style: italic;
            font-weight: 500;
            color: #0F1F53;
            font-size: clamp(2.7rem, 8vw, 6rem);
            line-height: 1.5;
            margin: 0;
            text-align: center;
        }

        /* Product Card Styles */
        .product-card-custom {
            --accent-color: #ffd426;
            position: relative;
            background: white;
            border-radius: 1rem;
            padding: 0.3rem;
            box-shadow: rgba(100, 100, 111, 0.2) 10px 50px 30px 20px;
            transition: all 0.5s ease-in-out;
            margin-bottom: 1.5rem;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .product-card-custom:hover {
            transform: scale(1.06);
        }

        .product-card-custom .image-container {
            position: relative;
            width: 100%;
            height: 250px;
            border-radius: 0.5rem;
            border-top-right-radius: 5rem;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .product-card-custom .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: inherit;
        }

        .product-card-custom .price {
            position: absolute;
            right: 0.7rem;
            bottom: -1rem;
            background: white;
            color: var(--accent-color);
            font-weight: 900;
            font-size: 0.9rem;
            padding: 0.5rem;
            border-radius: 1rem 1rem 2rem 2rem;
            box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 15px 0px;
        }

        .button-container-custom {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem;
            margin-top: auto;
        }

        .buy-button-custom {
            flex: 1;
            background: #7971ea;
            color: white;
            border: none;
            padding: 0.5rem;
            border-radius: 0.5rem;
            text-align: center;
            transition: all 0.3s ease;
            margin-right: 0.5rem;
            text-decoration: none;
            font-weight: 600;
        }

        .buy-button-custom:hover {
            background: #5a52d4;
            color: white;
        }

        .cart-button-custom {
            width: 45px;
            height: 45px;
            background: #ffd426;
            color: #333;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .cart-button-custom:hover {
            background: #ffc107;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .cart-button-custom:active {
            transform: translateY(0);
        }

        /* Category Circle Section */
        .category-circle-section-custom {
            /* padding: 3rem 0;
            background: #f8f9fa; */
            overflow: hidden;
        }

        .category-circle-container-custom {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            padding: 1rem 0;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .category-circle-container-custom::-webkit-scrollbar {
            display: none;
        }

        .category-circle-custom {
            flex: 0 0 auto;
            width: 120px;
            text-align: center;
        }

        .category-circle-img-custom {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 0.5rem;
        }

        .category-circle-custom:hover .category-circle-img-custom {
            transform: scale(1.05);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            border-color: #7971ea;
        }

        .category-circle-title-custom {
            font-weight: 600;
            color: #333;
            font-size: 0.9rem;
        }

     
        /* Section headers */
        .section-header-custom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .section-title-custom {
            font-size: 2rem;
            font-weight: 700;
            color: #1a1a1a;
        }

        .view-all-link-custom {
            text-decoration: none;
            color: #7971ea;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .view-all-link-custom:hover {
            color: #5a52d4;
            transform: translateX(5px);
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .furniture-hero h1 {
                font-size: 3rem;
            }

            .product-card-custom .image-container {
                height: 200px;
            }
        }

        @media (max-width: 768px) {
            .furniture-hero {
                padding: 2rem 0 4rem;
                min-height: auto;
            }

            .furniture-hero .row {
                flex-direction: column;
            }

            .furniture-hero .col-lg-6:first-child {
                margin-bottom: 2rem;
            }

            .hero-img-wrap {
                text-align: center;
            }

            .hero-img-wrap img {
                width: 100% !important;
                height: auto !important;
                max-width: 350px;
            }

            .overlap-image,
            .overlap-image2 {
                display: none;
            }

            .dot-pattern {
                display: none;
            }

            .furniture-hero h1 {
                font-size: 2.5rem;
                text-align: center;
            }

            .furniture-hero p {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }

            .furniture-hero .intro-excerpt {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .furniture-carousel-custom .carousel-inner {
                height: 230px;
            }

            .product-card-custom {
                margin-bottom: 1rem;
            }

            .product-card-custom .image-container {
                height: 180px !important;
            }

            .buy-button-custom {
                font-size: 0.9rem;
                padding: 0.3rem;
            }

            .cart-button-custom {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .quote-section p {
                font-size: 2rem;
            }

            .category-circle-custom {
                width: 90px;
            }

            .category-circle-img-custom {
                width: 80px;
                height: 80px;
            }
        }

        @media (max-width: 576px) {
            .furniture-hero h1 {
                font-size: 2rem;
            }

            .quote-section p {
                font-size: 1.8rem;
            }

            .product-card-custom .image-container {
                height: 150px !important;
            }

            .category-circle-custom {
                width: 80px;
            }

            .category-circle-img-custom {
                width: 70px;
                height: 70px;
            }

            /* Ensure 2 cards per row on mobile */
            .products-grid-custom .col-6 {
                flex: 0 0 50%;
                max-width: 50%;
                padding: 0 8px;
            }
        }
    



        /* mobile responsive for slider
        
        */

        /* Add these to your existing CSS */

/* Carousel adjustments */
.furniture-carousel-custom .carousel-inner {
    height: 500px;
    border-radius: 1rem;
    overflow: hidden;
}

.furniture-carousel-custom .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/* Mobile responsiveness for slider */
@media (max-width: 992px) {
    .furniture-carousel-custom .carousel-inner {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .furniture-carousel-custom .carousel-inner {
        height: 300px;
        border-radius: 0.5rem;
    }
    
    #furnitureCarousel {
        margin-top: 60px; /* Reduce top margin on mobile */
    }
}

@media (max-width: 576px) {
    .furniture-carousel-custom .carousel-inner {
        height: 200px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 1.5rem;
        height: 1.6rem;
    }
}

 