/* KT779 Hero + Sliders */

.kt779-hero-section .kt779-hero-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px 8px;
}

.kt779-hero-row {
    display: flex;
    align-items: stretch;
    gap: 16px;
}

.kt779-hero-banner {
    flex: 1 1 55%;
    min-width: 0;
}

.kt779-hero-banner .RLQHVzRE {
    height: 100%;
}

.kt779-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* Large slider */
.big-slider-section {
    flex: 1 1 45%;
    min-width: 0;
    width: 100%;
    height: 430px;
    border-radius: 20px;
    overflow: hidden;
}

.big-slider-section .big-slider-swiper,
.big-slider-section .swiper-wrapper,
.big-slider-section .swiper-slide {
    width: 100%;
    height: 100%;
}

.big-slider-section .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.big-slider-section .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.big-slider-section .swiper-pagination {
    bottom: 12px !important;
}

.big-slider-section .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.55);
    opacity: 1;
    transition: background 0.25s ease, transform 0.25s ease;
}

.big-slider-section .swiper-pagination-bullet-active {
    background: #ffb700;
    transform: scale(1.2);
}

/* Small horizontal slider */
.small-slider-section {
    width: 100%;
    margin-top: 12px;
    padding-bottom: 4px;
}

.small-slider-section .small-slider-swiper {
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.small-slider-section .swiper-slide {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.small-slider-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 6px 4px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.small-slider-item:hover {
    transform: scale(1.06);
}

.small-slider-item img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

.small-slider-item span {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Tablet: 768px – 1199px */
@media (min-width: 768px) and (max-width: 1199px) {
    .kt779-hero-section .kt779-hero-inner {
        max-width: 100%;
    }

    .kt779-hero-row {
        gap: 12px;
    }

    .big-slider-section {
        height: 320px;
    }

    .small-slider-item img {
        width: 56px;
        height: 56px;
    }
}

/* Mobile: < 768px */
@media (max-width: 767px) {
    .kt779-hero-row {
        flex-direction: column;
        gap: 10px;
    }

    .kt779-hero-banner,
    .big-slider-section {
        flex: 1 1 auto;
        width: 100%;
    }

    .big-slider-section {
        height: 220px;
    }

    .kt779-hero-banner img {
        max-height: 220px;
        object-fit: cover;
    }

    .small-slider-section .small-slider-swiper,
    .small-slider-section .swiper-slide {
        height: 110px;
    }

    .small-slider-item img {
        width: 48px;
        height: 48px;
    }

    .small-slider-item span {
        font-size: 11px;
    }
}
