.gallerySwiper {
    overflow: hidden;
    width: 100%;
    padding: 0;
}

.gallerySwiper .swiper-wrapper {
    display: flex;
    align-items: center;
}

.gallerySwiper .swiper-slide {
    transition: all 0.4s ease;
    opacity: 0.4;
    transform: scale(0.8);
    flex-shrink: 0;
}

.gallerySwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.gallerySwiper .swiper-slide-next,
.gallerySwiper .swiper-slide-prev {
    opacity: 0.6;
    transform: scale(1);
}

.gallerySwiper .swiper-slide .tour-btn {
    display: none;
}

.gallerySwiper .swiper-slide-active .tour-btn {
    display: flex;
}

@media (max-width: 768px) {
    .gallerySwiper .swiper-slide {
        transform: scale(0.7);
    }

    .gallerySwiper .swiper-slide-next,
    .gallerySwiper .swiper-slide-prev {
        transform: scale(0.75);
    }
}


.font-size-small { font-size: 0.875rem; }
.font-size-normal { font-size: 1rem; }
.font-size-large { font-size: 1.125rem; }

.font-size-small h1 { font-size: 2.5rem; }
.font-size-normal h1 { font-size: 3rem; }
.font-size-large h1 { font-size: 3.5rem; }

.font-size-small h2 { font-size: 2rem; }
.font-size-normal h2 { font-size: 2.5rem; }
.font-size-large h2 { font-size: 3rem; }

.font-size-small h3 { font-size: 1.5rem; }
.font-size-normal h3 { font-size: 1.875rem; }
.font-size-large h3 { font-size: 2.25rem; }


.font-arabic {
    font-family: 'Noto Sans Arabic', sans-serif;
}


.slider {
    -webkit-appearance: none;
    appearance: none;
    background: #e5e7eb;
    outline: none;
    border-radius: 8px;
}

.dark .slider {
    background: #4b5563;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #14b8a6;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #14b8a6;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#section-gallery .gallery {
    position: relative;
}

#section-gallery .slide {
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

@media (max-width: 767px) {
    #section-gallery .gallery {
        min-height: 231px;
    }

    #section-gallery .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }
}

@media (min-width: 768px) {
    #section-gallery .gallery {
        display: flex;
        align-items: stretch;
    }

    #section-gallery .slide {
        position: relative;
    }
}

#section-gallery img {
    display: block;
}
#section-gallery .controls {
    margin-top: 0.5rem;
}
