.site-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.site-banner-image {
    width: 100%;
    line-height: 0;
}

.site-banner-bg {
    display: block;
    width: 100%;
    height: auto;
}

/* ========================================
   Banner Slider
======================================== */

.site-banner-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.pishgaman-banner-slide-item {
    width: 100%;
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.pishgaman-banner-slide-item.is-active {
    opacity: 1;
}

.pishgaman-banner-slide-item .site-banner-image {
    width: 100%;
    line-height: 0;
}

.pishgaman-banner-slide-item .site-banner-bg {
    display: block;
    width: 100%;
    height: auto;
}

.pishgaman-banner-slide-item .site-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

/* لایه محتوا */

.site-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}


/* محتوای بنر */

.site-banner-content {
    width: 100%;
    padding: 40px 6%;
    box-sizing: border-box;
}

.banner-content-right {
    text-align: right;
}

.banner-content-center {
    text-align: center;
}

.banner-content-left {
    text-align: left;
}


/* عنوان */

.site-banner-title {
    margin: 0 0 12px;
    font-size: var(--banner-title-size);
    font-weight: var(--banner-title-weight);
    line-height: 1.5;
    color: var(--banner-title-color);
}


/* توضیحات */

.site-banner-description {
    margin: 0 0 25px;
    font-size: var(--banner-description-size);
    line-height: 1.8;
    color: var(--banner-description-color);
}


/* دکمه */

.site-banner-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    background: var(--banner-button-bg);
    color: var(--banner-button-color);
    transition: all 0.25s ease;
}

.site-banner-button:hover {
    background: var(--banner-button-hover-bg);
    color: var(--banner-button-hover-color);
}

/* ========================================
   Banner Slider Arrows
======================================== */

.pishgaman-banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 44px;
    height: 44px;

    border: none;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;

    font-size: 18px;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.pishgaman-banner-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.pishgaman-banner-prev {
    right: 25px;
}

.pishgaman-banner-next {
    left: 25px;
}

/* ========================================
   Banner Slider Dots
======================================== */

.pishgaman-banner-dots {
    position: absolute;
    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 8px;

    z-index: 10;
}

.pishgaman-banner-dot {
    width: 9px;
    height: 9px;

    padding: 0;
    border: none;
    border-radius: 50%;

    cursor: pointer;

    background: rgba(255, 255, 255, 0.55);

    transition:
        width 0.25s ease,
        background 0.25s ease,
        opacity 0.25s ease;
}

.pishgaman-banner-dot:hover {
    background: rgba(255, 255, 255, 0.85);
}

.pishgaman-banner-dot.is-active {
    width: 24px;
    border-radius: 10px;
    background: #ffffff;
}




/* موبایل */
@media (max-width: 768px) {

    .site-banner-title {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .site-banner-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .site-banner-content {
        padding: 20px 25px;
    }

    .site-banner-button {
        padding: 9px 20px;
        font-size: 14px;
    }

}


/* گوشی‌های کوچک */
@media (max-width: 480px) {

    .site-banner-title {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 5px;
    }

    .site-banner-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .site-banner-content {
        padding: 12px 18px;
    }

    .site-banner-button {
        padding: 7px 16px;
        font-size: 13px;
    }

}