/* ============================================================
   Silver Apartments — V3 design-rendszer
   Világos, levegős, barátságos-modern. Kis képek, kerekített
   kártyák, zsálya + terrakotta + napsárga pasztell akcentek.
   Fontok: Outfit (címek) + Figtree (szöveg)
   ============================================================ */

:root {
    --paper: #FDFDFB;
    --cloud: #F4F5F0;
    --card: #FFFFFF;
    --ink: #2A2C26;
    --ink-2: #5A5D52;
    --ink-3: #999C8E;
    --sage: #7C9070;
    --sage-deep: #5D7354;
    --sage-tint: #EAF0E6;
    --terra: #D9825F;
    --terra-tint: #FAEDE6;
    --sun: #E9B44C;
    --sun-tint: #FBF3DF;
    --err3: #C05B45;
    --line: #E6E8E0;
    --r: 18px;
    --shadow: 0 10px 30px -18px rgba(42,44,38,0.25);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Figtree', system-ui, sans-serif;
    background: var(--paper);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; letter-spacing: -0.015em; }
::selection { background: var(--sage-tint); color: var(--sage-deep); }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ---------- NAV ---------- */
.nav3 {
    position: sticky;
    top: 14px;
    z-index: 100;
    margin: 14px auto 0;
    max-width: 1180px;
    padding: 0 16px;
}
.nav3 .bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 12px 10px 24px;
    box-shadow: var(--shadow);
}
.nav3 .logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.nav3 .logo .leaf {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--sage-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}
.nav3 ul { display: flex; gap: 4px; list-style: none; }
.nav3 ul a {
    color: var(--ink-2);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 14px;
    border-radius: 999px;
    transition: background .2s, color .2s;
    white-space: nowrap;
}
.nav3 ul a:hover { background: var(--cloud); color: var(--ink); }
.nav3 ul a.active { background: var(--sage-tint); color: var(--sage-deep); font-weight: 600; }
.nav3 .book {
    padding: 11px 22px;
    background: var(--sage);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 999px;
    transition: background .2s, transform .2s;
    white-space: nowrap;
}
.nav3 .book:hover { background: var(--sage-deep); transform: translateY(-1px); }
.nav3 .burger3 { display: none; }
.menu3 { display: none; }

/* ---------- GOMBOK ---------- */
.btn3 {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 30px;
    border-radius: 999px;
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform .2s, background .2s, box-shadow .2s;
}
.btn3.solid { background: var(--sage); color: #fff; box-shadow: 0 12px 24px -12px rgba(124,144,112,0.6); }
.btn3.solid:hover { background: var(--sage-deep); transform: translateY(-2px); }
.btn3.solid:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn3.soft { background: var(--cloud); color: var(--ink); }
.btn3.soft:hover { background: var(--line); }
.btn3.outline { background: transparent; color: var(--sage-deep); border: 1.5px solid var(--sage); }
.btn3.outline:hover { background: var(--sage-tint); }

/* ---------- OLDAL-FEJ (aloldalak) ---------- */
.phero3 { padding: 64px 0 40px; }
.phero3 .crumb3 {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: var(--ink-3);
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.phero3 .crumb3 a { color: var(--ink-3); text-decoration: none; }
.phero3 .crumb3 a:hover { color: var(--sage-deep); }
.phero3 .crumb3 .sep { color: var(--sage); }
.phero3 h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 700; line-height: 1.08; margin-bottom: 14px; }
.phero3 h1 .sage { color: var(--sage-deep); }
.phero3 .lede3 { font-size: 17px; color: var(--ink-2); max-width: 620px; }

.pill3 {
    display: inline-block;
    background: var(--sage-tint);
    color: var(--sage-deep);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
}

/* ---------- SZEKCIÓK ---------- */
.sec3 { padding: 70px 0; }
.sec3.tinted { background: var(--cloud); }
.sh { text-align: center; margin-bottom: 50px; }
.sh h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 700; line-height: 1.1; }
.sh p { color: var(--ink-2); max-width: 540px; margin: 14px auto 0; }

/* ---------- KÁRTYÁK ---------- */
.card3 {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 28px;
}

/* Szoba-sorok (lista) */
.room-rows { display: flex; flex-direction: column; gap: 14px; max-width: 900px; margin: 0 auto; }
.rrow {
    display: grid;
    grid-template-columns: 132px 1fr auto;
    gap: 22px;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 14px;
    text-decoration: none;
    color: var(--ink);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.rrow:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--sage); }
