/* Main Parent Class Scope: .lab-product-slider / .lrew-product-slider */
.lab-product-slider,
.lrew-product-slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.lab-product-slider *,
.lrew-product-slider * {
    box-sizing: border-box;
}

/* Swiper Container reset & overflow */
.lab-product-slider .swiper,
.lrew-product-slider .swiper {
    width: 100%;
    height: 100%;
    padding: 10px 10px 20px 10px; /* Space for shadows */
    overflow: hidden;
}

.lab-product-slider .swiper-wrapper,
.lrew-product-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.lab-product-slider .swiper-slide,
.lrew-product-slider .swiper-slide {
    height: auto;
    display: flex;
}

/* Slide Card Wrapper */
.lab-product-slider__card {
    width: 100%;
    background-color: #ffffff;
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    transition: all 0.3s ease;
}

/* Left Content Column */
.lab-product-slider__content-col {
    flex: 1 1 45%;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

/* Badge Icon / Image */
.lab-product-slider__badge {
    width: 72px;
    height: 72px;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    flex-shrink: 0;
    overflow: hidden;
}

.lab-product-slider__badge-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.lab-product-slider__badge-icon {
    font-size: 32px;
    color: #4d7c38;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lab-product-slider__badge-icon svg {
    width: 36px;
    height: 36px;
    fill: currentColor;
}

/* Heading Title */
.lab-product-slider__title {
    margin: 0 0 16px 0;
    font-family: inherit;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
}

/* Description */
.lab-product-slider__description {
    margin: 0 0 32px 0;
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #6b7280;
}

/* Action Button */
.lab-product-slider__btn-wrap {
    display: inline-block;
}

.lab-product-slider__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background-color: #4d7c38;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 6px 18px rgba(77, 124, 56, 0.25);
}

.lab-product-slider__btn:hover,
.lab-product-slider__btn:focus {
    background-color: #3e652c;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(77, 124, 56, 0.35);
}

.lab-product-slider__btn-icon {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
}

.lab-product-slider__btn-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Right Media Column */
.lab-product-slider__media-col {
    flex: 1 1 55%;
    max-width: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lab-product-slider__image-wrap {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lab-product-slider__img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* Controls / Navigation Section */
.lab-product-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    position: relative;
    z-index: 10;
}

/* Navigation Arrow Buttons */
.lab-product-slider__arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    padding: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.lab-product-slider__arrow:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    transform: scale(1.08);
    border-color: rgba(255, 255, 255, 0.5);
}

.lab-product-slider__arrow.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.lab-product-slider__arrow-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lab-product-slider__arrow-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: currentColor;
}

/* Pagination Dots */
.lab-product-slider__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.lab-product-slider .swiper-pagination-bullet,
.lrew-product-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 4px !important;
}

.lab-product-slider .swiper-pagination-bullet-active,
.lrew-product-slider .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 10px;
    background: #ffffff;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .lab-product-slider__card {
        padding: 40px;
        gap: 32px;
    }
}

@media (max-width: 767px) {
    .lab-product-slider__card {
        flex-direction: column;
        padding: 28px 24px;
        gap: 28px;
        border-radius: 20px;
    }

    .lab-product-slider__content-col,
    .lab-product-slider__media-col {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        display: flex !important;
    }

    .lab-product-slider__image-wrap {
        width: 100% !important;
        display: flex !important;
    }

    .lab-product-slider__img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .lab-product-slider__badge {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .lab-product-slider__title {
        font-size: 22px;
    }

    .lab-product-slider__description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .lab-product-slider__arrow {
        width: 44px;
        height: 44px;
    }
}
