.swiper-gallery-classic {
    background: transparent;
    padding: 20px 0;
    direction: ltr; /* برای جلوگیری از مشکل در راست چین بودن */
}

.swiper-gallery-classic .swiper-slide {
    text-align: center;
}

.swiper-gallery-classic .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.swiper-gallery-classic .swiper-slide a:hover img {
    transform: scale(1.02);
}

/* فلش های ناوبری (دایره ای طوسی) */
.swiper-gallery-classic .swiper-button-next,
.swiper-gallery-classic .swiper-button-prev {
    background-color: #ccc; /* طوسی */
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.swiper-gallery-classic .swiper-button-next:hover,
.swiper-gallery-classic .swiper-button-prev:hover {
    background-color: #b3b3b3;
    transform: scale(1.05);
}

.swiper-gallery-classic .swiper-button-next::after,
.swiper-gallery-classic .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* دایره های صفحه شمار (pagination) */
.swiper-gallery-classic .swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 1;
    width: 10px;
    height: 10px;
}

.swiper-gallery-classic .swiper-pagination-bullet-active {
    background-color: #666;
}