/* Card Component Styles */
        .section-title {
            font-size: 2.5rem;
            font-weight: 400;
            color: #333;
            margin-bottom: 3rem;
        }

        .product-carousel {
        }

        .product-card {
            background: white;
            border-radius: 15px;
            padding: 0;
            margin: 0 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            height: 400px;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        }

        .product-badges {
            position: absolute;
            top: 15px;
            left: 15px;
            z-index: 10;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .badge-custom {
            background: #de9c43;;
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            border: none;
        }

        .badge-bestseller {
            background: #2c2c2c;
        }

        .badge-new {
            background: #28a745;
        }

        .badge-modular {
            background: #6c757d;
        }

        .product-image-container {
            position: relative;
            overflow: hidden;
            border-radius: 15px 15px 0 0;
        }

        .product-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-image {
            transform: scale(1.05);
        }

        .quick-add-overlay {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            transition: bottom 0.3s ease;
        }

        .product-card:hover .quick-add-overlay {
            bottom: 20px;
        }

        .quick-add-btn {
            background: rgba(0, 0, 0, 0.9);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .quick-add-btn:hover {
            background: #333;
            transform: scale(1.05);
        }

        .product-info {
            padding: 20px;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }

        .stars {
            display: flex;
            gap: 2px;
        }

        .star {
            color: #333;
            font-size: 14px;
        }

        .star.empty {
            color: #ddd;
        }

        .review-count {
            font-size: 14px;
            color: #666;
            font-weight: 400;
        }

        .product-name {
            font-size: 16px;
            font-weight: 500;
            color: #333;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .product-price {
            font-size: 16px;
            color: #333;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .color-options {
            display: flex;
            gap: 8px;
        }

        .color-option {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .color-option.active {
            border-color: #333;
            box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.2);
        }

        .color-option:hover {
            transform: scale(1.1);
        }

        .color-walnut { background: #8B4513; }
        .color-oak { background: #DEB887; }
        .color-black { background: #333; }

        /* Owl Carousel Custom Styles */
        .owl-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            transform: translateY(-50%);
        }

        .owl-nav button {
            position: absolute;
            background: rgba(0, 0, 0, 0.8) !important;
            color: white !important;
            border: none !important;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 18px !important;
            transition: all 0.3s ease;
        }

        .owl-nav button:hover {
            background: rgba(0, 0, 0, 1) !important;
            transform: scale(1.1);
        }

        .owl-nav .owl-prev {
            left: -25px;
        }

        .owl-nav .owl-next {
            right: -25px;
        }

        .owl-dots {
            text-align: center;
            margin-top: 30px;
        }

        .owl-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: #ddd;
            border-radius: 50%;
            margin: 0 5px;
            transition: background 0.3s ease;
        }

        .owl-dot.active {
            background: #333;
        }

        .owl-stage-outer{
            padding-bottom: 0.75rem;
        }

        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .product-card {
                margin: 0 10px;
            }
            
            .owl-nav button {
                display: none;
            }
        }

        @media (min-width: 769px) and (max-width: 1199px) {
            .prodcard2 {
                width: 15rem;
                height: 295px;
            }
            .prodimage2{
                height: 150px;
            }
            
        }

        .products-section {
            background: white;
            padding: 6rem 0;
        }



/* End of Card Component Styles */