/* ============ Main Banner Styles ============ */

/* Hero */
.c-main-banner .hero-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
    line-height: 0;
}

.c-main-banner .hero-swiper,
.c-main-banner .hero-swiper .swiper-wrapper,
.c-main-banner .hero-swiper .swiper-slide {
    height: auto;
}

.c-main-banner .hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Skeleton */
.c-main-banner .hero-skeleton {
    width: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e6e6e6 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite linear;
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.c-main-banner .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.c-main-banner .hero-pagination {
    bottom: 30px !important;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.c-main-banner .hero-pagination .swiper-pagination-bullet {
    width: 32px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 0;
    margin: 0 !important;
    transition: var(--transition);
    opacity: 1;
}

.c-main-banner .hero-pagination .swiper-pagination-bullet-active {
    background-color: var(--white);
    width: 48px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.c-main-banner .hero-nav-btn {
    color: var(--white) !important;
    background: none !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 0 !important;
    transition: var(--transition);
}

.c-main-banner .hero-nav-btn::after {
    font-size: 2.2rem !important;
    font-weight: 200 !important;
    text-shadow: 0 1px 15px rgba(0, 0, 0, 0.5);
}

.c-main-banner .hero-nav-btn:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

.c-main-banner .swiper-button-prev.hero-nav-btn {
    left: 20px;
}

.c-main-banner .swiper-button-next.hero-nav-btn {
    right: 20px;
}

@media (max-width: 1024px) {
    .c-main-banner .hero-nav-btn {
        display: none !important;
    }

    .c-main-banner .hero-img {
        width: 100%;
        height: auto;
    }

    .c-main-banner .hero-pagination {
        bottom: 15px !important;
    }

    .c-main-banner .hero-pagination .swiper-pagination-bullet {
        width: 20px;
    }

    .c-main-banner .hero-pagination .swiper-pagination-bullet-active {
        width: 30px;
    }
}
