/*
 * Villa Radarı — Renk paleti (Güney Ege tonları)
 * Mobil-first: önce mobil stiller, sonra desktop için @media min-width override'lar.
 */

:root {
    --vi-turquoise: #2BA3A6;
    --vi-deep-sea: #0F5C5E;
    --vi-olive: #6B7A3A;
    --vi-sand: #E9DCC4;
    --vi-stone: #8A8276;
    --vi-sunset: #D77A4A;
    --vi-cream: #FAF6EE;
    --vi-ink: #1F2A2E;
}

* { box-sizing: border-box; }

body {
    background-color: var(--vi-cream) !important;
    color: var(--vi-ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(43, 163, 166, 0.1);
}

a {
    color: var(--vi-turquoise);
}
a:hover {
    color: var(--vi-deep-sea);
}

img {
    max-width: 100%;
    height: auto;
}

/* ====================== Topbar (sticky) ====================== */
.vi-topbar {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.7rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.vi-topbar .vi-brand {
    font-size: 1rem;
    font-weight: 800;
    color: var(--vi-deep-sea);
    letter-spacing: -0.01em;
    text-decoration: none;
    line-height: 1.2;
    max-width: 60vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.vi-topbar .vi-brand small {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--vi-stone);
    letter-spacing: 0.02em;
    margin-top: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vi-topbar-btn {
    padding: 0.5rem 0.9rem !important;
    font-size: 0.85rem !important;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .vi-topbar .vi-brand {
        font-size: 1.15rem;
        max-width: none;
    }
    .vi-topbar .vi-brand small {
        font-size: 0.75rem;
    }
}

/* ====================== Hero (kompakt, mobil-öncelikli) ====================== */
.vi-hero {
    position: relative;
    min-height: 25vh;
    max-height: 320px;
    background-color: var(--vi-deep-sea);
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.25rem 1rem;
}
.vi-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 92, 94, 0.4) 0%, rgba(15, 92, 94, 0.82) 100%);
}
.vi-hero > * {
    position: relative;
    z-index: 1;
    width: 100%;
}
.vi-hero h1 {
    font-size: clamp(1.15rem, 4.2vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 auto 0.35rem;
    max-width: 28rem;
}
.vi-hero .vi-region {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.22rem 0.7rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    font-size: 0.72rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.vi-hero .vi-tagline {
    font-size: 0.78rem;
    line-height: 1.4;
    opacity: 0.95;
    max-width: 32rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .vi-hero {
        min-height: 28vh;
        padding: 1.75rem 2rem;
    }
    .vi-hero h1 {
        font-size: clamp(1.4rem, 2.6vw, 1.85rem);
        max-width: 36rem;
    }
    .vi-hero .vi-tagline {
        font-size: 0.9rem;
        max-width: 38rem;
    }
}

/* ====================== Tab nav (3 buton: Yerler/Sipariş/Mekanlar) ====================== */
.vi-tabs-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    padding: 0.5rem;
    background: #fff;
    border-radius: 0.85rem;
    box-shadow: 0 6px 24px rgba(15, 92, 94, 0.1);
    margin: 1rem auto 1.5rem;
    max-width: 720px;
    position: relative;
    z-index: 5;
}
/* Hero'nun hemen altındaysa (WiFi/galeri yoksa) hero'ya bindir */
.vi-tabs-nav--overlap {
    margin-top: -1.5rem;
}
.vi-tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.65rem 0.4rem;
    background: transparent;
    color: var(--vi-stone);
    border: none;
    border-radius: 0.6rem;
    font-weight: 600;
    font-size: 0.72rem;
    line-height: 1.15;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    min-height: 60px;
    -webkit-tap-highlight-color: transparent;
}
.vi-tab-btn:hover {
    background: var(--vi-cream);
    color: var(--vi-deep-sea);
}
.vi-tab-btn.active {
    background: var(--vi-turquoise);
    color: #fff;
}
.vi-tab-btn .vi-tab-icon {
    font-size: 1.1rem;
    line-height: 1;
}
.vi-tab-btn .vi-tab-label {
    font-size: 0.72rem;
}
.vi-tab-btn .vi-tab-count {
    display: inline-block;
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.08);
    font-size: 0.65rem;
    font-weight: 700;
    margin-left: 2px;
}
.vi-tab-btn.active .vi-tab-count {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

@media (min-width: 540px) {
    .vi-tab-btn {
        font-size: 0.85rem;
        padding: 0.85rem 0.6rem;
    }
    .vi-tab-btn .vi-tab-icon {
        font-size: 1.3rem;
    }
    .vi-tab-btn .vi-tab-label {
        font-size: 0.85rem;
    }
}

/* ====================== Section başlığı ====================== */
.vi-section {
    padding: 1.5rem 0;
}
.vi-section.first {
    padding-top: 0;
}
.vi-section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}
.vi-section-title .label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background-color: var(--vi-sand);
    color: var(--vi-deep-sea);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}