.rrow img { width: 132px; height: 100px; border-radius: 12px; object-fit: cover; display: block; }
.rrow h3 { font-size: 19px; font-weight: 700; }
.rrow .meta { font-size: 13.5px; color: var(--ink-3); margin-top: 2px; }
.rrow .beds3 { font-size: 13.5px; color: var(--ink-2); margin-top: 6px; }
.rrow .right { text-align: right; padding-right: 10px; }
.rrow .pr { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; color: var(--sage-deep); white-space: nowrap; }
.rrow .pr span { font-family: 'Figtree', sans-serif; font-size: 12px; color: var(--ink-3); font-weight: 500; }
.rrow .link3 { font-size: 13px; font-weight: 600; color: var(--terra); margin-top: 6px; display: inline-block; }
.floor-pill {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 6px;
}
.floor-pill.em { background: var(--terra-tint); color: var(--terra); }
.floor-pill.fs { background: var(--sage-tint); color: var(--sage-deep); }

/* ---------- GALÉRIA (kis, keretezett képek) ---------- */
.gal3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.gal3 a {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--line);
    background: var(--cloud);
}
.gal3 img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.gal3 a:hover img { transform: scale(1.05); }

/* Lightbox (v3) */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(42,44,38,0.92);
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 14px; }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
    position: absolute;
    background: rgba(255,255,255,0.14);
    color: #fff;
    border: none;
    width: 48px; height: 48px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-count { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.75); font-size: 13px; }

/* ---------- ŰRLAPOK ---------- */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-3);
}
.field input, .field select, .field textarea {
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: var(--card);
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    color: var(--ink);
    width: 100%;
    transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 4px var(--sage-tint);
}
.field textarea { resize: vertical; min-height: 100px; }
.field .hint { font-size: 12.5px; color: var(--ink-3); text-transform: none; letter-spacing: 0; font-weight: 500; }

.alert {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14.5px;
    margin-bottom: 18px;
    border: 1.5px solid;
}
.alert.ok { background: var(--sage-tint); border-color: var(--sage); color: var(--sage-deep); }
.alert.warn { background: var(--sun-tint); border-color: var(--sun); color: #8A6A1E; }
.alert.error { background: var(--terra-tint); border-color: var(--terra); color: var(--err3); }

/* ---------- FOGLALÁSI FOLYAMAT ---------- */
.booking-shell { max-width: 1100px; margin: 0 auto; }
.booking-steps {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.booking-step {
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-3);
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--cloud);
    border-radius: 999px;
}
.booking-step.active { background: var(--sage); color: #fff; }
.booking-step.done { background: var(--sage-tint); color: var(--sage-deep); }
.booking-step .n { font-family: 'Outfit', sans-serif; }

.date-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 14px;
    align-items: end;
    background: var(--card);
    border: 1px solid var(--line);
    padding: 22px;
    border-radius: var(--r);
    box-shadow: var(--shadow);
    margin-bottom: 34px;
}

