



        .slider-wrapper {
            position: relative;
            padding: 0 0;
        }

        .slider {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 20px 0;
        }

        .slider::-webkit-scrollbar {
            display: none;
        }

        .card {
            flex: 0 0 calc(25% - 22.5px);
            min-width: 300px;
            cursor: pointer;
                border: none;
        }

        .card-image {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 20px;
            display: block;
        }

        .card-image figure {
            position: relative;
            height: 100%;
            border-radius: 20px;
            display: block;
            overflow: hidden;
            margin: 0;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            aspect-ratio: 1 / 0.615;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .card-icon {
            position: absolute;
            bottom: 20px;
            left: 20px;
            width: 45px;
            height: 45px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            z-index: 1;
        }

        .card:hover .card-icon {
            transform: rotate(-45deg);
        }

        .card-icon svg {
            width: 18px;
            height: 18px;
            stroke: #333;
        }

        .card-content {
            margin-top: 24px;
        }

       .card-title {
            font-size: 20px;
            color: #552b2f;
        }

        /*.card-price {
            font-size: 0.95em;
            color: #666;
            font-weight: 400;
        }*/

        .slider-btn {
            position: absolute;
            top: 40%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .slider-btn:hover {
            background: #f5f5f5;
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        .slider-btn.prev {
            left: 0;
        }

        .slider-btn.next {
            right: 0;
        }

        .slider-btn svg {
            width: 24px;
            height: 24px;
            stroke: #333;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 0px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgb(255 232 205);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #562b2f;
            width: 30px;
            border-radius: 6px;
        }

        @media (max-width: 1400px) {
            .card {
                flex: 0 0 calc(33.333% - 20px);
                min-width: 280px;
            }
        }

        @media (max-width: 1024px) {
            .card {
                flex: 0 0 calc(50% - 15px);
                min-width: 260px;
            }

            .card-image {
                height: 320px;
            }



            .slider-wrapper {
                padding: 0 55px;
            }
        }

        @media (max-width: 768px) {
            .card {
                flex: 0 0 calc(50% - 15px);
                min-width: 240px;
            }

            .card-image {
                height: 280px;
            }


            .slider-wrapper {
                padding: 0 50px;
            }

            .slider-btn {
                width: 45px;
                height: 45px;
            }

            .slider-btn svg {
                width: 20px;
                height: 20px;
            }

            .card-title {
                font-size: 1em;
            }

            .card-price {
                font-size: 0.9em;
            }
        }

        @media (max-width: 640px) {


            .card {
                flex: 0 0 calc(100% - 10px);
                min-width: 100%;
            }

            .card-image {
                height: 350px;
                border-radius: 16px;
            }

            .our-product-box{
                display: block;
            }

            .slider {
                gap: 10px;
            }

            .slider-wrapper {
                padding: 0 45px;
            }

            .slider-btn {
                width: 40px;
                height: 40px;
            }

            .slider-btn svg {
                width: 18px;
                height: 18px;
            }

            .card-icon {
                width: 40px;
                height: 40px;
                bottom: 15px;
                left: 15px;
            }

            .card-icon svg {
                width: 16px;
                height: 16px;
            }

            .card-content {
                padding: 15px 0 0 0;
            }

            .card-title {
                font-size: 0.95em;
            }

            .card-price {
                font-size: 0.85em;
            }
        }

        @media (max-width: 480px) {

            .slider-wrapper {
                padding: 0 0;
            }

            .card-image {
                height: 300px;
            }

            .slider-btn {
                width: 36px;
                height: 36px;
                display: none;
            }

            .slider-btn svg {
                width: 16px;
                height: 16px;
            }

            .slider-dots {
                margin-top: 0;
            }

            .dot {
                width: 10px;
                height: 10px;
            }

            .dot.active {
                width: 24px;
            }
        }

        @media (max-width: 360px) {
            .slider-wrapper {
                padding: 0 35px;
            }

            .card-image {
                height: 260px;
            }

            .slider-btn {
                width: 32px;
                height: 32px;
            }
        }

        /* Fixes for clickable product cards */
        .card a {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .card a:hover {
            text-decoration: none;
            color: inherit;
        }

        .card-price {
            font-size: 0.95em;
            color: #666;
            font-weight: 400;
            margin-top: 8px;
        }
