.card {
    border: none;
    background-color: transparent;
}


/* ===== BARS & FAMILIES & EXPERIENCES & LOCAL AREAS & GALLERY SWIPER ===== */
.bars-swiper-wrap,
.families-swiper-wrap,
.experiences-swiper-wrap,
.localareas-swiper-wrap,
.home-gallery-swiper-wrap {
    position: relative;
    margin-top: clamp(30px, 3.6vw, 54px);
}

.bars-swiper,
.families-swiper,
.experiences-swiper,
.localareas-swiper,
.home-gallery-swiper {
    overflow: hidden;
}

.bars-swiper .swiper-slide,
.families-swiper .swiper-slide,
.experiences-swiper .swiper-slide,
.localareas-swiper .swiper-slide,
.home-gallery-swiper .swiper-slide {
    height: auto;
}

.bars-swiper .card,
.families-swiper .card,
.experiences-swiper .card,
.localareas-swiper .capfig {
    height: 100%;
}

.home-gallery-swiper .home-gallery-item {
    height: 100%;
    margin: 0;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-sm, 2px);
}

.home-gallery-swiper .home-gallery-item img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(0.25, 1, 0.5, 1);
}

.home-gallery-swiper .home-gallery-item:hover img {
    transform: scale(1.05);
}

.bars-swiper-button,
.families-swiper-button,
.experiences-swiper-button,
.localareas-swiper-button,
.home-gallery-swiper-button {
    position: absolute;
    top: calc(50% - 10px);
    transform: translateY(-50%);
    z-index: 3;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--ink, #1c1c1c);
    cursor: pointer;
    opacity: .55;
    transition: opacity .3s ease;
}

.localareas-swiper-button {
    color: rgba(255, 255, 255, .88);
}

.bars-swiper-button:hover,
.bars-swiper-button:focus-visible,
.families-swiper-button:hover,
.families-swiper-button:focus-visible,
.experiences-swiper-button:hover,
.experiences-swiper-button:focus-visible,
.localareas-swiper-button:hover,
.localareas-swiper-button:focus-visible,
.home-gallery-swiper-button:hover,
.home-gallery-swiper-button:focus-visible {
    opacity: 1;
}

.bars-swiper-prev,
.families-swiper-prev,
.experiences-swiper-prev,
.localareas-swiper-prev,
.home-gallery-swiper-prev {
    left: -80px;
}

.bars-swiper-next,
.families-swiper-next,
.experiences-swiper-next,
.localareas-swiper-next,
.home-gallery-swiper-next {
    right: -80px;
}

.bars-swiper-button.swiper-button-disabled,
.families-swiper-button.swiper-button-disabled,
.experiences-swiper-button.swiper-button-disabled,
.localareas-swiper-button.swiper-button-disabled,
.home-gallery-swiper-button.swiper-button-disabled {
    opacity: .2;
    pointer-events: none;
}

@media (max-width: 1024px) {

    .bars-swiper-prev,
    .bars-swiper-next,
    .families-swiper-prev,
    .families-swiper-next,
    .experiences-swiper-prev,
    .experiences-swiper-next,
    .localareas-swiper-prev,
    .localareas-swiper-next,
    .home-gallery-swiper-prev,
    .home-gallery-swiper-next {
        left: -14px;
        right: auto;
    }

    .bars-swiper-next,
    .families-swiper-next,
    .experiences-swiper-next,
    .localareas-swiper-next,
    .home-gallery-swiper-next {
        left: auto;
        right: -14px;
    }
}

@media (max-width: 768px) {

    .bars-swiper-button,
    .families-swiper-button,
    .experiences-swiper-button,
    .localareas-swiper-button,
    .home-gallery-swiper-button {
        width: 52px;
        height: 52px;
    }

    .bars-swiper-button svg,
    .families-swiper-button svg,
    .experiences-swiper-button svg,
    .localareas-swiper-button svg,
    .home-gallery-swiper-button svg {
        width: 34px;
        height: 34px;
    }
}

/* ===== HERO SWIPER ===== */
.hero-swiper-instance {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-image {
    position: absolute;
    inset: 0;
}

.hero-slide-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom, rgba(12, 15, 11, .38) 0%, rgba(12, 15, 11, 0) 36%),
        linear-gradient(to top, rgba(12, 15, 11, .44) 0%, rgba(12, 15, 11, 0) 44%),
        linear-gradient(to right, rgba(12, 15, 11, .28) 0%, rgba(12, 15, 11, 0) 55%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 var(--gutter, 24px);
    text-align: center;
    color: #fff;
}

.hero-title {
    margin: 0 0 18px;
    font-family: "EB Garamond", serif;
    font-size: clamp(2.4rem, 5.2vw, 4.6rem);
    line-height: 1.12;
    font-weight: 500;
    text-shadow: 0 1px 30px rgba(0, 0, 0, .28);
}