.vi-section-title h2 {
    font-size: clamp(1.3rem, 4vw, 1.9rem);
    font-weight: 700;
    color: var(--vi-ink);
    margin: 0;
}
.vi-section-title p {
    color: var(--vi-stone);
    margin-top: 0.4rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .vi-section {
        padding: 2.5rem 0;
    }
}

/* ====================== Kart (mobil-uyumlu) ====================== */
.vi-card {
    display: block;
    background: #fff;
    border-radius: 0.85rem;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(15, 92, 94, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.vi-card:hover, .vi-card:active {
    transform: translateY(-3px);
    box-shadow: 0 8px 26px rgba(15, 92, 94, 0.13);
    color: inherit;
}
.vi-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: var(--vi-sand);
}
.vi-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.vi-card:hover .vi-card-media img {
    transform: scale(1.06);
}
.vi-card-media .badge-featured {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background-color: var(--vi-sunset);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
}
.vi-card-body {
    padding: 0.9rem 1rem 1.1rem;
}
.vi-card-category {
    color: var(--vi-turquoise);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.vi-card-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--vi-ink);
    margin: 0.2rem 0;
    line-height: 1.3;
}
.vi-card-excerpt {
    color: var(--vi-stone);
    font-size: 0.85rem;
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vi-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.6rem;
    font-size: 0.75rem;
    color: var(--vi-stone);
}
.vi-card-meta .vi-distance {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* ====================== Butonlar ====================== */
.vi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.7rem 1.2rem;
    border-radius: 0.6rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    line-height: 1.2;
}
.vi-btn-primary {
    background-color: var(--vi-turquoise);
    color: #fff;
}
.vi-btn-primary:hover {
    background-color: var(--vi-deep-sea);
    color: #fff;
}
.vi-btn-accent {
    background-color: var(--vi-sunset);
    color: #fff;
}
.vi-btn-accent:hover {
    background-color: #b35b30;
    color: #fff;
}
.vi-btn-ghost {
    background-color: var(--vi-sand);
    color: var(--vi-deep-sea);
}
.vi-btn-ghost:hover {
    background-color: var(--vi-turquoise);
    color: #fff;
}

/* ====================== "Tümünü Gör" CTA Butonu (dikkat çekici) ====================== */
.vi-cta-wrap {
    display: flex;
    justify-content: center;
    padding: 0 0.5rem;
}
.vi-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1.5rem 0.95rem 1.25rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    line-height: 1.2;
    color: #fff;
    width: 100%;
    max-width: 22rem;
    box-shadow: 0 8px 24px rgba(15, 92, 94, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}
