.multi_products_slider {
    position: relative;
    padding: 100px 0;
    & .container {
        position: relative;
        z-index: 2;
    }

    /* Header Section - Title/Content on left, Button on right */
    & .multi_products_slider_header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 50px;

        @media (max-width: 991px) {
            flex-direction: column;
            gap: 30px;
            margin-bottom: 40px;
        }
    }

    & .multi_products_slider_header_left {
        flex: 1;
        max-width: 850px;
    }

    & .multi_products_slider_header_right {
        flex-shrink: 0;
        display: flex;
        align-items: flex-start;
        padding-top: 8px;

        @media (max-width: 991px) {
            padding-top: 0;
            width: 100%;
        }
    }

    & .multi_products_slider_title {
        color: #1B1788;
        margin: 0 0 20px 0;
        line-height: 1.2;
        font-size: 24px;
        text-transform: uppercase; 
    }

    & .multi_products_slider_content {
        & p {
            font-size: clamp(16px, 2vw, 18px);
            line-height: 1.6;
            color: #505050;
            margin: 0;

            &:last-child {
                margin-bottom: 0;
            }
        }
    }

    & .multi_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;
        white-space: nowrap;
        
        &:hover {
            background: #002446; 
            color: #fff;
            transform: translateY(-2px);
        }

        @media (max-width: 991px) {
            width: 100%;
            min-width: unset;
        }
    }

    /* Tabs Navigation */
    & .multi_products_slider_tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 40px;
        border-bottom: 2px solid #E0E0E0;
        padding-bottom: 0;

        @media (max-width: 991px) {
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            margin-bottom: 30px;

            &::-webkit-scrollbar {
                display: none;
            }
        }
    }

    & .multi_products_slider_tab {
        background: transparent;
        border: none;
        padding: 16px 24px;
        font-size: 12px;
        font-weight: 600;
        color: #505050;
        cursor: pointer;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
        margin-bottom: -2px;
        white-space: nowrap;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 0.05em;

        &:hover {
            color: #0A3956;
        }

        &.active {
            color: #0A3956;
            border-bottom-color: #0A3956;
            font-weight: 700;
        }

        @media (max-width: 768px) {
            font-size: 14px;
            padding: 12px 20px;
        }
    }

    /* Tab Content - Sliders */
    & .multi_products_slider_content_wrapper {
        position: relative;
    }

    & .multi_products_slider_tab_content {
        display: none;

        &.active {
            display: block;
        }
    }

    /* Reuse products slider styles */
    & .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;
    }

    & .products_slider_item {
        outline: none;
        padding: 0 10px;
        
        @media (max-width: 991px) {
            padding: 0 6px;
        }
    }

    & .products_slider_link {
        display: block;
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s ease;
        background: #FFFFFF;
        padding: 2rem;
        border-radius: 8px;
        cursor: pointer;
        &:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
    }

    & .products_slider_image {
        position: relative;
        width: 100%;
        height: 310px;
        overflow: hidden;
        margin-bottom: 20px;
        background: #fff;
        border-radius: 5px;
        border: 1px solid #CFCFCF;
        padding: 8px;

        & img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            transition: transform 0.3s ease;
        }

        @media (max-width: 991px) {
            height: 220px;
        }

        @media (max-width: 768px) {
            height: 200px;
        }
    }

    & .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;
        display: flex;
        flex-direction: column;
    }

    & .products_slider_item_title {
        display: block;
        font-size: 20px;
        font-weight: 700;
        color: #002446;
        margin: 0 0 12px 0;
        line-height: 1.3;
        letter-spacing: unset!important;
        font-family: 'Karla', sans-serif;
        text-decoration: none;
        transition: color 0.3s ease;

        &:hover,
        &:focus-visible {
            color: #1B1788;
        }

        @media (max-width: 991px) {
            font-size: 18px;
        }
    }

    & .products_slider_item_short_description {
        margin-bottom: 16px;
        flex: 1;
        
        & p {
            font-size: 16px;
            line-height: 1.5;
            color: #505050;
            margin: 0;

            @media (max-width: 991px) {
                font-size: 14px;
            }
        }
    }

    & .products_slider_view_button {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: #022E58;
        font-weight: 700;
        font-size: 14px;
        text-transform: uppercase;
        transition: all 0.3s ease;
        align-self: flex-start;
        
        & span {
            text-decoration: underline;
        }
        
        & svg {
            width: 17px;
            height: 17px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }
        
        &:hover {
            color: #0A3956;
            
            & svg {
                transform: translate(2px, -2px);
            }
        }
    }

    /* Footer with 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: 12px;

        @media (max-width: 768px) {
            flex-direction: column;
            gap: 20px;
        }
    }

    /* Progress Bar */
    & .products_slider_progress_wrapper {
        flex: 1;
        padding-right: 0;
        margin-right: 0;

        @media (max-width: 768px) {
            width: 100%;
            order: 2;
        }
    }

    & .products_slider_progress_bar {
        position: relative;
        width: 100%;
        height: 4px;
        background: #E0E0E0;
        border-radius: 2px;
        cursor: pointer;
        margin: 0;
    }

    & .products_slider_progress_fill {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        background: #0A3956;
        border-radius: 2px;
        transition: width 0.3s ease;
        width: 0%;
    }

    & .products_slider_arrows {
        display: flex;
        gap: 12px;
        align-items: center;
        flex-shrink: 0;

        @media (max-width: 768px) {
            order: 1;
            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;
            }
        }
    }

    /* 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 (max-width: 1200px) {
    .multi_products_slider {
        & .products_slider_image {
            height: 230px;
        }
    }
}

@media (max-width: 991px) {
    .multi_products_slider {
        padding: 40px 0;

        & .multi_products_slider_header {
            padding: 0 15px;
        }
    }
}

@media (max-width: 768px) {
    .multi_products_slider {
        padding: 30px 0;

        & .multi_products_slider_title {
            font-size: 28px;
        }

        & .multi_products_slider_content p {
            font-size: 16px;
        }

        & .products_slider_item_title {
            font-size: 16px;
        }
    }
}
