.tsw-gallery-carousel {
    position: relative;
    display: block;
    padding: 110px 0 90px;
    overflow: hidden;
}

.tsw-gallery-carousel__shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.08);
    z-index: 0;
    filter: blur(0px);
}

.tsw-gallery-carousel__shape--one {
    width: 260px;
    height: 260px;
    top: -120px;
    left: -80px;
}

.tsw-gallery-carousel__shape--two {
    width: 320px;
    height: 320px;
    right: -110px;
    bottom: -140px;
    background: rgba(3, 105, 161, 0.08);
}

.tsw-gallery-carousel .section-title__text {
    max-width: 640px;
    margin: 15px auto 0;
    color: #64748b;
}

.tsw-gallery-carousel__wrapper {
    position: relative;
    margin-top: 50px;
}

.tswGallerySwiper {
    overflow: visible;
}

.tsw-gallery-card {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.18);
}

.tsw-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tsw-gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.tsw-gallery-carousel__controls {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
}

.tsw-gallery-carousel__nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tsw-gallery-carousel__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.15);
    background: #ffffff;
    color: var(--TSWTravel-black, #0f172a);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tsw-gallery-carousel__btn:hover {
    background: var(--TSWTravel-base, #14b8a6);
    color: #ffffff;
    border-color: var(--TSWTravel-base, #14b8a6);
    box-shadow: 0 15px 25px rgba(20, 184, 166, 0.35);
}

.tsw-gallery-card:hover img {
    transform: scale(1.05);
}

.tsw-gallery-carousel .swiper-slide {
    transition: transform 0.4s ease;
    transform: scale(0.8);
}

.tsw-gallery-carousel .swiper-slide-active {
    transform: scale(1.08);
    z-index: 3;
}

.tsw-gallery-carousel .swiper-slide-next,
.tsw-gallery-carousel .swiper-slide-prev {
    transform: scale(0.9);
    z-index: 2;
}

@media (max-width: 1199px) {
    .tsw-gallery-carousel {
        padding: 90px 0 70px;
    }

    .tsw-gallery-card {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .tsw-gallery-carousel__controls {
        flex-direction: column;
        align-items: center;
    }
}

