/* Tanova AI Concierge — CSS
   Ported directly from jnitravel/app/globals.css (.jni-* classes).
   All colours driven by --tanova-primary and --tanova-accent CSS variables
   injected by the plugin on each page. */

:root {
    --tanova-primary: #295552;
    --tanova-accent:  #9fa217;
    --tanova-bg:      #FAFBFF;
    --tanova-surface: #F4F6FB;
    --tanova-text:    #295552;
}

/* ── FAB button ─────────────────────────────────────────────────────────────── */
.tnv-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9900;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--tanova-primary);
    color: #FAFBFF;
    border: none;
    border-radius: 40px;
    padding: 12px 18px 12px 14px;
    cursor: pointer;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 24px rgba(37,48,104,.28), 0 1px 4px rgba(37,48,104,.14);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    line-height: 1;
}
.tnv-fab:hover {
    background: var(--tanova-accent);
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(0,191,200,.3);
}
.tnv-fab__icon        { display: flex; align-items: center; }
.tnv-fab__icon--close { display: none; }
.tnv-fab--open .tnv-fab__icon--chat  { display: none; }
.tnv-fab--open .tnv-fab__icon--close { display: flex; }
.tnv-fab--open { background: var(--tanova-accent); }
.tnv-fab__label { letter-spacing: 0.01em; }