/* Naptár */
.cal-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cal {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 20px;
}
.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cal-head .m { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 17px; }
.cal-head button {
    background: var(--cloud);
    border: none;
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--ink);
    font-size: 15px;
    transition: background .2s;
}
.cal-head button:hover:not(:disabled) { background: var(--sage-tint); color: var(--sage-deep); }
.cal-head button:disabled { opacity: .35; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-grid .dow {
    text-align: center;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-3);
    padding: 6px 0;
}
.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: background .15s, color .15s;
    position: relative;
    background: var(--card);
    color: var(--ink);
}
.cal-day:hover:not(.disabled):not(.busy) { background: var(--sage-tint); color: var(--sage-deep); }
.cal-day.other { visibility: hidden; }
.cal-day.disabled { color: var(--line); cursor: default; }
.cal-day.busy {
    color: var(--ink-3);
    cursor: default;
    background: repeating-linear-gradient(135deg, var(--cloud), var(--cloud) 3px, transparent 3px, transparent 7px);
    text-decoration: line-through;
}
.cal-day.sel-start, .cal-day.sel-end { background: var(--sage); color: #fff; font-weight: 700; }
.cal-day.in-range { background: var(--sage-tint); color: var(--sage-deep); }

.cal-legend { display: flex; gap: 20px; margin-top: 14px; font-size: 12.5px; color: var(--ink-3); flex-wrap: wrap; }
.cal-legend span { display: inline-flex; align-items: center; gap: 7px; }
.cal-legend i { width: 15px; height: 15px; border-radius: 5px; display: inline-block; border: 1px solid var(--line); }
.cal-legend i.free { background: var(--card); }
.cal-legend i.busy { background: repeating-linear-gradient(135deg, var(--cloud), var(--cloud) 3px, transparent 3px, transparent 6px); }
.cal-legend i.sel { background: var(--sage); border-color: var(--sage); }

/* Találati kártyák */
.result-room {
    display: grid;
    grid-template-columns: 190px 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    margin-bottom: 14px;
    background: var(--card);
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.result-room:hover { border-color: var(--sage); box-shadow: var(--shadow); transform: translateY(-2px); }
.result-room.unavailable { opacity: .55; }
.result-room .img { border-radius: 12px; overflow: hidden; }
.result-room .img img { width: 100%; height: 130px; object-fit: cover; display: block; }
.result-room h3 { font-size: 19px; font-weight: 700; margin-bottom: 2px; }
.result-room .meta { font-size: 13px; color: var(--ink-3); margin-bottom: 6px; }
.result-room .beds { font-size: 13.5px; color: var(--ink-2); }
.result-room .price-col { text-align: right; min-width: 165px; }
.result-room .total { font-family: 'Outfit', sans-serif; font-size: 23px; font-weight: 700; color: var(--sage-deep); }
.result-room .per { font-size: 12px; color: var(--ink-3); margin-bottom: 10px; }
.result-room .why { font-size: 12.5px; color: var(--err3); }
.result-room .btn3 { padding: 11px 22px; font-size: 14px; }

/* Összegző */
.summary-box {
    background: var(--sage-deep);
    color: #fff;
    border-radius: var(--r);
    padding: 28px;
    position: sticky;
    top: 100px;
}
.summary-box h3 { font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.summary-box .row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.16);
    gap: 12px;
}
.summary-box .row .l { color: rgba(255,255,255,0.65); }
.summary-box .row.total { border: none; padding-top: 14px; font-family: 'Outfit', sans-serif; font-size: 19px; font-weight: 700; }
.summary-box .note { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 12px; line-height: 1.6; }

/* A közös booking.js által generált gombok v3 kinézete */
.result-room .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px !important;
    border-radius: 999px;
    background: var(--sage);
    color: #fff;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.result-room .btn-primary:hover { background: var(--sage-deep); transform: translateY(-1px); }
.result-room .btn-ghost {
    font-size: 13px;
    font-weight: 600;
    color: var(--sage-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
    background: none;
    border: none;
    cursor: pointer;
}

/* ---------- ÁRTÁBLA ---------- */
.price-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 34px;
    background: var(--cloud);
    padding: 6px;
    border-radius: 999px;
    width: fit-content;
}
.price-tab {
    padding: 11px 22px;
    background: transparent;
    border: none;
    font-family: 'Figtree', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-2);
    cursor: pointer;
    border-radius: 999px;
    transition: all .2s;
}
.price-tab.active { background: var(--sage); color: #fff; }
.price-table { display: none; }
.price-table.active { display: block; }
.price-row3 {
    display: grid;
    grid-template-columns: 1fr 1.2fr auto;
    gap: 22px;
    padding: 18px 22px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 10px;
    transition: border-color .2s, box-shadow .2s;
}
.price-row3:hover { border-color: var(--sage); box-shadow: var(--shadow); }
.price-row3 .aname { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; }
.price-row3 .cap { font-size: 13.5px; color: var(--ink-3); }
.price-row3 .price { font-family: 'Outfit', sans-serif; font-size: 19px; font-weight: 700; color: var(--sage-deep); white-space: nowrap; }
.price-row3 .price .unit { font-family: 'Figtree', sans-serif; font-size: 12px; color: var(--ink-3); font-weight: 500; }

/* ---------- CTA ---------- */
.cta3 {
    background: var(--sage-deep);
    border-radius: 26px;
    padding: 64px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta3::before, .cta3::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
}
.cta3::before { width: 300px; height: 300px; top: -140px; left: -100px; }
.cta3::after { width: 380px; height: 380px; bottom: -200px; right: -120px; }
.cta3 h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; margin-bottom: 12px; position: relative; z-index: 1; }
.cta3 p { color: rgba(255,255,255,0.85); max-width: 480px; margin: 0 auto 30px; position: relative; z-index: 1; }
.cta3 .btn3 { background: #fff; color: var(--sage-deep); position: relative; z-index: 1; }
.cta3 .btn3:hover { background: var(--sun-tint); transform: translateY(-2px); }

/* ---------- LÁBLÉC ---------- */
.foot3 { padding: 60px 0 30px; }
.foot3 .grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.foot3 h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); margin-bottom: 14px; }
.foot3 a { display: block; color: var(--ink-2); text-decoration: none; font-size: 14.5px; padding: 4px 0; }
.foot3 a:hover { color: var(--sage-deep); }
.foot3 .bottom {
    border-top: 1px solid var(--line);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--ink-3);
}

