/* Hero Slider 9ffd9a43 */
.hs-9ffd9a43-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 1;
}

.hs-9ffd9a43-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hs-9ffd9a43-slide {
    position: relative;
    height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hs-9ffd9a43-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    will-change: transform;
    transition: transform 0.3s ease;
}

/* Ken Burns */
.hs-9ffd9a43-ken-burns {
    animation: hs9ffd9a43KenBurns 20s ease-in-out infinite alternate;
}

@keyframes hs9ffd9a43KenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.12) translate(-1%, -1%);
    }
}

.swiper-slide-active .hs-9ffd9a43-ken-burns {
    animation-play-state: running;
}

.swiper-slide:not(.swiper-slide-active) .hs-9ffd9a43-ken-burns {
    animation-play-state: paused;
}

/* Overlay */
.hs-9ffd9a43-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
}

/* Content */
.hs-9ffd9a43-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 60px 60px 80px 60px;
    box-sizing: border-box;
}

.hs-9ffd9a43-content-inner {
    max-width: 700px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.swiper-slide-active .hs-9ffd9a43-content-inner {
    opacity: 1;
    transform: translateY(0);
}

/* Title */
.hs-9ffd9a43-title {
    font-size: 52px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 12px 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

/* Price */
.hs-9ffd9a43-price {
    font-size: 22px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    line-height: 1.4;
}

.hs-9ffd9a43-price-prefix {
    opacity: 0.7;
    font-weight: 400;
}

/* CTA Button */
.hs-9ffd9a43-cta {
    display: inline-block;
    padding: 16px 48px;
    background-color: #C9A84C;
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    line-height: 1;
}

.hs-9ffd9a43-cta:hover {
    background-color: #A8872E;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
}

/* Sale Badge */
.hs-9ffd9a43-sale-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #e74c3c;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 3px;
    margin-bottom: 16px;
    margin-right: 8px;
}

/* Custom Badge */
.hs-9ffd9a43-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: #C9A84C;
    color: #000000;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 3px;
    margin-bottom: 16px;
}

/* Countdown */
.hs-9ffd9a43-countdown {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.hs-9ffd9a43-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0,0,0,0.5);
    border-radius: 6px;
    padding: 10px 14px;
    min-width: 56px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hs-9ffd9a43-countdown-number {
    font-size: 26px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}

.hs-9ffd9a43-countdown-label {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
}

/* Navigation Arrows */
.hs-9ffd9a43-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #FFFFFF;
    padding: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hs-9ffd9a43-arrow svg {
    width: 20px;
    height: 20px;
}

.hs-9ffd9a43-arrow:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
}

.hs-9ffd9a43-arrow-prev {
    left: 24px;
}

.hs-9ffd9a43-arrow-next {
    right: 24px;
}

/* Pagination */
.hs-9ffd9a43-pagination {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.hs-9ffd9a43-pagination .swiper-pagination-bullet {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hs-9ffd9a43-pagination .swiper-pagination-bullet-active {
    background: #C9A84C;
    width: 48px;
}

/* Empty State */
.hs-9ffd9a43-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: #1a1a2e;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    border-radius: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hs-9ffd9a43-title {
        font-size: 38px;
    }

    .hs-9ffd9a43-price {
        font-size: 18px;
    }

    .hs-9ffd9a43-content {
        padding: 40px 40px 60px 40px;
    }

    .hs-9ffd9a43-arrow {
        width: 40px;
        height: 40px;
    }

    .hs-9ffd9a43-arrow svg {
        width: 16px;
        height: 16px;
    }

    .hs-9ffd9a43-arrow-prev {
        left: 16px;
    }

    .hs-9ffd9a43-arrow-next {
        right: 16px;
    }
}

@media (max-width: 767px) {
    .hs-9ffd9a43-title {
        font-size: 28px;
    }

    .hs-9ffd9a43-price {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .hs-9ffd9a43-content {
        padding: 24px 24px 48px 24px;
        text-align: center;
    }

    .hs-9ffd9a43-content-inner {
        max-width: 100%;
    }

    .hs-9ffd9a43-cta {
        padding: 14px 32px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .hs-9ffd9a43-arrow {
        display: none;
    }

    .hs-9ffd9a43-countdown {
        justify-content: center;
    }

    .hs-9ffd9a43-countdown-item {
        padding: 8px 10px;
        min-width: 48px;
    }

    .hs-9ffd9a43-countdown-number {
        font-size: 20px;
    }

    .hs-9ffd9a43-pagination {
        bottom: 14px;
    }
}
