/* =====================================================
   Pasha Hero Slider – Frontend Styles
   ===================================================== */

.hero-shell {
    position: relative;
    background:
        radial-gradient(circle at 80% 20%, rgba(120,65,224,.12), transparent 32%),
        linear-gradient(180deg, #fff 0%, #fbfaff 100%);
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 560px;
}

/* ── Slides ── */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.015);
    transition: opacity .65s ease, transform .9s ease, visibility .65s;
    pointer-events: none;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
}

/* gradient overlay */
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(255,255,255,1)   4%,
            rgba(255,255,255,.97) 19%,
            rgba(255,255,255,.55) 38%,
            rgba(255,255,255,.06) 67%),
        linear-gradient(180deg, rgba(255,255,255,0) 60%, rgba(255,255,255,.96) 100%);
    z-index: 2;
}

.hero-bg {
    width: 100%;
    height: 90vh !important;
    object-fit: cover;
    object-position: center;
    filter: saturate(.92) contrast(1.02);
}

/* ── Content ── */
.hero-inner {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-copy {
    width: 460px;
    margin-left: 82px;
    transform: translateY(-10px);
}

.hero-kicker {
    font-size: 34px;
    font-weight: 900;
    margin: 0 0 4px;
    letter-spacing: -1.4px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.25;
    font-weight: 900;
    margin: 0 0 16px;
    background: linear-gradient(100deg, #2b0a70, #6f19d1 60%, #3e0e99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-desc {
    font-size: 16px;
    line-height: 2;
    font-weight: 700;
    max-width: 520px;
    color: #292333;
    margin: 0 0 24px;
}

/* ── Buttons ── */
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.primary-btn,
.ghost-btn {
    min-height: 52px;
    border-radius: 12px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: .25s;
    text-decoration: none;

}

.primary-btn {
    color: #fff;
    background: linear-gradient(135deg, #4310aa, #6718cf);
    box-shadow: 0 12px 28px rgba(82,27,181,.2);
}
.primary-btn:hover { transform: translateY(-2px); color: #fff; }

.ghost-btn {
    background: #fff;
    color: #3b2380;
    border-color: #e8dff8;
    box-shadow: 0 9px 25px rgba(59,26,125,.08);
}
.ghost-btn:hover { color: #3b2380; }

.play-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #6d2ad4;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

/* ── Product Label ── */
.hero-product-label {
    position: absolute;
    right: 7%;
    bottom: 92px;
    z-index: 5;
    min-width: 260px;
    padding: 14px 22px;
    text-align: center;
    color: #fff;
    background: linear-gradient(180deg, rgba(56,22,127,.94), rgba(37,10,89,.94));
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(38,12,86,.24);
    direction: ltr;
}
.hero-product-label strong { display: block; font-size: 19px; }
.hero-product-label span { display: block; margin-top: 3px; font-size: 11px; opacity: .92; }

/* ── Pager ── */
.hero-pager {
    position: absolute;
    left: calc((100vw - min(1450px, calc(100vw - 64px))) / 2);
    top: 50%;
    transform: translateY(-45%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    direction: ltr;
}

.pager-item {
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #171022;
    font-size: 14px;
    font-weight: 800;
    width: 42px;
    height: 38px;
    position: relative;
    transition: .25s;

}
.pager-item::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 28px;
    background: #d5d0dd;
    left: 50%;
    top: 33px;
}
.pager-item:last-child::after { display: none; }
.pager-item.active { color: #5e12bf; }
.pager-item.active::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 22px;
    background: #5e12bf;
    left: 50%;
    top: 32px;
    z-index: 2;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .hero-slider { height: 570px; }
    .hero-slide::before {
        background:
            linear-gradient(90deg, rgba(255,255,255,.98) 4%, rgba(255,255,255,.91) 43%, rgba(255,255,255,.25) 75%),
            linear-gradient(180deg, transparent 58%, #fff 100%);
    }
    .hero-copy { width: 470px; margin-left: 58px; }
    .hero-kicker { font-size: 29px; }
    .hero-title  { font-size: 40px; }
    .hero-desc   { font-size: 14px; }
    .hero-product-label { right: 6%; bottom: 100px; min-width: 220px; }
}

@media (max-width: 768px) {
    .hero-shell { padding-bottom: 24px; }
    .hero-slider { height: 690px; }
    .hero-slide::before {
        background: linear-gradient(180deg,
            rgba(255,255,255,.12) 0%,
            rgba(255,255,255,.84) 36%,
            #fff 74%,
            #fff 100%);
    }
    .hero-bg { object-position: 66% center; }
    .hero-inner { align-items: flex-end; padding-bottom: 146px; }
    .hero-copy { width: auto; margin: 0 22px; transform: none; }
    .hero-kicker { font-size: 25px; }
    .hero-title  { font-size: 36px; }
    .hero-desc   { font-size: 13px; line-height: 1.9; margin-bottom: 18px; }
    .hero-actions { gap: 8px; }
    .primary-btn,
    .ghost-btn  { min-height: 46px; padding: 0 14px; font-size: 11px; }
    .hero-product-label { display: none; }
    .hero-pager {
        top: 24px;
        left: 18px;
        transform: none;
        flex-direction: row;
        background: rgba(255,255,255,.88);
        padding: 7px;
        border-radius: 14px;
        box-shadow: 0 4px 12px rgba(0,0,0,.08);
    }
}