.reveal3 { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal3.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESZPONZÍV ---------- */
@media (max-width: 960px) {
    .cal-wrap { grid-template-columns: 1fr; }
    .date-row { grid-template-columns: 1fr 1fr; }
    .gal3 { grid-template-columns: repeat(2, 1fr); }
    .foot3 .grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 720px) {
    .nav3 { top: 10px; padding: 0 10px; }
    .nav3 ul, .nav3 .book { display: none; }
    .nav3 .burger3 {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        padding: 12px;
        cursor: pointer;
    }
    .nav3 .burger3 span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
    .menu3.open {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 99;
        background: var(--paper);
        padding: 100px 30px 30px;
        flex-direction: column;
        overflow-y: auto;
    }
    .menu3 a {
        font-family: 'Outfit', sans-serif;
        font-size: 24px;
        font-weight: 600;
        color: var(--ink);
        text-decoration: none;
        padding: 13px 0;
        border-bottom: 1px solid var(--line);
    }
    .menu3 a.green { color: var(--sage-deep); }
    .phero3 { padding: 40px 0 30px; }
    .sec3 { padding: 50px 0; }
    .rrow { grid-template-columns: 96px 1fr; }
    .rrow img { width: 96px; height: 84px; }
    .rrow .right { grid-column: 2; text-align: left; padding: 0; }
    .btn3 { width: 100%; justify-content: center; }
    .date-row { grid-template-columns: 1fr; padding: 16px; }
    .booking-steps { width: 100%; }
    .booking-step { flex: 1; justify-content: center; padding: 10px 8px; font-size: 13px; }
    .result-room { grid-template-columns: 1fr; }
    .result-room .img img { height: 170px; }
    .result-room .price-col { text-align: left; }
    .price-row3 { grid-template-columns: 1fr; gap: 6px; }
    .price-tabs { flex-direction: column; width: 100%; border-radius: 16px; }
    .price-tab { text-align: center; }
    .cta3 { border-radius: 20px; padding: 46px 24px; }
    .summary-box { position: static; }
}

/* ===== Videó-lightbox + videókártya (galéria, aloldalak) ===== */
.vmodal3 {
    position: fixed; inset: 0; z-index: 400;
    background: rgba(14,16,11,.95);
    display: flex; align-items: center; justify-content: center;
    padding: 18px;
}
.vmodal3[hidden] { display: none; }
.vmodal3 video {
    width: min(97vw, calc(93vh * 16 / 9));
    max-height: 93vh;
    border-radius: 14px;
    background: #000;
    outline: none;
}
.vm3-close {
    position: absolute; top: 14px; right: 14px;
    width: 44px; height: 44px; border-radius: 50%;
    border: none; cursor: pointer;
    background: rgba(255,255,255,.14); color: #fff; font-size: 19px;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.vm3-close:hover { background: rgba(255,255,255,.3); }
.vcard3 {
    position: relative; display: block; width: 100%;
    border: 1px solid var(--line); border-radius: var(--r);
    overflow: hidden; padding: 0; background: #12140F; cursor: pointer;
    box-shadow: var(--shadow);
}
.vcard3 img { display: block; width: 100%; aspect-ratio: 16/7; object-fit: cover; opacity: .85; }
.vcard3 .vp3 {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
    background: linear-gradient(180deg, rgba(18,20,15,.05) 30%, rgba(18,20,15,.55));
    color: #fff;
}
.vcard3 .vp3-circle {
    width: 64px; height: 64px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.94); color: var(--sage-deep);
    font-size: 21px; padding-left: 5px;
    box-shadow: 0 12px 30px -10px rgba(0,0,0,.5);
    transition: transform .2s;
}
.vcard3:hover .vp3-circle { transform: scale(1.1); }
.vcard3 .vp3-label {
    font-family: 'Figtree', sans-serif; font-size: 14px; font-weight: 700;
    background: rgba(18,20,15,.35); padding: 6px 16px; border-radius: 999px;
    text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
@media (max-width: 640px) {
    .vmodal3 { padding: 0; }
    .vmodal3 video { border-radius: 0; max-height: 100vh; }
    .vcard3 img { aspect-ratio: 16/9; }
}

/* Szobaoldali naptár — kattintható szabad napok */
a.cal-day.bookable {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: background .15s, color .15s;
}
a.cal-day.bookable:hover {
    background: var(--sage);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
}
