

/*--------------------------------------------------------------------------*/
/*pinch-zoom*/
/*--------------------------------------------------------------------------*/

.pinch-zoom-container {
    position: relative;
    -webkit-user-select: none;
    user-select: none;
}

.pinch-zoom {
    transform-origin: center center;
    will-change: transform;
    transition: none; /* برای نرم بودن در حین pinch */
}

/* فقط موبایل */
@media (min-width: 768px) {
    .pinch-zoom {
        pointer-events: none; /* در دسکتاپ غیرفعال */
    }
}

/*--------------------------------------------------------------------------*/
/*select2*/
/*--------------------------------------------------------------------------*/

.select2-container--default .select2-selection--single {
    background-color: #f9fafb !important;
    border-color: #e5e7eb !important;
    border-radius: 0.375rem !important;
    height: 42px !important;
    padding: 5px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 32px !important;
    color: #1f2937 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px !important;
}

.select2-dropdown {
    border-color: #e5e7eb !important;
    border-radius: 0.375rem !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #e5e7eb !important;
    border-radius: 0.375rem !important;
    padding: 8px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--color-main) !important; /* رنگ اصلی شما */
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: var(--color-main-lite) !important;
    color: var(--color-main) !important;
}
