.hero-section {
    width: 100%;
    margin-bottom: 0;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: clamp(420px, 52vw, 620px);
    overflow: hidden;
    background: #0a0a1a;
    border-radius: 0;
    z-index: 5;
      touch-action: pan-y;        /* ← SHTO */
    -webkit-overflow-scrolling:
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 480px;
        border-radius: 0;
    }
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 6%;
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    pointer-events: none;
    z-index: 1;
      touch-action: pan-y;        /* ← SHTO */
    user-select: none;          /* ← SHTO */
    -webkit-user-select: none;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 3;
}

.hero-slide.exit {
    opacity: 0;
    transform: translateX(-60px);
    pointer-events: none;
    z-index: 2;
}

.hero-bg,
.hero-bg-video,
.hero-video-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* transform: scale(1.03); */
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 15, 0.88) 0%,
            rgba(5, 5, 15, 0.74) 28%,
            rgba(5, 5, 15, 0.42) 52%,
            rgba(5, 5, 15, 0.14) 72%,
            rgba(5, 5, 15, 0.02) 100%
        );
    z-index: 1;
    pointer-events: none;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-video-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 15, 0.88) 0%,
            rgba(5, 5, 15, 0.74) 28%,
            rgba(5, 5, 15, 0.42) 52%,
            rgba(5, 5, 15, 0.14) 72%,
            rgba(5, 5, 15, 0.02) 100%
        );
    z-index: 2;
}

.hero-banner-content {
    position: relative;
    z-index: 10;
    max-width: 560px;
    color: #fff;
    padding-top: 10px;
}

.hero-title,
.hero-desc,
.hero-price,
.hero-badge {
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-badge {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.2px;
    margin-bottom: 14px;
}

.hero-desc {
    font-size: 15px;
    line-height: 1.65;
    opacity: 0.88;
    margin-bottom: 20px;
    max-width: 440px;
}

.hero-price {
    font-size: 13px;
    opacity: 0.82;
    margin-bottom: 26px;
}

.hero-price strong {
    font-size: 26px;
    font-weight: 800;
    opacity: 1;
    color: #fff;
}

.hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 13px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-btn-primary {
    background: #ffffff;
    color: #1a1c1d;
}

.hero-btn-primary:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    color: #1a1c1d;
}

.hero-btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    transform: translateY(-2px);
}

.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 6%;
    z-index: 15;
    display: flex;
    gap: 6px;
}

.hero-dot {
    height: 4px;
    width: 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: width 0.3s, background 0.3s, opacity 0.2s;
    padding: 0;
}

.hero-dot:hover {
    opacity: 0.9;
}

.hero-dot.active {
    width: 36px;
    background: #fff;
}

.hero-arrows {
    position: absolute;
    bottom: 22px;
    right: 28px;
    z-index: 15;
    display: flex;
    gap: 8px;
}

.hero-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(8px);
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-1px);
}

.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.45);
    z-index: 20;
    width: 0%;
}

.hero-empty {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted, #717785);
    font-size: 14px;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 38px;
    }

    .hero-banner-content {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        padding: 0 20px;
        align-items: flex-end;
        padding-bottom: 72px;
    }

    .hero-bg {
        background-position: 68% center;
    }

    .hero-banner-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.12;
    }

    .hero-desc {
        font-size: 14px;
        max-width: 100%;
        line-height: 1.55;
    }

    .hero-price strong {
        font-size: 22px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .hero-dots {
        left: 20px;
        bottom: 22px;
    }

    .hero-arrows {
        right: 20px;
        bottom: 18px;
    }

    .hero-arrow {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 440px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 5px 14px;
    }

    .hero-desc {
        font-size: 13px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