/* ── Chat panel ─────────────────────────────────────────────────────────────── */
.tnv-chat {
    position: fixed;
    bottom: 90px;
    right: 28px;
    z-index: 9899;
    width: 360px;
    max-height: 560px;
    background: var(--tanova-bg);
    border-radius: 20px;
    box-shadow: 0 8px 48px rgba(37,48,104,.14), 0 2px 8px rgba(37,48,104,.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
    border: 1px solid rgba(37,48,104,.10);
}
.tnv-chat--open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* ── Header ────────────────────────────────────────────────────────────────── */
.tnv-chat__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--tanova-primary);
    color: #FAFBFF;
    flex-shrink: 0;
}
.tnv-chat__avatar {
    width: 34px; height: 34px;
    background: rgba(255,255,255,.14);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.tnv-chat__title  { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; }
.tnv-chat__status { font-size: 11px; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 5px; margin-top: 1px; }
.tnv-chat__dot    { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; display: inline-block; }
.tnv-chat__close  {
    margin-left: auto; background: none; border: none;
    color: rgba(255,255,255,.5); cursor: pointer;
    padding: 4px; display: flex; align-items: center;
    border-radius: 6px; transition: color 0.2s;
}
.tnv-chat__close:hover { color: #FAFBFF; }

/* ── Messages area ──────────────────────────────────────────────────────────── */
.tnv-chat__msgs {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tnv-chat__msgs::-webkit-scrollbar { width: 4px; }
.tnv-chat__msgs::-webkit-scrollbar-track { background: transparent; }
.tnv-chat__msgs::-webkit-scrollbar-thumb { background: rgba(37,48,104,.15); border-radius: 2px; }

/* ── Welcome ────────────────────────────────────────────────────────────────── */
.tnv-welcome         { padding: 8px 0 4px; }
.tnv-welcome__name   { font-size: 15px; font-weight: 600; color: var(--tanova-primary); margin: 0 0 4px; letter-spacing: -0.01em; }
.tnv-welcome__text   { font-size: 13px; color: rgba(37,48,104,.55); line-height: 1.55; margin: 0 0 12px; }
.tnv-welcome__chips  { display: flex; flex-wrap: wrap; gap: 6px; }
.tnv-welcome__chip {
    font-size: 12px;
    font-family: system-ui, sans-serif;
    background: var(--tanova-surface);
    border: 1px solid rgba(37,48,104,.14);
    color: var(--tanova-primary);
    border-radius: 20px;
    padding: 5px 12px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    text-align: left;
}
.tnv-welcome__chip:hover { background: #ebeff7; border-color: rgba(37,48,104,.25); }

/* ── Message bubbles ────────────────────────────────────────────────────────── */
.tnv-msg         { display: flex; flex-direction: column; gap: 4px; }
.tnv-msg--user   { align-items: flex-end; }
.tnv-msg--ai     { align-items: flex-start; }
.tnv-msg__bubble {
    max-width: 85%;
    padding: 9px 13px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.55;
    word-break: break-word;
}
.tnv-msg--user .tnv-msg__bubble { background: var(--tanova-primary); color: #FAFBFF; border-bottom-right-radius: 4px; }
.tnv-msg--ai   .tnv-msg__bubble { background: var(--tanova-surface); color: var(--tanova-primary); border-bottom-left-radius: 4px; }

/* Typing indicator */
.tnv-msg__bubble--typing { display: flex; align-items: center; gap: 4px; padding: 10px 14px; }
.tnv-msg__bubble--typing span {
    width: 6px; height: 6px;
    background: rgba(37,48,104,.3);
    border-radius: 50%;
    animation: tnv-bounce 1.2s infinite ease-in-out;
}
.tnv-msg__bubble--typing span:nth-child(2) { animation-delay: 0.2s; }
.tnv-msg__bubble--typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes tnv-bounce {
    0%, 60%, 100% { transform: translateY(0); }
    30%            { transform: translateY(-5px); }
}

/* ── Destination picks ──────────────────────────────────────────────────────── */
.tnv-picks { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 4px; }
.tnv-pick {
    font-size: 11px;
    font-family: system-ui, sans-serif;
    background: var(--tanova-surface);
    border: 1px solid rgba(37,48,104,.14);
    color: var(--tanova-primary);
    border-radius: 16px;
    padding: 4px 10px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.tnv-pick:hover { background: var(--tanova-accent); color: #FAFBFF; border-color: var(--tanova-accent); }

/* ── Follow-up chips ────────────────────────────────────────────────────────── */
.tnv-followups { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 6px; }
.tnv-followup {
    font-size: 11.5px;
    font-family: system-ui, sans-serif;
    background: transparent;
    border: 1px solid rgba(37,48,104,.2);
    color: var(--tanova-primary);
    border-radius: 20px;
    padding: 4px 11px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    text-align: left;
}
.tnv-followup:hover { background: var(--tanova-accent); color: #FAFBFF; border-color: var(--tanova-accent); }

/* ── CTA button ─────────────────────────────────────────────────────────────── */
.tnv-cta {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    font-family: system-ui, sans-serif;
    font-weight: 600;
    background: var(--tanova-accent);
    color: #FAFBFF !important;
    border: none;
    border-radius: 20px;
    padding: 7px 16px;
    cursor: pointer;
    text-decoration: none !important;
    transition: background 0.2s;
}
.tnv-cta:hover { background: var(--tanova-primary); color: #FAFBFF !important; }

/* ── Action buttons (step flow) ─────────────────────────────────────────────── */
.tnv-actions       { padding: 4px 0 2px; }
.tnv-actions__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.tnv-actions__col  { display: flex; flex-direction: column; gap: 6px; }
.tnv-action-btn {
    font-size: 12.5px;
    font-family: system-ui, sans-serif;
    font-weight: 500;
    background: var(--tanova-surface);
    border: 1px solid rgba(37,48,104,.15);
    color: var(--tanova-primary);
    border-radius: 10px;
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, transform 0.1s;
    text-align: center;
}
.tnv-action-btn:hover { background: #ebeff7; border-color: rgba(37,48,104,.3); transform: translateY(-1px); }
.tnv-action-btn--primary {
    background: var(--tanova-primary); color: #FAFBFF;
    border-color: var(--tanova-primary); font-weight: 600;
    padding: 10px 16px; border-radius: 12px;
}
.tnv-action-btn--primary:hover { background: var(--tanova-accent); border-color: var(--tanova-accent); color: #FAFBFF; }
.tnv-action-btn--ghost { background: transparent; border-color: rgba(37,48,104,.12); color: rgba(37,48,104,.45); font-size: 12px; }

/* ── Input row ──────────────────────────────────────────────────────────────── */
.tnv-chat__form {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-top: 1px solid rgba(37,48,104,.08);
    background: var(--tanova-bg);
    flex-shrink: 0;
}
.tnv-chat__input {
    flex: 1;
    border: none;
    background: var(--tanova-surface);
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 13px;
    font-family: system-ui, sans-serif;
    color: var(--tanova-primary);
    outline: none;
}
.tnv-chat__input::placeholder { color: rgba(37,48,104,.35); }
.tnv-chat__send {
    width: 34px; height: 34px;
    background: var(--tanova-primary);
    color: #FAFBFF;
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}
.tnv-chat__send:hover    { background: var(--tanova-accent); }
.tnv-chat__send:disabled { opacity: 0.4; cursor: default; }

/* ── Header buttons group ───────────────────────────────────────────────────── */
.tnv-chat__hinfo  { flex: 1; }
.tnv-chat__hbtns  { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.tnv-clear-chat {
    background: none; border: none; color: rgba(255,255,255,.4); cursor: pointer;
    font-size: 15px; padding: 4px 6px; border-radius: 6px; line-height: 1;
    transition: color 0.2s;
}
.tnv-clear-chat:hover { color: rgba(255,255,255,.8); }

/* ── Trust bar ──────────────────────────────────────────────────────────────── */
.tnv-trust {
    display: flex; flex-wrap: wrap; align-items: center; gap: 4px;
    margin-top: 10px;
    font-size: 10.5px;
    color: rgba(37,48,104,.4);
    letter-spacing: 0.02em;
}
.tnv-trust__sep { color: rgba(37,48,104,.55); }

/* ── WhatsApp handoff bar ───────────────────────────────────────────────────── */
.tnv-whatsapp-bar {
    display: flex;
    padding: 6px 14px;
    border-top: 1px solid rgba(37,48,104,.07);
    background: var(--tanova-bg);
    transition: opacity 0.3s, max-height 0.3s;
    max-height: 40px;
    overflow: hidden;
}
.tnv-whatsapp-bar--hidden { max-height: 0; padding: 0; border-top: none; opacity: 0; pointer-events: none; }
.tnv-wa-link {
    display: flex; align-items: center; gap: 6px;
    font-size: 11.5px; font-family: system-ui, sans-serif;
    color: #1a7c3e; text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.tnv-wa-link:hover { color: #13612f; }
.tnv-wa-link svg { flex-shrink: 0; }

/* ── Lead capture form ──────────────────────────────────────────────────────── */
.tnv-lead {
    background: #fffbeb;
    border: 1px solid rgba(238,166,26,.3);
    border-radius: 12px;
    padding: 12px 14px;
    margin-top: 6px;
    display: flex; flex-direction: column; gap: 7px;
    max-width: 85%;
}
.tnv-lead__title {
    font-size: 12px; font-weight: 600;
    color: var(--tanova-primary); margin: 0;
}
.tnv-lead__input {
    border: 1px solid rgba(37,48,104,.18);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 12px; font-family: system-ui, sans-serif;
    color: var(--tanova-primary);
    background: #fff; outline: none;
    transition: border-color 0.15s;
}
.tnv-lead__input:focus { border-color: var(--tanova-accent); }
.tnv-lead__input::placeholder { color: rgba(37,48,104,.35); }
.tnv-lead__btn {
    background: var(--tanova-primary); color: #FAFBFF;
    border: none; border-radius: 20px;
    padding: 7px 14px; font-size: 12px; font-weight: 600;
    font-family: system-ui, sans-serif;
    cursor: pointer; text-align: center;
    transition: background 0.2s;
}
.tnv-lead__btn:hover    { background: var(--tanova-accent); }
.tnv-lead__btn:disabled { opacity: 0.6; cursor: default; }
.tnv-lead__skip {
    font-size: 10.5px; color: rgba(37,48,104,.4);
    cursor: pointer; text-decoration: underline; margin: 0;
    text-align: center;
}
.tnv-lead__skip:hover { color: rgba(37,48,104,.9); }

/* ── Plan My Trip button (shown in chat when triggerBooking:true) ────────────── */
.tnv-plan-btn {
    display: inline-block;
    margin-top: 6px;
    margin-left: 6px;
    font-size: 12px;
    font-family: system-ui, sans-serif;
    font-weight: 600;
    background: transparent;
    color: var(--tanova-primary);
    border: 1px solid rgba(37,48,104,.25);
    border-radius: 20px;
    padding: 7px 14px;
    cursor: pointer;
    transition: background 0.2s;
}
.tnv-plan-btn:hover { background: var(--tanova-surface); }

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 440px) {
    .tnv-chat { width: calc(100vw - 24px); right: 12px; bottom: 82px; max-height: calc(100dvh - 110px); }
    .tnv-fab  { right: 16px; bottom: 20px; }
    .tnv-lead { max-width: 100%; }
}


/* ══════════════════════════════════════════════════════════════════════════
   ACCESSIBILITY + FALLBACK TRANSPARENCY
   ══════════════════════════════════════════════════════════════════════════ */

/* Secondary text was below the WCAG AA 4.5:1 minimum (.tnv-trust ~2.3:1),
   which makes it unreadable in daylight on a phone, not just non-compliant. */
.tnv-trust { color: rgba(37,48,104,.75); }
.tnv-lead__skip { color: rgba(37,48,104,.75); }

/* Visually distinguish a degraded reply from a real one. Colour alone is not a
   sufficient signal, so the note text carries the meaning and this only adds
   emphasis. */
.tnv-msg__bubble--fallback {
    border-left: 3px solid #b8860b;
    background: #fdf8ed;
}
.tnv-msg__fallback-note {
    margin: 8px 0 0;
    font-size: 11px;
    line-height: 1.45;
    color: #6b5310;
}

/* Screen-reader-only helper for the typing indicator, which was pure animated
   dots and therefore announced nothing at all. */
.tnv-sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0);
    white-space: nowrap; border: 0;
}

/* Visible keyboard focus. Selection state on the planner tiles is conveyed by
   aria-pressed for screen readers; this is the sighted-keyboard equivalent. */
.tnv-chat button:focus-visible,
.tnv-fab:focus-visible,
.tnvp-dest-tile:focus-visible {
    outline: 3px solid #1a73e8;
    outline-offset: 2px;
}

/* Respect the OS "reduce motion" setting — the bouncing dots, panel slide and
   spinner all animated unconditionally, which can trigger symptoms for users
   with vestibular disorders. */
@media (prefers-reduced-motion: reduce) {
    .tnv-chat, .tnv-fab, .tnv-msg, .tnv-typing span,
    .tnv-msg__bubble--typing span, .tnvp-dest-tile {
        animation: none !important;
        transition: none !important;
    }
}

/* ══════════════════════════════════════════════════════════════════════════
   STAYS (accommodation) — lodges directory · view lodge · book
   Palette inherits the site: --tanova-primary (deep green) + --tanova-accent
   (olive) on a warm surface. No blues.
   ══════════════════════════════════════════════════════════════════════════ */
.tnv-lodges {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
    gap: 26px; margin: 8px 0 4px;
}
.tnv-lodges__empty { color: #6b6f66; }

/* ── Directory card ── */
.tnv-lodge {
    display: flex; flex-direction: column; text-decoration: none !important;
    background: #fff; border: 1px solid rgba(33,83,82,.12); border-radius: 18px;
    overflow: hidden; box-shadow: 0 6px 24px -14px rgba(33,83,82,.35);
    transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s;
    will-change: transform;
}
.tnv-lodge:hover { transform: translateY(-4px); box-shadow: 0 18px 44px -18px rgba(33,83,82,.5); }
.tnv-lodge:focus-visible { outline: 2px solid var(--tanova-accent); outline-offset: 3px; }
.tnv-lodge__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--tanova-primary); }
.tnv-lodge__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.tnv-lodge:hover .tnv-lodge__img { transform: scale(1.05); }
.tnv-lodge__ph {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    font-family: Georgia, 'Times New Roman', serif; font-size: 68px; font-weight: 700; color: rgba(255,255,255,.9);
    background: linear-gradient(135deg, var(--tanova-primary), #16403e 70%);
}
.tnv-lodge__ph::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(120% 90% at 80% 15%, rgba(159,162,23,.28), transparent 60%);
}
.tnv-lodge__badge, .tnv-stay__badge {
    font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
    padding: 5px 11px; border-radius: 999px; white-space: nowrap; line-height: 1;
}
.tnv-lodge__badge {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    -webkit-backdrop-filter: saturate(1.2) blur(2px); backdrop-filter: saturate(1.2) blur(2px); box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.tnv-lodge__badge--ok,   .tnv-stay__badge--ok    { background: #e6f6ec; color: #146a34; }
.tnv-lodge__badge--warn, .tnv-stay__badge--warn  { background: #fbecd2; color: #8a5a0c; }
.tnv-lodge__badge--muted,.tnv-stay__badge--muted { background: #eef0ea; color: #55603f; }
.tnv-lodge__badge--off,  .tnv-stay__badge--off   { background: #f4e3e0; color: #9a3227; }
.tnv-lodge__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.tnv-lodge__title {
    margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: 20px;
    line-height: 1.2; color: var(--tanova-primary); font-weight: 700; letter-spacing: -.01em;
}
.tnv-lodge__loc { margin: 0; display: flex; align-items: center; gap: 5px; font-size: 12.5px; color: #7a7f72; }
.tnv-lodge__loc svg { color: var(--tanova-accent); flex-shrink: 0; }
.tnv-lodge__sub { margin: 2px 0 0; font-size: 13.5px; line-height: 1.45; color: #5c6157; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tnv-lodge__foot {
    margin-top: auto; padding-top: 12px; display: flex; align-items: center;
    justify-content: space-between; gap: 10px; border-top: 1px solid rgba(33,83,82,.08);
}
.tnv-lodge__price { font-size: 17px; font-weight: 800; color: var(--tanova-primary); white-space: nowrap; }
.tnv-lodge__price em { font-style: normal; font-size: 11px; font-weight: 600; color: #9aa08e; margin-right: 3px; text-transform: uppercase; letter-spacing: .04em; }
.tnv-lodge__price small { font-size: 11px; font-weight: 600; color: #9aa08e; }
.tnv-lodge__cta { font-size: 13px; font-weight: 700; color: var(--tanova-accent); white-space: nowrap; }
.tnv-lodge__cta i { transition: transform .25s; display: inline-block; }
.tnv-lodge:hover .tnv-lodge__cta i { transform: translateX(4px); }

/* ── Single lodge (view lodge) ── */
.tnv-detail { max-width: 1060px; margin: 0 auto; }
.tnv-detail__back {
    display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600;
    color: var(--tanova-primary); text-decoration: none; margin-bottom: 16px; opacity: .85;
}
.tnv-detail__back:hover { opacity: 1; }
.tnv-detail__card { border: 1px solid rgba(33,83,82,.12); border-radius: 22px; overflow: hidden; background: #fff; box-shadow: 0 20px 60px -30px rgba(33,83,82,.45); display: block; }
.tnv-detail__hero { position: relative; aspect-ratio: 21 / 9; min-height: 260px; overflow: hidden; background: var(--tanova-primary); }
.tnv-detail__hero .tnv-lodge__img { width: 100%; height: 100%; object-fit: cover; }
.tnv-detail__hero .tnv-lodge__ph { font-size: 120px; }
.tnv-detail__hero .tnv-lodge__badge { top: 16px; left: 16px; }
.tnv-detail__hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,30,29,.78), rgba(10,30,29,.05) 55%, transparent); }
.tnv-detail__herocap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 26px 30px; color: #fff; }
.tnv-detail__title { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(26px, 4vw, 40px); line-height: 1.06; color: #fff; font-weight: 700; letter-spacing: -.015em; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.tnv-detail__loc { margin: 8px 0 0; display: flex; align-items: center; gap: 6px; font-size: 14px; color: rgba(255,255,255,.92); }
.tnv-detail__grid { display: grid; grid-template-columns: 1fr 340px; gap: 34px; padding: 30px; align-items: start; }
.tnv-detail__lede { margin: 0 0 14px; font-size: 17px; line-height: 1.55; color: #3f463b; font-weight: 500; }
.tnv-detail__desc { color: #4c5248; font-size: 15px; line-height: 1.65; }
.tnv-detail__desc p { margin: 0 0 12px; }
.tnv-detail__h2 { font-family: Georgia, 'Times New Roman', serif; font-size: 21px; color: var(--tanova-primary); margin: 26px 0 8px; font-weight: 700; }

.tnv-stay__rooms { width: 100%; border-collapse: collapse; margin: 4px 0; }
.tnv-stay__rooms td { padding: 12px 0; border-bottom: 1px solid rgba(33,83,82,.1); font-size: 15px; vertical-align: baseline; }
.tnv-stay__rooms tr:last-child td { border-bottom: 0; }
.tnv-stay__room { color: var(--tanova-primary); font-weight: 600; }
.tnv-stay__guests { color: #9aa08e; font-size: 12.5px; font-weight: 400; }
.tnv-stay__price { text-align: right; font-weight: 800; color: var(--tanova-primary); white-space: nowrap; }
.tnv-stay__price span { font-weight: 500; font-size: 11px; color: #9aa08e; }

/* Booking panel (aside) */
.tnv-detail__aside { position: sticky; top: 90px; }
.tnv-book {
    background: linear-gradient(180deg, #faf8f1, #fff 40%); border: 1px solid rgba(33,83,82,.14);
    border-radius: 16px; padding: 18px 18px 20px; box-shadow: 0 10px 30px -20px rgba(33,83,82,.5);
}
.tnv-book__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-bottom: 14px; margin-bottom: 4px; border-bottom: 1px solid rgba(33,83,82,.1); }
.tnv-book__price { font-family: Georgia, serif; font-size: 24px; font-weight: 700; color: var(--tanova-primary); }
.tnv-book__price em { font-style: normal; font-size: 11px; font-weight: 600; color: #9aa08e; text-transform: uppercase; letter-spacing: .05em; margin-right: 4px; }
.tnv-book__price small { font-size: 12px; font-weight: 600; color: #9aa08e; }
.tnv-book__enquire { width: 100%; text-align: center; margin-top: 6px; }

/* Shared button */
.tnv-stay__btn {
    display: inline-block; background: var(--tanova-accent); color: #fff !important;
    padding: 12px 20px; border-radius: 999px; font-size: 14.5px; font-weight: 700; text-decoration: none;
    letter-spacing: .01em; transition: background .2s, transform .12s;
}
.tnv-stay__btn:hover { background: var(--tanova-primary); }
.tnv-stay__btn:active { transform: translateY(1px); }
.tnv-stay__link { display: inline-block; margin-top: 12px; font-size: 12.5px; color: var(--tanova-primary); text-decoration: underline; opacity: .8; }
.tnv-stay__note { margin: 10px 0 0; font-size: 11.5px; color: #8a8f80; line-height: 1.5; }
.tnv-stay__note a { color: var(--tanova-primary); }
@media (prefers-reduced-motion: reduce) {
    .tnv-lodge, .tnv-lodge__img, .tnv-lodge__cta i, .tnv-stay__btn { transition: none; }
    .tnv-lodge:hover { transform: none; }
    .tnv-lodge:hover .tnv-lodge__img { transform: none; }
}

/* Booking form (authorize-not-capture) */
.tnv-stayform { display: flex; flex-direction: column; gap: 11px; margin-top: 14px; }
.tnv-stayform label { display: flex; flex-direction: column; gap: 5px; font-size: 12px; color: #5c6157; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.tnv-stayform input, .tnv-stayform select {
    font-size: 14.5px; padding: 10px 11px; border: 1px solid rgba(33,83,82,.22);
    border-radius: 10px; background: #fff; color: var(--tanova-primary); font-weight: 500; width: 100%;
    text-transform: none; letter-spacing: 0;
}
.tnv-stayform input:focus, .tnv-stayform select:focus { outline: none; border-color: var(--tanova-accent); box-shadow: 0 0 0 3px rgba(159,162,23,.18); }
.tnv-stayform__row { display: flex; gap: 10px; }
.tnv-stayform__row label { flex: 1; }
.tnv-stayform__submit { margin-top: 6px; border: 0; cursor: pointer; width: 100%; }
.tnv-stayform__submit:disabled { opacity: .6; cursor: default; }
.tnv-stayform__msg { margin: 4px 0 0; font-size: 12.5px; color: #146a34; min-height: 1em; }
.tnv-stayform__msg--err { color: #b3261e; }
.tnv-stayform__live { margin: 0; font-size: 13px; font-weight: 700; min-height: 1em; color: #5c6157; }
.tnv-stayform__live--ok { color: #146a34; }
.tnv-stayform__live--no { color: #b3261e; }

/* FAQ (visible — backs FAQPage schema) */
.tnv-stay__faq { margin-top: 6px; border-top: 1px solid rgba(33,83,82,.1); }
.tnv-stay__faq-item { padding: 12px 0; border-bottom: 1px solid rgba(33,83,82,.08); }
.tnv-stay__faq-item:last-child { border-bottom: 0; }
.tnv-stay__faq-item summary { cursor: pointer; font-size: 14.5px; font-weight: 600; color: var(--tanova-primary); list-style: none; }
.tnv-stay__faq-item summary::-webkit-details-marker { display: none; }
.tnv-stay__faq-item summary::before { content: '+'; display: inline-block; width: 18px; color: var(--tanova-accent); font-weight: 700; }
.tnv-stay__faq-item[open] summary::before { content: '–'; }
.tnv-stay__faq-item p { margin: 8px 0 0 18px; font-size: 13.5px; color: #5c6157; line-height: 1.55; }

@media (max-width: 860px) {
    .tnv-detail__grid { grid-template-columns: 1fr; gap: 24px; padding: 22px; }
    .tnv-detail__aside { position: static; }
    .tnv-detail__hero { aspect-ratio: 16 / 10; }
}
