/* ============================================
   CSS SWIPER SLIDER
   ============================================ */
.swiper {
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    min-width: 0;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: var(--white);
}

.swiper-pagination-bullet-active {
    background: #EAA525;
}

/* ============================================
   KẾT THÚC CSS SWIPER SLIDER
   ============================================ */