    .prod-slider-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .prod-arrows {
        position: relative;
    }

    .prod-arrow-prev,
    .prod-arrow-next {
        position: absolute;
        top: 50% !important;
        transform: translateY(500%) !important;
        background: transparent;
        color: var(--red);
        border: 1px solid gray;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        font-size: 25px;
    }

    .prod-arrow-prev {
        left: -50px;
    }

    .prod-arrow-next {
        right: -50px;
    }

    .prod-arrow-prev:hover,
    .prod-arrow-next:hover {
        background: var(--red);
        color: var(--white);
    }

    /* Slider item styling */
    .designProductContainer {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        height: auto !important;
        border-radius: 22px !important;
        position: relative;
        margin: 0 auto;
    }

    .productImageContainer {
        width: 100%;
        margin: 0;
        padding: 0;
        border-radius: 22px !important;
    }

    .productThumbnail {
        width: 100%;
        height: 120px !important;
        border-radius: 22px 22px 0 0 !important;
        margin: 0;
        padding: 0;
        object-fit: cover;
    }

    .tag-label {
        position: absolute;
        top: 0;
        right: 0;
        background-color: #5A41D7;
        color: #fff;
        font-size: 12px;
        font-family: poppinsMedium;
        padding: 6px 12px;
        border: 1px solid var(--white);
        border-radius: 0 16px 0 16px;
        text-transform: uppercase;
        z-index: 10;
    }

    .productImageFooter {
        width: 100%;
        padding: 10px 0;
        text-align: center;
        color: var(--red);
        background-color: pink;
        font-family: poppinsMedium;
        font-size: clamp(12px, 3vw, 16px);
    }

    .tagLine {
        font-family: poppinsMedium;
        font-size: clamp(11px, 3vw, 14px);
        color: #5A41D7;
    }

    .productName {
        font-family: poppinsBold;
        font-size: clamp(18px, 4vw, 24px);
        color: var(--black);
        margin: 5px 0;
    }

    .productCateIcons {
        font-size: 16px;
        color: var(--red);
    }

    .productPrice {
        font-family: poppinsBold;
        font-size: clamp(18px, 4vw, 28px);
        color: green !important;
        text-align: center;
        font-weight: 700;
        margin: 10px 0;
    }

    .original-price {
        font-family: poppinsLight;
        font-size: clamp(14px, 3vw, 18px);
        text-decoration: line-through;
        color: gray;
        margin-left: 5px;
    }

    .productDesc p span {
        font-family: poppinsRegular;
        font-size: clamp(14px, 3vw, 16px);
        color: var(--gray);
        line-height: 1.4;
    }

    .productBtn {
        display: flex;
        gap: 10px;
        margin-top: 15px;
    }

    .shopProductBtn,
    .shopProductBtnWhite {
        flex: 1;
        padding: 8px 0;
        font-size: clamp(12px, 3vw, 16px);
        text-align: center;
    }

    .shopProductBtn {
        background-color: var(--red);
        color: var(--white);
        font-family: poppinsMedium;
        border: none;
        border-radius: 5px;
    }

    .shopProductBtn:hover {
        background-color: var(--red);
        color: var(--white);
    }

    .shopProductBtnWhite {
        background-color: transparent;
        border: 2px solid #4b4b4b;
        color: var(--black);
        font-family: poppinsMedium;
        border-radius: 5px;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .prod-arrow-prev {
            left: -50px;
        }

        .prod-arrow-next {
            right: -50px;
        }
    }

    @media (max-width: 768px) {
        .prod-slider-container {
            padding: 0 10px;
        }

        .prod-arrow-prev,
        .prod-arrow-next {
            width: 35px;
            height: 35px;
            font-size: 20px;
        }

        .productThumbnail {
            height: 100px !important;
        }

        .productDetailContainer {
            padding: 15px !important;
        }
    }

    @media (max-width: 600px) {
        .prod-slider-container {
            padding-top: 50px !important;
        }

        .prod-arrow-prev,
        .prod-arrow-next {
            position: absolute;
            top: 0;
            transform: translateY(0);
            width: 20px;
            height: 20px;
            font-size: 14px;
            border-radius: 20%;
            border: none !important;
        }

        .prod-arrow-prev {
            left: -24px;
        }

        .prod-arrow-next {
            right: -24px;
        }

        .prod-arrow-prev:hover,
        .prod-arrow-next:hover {
            background: pink;
            color: var(--white);
        }

        .ProductCategoryViewAll a {
            display: none;
        }

        .tag-label {
            font-size: 10px;
            padding: 4px 8px;
        }

        .productBtn {
            /* flex-direction: column; */
            gap: 8px;
        }
    }

    @media (max-width: 480px) {
        .productThumbnail {
            height: 80px !important;
        }

        .productImageFooter {
            padding: 8px 0;
        }

        .productDetailContainer {
            padding: 10px !important;
        }
    }