.swiper {
    width: 100%;
    aspect-ratio: 3 / 1;        /* نسبت 1:3 افقی */
    border-radius: 16px;        /* گوشه‌های گرد */
    overflow: hidden;           /* محتوای بیرون‌زده مخفی بشه */
}

/* هر اسلاید */
.swiper-slide {
    border-radius: 16px;        /* گوشه‌های گرد برای اسلاید */
    overflow: hidden;           /* تصویر از اسلاید بیرون نزنه */
}

/* تصویر داخل اسلاید */
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;          /* کل فضا رو پر کنه */
}

/* ============ نقطه‌های راهنما (دات‌ها) ============ */

/* ============ نقطه‌های راهنما با افکت شیشه‌ای iOS ============ */

.swiper-pagination {
    position: absolute;
    bottom: 12px !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: auto !important;
    padding: 4px 9px;
    
    /* افکت شیشه‌ای iOS */
    background: rgba(255, 255, 255, 0.15);  /* سفید خیلی شفاف */
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    
    /* حاشیه شیشه‌ای */
    border: 1px solid rgba(255, 255, 255, 0.25);
    
    /* سایه ملایم */
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 10;
}

/* دات غیرفعال */
.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* دات فعال */
.swiper-pagination-bullet-active {
    background: #ffffff;
    width: 20px;
    border-radius: 4px;
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.15),
        0 0 8px rgba(255, 255, 255, 0.5);
}

/* هاور روی دات غیرفعال */
.swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.75);
    transform: scale(1.3);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}