.vi-btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}
.vi-btn-cta:hover, .vi-btn-cta:active {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 14px 32px rgba(15, 92, 94, 0.28);
}
.vi-btn-cta:hover::before {
    left: 100%;
}
.vi-btn-cta-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 0.7rem;
    backdrop-filter: blur(6px);
}
.vi-btn-cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    text-align: start;
}
.vi-btn-cta-text strong {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}
.vi-btn-cta-text small {
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.92;
    margin-top: 2px;
}
.vi-btn-cta-arrow {
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.vi-btn-cta:hover .vi-btn-cta-arrow {
    transform: translateX(4px);
}

/* Renk varyantları — her bölüm için ayrı palet */
.vi-btn-cta-primary {
    background: linear-gradient(135deg, var(--vi-turquoise) 0%, var(--vi-deep-sea) 100%);
}
.vi-btn-cta-accent {
    background: linear-gradient(135deg, var(--vi-sunset) 0%, #b35b30 100%);
}
.vi-btn-cta-warning {
    background: linear-gradient(135deg, var(--vi-olive) 0%, #4f5a2a 100%);
}

@media (min-width: 540px) {
    .vi-btn-cta {
        max-width: 26rem;
        padding: 1.05rem 1.75rem 1.05rem 1.4rem;
    }
    .vi-btn-cta-icon {
        width: 2.8rem;
        height: 2.8rem;
        font-size: 1.6rem;
    }
    .vi-btn-cta-text strong {
        font-size: 1.05rem;
    }
}

/* ====================== Footer ====================== */
.vi-footer {
    background-color: var(--vi-deep-sea);
    color: rgba(255, 255, 255, 0.85);
    padding: 1.5rem 0;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
}
.vi-footer a {
    color: rgba(255, 255, 255, 0.85);
}
.vi-footer a:hover {
    color: #fff;
}

/* ====================== Tabs (eski stil, listing sayfalarında kullanılıyor) ====================== */
.vi-tabs {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}
.vi-tabs .vi-tab {
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background-color: #fff;
    color: var(--vi-stone);
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    cursor: pointer;
}
.vi-tabs .vi-tab.active,
.vi-tabs .vi-tab:hover {
    background-color: var(--vi-turquoise);
    color: #fff;
    border-color: var(--vi-turquoise);
}

/* ====================== Contact strip (mekan detayı) ====================== */
.vi-contact-strip {
    background-color: var(--vi-sand);
    border-radius: 0.85rem;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
    text-align: center;
}
@media (min-width: 540px) {
    .vi-contact-strip {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        padding: 1.25rem;
    }
}
.vi-contact-strip .vi-contact-item {
    color: var(--vi-deep-sea);
    text-decoration: none;
    transition: transform 0.2s ease;
    padding: 0.5rem 0.4rem;
    border-radius: 0.5rem;
}
.vi-contact-strip .vi-contact-item:hover {
    transform: translateY(-2px);
    color: var(--vi-deep-sea);
}
.vi-contact-strip .vi-contact-item strong {
    display: block;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    word-break: break-all;
}
.vi-contact-strip .vi-contact-item span {
    font-size: 0.7rem;
    color: var(--vi-stone);
    display: block;
}

/* ====================== Detay sayfası ====================== */
.vi-detail-cover {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
    border-radius: 0.85rem;
    margin-bottom: 1.5rem;
}
.vi-detail-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--vi-ink);
}
.vi-detail-content p {
    margin-bottom: 1rem;
}

/* Blog tarzı zengin içerik (markdown render edilmiş) */
.vi-prose {
    max-width: 100%;
}
.vi-prose p {
    margin-bottom: 1.1rem;
    line-height: 1.75;
}
.vi-prose strong {
    color: var(--vi-deep-sea);
    font-weight: 700;
}
.vi-prose em {
    color: var(--vi-stone);
    font-style: italic;
}
.vi-prose h1, .vi-prose h2, .vi-prose h3, .vi-prose h4 {
    color: var(--vi-deep-sea);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.vi-prose h1 { font-size: 1.6rem; }
.vi-prose h2 { font-size: 1.35rem; }
.vi-prose h3 { font-size: 1.15rem; }
.vi-prose h4 { font-size: 1.02rem; }
.vi-prose ul, .vi-prose ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}
.vi-prose ul {
    list-style: none;
    padding-left: 0;
}
.vi-prose ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.vi-prose ul li::before {
    content: '';
    position: absolute;
    left: 0.25rem;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    background: var(--vi-turquoise);
    border-radius: 50%;
}
.vi-prose ol {
    list-style: decimal;
    color: var(--vi-deep-sea);
}
.vi-prose ol li {
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.vi-prose ol li::marker {
    font-weight: 700;
    color: var(--vi-turquoise);
}
.vi-prose ol li > p,
.vi-prose ul li > p {
    margin-bottom: 0.4rem;
    color: var(--vi-ink);
}
.vi-prose blockquote {
    border-left: 3px solid var(--vi-turquoise);
    background: var(--vi-sand);
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
    border-radius: 0.5rem;
    color: var(--vi-deep-sea);
    font-style: italic;
}
.vi-prose a {
    color: var(--vi-turquoise);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.vi-prose a:hover {
    color: var(--vi-deep-sea);
}
.vi-prose code {
    background: var(--vi-sand);
    padding: 0.1rem 0.35rem;
    border-radius: 0.3rem;
    font-size: 0.9em;
    color: var(--vi-deep-sea);
}
.vi-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0;
    font-size: 0.9rem;
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.vi-prose table th {
    background: var(--vi-deep-sea);
    color: #fff;
    text-align: left;
    padding: 0.6rem 0.75rem;
    font-weight: 600;
}
.vi-prose table td {
    padding: 0.55rem 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: top;
}
.vi-prose table tr:last-child td {
    border-bottom: none;
}
.vi-prose table tr:nth-child(even) td {
    background: var(--vi-cream);
}
.vi-prose hr {
    border: none;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    margin: 1.75rem 0;
}
.vi-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}
@media (min-width: 540px) {
    .vi-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
}
@media (min-width: 768px) {
    .vi-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.vi-gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* ====================== Sticky bottom CTA (mobil) ====================== */
.vi-sticky-cta {
    position: sticky;
    bottom: 0;
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.6rem;
    display: flex;
    gap: 0.5rem;
    z-index: 90;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}
.vi-sticky-cta .vi-btn {
    flex: 1;
    padding: 0.7rem 0.4rem;
    font-size: 0.85rem;
}

/* ====================== Boş durum ====================== */
.vi-empty {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--vi-stone);
}

/* ====================== Bootstrap grid (mobile) küçük düzenleme ====================== */
.row.g-3 { row-gap: 1rem; }

/* Tab section gizleme/gösterme */
[data-tab-section] {
    display: none;
}
[data-tab-section].active {
    display: block;
}

/* ====================== Pagination (public) ====================== */
.vi-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.vi-pagination-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.vi-pagination-item .vi-pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 0.65rem;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--vi-text, #1c2a35);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.vi-pagination-item .vi-pagination-link:hover {
    background: var(--vi-primary, #2aa6a0);
    border-color: var(--vi-primary, #2aa6a0);
    color: #ffffff;
    transform: translateY(-1px);
}
.vi-pagination-item.active .vi-pagination-link {
    background: var(--vi-primary, #2aa6a0);
    border-color: var(--vi-primary, #2aa6a0);
    color: #ffffff;
    cursor: default;
}
.vi-pagination-item.disabled .vi-pagination-link {
    opacity: 0.45;
    cursor: not-allowed;
    background: #f6f6f6;
}
.vi-pagination-summary {
    margin: 0;
    color: #6b7886;
    font-size: 0.875rem;
}
.vi-pagination-summary strong {
    color: var(--vi-text, #1c2a35);
}

/* ====================== Footer credit ====================== */
.vi-footer-credit {
    margin-top: 0.25rem;
    font-size: 0.8rem;
    opacity: 0.75;
}
.vi-footer-credit a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.vi-footer-credit a:hover {
    opacity: 1;
    color: var(--vi-sand, #e9dcc4);
}

/* ====================== WiFi Banner (açılır/kapanır) ====================== */
.vi-wifi-banner {
    position: relative;
    margin: 1rem 0 0;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, #073f41 0%, #0F5C5E 60%, #2BA3A6 100%);
    color: #fff;
    box-shadow: 0 10px 28px -10px rgba(15, 92, 94, 0.45);
    animation: vi-wifi-slide-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes vi-wifi-slide-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Sade glow — sağ üstte küçük altın leke */
.vi-wifi-glow {
    position: absolute;
    top: -40%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.22) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}
.vi-wifi-pattern { display: none; }

/* Native <summary> ok ikonunu gizle */
.vi-wifi-banner > summary {
    list-style: none;
    cursor: pointer;
}
.vi-wifi-banner > summary::-webkit-details-marker { display: none; }
.vi-wifi-banner > summary::marker { content: ''; }

/* Tıklanabilir başlık çubuğu */
.vi-wifi-summary {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.85rem;
    user-select: none;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.vi-wifi-summary:hover {
    background: rgba(255, 255, 255, 0.04);
}
.vi-wifi-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    flex-shrink: 0;
}
.vi-wifi-icon svg { width: 16px; height: 16px; }

.vi-wifi-summary-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}
.vi-wifi-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #E9DCC4;
    opacity: 0.9;
    line-height: 1.2;
}
.vi-wifi-summary-hint {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.2;
    font-weight: 400;
}
.vi-wifi-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease;
}
.vi-wifi-chevron svg { width: 14px; height: 14px; }
.vi-wifi-banner[open] .vi-wifi-chevron {
    transform: rotate(180deg);
    background: rgba(201, 169, 97, 0.85);
    color: #073f41;
}
.vi-wifi-banner[open] .vi-wifi-summary-hint {
    opacity: 0;
}

/* Body — grid-row trick ile smooth animasyon */
.vi-wifi-body {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
.vi-wifi-banner[open] .vi-wifi-body {
    grid-template-rows: 1fr;
}
.vi-wifi-body-inner {
    overflow: hidden;
    min-height: 0;
}
/* İç padding (sadece açıkken alttan boşluk) */
.vi-wifi-banner[open] .vi-wifi-body-inner {
    padding: 0 0.85rem 0.85rem;
}
.vi-wifi-banner .vi-wifi-body-inner > * + * {
    margin-top: 0.55rem;
}

.vi-wifi-fields {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.vi-wifi-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.55rem 0.75rem;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.vi-wifi-row-info {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
}
.vi-wifi-row-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(233, 220, 196, 0.85);
    flex-shrink: 0;
    min-width: 42px;
}
.vi-wifi-row-value {
    font-size: 0.98rem;
    font-weight: 700;
    color: #fff;
    word-break: break-all;
    line-height: 1.2;
}
.vi-wifi-row-mono {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    letter-spacing: 0.01em;
}

.vi-wifi-copy {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.38rem 0.6rem;
    background: #C9A961;
    color: #073f41;
    border: none;
    border-radius: 7px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}
.vi-wifi-copy:hover { background: #d8b975; }
.vi-wifi-copy.copied { background: #4ade80; color: #064e3b; }
.vi-wifi-copy svg { width: 13px; height: 13px; flex-shrink: 0; }
.vi-wifi-copy .vi-wifi-copy-text { display: none; }

.vi-wifi-note {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.35;
    color: rgba(255,255,255,0.85);
    padding-left: 0.15rem;
}
.vi-wifi-note::before {
    content: '💡 ';
    margin-right: 0.15rem;
}

/* Tablet+ kopyala butonu metni göster */
@media (min-width: 480px) {
    .vi-wifi-copy {
        padding: 0.4rem 0.75rem;
    }
    .vi-wifi-copy .vi-wifi-copy-text { display: inline; }
}

/* Tablet+ iki sütunlu grid */
@media (min-width: 768px) {
    .vi-wifi-summary { padding: 0.85rem 1.1rem; }
    .vi-wifi-banner[open] .vi-wifi-body-inner { padding: 0 1.1rem 1.1rem; }
    .vi-wifi-fields {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
}

/* ====================== Paylaşım Yüzen Widget (FAB) ====================== */
.vi-share-fab {
    position: fixed;
    z-index: 90;
    right: 16px;
    bottom: 20px;
}
@media (min-width: 768px) {
    .vi-share-fab {
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Trigger — daire buton */
.vi-share-trigger {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #0F5C5E 0%, #2BA3A6 100%);
    color: #fff;
    box-shadow: 0 10px 24px -6px rgba(15, 92, 94, 0.55), 0 2px 4px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
    animation: vi-share-pulse 2.4s ease-in-out infinite;
}
.vi-share-trigger:hover {
    transform: scale(1.08);
    box-shadow: 0 14px 30px -6px rgba(15, 92, 94, 0.7);
    animation: none;
}
.vi-share-trigger:active { transform: scale(0.96); }

@keyframes vi-share-pulse {
    0%, 100% { box-shadow: 0 10px 24px -6px rgba(15, 92, 94, 0.55), 0 0 0 0 rgba(43, 163, 166, 0.4); }
    50%       { box-shadow: 0 10px 24px -6px rgba(15, 92, 94, 0.55), 0 0 0 10px rgba(43, 163, 166, 0); }
}

.vi-share-trigger svg {
    width: 22px;
    height: 22px;
    transition: opacity 0.2s ease, transform 0.25s ease;
}
.vi-share-trigger-icon { position: absolute; opacity: 1; transform: scale(1) rotate(0); }
.vi-share-close-icon   { position: absolute; opacity: 0; transform: scale(0.6) rotate(-90deg); }

.vi-share-fab.is-open .vi-share-trigger {
    background: #1f2937;
    animation: none;
}
.vi-share-fab.is-open .vi-share-trigger-icon { opacity: 0; transform: scale(0.6) rotate(90deg); }
.vi-share-fab.is-open .vi-share-close-icon   { opacity: 1; transform: scale(1) rotate(0); }

/* Panel */
.vi-share-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);
    width: 260px;
    background: #fff;
    border-radius: 14px;
    box-shadow:
        0 20px 50px -12px rgba(15, 92, 94, 0.30),
        0 4px 12px -4px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(15, 92, 94, 0.08);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(0.96);
    transform-origin: bottom right;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
@media (min-width: 768px) {
    .vi-share-panel {
        bottom: auto;
        top: 50%;
        right: calc(100% + 14px);
        transform: translateY(-50%) translateX(8px) scale(0.96);
        transform-origin: right center;
    }
}

.vi-share-fab.is-open .vi-share-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
@media (min-width: 768px) {
    .vi-share-fab.is-open .vi-share-panel {
        transform: translateY(-50%) translateX(0) scale(1);
    }
}

.vi-share-panel-head {
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(15, 92, 94, 0.06);
}
.vi-share-panel-head strong {
    display: block;
    font-size: 1rem;
    color: var(--vi-deep-sea, #0F5C5E);
    line-height: 1.2;
}
.vi-share-panel-head span {
    display: block;
    font-size: 0.72rem;
    color: var(--vi-stone, #8a8276);
    margin-top: 0.1rem;
    line-height: 1.2;
}

.vi-share-options {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    gap: 0.15rem;
    max-height: 60vh;
    overflow-y: auto;
}

.vi-share-opt {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0.7rem;
    border: none;
    background: transparent;
    border-radius: 8px;
    color: #1f2937;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
    -webkit-tap-highlight-color: transparent;
    text-align: left;
    width: 100%;
}
.vi-share-opt:hover { background: #f3f4f6; }
.vi-share-opt:active { transform: scale(0.98); }

.vi-share-opt-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.vi-share-opt-icon svg { width: 17px; height: 17px; }
.vi-share-opt-label {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 600;
}

.vi-share-opt--native {
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, rgba(15, 92, 94, 0.06) 0%, rgba(43, 163, 166, 0.04) 100%);
    border-bottom: 1px dashed rgba(15, 92, 94, 0.08);
    border-radius: 8px 8px 0 0;
}

.vi-share-opt--copy.copied .vi-share-opt-icon {
    background: #10b981 !important;
    color: #fff;
}
.vi-share-opt--copy.copied .vi-share-opt-label {
    color: #047857;
}

/* ====================== Müsaitlik Takvimi (public, açılır/kapanır) ====================== */
.vi-calendar-panel {
    position: relative;
    margin: 0.75rem 0 0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(15, 92, 94, 0.12);
    box-shadow: 0 6px 20px -8px rgba(15, 92, 94, 0.2);
}

.vi-calendar-panel > summary {
    list-style: none;
    cursor: pointer;
}
.vi-calendar-panel > summary::-webkit-details-marker { display: none; }
.vi-calendar-panel > summary::marker { content: ''; }

.vi-calendar-summary {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.85rem;
    background: linear-gradient(135deg, #FAF6EE 0%, #fff 100%);
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.vi-calendar-summary:hover { background: linear-gradient(135deg, #f5efde 0%, #fdfaf2 100%); }

.vi-calendar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--vi-turquoise, #2BA3A6);
    color: #fff;
    flex-shrink: 0;
}
.vi-calendar-icon svg { width: 15px; height: 15px; }

.vi-calendar-summary-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}
.vi-calendar-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--vi-deep-sea, #0F5C5E);
    line-height: 1.2;
}
.vi-calendar-summary-hint {
    font-size: 0.7rem;
    color: var(--vi-stone, #8a8276);
    line-height: 1.2;
}

.vi-calendar-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(15, 92, 94, 0.08);
    color: var(--vi-deep-sea, #0F5C5E);
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease;
}
.vi-calendar-chevron svg { width: 14px; height: 14px; }
.vi-calendar-panel[open] .vi-calendar-chevron {
    transform: rotate(180deg);
    background: var(--vi-turquoise, #2BA3A6);
    color: #fff;
}
.vi-calendar-panel[open] .vi-calendar-summary-hint { opacity: 0; }

/* Body — smooth slide */
.vi-calendar-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
.vi-calendar-panel[open] .vi-calendar-body { grid-template-rows: 1fr; }
.vi-calendar-body-inner {
    overflow: hidden;
    min-height: 0;
}
.vi-calendar-panel[open] .vi-calendar-body-inner {
    padding: 0.75rem 0.85rem 1rem;
    border-top: 1px solid rgba(15, 92, 94, 0.08);
}

.vi-calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    font-size: 0.72rem;
    color: var(--vi-stone, #8a8276);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed rgba(15, 92, 94, 0.08);
}
.vi-calendar-legend > span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.vi-calendar-swatch {
    width: 10px; height: 10px;
    border-radius: 3px;
    display: inline-block;
}

/* ─── Tek-ay carousel: navigation bar (üstte) ─── */
.vi-calendar-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.25rem 0 0.75rem;
}
.vi-calendar-current-month {
    margin: 0;
    flex: 1;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--vi-deep-sea, #0F5C5E);
    letter-spacing: 0.01em;
}
.vi-calendar-arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--vi-turquoise, #2BA3A6);
    color: #fff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}
.vi-calendar-arrow:hover {
    background: var(--vi-deep-sea, #0F5C5E);
    transform: scale(1.08);
}
.vi-calendar-arrow:active { transform: scale(0.96); }
.vi-calendar-arrow:disabled {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
}
.vi-calendar-arrow svg { width: 18px; height: 18px; }

/* ─── Carousel (yatay scroll-snap) ─── */
.vi-calendar-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -0.25rem;
}
.vi-calendar-carousel::-webkit-scrollbar { display: none; }

.vi-calendar-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 0 0.25rem;
    min-width: 0;
}

/* Dot indicators */
.vi-calendar-dots-row {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 0.85rem;
}
.vi-calendar-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(15, 92, 94, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.vi-calendar-dot:hover { background: rgba(15, 92, 94, 0.45); }
.vi-calendar-dot.active {
    background: var(--vi-turquoise, #2BA3A6);
    width: 24px;
    border-radius: 4px;
}

.vi-calendar-swipe-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.7rem;
    color: var(--vi-stone, #8a8276);
    opacity: 0.8;
}
.vi-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 4px;
    text-align: center;
}
.vi-calendar-weekdays > div {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--vi-stone, #8a8276);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.25rem 0;
}
.vi-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.vi-calendar-day {
    position: relative;
    aspect-ratio: 1;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #374151;
    transition: transform 0.15s ease;
    padding: 2px;
    overflow: hidden;
}
.vi-calendar-day:hover { transform: scale(1.06); z-index: 2; }
.vi-calendar-day--free { background-color: #f9fafb; }
.vi-calendar-day--priced {
    background-color: rgba(16, 185, 129, 0.16);
    border-color: rgba(16, 185, 129, 0.32);
    color: #065f46;
}
.vi-calendar-day--full {
    background-color: var(--full-color, #dc2626);
    border-color: transparent;
}
/* Yarım gün diagonal — sol-üst AM, sağ-alt PM */
.vi-calendar-day--split {
    background-image: linear-gradient(135deg,
        var(--am-color, transparent) 0 50%,
        var(--pm-color, transparent) 50% 100%);
    background-color: #f9fafb;
    border-color: #e5e7eb;
}
.vi-calendar-day--light { color: #fff; }
.vi-calendar-day-num,
.vi-calendar-day-price { position: relative; z-index: 1; }

/* Lejand swatch'larında da split örneği için */
.vi-calendar-swatch--split {
    background: linear-gradient(135deg,
        var(--am, #dc2626) 0 50%,
        var(--pm, transparent) 50% 100%);
    border: 1px solid #e5e7eb;
}
.vi-calendar-day-num {
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
}
.vi-calendar-day-price {
    font-size: 0.55rem;
    font-weight: 600;
    line-height: 1;
    margin-top: 2px;
    opacity: 0.85;
}
.vi-calendar-note {
    margin: 1rem 0 0;
    padding: 0.55rem 0.75rem;
    background: rgba(43, 163, 166, 0.08);
    border-left: 3px solid var(--vi-turquoise, #2BA3A6);
    border-radius: 6px;
    font-size: 0.78rem;
    color: var(--vi-deep-sea, #0F5C5E);
}

@media (min-width: 768px) {
    .vi-calendar-summary { padding: 0.9rem 1.1rem; }
    .vi-calendar-panel[open] .vi-calendar-body-inner { padding: 1rem 1.1rem 1.25rem; }
    .vi-calendar-current-month { font-size: 1.1rem; }
    .vi-calendar-swipe-hint { display: none; } /* desktop'ta butonlar yeterli */
}

/* ====================== Galeri Slider ====================== */
.vi-gallery-section {
    padding: 2rem 0 0.5rem;
    background: linear-gradient(180deg, transparent 0%, var(--vi-cream, #faf6ee) 100%);
}
.vi-gallery-title {
    margin-bottom: 1rem;
}

.vi-gallery-slider {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #0F5C5E;
    box-shadow: 0 12px 32px -8px rgba(15, 92, 94, 0.35);
}

.vi-gallery-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.vi-gallery-track::-webkit-scrollbar { display: none; }

.vi-gallery-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    position: relative;
    margin: 0;
    height: 240px;
    background: #0F5C5E;
}
.vi-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vi-gallery-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.vi-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #0F5C5E;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    transition: all 0.15s ease;
}
.vi-gallery-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.08);
}
.vi-gallery-prev { left: 10px; }
.vi-gallery-next { right: 10px; }

.vi-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 0.9rem;
    flex-wrap: wrap;
}
.vi-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(15, 92, 94, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}
.vi-gallery-dot:hover { background: rgba(15, 92, 94, 0.5); }
.vi-gallery-dot.active {
    background: #C9A961;
    width: 22px;
    border-radius: 4px;
}

@media (min-width: 640px) {
    .vi-gallery-slide { height: 340px; }
}
@media (min-width: 992px) {
    .vi-gallery-slide { height: 460px; }
}

