/* ----------------------------------------------------
   HOME — BIG PROMO FINAL (IMAGE LEFT, TEXT RIGHT)
---------------------------------------------------- */

.home-bigpromo {
    margin-top: 60px;
    padding: 0 16px 60px;
}

/* parent wrapper */
.home-bigpromo-inner {
    max-width: 1240px;
    margin: 0 auto;
    background: #050509;
    border-radius: 26px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
    direction: ltr;
}

/* IMAGE ------------------------------------------------ */
.home-bigpromo-media {
    position: relative;
    flex: 1.1;
    min-height: 340px;
    max-height: 480px;
    overflow: hidden;
    order: 1;
}

.bp-img-desktop,
.bp-img-mobile {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bp-img-mobile { display: none; }

.home-bigpromo-media-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* CONTENT ------------------------------------------------ */
.home-bigpromo-content {
    flex: 0.9;
    padding: 70px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: right;
    direction: rtl;
    order: 2;
    gap: 22px;
}

.home-bigpromo-title {
    margin: 0;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
}

.home-bigpromo-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    max-width: 34rem;
}

/* ----------------------------------------------------------
   BUTTON — EXACT SAME STYLE AS HERO SLIDER BUTTON (6 colors)
----------------------------------------------------------- */

.home-bigpromo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;

    padding: 13px 40px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .2px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;

    background: var(--btn-bg, #f6c045);           /* پس‌زمینه */
    color: var(--btn-color, #000);                /* رنگ متن */
    border: 2px solid var(--btn-border, #000);    /* حاشیه */
    border-radius: 12px;

    transition: background-color .3s ease,
                color .3s ease,
                border-color .3s ease,
                transform .3s ease;
}

.home-bigpromo-btn:hover,
.home-bigpromo-btn:focus-visible {
    background-color: var(--btn-bg-hover, #ffffff); /* رنگ هاور */
    border-color: var(--btn-bg-hover, #ffffff);
    color: var(--btn-color-hover, #000);
    transform: translateY(-2px);
}

/* active */
.home-bigpromo-btn:active {
    transform: translateY(-1px) scale(.99);
}

/* ----------------------------------------------------
   RESPONSIVE
---------------------------------------------------- */
@media (max-width: 900px) {

    .home-bigpromo-inner {
        flex-direction: column;
        border-radius: 18px;
    }

    .home-bigpromo-media {
        order: 1;
        min-height: 240px;
        max-height: 320px;
    }

    .bp-img-desktop { display: none; }
    .bp-img-mobile  { display: block; }

    .home-bigpromo-content {
        order: 2;
        padding: 30px 28px 40px;
        align-items: flex-start;
        direction: rtl;
        text-align: right;
        gap: 14px;
    }

    .home-bigpromo-title { font-size: 22px; }
    .home-bigpromo-text { font-size: 14px; max-width: 100%; }

    .home-bigpromo-btn {
        width: auto;
        max-width: 260px;
        justify-content: center;
    }
}
