/* استایل‌ها برای ویجت اسلایدر صفحه اصلی */
.homepage-carousel-container {
    direction: rtl;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.homepage-carousel {
    width: 100%;
    overflow: visible;
}

.homepage-carousel .swiper-slide {
    width: 330px;
    margin-left: 12px;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.homepage-carousel .swiper-slide:active {
    transform: scale(0.95);
}

@media (min-width: 1024px) {
    .homepage-carousel .swiper-slide {
        width: 430px;
    }
}

.homepage-carousel .swiper-slide img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.homepage-carousel .swiper-slide a {
    text-decoration: none;
    color: inherit;
    display: block;
}


.swiper.homepage-carousel{
    padding-left: 1rem!important;
    padding-right: 1rem!important;
}

@media (min-width: 1024px) {
    .homepage-carousel .swiper-slide .title {
        font-size: 16px;
    }
    
    .homepage-carousel .swiper-slide .subtitle {
        font-size: 14px;
    }
    
    .homepage-carousel .swiper-slide .button-text {
        font-size: 14px;
    }
}
.banner-content{
    padding: 0.625rem 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: .75rem;
}
.banner-headings{
    display: flex;
    flex-direction: column;
    color: #000;
}
.banner-headings .bnr-title{
    font-size: 14px;
    font-weight: 700;
}
.banner-headings .bnr-subtitle{
    font-size: 12px;
    font-weight: 400;
}
.btn-view-more {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 12px;
    font-weight: 700;
    color: #000;
}
.homepage-carousel .btn-view-more svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.15s ease;
    margin-top: -2px;
}

.homepage-carousel .swiper-slide:hover .btn-view-more svg {
    transform: translateX(-4px);
}