.hero-subtitle {
    margin: 0 auto;
    max-width: 640px;
    font-family: "Jost", sans-serif;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 300;
    line-height: 1.65;
    text-shadow: 0 1px 18px rgba(0, 0, 0, .3);
}

.btn-discover {
    display: inline-block;
    margin-top: 34px;
    padding: 15px 42px;
    border: 1px solid rgba(255, 255, 255, .65);
    color: #fff;
    font-family: "Jost", sans-serif;
    font-size: .82rem;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    transition: background .35s ease, color .35s ease;
}

.btn-discover:hover,
.btn-discover:focus-visible {
    background: #fff;
    color: var(--ink, #1c1c1c);
}

/* Ok butonları */
.hero-swiper-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
    opacity: .65;
    transition: opacity .3s ease, background .3s ease;
}

.hero-swiper-button:hover,
.hero-swiper-button:focus-visible {
    opacity: 1;
    background: rgba(12, 15, 11, .28);
}

.hero-swiper-prev {
    left: clamp(8px, 3vw, 44px);
}

.hero-swiper-next {
    right: clamp(8px, 3vw, 44px);
}

/* Video ses düğmesi */
.hero-video-sound-button {
    position: absolute;
    right: clamp(16px, 3vw, 44px);
    bottom: clamp(84px, 12vh, 120px);
    z-index: 3;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    background: rgba(12, 15, 11, .3);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background .3s ease;
}

.hero-video-sound-button:hover,
.hero-video-sound-button:focus-visible {
    background: rgba(12, 15, 11, .55);
}

.hero-video-sound-button .hero-video-sound-icon-unmuted {
    display: none;
}

.hero-video-sound-button.is-unmuted .hero-video-sound-icon-muted {
    display: none;
}

.hero-video-sound-button.is-unmuted .hero-video-sound-icon-unmuted {
    display: block;
}

/* Aşağı kaydırma göstergesi */
.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 3;
    color: #fff;
    opacity: .8;
    animation: hero-scroll-bounce 2.2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hero-scroll-bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 9px);
    }
}

@media (max-width: 768px) {
    .hero-swiper-button {
        width: 52px;
        height: 52px;
    }

    .hero-swiper-button svg {
        width: 34px;
        height: 34px;
    }

    .hero-video-sound-button {
        right: 14px;
        bottom: 78px;
        width: 42px;
        height: 42px;
    }

    .scroll-indicator {
        bottom: 18px;
    }
}


.room-btn {
    display: inline-block;
    font-family: var(--label);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding-bottom: 5px;
    position: relative;
}

.room-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform-origin: right;
    transition: transform .5s var(--ease);
}

.room-btn:hover::after {
    transform: scaleX(0);
    transform-origin: left;
}

/* ===== ROOM DETAIL GALLERY SWIPER ===== */
.room-gallery-wrap {
    position: relative;
}

.room-gallery-swiper {
    overflow: hidden;
}

.room-gallery-swiper .swiper-slide {
    height: auto;
}

.room-gallery-slide {
    margin: 0;
    overflow: hidden;
    position: relative;
    background-color: var(--sand, #ebe7df);
    border-radius: var(--radius-sm, 2px);
}

.room-gallery-slide img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(0.25, 1, 0.5, 1);
}

.room-gallery-slide:hover img {
    transform: scale(1.04);
}

.room-gallery-zoom-badge {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(20, 21, 15, .62);
    backdrop-filter: blur(4px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .3s ease, transform .3s ease, background .3s ease;
    pointer-events: none;
}

.room-gallery-slide:hover .room-gallery-zoom-badge {
    opacity: 1;
    transform: translateY(0);
}

.room-gallery-nav {
    position: absolute;
    top: calc(50% - 16px);
    transform: translateY(-50%);
    z-index: 5;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--ink, #14150f);
    cursor: pointer;
    opacity: .75;
    transition: opacity .3s ease, color .3s ease, transform .3s ease;
}

.room-gallery-prev {
    left: 8px;
}

.room-gallery-next {
    right: 8px;
}

.room-gallery-nav:hover,
.room-gallery-nav:focus-visible {
    background: transparent;
    color: var(--gold, #9e8354);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    outline: none;
}

.room-gallery-nav.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}

.room-gallery-pagination {
    display: flex;
    gap: 9px;
    justify-content: center;
    margin-top: 24px;
}

.room-gallery-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ink, #14150f);
    opacity: .25;
    display: inline-block;
    cursor: pointer;
    transition: transform .3s ease, opacity .3s ease, background-color .3s ease;
}

.room-gallery-dot.is-on,
.room-gallery-dot.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--ink, #14150f);
    transform: scale(1.35);
}

/* 360 Tur Butonu */
.room-360-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--label);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 13px 26px;
    border: 1px solid var(--ink);
    color: var(--ink);
    background: transparent;
    transition: all .35s var(--ease);
}

.room-360-btn:hover {
    background: var(--ink);
    color: #fff;
}