.products_slider {
    position: relative;
    background: linear-gradient(296deg,rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 100%);
    padding: 60px 0;
    overflow: hidden;
    & .container {
        position: relative;
        z-index: 2;
    }

    /* Header Section */
    & .products_slider_header {
        margin-bottom: 50px;
        max-width: 850px;

        @media (max-width: 991px) {
            margin-bottom: 40px;
            max-width: none;
            text-align: center;
        }
    }

    & .products_slider_title {
        font-size: clamp(32px, 4vw, 48px);
        font-weight: 700;
        color: #0A3956;
        margin: 0 0 20px 0;
        line-height: 1.2;
    }

    & .products_slider_content {
        & p {
            font-size: clamp(16px, 2vw, 18px);
            line-height: 1.6;
            color: #505050;
            margin: 0;

            &:last-child {
                margin-bottom: 0;
            }
        }
    }

    /* Slider Wrapper - Left stays aligned with container, right bleeds out */
    & .products_slider_wrapper {
        position: relative;
        margin-left: 15px;
        margin-right: 0;
        width: calc(100vw - 15px);
        max-width: none;
        padding-right: 0;
        overflow: hidden;
        
        @media (min-width: 1441px) {
            margin-left: calc((100vw - 1440px) / 2 + 15px);
        }
        
        @media (max-width: 991px) {
            margin-left: 15px;
            width: calc(100vw - 15px);
        }
        
        @media (max-width: 500px) {
            margin-left: 30px;
            width: calc(100vw - 30px);
        }
    }

    & .products_slider_slider {
        position: relative;
        overflow: hidden;
    }

    /* Individual Product Item */
    & .products_slider_item {
        outline: none;
        
        @media (max-width: 991px) {
            padding: 0 6px;
        }
    }

    & .products_slider_link {
        display: block;
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s ease;
        background: #F5F6F8;
        padding: 2rem;
        &:hover {
            transform: translateY(-5px);
        }
    }

    & .products_slider_image {
        position: relative;
        width: 100%;
        height: 310px;
        overflow: hidden;
        margin-bottom: 20px;
        background: #f5f5f5;

        & img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        @media (max-width: 991px) {
            height: 285px;
        }

        @media (max-width: 768px) {
            height: 285px;
        }
    }

    & .products_slider_item_icon {
        position: absolute;
        top: 12px;
        right: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        pointer-events: none;

        & svg {
            display: block;
        }
    }

    & .products_slider_item_content {
        padding: 0 5px;

        @media (max-width: 991px) {
            text-align: center;
        }
    }

    & .products_slider_item_title {
        font-size: 20px;
        font-weight: 700;
        color: #002446;
        margin: 0 0 12px 0;
        line-height: 1.3;
        letter-spacing: unset!important;
        font-family: $headingFonts;
        @media (max-width: 991px) {
            font-size: 22px;
            display: block;
        }
    }

    & .products_slider_item_excerpt {
        & p {
            font-size: 16px;
            line-height: 1.5;
            color: #505050;
            margin: 0;

            @media (max-width: 991px) {
                font-size: 14px;
            }
        }
    }

    /* Footer with Button and Arrows */
    & .products_slider_footer {
        margin-top: 40px;

        @media (max-width: 991px) {
            margin-top: 30px;
        }
    }

    & .products_slider_controls {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;

        @media (max-width: 768px) {
            flex-direction: column;
            align-items: center;
            gap: 24px;
        }
    }

    & .products_slider_arrows {
        display: flex;
        gap: 12px;
        align-items: center;

        @media (max-width: 768px) {
            justify-content: center;
            width: 100%;
        }
    }

    & .products_slider_arrows .slick-prev,
    & .products_slider_arrows .slick-next {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #1B1788;
        z-index: 10;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;

        &:before {
            display: none;
        }

        & svg {
            width: 36px;
            height: 36px;
            display: block;
        }

        /* Default state - grey outline */
        & .circle-path {
            fill: none;
            stroke: #DCDCDC;
            stroke-width: 1;
        }

        & .arrow-path {
            fill: #DCDCDC;
        }

        /* Active state - filled blue circle with white arrow */
        &:not(.slick-disabled) {
            & .circle-path {
                fill: #1B1788;
                stroke: none;
            }

            & .arrow-path {
                fill: #fff;
            }
        }

        /* Disabled state - grey outline only */
        &.slick-disabled {
            cursor: not-allowed;
            opacity: 1;

            & .circle-path {
                fill: none;
                stroke: #DCDCDC;
                stroke-width: 1;
            }

            & .arrow-path {
                fill: #DCDCDC;
            }
        }

        @media (max-width: 991px) {
            width: 36px;
            height: 36px;

            & svg {
                width: 36px;
                height: 36px;
            }
        }
    }

    & .products_slider_button {
        background: #FFEB01;
        color: #0A3956;
        padding: 16px 32px;
        text-decoration: none;
        font-weight: 700;
        font-size: 14px;
        text-transform: uppercase;
        border-radius: 500px;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 200px;
        min-height: 60px;
        &:hover {
            background: #002446; 
            color: #fff;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            width: 100%;
            min-width: unset;
        }
    }

    /* Slick Slider Adjustments */
    & .slick-list {
        margin: 0 -10px;

        @media (max-width: 991px) {
            margin: 0 -6px;
        }
    }

    & .slick-track {
        display: flex;
        align-items: stretch;
    }

    & .slick-slide {
        height: inherit;

        & > div {
            height: 100%;
        }
    }
}

/* Responsive Design */
@media (min-width: 992px) and (max-width: 1200px) {
    .products_slider {
        & .products_slider_image {
            height: 230px;
        }
    }
}

@media (max-width: 991px) {
    .products_slider {
        padding: 40px 0;

        & .products_slider_header {
            padding: 0 15px;
        }
    }
}

@media (max-width: 768px) {
    .products_slider {
        padding: 30px 0;

        & .products_slider_title {
            font-size: 28px;
        }

        & .products_slider_content p {
            font-size: 16px;
        }

        & .products_slider_item_title {
            font-size: 16px;
        }
    }
}
