:root {
    color-scheme: light;
    --hero-min-height: 778px;
    --accent: #242424;
    --accent-strong: color-mix(in srgb, var(--accent) 82%, white);
    --accent-soft: color-mix(in srgb, var(--accent) 12%, white);
    --accent-subtle: color-mix(in srgb, var(--accent) 12%, transparent);
    --accent-muted: color-mix(in srgb, var(--accent) 16%, transparent);
    --accent-line: color-mix(in srgb, var(--accent) 18%, transparent);
    --accent-emphasis: color-mix(in srgb, var(--accent) 22%, transparent);
    --accent-border-strong: color-mix(in srgb, var(--accent) 34%, transparent);
    --accent-outline: color-mix(in srgb, var(--accent) 22%, transparent);
    --accent-surface: color-mix(in srgb, var(--accent) 2%, white);
    --accent-surface-strong: color-mix(in srgb, var(--accent) 4%, white);
    --accent-panel: color-mix(in srgb, var(--accent) 3%, white);
    --accent-panel-strong: color-mix(in srgb, var(--accent) 6%, white);
    --accent-text-strong: color-mix(in srgb, var(--accent) 68%, black);
    --accent-text-deep: color-mix(in srgb, var(--accent) 78%, black);
    --accent-gradient-top: color-mix(in srgb, var(--accent) 78%, white);
    --accent-gradient-bottom: color-mix(in srgb, var(--accent) 72%, black);
    --accent-shadow: color-mix(in srgb, var(--accent) 24%, transparent);
    --page: #ffffff;
    --surface: #ffffff;
    --ink: #111111;
    --muted: #726d63;
    --line: #e2ddd3;
    --shadow: 12px 28px 64px rgba(53, 43, 28, 0.16);
    --radius: 10px;
    --display-font: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
    --body-font: "Aptos", "Segoe UI", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: var(--page);
    color: var(--ink);
    font-family: var(--body-font);
}

body {
    min-height: 100vh;
}

button,
input {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

.boot-shell,
.not-found-shell {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.not-found-card {
    max-width: 38rem;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.vv-startup-shell {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 2rem;
    background:
        radial-gradient(circle at top, var(--accent-subtle), transparent 42%),
        linear-gradient(180deg, #fbfaf7 0%, #f4f0e8 100%);
}

.vv-startup-card {
    width: min(920px, 100%);
    padding: 2.4rem;
    border: 1px solid rgba(194, 187, 176, 0.78);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 28px 80px rgba(53, 43, 28, 0.12);
}

.vv-startup-eyebrow {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.vv-startup-card h1 {
    margin: 0.5rem 0 0;
    font-family: var(--display-font);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.vv-startup-card h1:focus,
.vv-startup-card h1:focus-visible {
    outline: none;
    box-shadow: none;
}

.vv-startup-copy {
    max-width: 42rem;
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

.vv-startup-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 1.75rem;
}

.vv-startup-hotel {
    display: grid;
    gap: 8px;
    min-height: 176px;
    padding: 1.4rem;
    border: 1px solid rgba(205, 197, 185, 0.95);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f6f1 100%);
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.vv-startup-hotel:hover,
.vv-startup-hotel:focus-visible {
    transform: translateY(-2px);
    border-color: var(--accent-border-strong);
    box-shadow: 0 18px 36px rgba(53, 43, 28, 0.1);
    outline: none;
}

.vv-startup-hotel strong {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.vv-startup-hotel span {
    color: #1f2428;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.15;
}

.vv-startup-hotel small {
    color: #7c766c;
    font-size: 0.82rem;
    line-height: 1.45;
    word-break: break-word;
}

.not-found-card h1 {
    margin: 0.25rem 0 1rem;
    font-family: var(--display-font);
}

.not-found-card a {
    color: var(--accent);
    font-weight: 700;
}

.vv-page {
    position: relative;
    min-height: 100vh;
    padding-bottom: 88px;
    background: #ffffff;
}

.vv-loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(255, 252, 247, 0.28);
    backdrop-filter: blur(3px);
    cursor: default;
}

.vv-loading-card {
    display: grid;
    justify-items: center;
    gap: 14px;
    min-width: min(280px, calc(100vw - 48px));
    padding: 28px 32px;
    border: 1px solid rgba(190, 186, 177, 0.68);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 60px rgba(53, 43, 28, 0.16);
    text-align: center;
}

.vv-loading-card strong {
    color: #2e2d29;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
}

.vv-loading-spinner {
    width: 42px;
    height: 42px;
    border: 3px solid var(--accent-muted);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: vv-spin 0.85s linear infinite;
}

@keyframes vv-spin {
    to {
        transform: rotate(360deg);
    }
}

.vv-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    min-height: 82px;
    padding: 0 34px;
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
}

.vv-brand {
    display: inline-flex;
    gap: 14px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.vv-top-search {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(860px, calc(100% - 420px));
    display: flex;
    justify-content: center;
}

.vv-brand-logo {
    display: block;
    max-width: 190px;
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.vv-brand-mark {
    color: #d4a448;
    font-size: 2rem;
    line-height: 1;
}

.vv-brand-copy strong,
.vv-brand-copy small {
    display: block;
}

.vv-brand-copy strong {
    letter-spacing: 0.18em;
    font-size: 0.98rem;
}

.vv-brand-copy small {
    color: var(--muted);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vv-search-pill {
    display: grid;
    grid-template-columns:
        minmax(320px, 2.35fr)
        1px
        minmax(132px, 0.72fr)
        1px
        minmax(148px, 0.9fr);
    align-items: center;
    width: min(100%, 860px);
    justify-self: center;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid rgba(190, 186, 177, 0.58);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 245, 240, 0.96));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 10px 24px rgba(53, 43, 28, 0.05);
}

.vv-search-pill.without-promo {
    grid-template-columns:
        minmax(320px, 2.35fr)
        1px
        minmax(132px, 0.72fr);
}

.vv-search-segment {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: center;
    min-width: 0;
}

.vv-search-dates {
    padding-right: 10px;
}

.vv-search-guests {
    padding-left: 8px;
}

.vv-search-promo {
    padding-left: 8px;
}

.vv-search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--accent);
    font-size: 20px;
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 20;
    line-height: 1;
}

.vv-search-segment small,
.vv-search-segment strong {
    display: block;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vv-search-segment small {
    color: #8f8a80;
    font-size: 0.72rem;
    line-height: 1.05;
}

.vv-search-segment strong {
    color: #2e2d29;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.18;
}

.vv-search-divider {
    width: 1px;
    height: 22px;
    background: rgba(198, 193, 185, 0.82);
    justify-self: center;
}

.vv-top-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    margin-left: auto;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.vv-debug-button {
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid #ddd7cd;
    border-radius: 999px;
    background: #fff;
    color: #5f584d;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.vv-language-switcher {
    display: inline-flex;
    gap: 2px;
    padding: 4px;
    border: 1px solid var(--accent-line);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 245, 240, 0.96));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 10px 24px rgba(53, 43, 28, 0.05);
}

.vv-language-switcher button,
.vv-profile-button {
    border: 0;
    background: transparent;
}

.vv-language-switcher button {
    min-width: 36px;
    min-height: 34px;
    border-radius: 999px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.vv-language-switcher button.active {
    background: var(--accent-muted);
    color: var(--accent);
    box-shadow: inset 0 0 0 1px var(--accent-line);
}

.vv-profile-button {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid #cfc8bb;
    border-radius: 50%;
    color: #6e675c;
}

.vv-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) 300px;
    gap: 24px;
    width: min(1380px, calc(100% - 56px));
    margin: 28px auto 0;
    align-items: stretch;
}

.vv-main-column {
    display: grid;
    gap: 28px;
}

.vv-stage-shell {
    position: relative;
    min-height: var(--hero-min-height);
}

.vv-stage-shell.is-animating {
    overflow: hidden;
}

.vv-stage-panel {
    width: 100%;
}

.vv-stage-panel.is-active {
    position: relative;
}

.vv-stage-shell.is-animating .vv-stage-panel {
    position: absolute;
    inset: 0;
    animation-duration: 420ms;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: forwards;
    will-change: transform, opacity, filter;
}

.vv-stage-shell.is-animating .vv-stage-panel.enter-from-right {
    animation-name: vv-stage-enter-from-right;
    z-index: 2;
}

.vv-stage-shell.is-animating .vv-stage-panel.enter-from-left {
    animation-name: vv-stage-enter-from-left;
    z-index: 2;
}

.vv-stage-shell.is-animating .vv-stage-panel.exit-to-left {
    animation-name: vv-stage-exit-to-left;
    z-index: 1;
}

.vv-stage-shell.is-animating .vv-stage-panel.exit-to-right {
    animation-name: vv-stage-exit-to-right;
    z-index: 1;
}

@keyframes vv-stage-enter-from-right {
    from {
        opacity: 0;
        transform: translateX(88px);
        filter: blur(6px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes vv-stage-enter-from-left {
    from {
        opacity: 0;
        transform: translateX(-88px);
        filter: blur(6px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes vv-stage-exit-to-left {
    from {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }

    to {
        opacity: 0;
        transform: translateX(-88px);
        filter: blur(6px);
    }
}

@keyframes vv-stage-exit-to-right {
    from {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }

    to {
        opacity: 0;
        transform: translateX(88px);
        filter: blur(6px);
    }
}

.vv-hero-stage {
    position: relative;
}

.vv-hero {
    position: relative;
    min-height: var(--hero-min-height);
    overflow: hidden;
    border-radius: 8px;
    background-position: center;
    background-size: cover;
    box-shadow: 18px 28px 72px rgba(36, 29, 20, 0.2);
}

.vv-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 18, 26, 0.12), rgba(12, 18, 26, 0.28) 54%, rgba(12, 18, 26, 0.08));
}

.vv-hero-overlay {
    position: absolute;
    z-index: 1;
    top: 82px;
    left: 48px;
    right: 48px;
    color: #fff9f1;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}

.vv-hero-overlay:focus,
.vv-hero-overlay:focus-visible,
.vv-hero-overlay h1:focus,
.vv-hero-overlay h1:focus-visible,
.vv-hero-overlay p:focus,
.vv-hero-overlay p:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.vv-match-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 18px;
    border: 1px solid rgba(186, 195, 214, 0.28);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.05) 34%, rgba(255, 255, 255, 0) 36%),
        linear-gradient(180deg, rgba(54, 59, 69, 0.96), rgba(20, 23, 30, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(0, 0, 0, 0.26),
        0 8px 18px rgba(11, 18, 30, 0.18);
    color: #fffdf8;
    font-size: 0.79rem;
    font-weight: 580;
    letter-spacing: 0.14em;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.vv-hero-overlay h1 {
    margin: 18px 0 0;
    font-family: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
    max-width: none;
    font-size: clamp(3.85rem, 5.8vw, 5.6rem);
    font-weight: 200;
    font-variation-settings: "wght" 200;
    line-height: 0.94;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.vv-hero-overlay p {
    max-width: 560px;
    margin: 20px 0 0;
    color: rgba(255, 249, 241, 0.92);
    font-size: 1.08rem;
    line-height: 1.55;
}

.vv-intent-panel {
    position: absolute;
    z-index: 2;
    left: 72px;
    right: 72px;
    bottom: -110px;
    padding: 28px 18px 22px;
    border: 1px solid rgba(226, 221, 211, 0.92);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 16px 28px 80px rgba(53, 43, 28, 0.16);
}

.vv-intent-panel h2 {
    margin: 0;
    text-align: center;
    font-size: 1.65rem;
    font-weight: 650;
}

.vv-intent-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.vv-intent-rail-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    margin-top: 24px;
}

.vv-intent-rail {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.vv-intent-rail::-webkit-scrollbar {
    display: none;
}

.vv-intent-scroll-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-line);
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    box-shadow: 0 10px 24px rgba(53, 43, 28, 0.08);
    transition: background 120ms ease, border-color 120ms ease, color 120ms ease, transform 120ms ease;
}

.vv-intent-scroll-button:hover:not(:disabled) {
    transform: translateY(-1px);
    border-color: var(--accent-emphasis);
    background: var(--accent-surface-strong);
}

.vv-intent-scroll-button:disabled {
    border-color: #e2ddd3;
    background: #fff;
    color: #9f988d;
    opacity: 0.38;
    cursor: default;
    box-shadow: none;
}

.vv-intent-grid-centered {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
}

.vv-intent-grid-centered .vv-intent-card {
    width: min(100%, calc((100% - 48px) / 4));
    margin-inline: auto;
}

.vv-intent-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 204px;
    padding: 22px 20px 24px;
    border: 1px solid #ece7de;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #fdfdfb 100%);
    cursor: pointer;
    text-align: center;
    box-shadow: 0 10px 24px rgba(53, 43, 28, 0.04);
    transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease, background 120ms ease;
}

.vv-intent-card-rail {
    flex: 0 0 min(250px, calc((100% - 48px) / 4));
}

.vv-intent-card.selected {
    border-color: var(--accent-border-strong);
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--accent) 5%, white) 0%, color-mix(in srgb, var(--accent) 9%, white) 100%);
    box-shadow:
        0 16px 34px color-mix(in srgb, var(--accent) 12%, transparent),
        inset 0 0 0 1px var(--accent-emphasis);
}

.vv-intent-card.selected .vv-intent-icon {
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--accent-emphasis);
}

.vv-intent-card.selected strong {
    color: var(--accent-text-deep);
}

.vv-intent-card.selected small {
    color: color-mix(in srgb, var(--accent) 56%, #5a544b);
}

.vv-intent-card:hover:not(.selected) {
    border-color: #beb19f;
    box-shadow: 0 16px 34px rgba(53, 43, 28, 0.08);
}

.vv-intent-card:focus {
    outline: none;
}

.vv-intent-card:focus-visible {
    outline: 2px solid var(--accent-outline);
    outline-offset: 2px;
}

.vv-intent-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin: 0 auto 18px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
}

.vv-intent-icon-symbol {
    font-size: 1.35rem;
}

.vv-intent-card strong,
.vv-intent-card small {
    display: block;
}

.vv-intent-card strong {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 2.7em;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
}

.vv-intent-card small {
    margin-top: 18px;
    min-height: 4.35em;
    align-self: stretch;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.45;
    text-align: center;
}

.vv-intent-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 24px;
    margin-top: 22px;
    color: #635a50;
    font-size: 0.84rem;
    font-weight: 700;
}

.vv-intent-footer span::before {
    content: "✓";
    font-size: 1.05em;
    margin-right: 8px;
    color: #8d8578;
}

.vv-controls-card,
.vv-room-panel,
.vv-upsell-panel,
.vv-summary-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(53, 43, 28, 0.08);
}

.vv-controls-card {
    margin-top: 126px;
    padding: 20px;
}

.vv-controls-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.vv-controls-grid label {
    display: grid;
    gap: 8px;
}

.vv-controls-grid span,
.vv-status-strip small,
.vv-summary-dates span,
.vv-summary-list small,
.vv-summary-total small,
.vv-benefit-list span,
.vv-upsell-type,
.vv-section-head span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
}

.vv-controls-grid input {
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
}

.vv-controls-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.vv-primary-button,
.vv-secondary-button,
.vv-book-button {
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
}

.vv-primary-button,
.vv-book-button {
    background: var(--accent);
    color: #fff;
}

.vv-secondary-button {
    background: #fff;
    color: #4f4a42;
    border: 1px solid #ddd7cd;
}

.vv-status-strip {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 10px;
    align-items: center;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fbfaf7;
}

.vv-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.vv-status-dot.online {
    background: var(--accent-text-strong);
}

.vv-status-dot.offline {
    background: #b94b43;
}

.vv-status-dot.loading {
    background: #c89e49;
}

.vv-status-dot.idle {
    background: #b8afa1;
}

.vv-alert-card {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff3f2;
    color: #a33a31;
}

.vv-bottom-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 24px;
}

.vv-room-panel,
.vv-upsell-panel {
    padding: 20px;
}

.vv-section-head h3 {
    margin: 4px 0 0;
    font-size: 1.28rem;
}

.vv-empty-state {
    padding: 16px;
    border: 1px dashed var(--line);
    border-radius: 12px;
    background: #fcfbf8;
}

.vv-empty-state p,
.vv-room-card p,
.vv-upsell-card p {
    color: var(--muted);
    line-height: 1.5;
}

.vv-room-grid,
.vv-upsell-grid {
    display: grid;
    gap: 14px;
    margin-top: 14px;
}

.vv-room-card,
.vv-upsell-card {
    padding: 16px;
    border: 1px solid #efe9df;
    border-radius: 12px;
    background: #fff;
}

.vv-room-head,
.vv-upsell-footer,
.vv-summary-total {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.vv-score-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f3efe8;
    color: #6c6559;
    font-size: 0.74rem;
    font-weight: 800;
}

.vv-room-card h4 {
    margin: 12px 0 6px;
    font-size: 1.06rem;
}

.vv-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 14px 0 0;
    list-style: none;
}

.vv-chip-list li {
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f3efe8;
    color: #5c5349;
    font-size: 0.76rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.vv-upsell-card strong {
    display: block;
    margin-top: 6px;
}

.vv-upsell-footer {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #f0ebe1;
}

.vv-summary-column {
    align-self: stretch;
}

.vv-summary-card {
    position: sticky;
    top: 108px;
    display: flex;
    flex-direction: column;
    min-height: var(--hero-min-height);
    padding: 18px;
}

.vv-summary-card h2 {
    margin: 0;
    font-size: 1rem;
}

.vv-summary-image {
    width: 100%;
    height: 156px;
    min-height: 156px;
    margin-top: 18px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 32% 63%, rgba(200, 150, 66, 0.72) 0, rgba(200, 150, 66, 0.72) 5%, transparent 5%),
        radial-gradient(circle at 54% 59%, rgba(212, 177, 94, 0.76) 0, rgba(212, 177, 94, 0.76) 3.5%, transparent 3.5%),
        linear-gradient(135deg, #65432a 0%, #b78546 58%, #2d3f2f 100%);
}

.vv-summary-image-content {
    width: 100%;
    height: 100%;
    min-height: 156px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.vv-summary-dates {
    margin-top: 16px;
}

.vv-summary-intent-title {
    margin-top: 14px;
    padding: 9px 12px;
    border-radius: 8px;
    background: linear-gradient(180deg, #f8f5ef 0%, #f2ece2 100%);
    border: 1px solid #ece4d8;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.vv-summary-intent-title strong {
    display: block;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.01em;
}

.vv-summary-dates strong,
.vv-summary-dates span {
    display: block;
}

.vv-summary-dates strong {
    font-size: 0.92rem;
}

.vv-summary-list {
    display: grid;
    gap: 14px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.vv-summary-list strong,
.vv-summary-list small {
    display: block;
}

.vv-summary-item {
    display: grid;
    gap: 4px;
}

.vv-summary-item-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
}

.vv-summary-list strong {
    font-size: 0.9rem;
}

.vv-summary-item > strong {
    font-size: 0.92rem;
}

.vv-summary-item-price {
    text-align: right;
    white-space: nowrap;
}

.vv-summary-item-room {
    gap: 16px;
}

.vv-summary-item-room strong {
    font-size: 0.9rem;
    font-weight: 600;
}

.vv-summary-addon-list {
    display: grid;
    gap: 4px;
    margin-top: 0;
}

.vv-summary-addon-line {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    text-align: left;
}

.vv-summary-secondary-line {
    color: #1f2428;
    font-size: smaller;
    font-weight: 400;
    line-height: 1.35;
    max-width: 100%;
}

.vv-summary-secondary-line.is-day {
    color: #1f2428;
    font-size: smaller;
    font-weight: 700;
}

.vv-summary-secondary-line.is-child,
.vv-summary-secondary-line.indent-1 {
    padding-left: 14px;
}

.vv-summary-secondary-line.indent-2 {
    padding-left: 30px;
}

.vv-summary-addon-line span {
    display: block;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.vv-summary-addon-line.has-price span:last-child {
    margin-left: auto;
    padding-left: 10px;
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

.vv-summary-addon-line span:first-child {
    flex: 1 1 auto;
    white-space: normal;
}

.vv-summary-day-header {
    display: inline-flex !important;
    align-items: center;
    gap: 2px;
    flex: 1 1 auto;
    white-space: nowrap;
}

.vv-summary-day-indicator-icon {
    color: var(--accent);
    font-size: 0.9rem;
    line-height: 1;
    transform: translateY(-1px);
}

.vv-summary-day-label {
    display: inline;
}

.vv-summary-secondary-line.is-day.has-price span:last-child {
    margin-left: 0;
    padding-left: 0;
    text-align: left;
    white-space: normal;
    flex-shrink: 1;
}

.vv-summary-item,
.vv-summary-addon-list {
    min-width: 0;
}

.vv-summary-item .vv-summary-addon-list {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.vv-adjust-button {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 12px;
    align-items: center;
    width: 100%;
    margin-top: 18px;
    padding: 16px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    text-align: left;
}

.vv-adjust-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0ebe3;
    color: #5e574c;
    font-size: 1.1rem;
}

.vv-adjust-button strong,
.vv-adjust-button small {
    display: block;
}

.vv-adjust-button strong {
    font-size: 0.92rem;
}

.vv-adjust-button:disabled {
    cursor: default;
    color: #a9a296;
}

.vv-adjust-button:disabled .vv-adjust-icon {
    background: #f4f1eb;
    color: #b7b0a4;
}

.vv-adjust-button:disabled strong,
.vv-adjust-button:disabled small {
    color: #a9a296;
}

.vv-summary-total {
    align-items: end;
    margin-top: 22px;
    margin-bottom: 18px;
}

.vv-summary-total strong {
    font-size: 0.98rem;
}

.vv-book-button {
    width: 100%;
    margin-top: auto;
}

button.vv-book-button:disabled,
button.vv-book-button[disabled] {
    cursor: default !important;
    opacity: 0.52;
}

.vv-intent-details {
    min-height: var(--hero-min-height);
}

.vv-intent-details-card {
    display: grid;
    gap: 14px;
    min-height: var(--hero-min-height);
    padding: 14px 24px 28px;
    border: 1px solid rgba(215, 208, 196, 0.95);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 243, 0.98));
    box-shadow: 0 18px 42px rgba(53, 43, 28, 0.08);
}

.vv-intent-details-topbar,
.vv-intent-details-meta,
.vv-intent-details-block-head,
.vv-intent-room-facts,
.vv-intent-service-card,
.vv-intent-upsell-banner,
.vv-intent-details-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.vv-intent-details-back,
.vv-intent-chip-button,
.vv-intent-checkbox-button,
.vv-intent-addon-card,
.vv-intent-inline-link {
    font: inherit;
}

.vv-intent-details-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    background: transparent;
    color: #1f2428;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 36px;
}

.vv-intent-details-hero {
    display: grid;
    gap: 8px;
    justify-items: center;
    text-align: center;
    margin-top: -62px;
}

.vv-intent-details-hero h2 {
    margin: 0;
    font-family: var(--display-font);
    font-size: clamp(3rem, 5vw, 4.1rem);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: -0.03em;
}

.vv-intent-details-meta {
    justify-content: center;
    flex-wrap: wrap;
    color: #71695f;
    font-size: 1rem;
    margin-top: 2px;
}

.vv-intent-details-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vv-intent-details-block {
    display: grid;
    gap: 18px;
}

.vv-intent-details-block-head h3 {
    margin: 0;
    font-size: 1.25rem;
}

.vv-intent-details-block-head p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.98rem;
}

.vv-intent-details-block-copy {
    flex: 1 1 auto;
    min-width: 0;
}

.vv-intent-collapse-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(215, 208, 196, 0.95);
    border-radius: 10px;
    background: #fff;
    color: var(--accent-text-deep);
    cursor: pointer;
    flex: 0 0 auto;
    margin-left: auto;
    font: inherit;
    font-weight: 700;
    white-space: nowrap;
}

.vv-intent-collapse-toggle .mud-icon-root {
    font-size: 1.3rem;
}

.vv-intent-collapse-toggle:hover {
    background: rgba(246, 241, 232, 0.95);
}

.vv-intent-chip-button,
.vv-intent-checkbox-button {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(215, 208, 196, 0.95);
    border-radius: 12px;
    background: #fff;
    color: var(--accent-text-deep);
    cursor: pointer;
    font-weight: 800;
}

.vv-intent-room-card,
.vv-intent-service-card,
.vv-intent-upsell-banner {
    padding: 14px;
    border: 1px solid rgba(215, 208, 196, 0.95);
    border-radius: 10px;
    background: #fff;
}

.vv-intent-room-card {
    display: grid;
    grid-template-columns: 264px minmax(0, 1fr) 220px;
    gap: 16px;
    align-items: start;
    padding-bottom: 10px;
}

.vv-intent-room-media {
    width: 264px;
    height: 156px;
    min-width: 264px;
    min-height: 156px;
    overflow: hidden;
    border-radius: 10px;
    background:
        radial-gradient(circle at 32% 63%, rgba(200, 150, 66, 0.72) 0, rgba(200, 150, 66, 0.72) 5%, transparent 5%),
        radial-gradient(circle at 54% 59%, rgba(212, 177, 94, 0.76) 0, rgba(212, 177, 94, 0.76) 3.5%, transparent 3.5%),
        linear-gradient(135deg, #65432a 0%, #b78546 58%, #2d3f2f 100%);
}

.vv-intent-room-media img {
    width: 100%;
    height: 100%;
    min-height: 156px;
    object-fit: cover;
    display: block;
}

.vv-intent-room-copy {
    display: flex;
    flex-direction: column;
    height: 156px;
    min-height: 156px;
    overflow: hidden;
}

.vv-intent-room-copy strong {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.vv-intent-room-description-shell {
    position: relative;
    height: calc(1.55em * 3 + 0.22rem);
    max-height: calc(1.55em * 3 + 0.22rem);
    padding-bottom: 0.22rem;
    min-height: 0;
    overflow: hidden;
}

.vv-intent-room-description-shell p {
    display: -webkit-box;
    position: relative;
    overflow: hidden;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.vv-intent-room-copy p {
    margin: 0;
    color: #665e54;
    font-size: 0.98rem;
    line-height: 1.55;
}

.vv-intent-inline-link {
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    color: #123f63;
    cursor: pointer;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-top: auto;
}

.vv-intent-room-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    height: 156px;
    min-height: 156px;
    width: 220px;
    text-align: right;
    justify-self: stretch;
}

.vv-intent-room-side small,
.vv-intent-service-meta small {
    color: #6d6459;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vv-intent-room-side > small {
    align-self: flex-start;
    text-align: left;
}

.vv-intent-room-select-shell {
    position: relative;
    display: block;
    width: min(100%, 220px);
}

.vv-intent-room-select-shell .vv-accent-select-trigger {
    height: 42px;
    color: #2f2b26;
    font-size: 0.95rem;
}

.vv-intent-room-price {
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 0.3em;
    margin-top: auto;
    line-height: 1;
    font-size: clamp(1.18rem, 1.7vw, 1.4rem);
    font-weight: 450;
    letter-spacing: -0.03em;
}

.vv-intent-guest-card {
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(215, 208, 196, 0.95);
    border-radius: 10px;
    background: #fff;
}

.vv-intent-guest-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    color: #2f2b26;
    font-size: 0.96rem;
    font-weight: 700;
    cursor: pointer;
}

.vv-intent-guest-checkbox input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--accent);
    cursor: pointer;
}

.vv-intent-guest-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

.vv-intent-guest-field {
    display: grid;
    gap: 8px;
}

.vv-intent-guest-field span {
    color: #6d6459;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vv-intent-guest-field input,
.vv-intent-guest-field textarea {
    width: 100%;
    padding: 11px 0 9px;
    border: 0;
    border-bottom: 1px solid rgba(194, 108, 118, 0.34);
    background: transparent;
    color: #2f2b26;
    font: inherit;
    transition: border-color 120ms ease, box-shadow 120ms ease;
}

.vv-intent-guest-field textarea {
    min-height: 96px;
    resize: vertical;
}

.vv-intent-guest-field input:focus,
.vv-intent-guest-field textarea:focus {
    outline: 0;
    border-bottom-color: #b34b59;
    box-shadow: inset 0 -1px 0 #b34b59;
}

.vv-intent-guest-field-wide {
    grid-column: 1 / -1;
}

.vv-room-dialog-backdrop {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: grid;
    place-items: center;
    padding: 32px;
    background: rgba(17, 17, 17, 0.34);
    backdrop-filter: blur(4px);
}

.vv-room-dialog {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 24px;
    width: min(1040px, calc(100vw - 64px));
    max-height: calc(100vh - 64px);
    padding: 24px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 28px 80px rgba(22, 18, 12, 0.24);
    overflow: hidden;
}

.vv-room-dialog-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #1f2428;
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
    box-shadow: 0 6px 20px rgba(22, 18, 12, 0.12);
}

.vv-room-dialog-media {
    position: relative;
    min-height: 420px;
    border-radius: 10px;
    overflow: hidden;
    background:
        radial-gradient(circle at 32% 63%, rgba(200, 150, 66, 0.72) 0, rgba(200, 150, 66, 0.72) 5%, transparent 5%),
        radial-gradient(circle at 54% 59%, rgba(212, 177, 94, 0.76) 0, rgba(212, 177, 94, 0.76) 3.5%, transparent 3.5%),
        linear-gradient(135deg, #65432a 0%, #b78546 58%, #2d3f2f 100%);
}

.vv-room-dialog-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.vv-room-dialog-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #1f2428;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    box-shadow: 0 8px 22px rgba(22, 18, 12, 0.16);
}

.vv-room-dialog-nav.prev {
    left: 16px;
}

.vv-room-dialog-nav.next {
    right: 16px;
}

.vv-room-dialog-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: inline-flex;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(20, 20, 20, 0.28);
    backdrop-filter: blur(6px);
}

.vv-room-dialog-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
}

.vv-room-dialog-dot.active {
    background: #ffffff;
}

.vv-room-dialog-copy {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-content: stretch;
    gap: 20px;
    max-height: calc(100vh - 112px);
    padding-top: 12px;
    overflow: auto;
}

.vv-room-dialog-head strong {
    display: block;
    font-size: clamp(1.9rem, 2.2vw, 2.4rem);
    line-height: 1.05;
}

.vv-room-dialog-price {
    align-self: end;
    justify-self: end;
    padding: 8px 16px 14px 0;
    text-align: right;
}

.vv-room-dialog-price p {
    margin: 0;
    color: #1f2428;
    font-size: clamp(1rem, 1.3vw, 1.4rem);
    line-height: 1;
    letter-spacing: -0.02em;
}

.vv-room-dialog-description p {
    margin: 0;
    color: #554d43;
    font-size: 1rem;
    line-height: 1.75;
}

.vv-intent-service-card {
    display: grid;
    grid-template-columns: 1fr minmax(220px, 1.5fr) 140px 180px 36px;
    gap: 18px;
}

.vv-intent-service-date,
.vv-intent-service-selection,
.vv-intent-service-meta {
    display: grid;
    gap: 6px;
    align-content: center;
}

.vv-intent-service-date strong,
.vv-intent-service-selection strong,
.vv-intent-service-meta strong {
    font-size: 1rem;
}

.vv-intent-service-date small,
.vv-intent-service-selection small {
    color: var(--muted);
}

.vv-intent-service-check {
    display: grid;
    place-items: center;
    color: var(--accent);
    font-size: 1.5rem;
}

.vv-intent-upsell-banner {
    align-items: center;
}

.vv-intent-upsell-banner strong {
    display: block;
    font-size: 1rem;
}

.vv-intent-upsell-banner p {
    margin: 6px 0 0;
    color: var(--muted);
}

.vv-intent-addon-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.vv-intent-rate-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.vv-intent-rate-option {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    min-height: 82px;
    padding: 15px 16px;
    border: 1px solid rgba(215, 208, 196, 0.95);
    border-radius: 10px;
    background: #fff;
    color: #1f2428;
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease, background 120ms ease;
}

.vv-intent-rate-option:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(53, 43, 28, 0.06);
}

.vv-intent-rate-option.selected {
    border-color: var(--accent-emphasis);
    background: linear-gradient(180deg, var(--accent-surface) 0%, var(--accent-panel) 100%);
    box-shadow: inset 0 0 0 1px var(--accent-subtle);
}

.vv-intent-rate-option-copy,
.vv-intent-rate-option-copy strong,
.vv-intent-rate-option-copy small {
    display: block;
    min-width: 0;
}

.vv-intent-rate-option-copy strong {
    font-size: 0.9rem;
}

.vv-intent-rate-option-copy small {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.vv-intent-rate-option-side {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--accent);
    white-space: nowrap;
}

.vv-intent-rate-option-side strong {
    color: #1f2428;
    font-size: 0.9rem;
}

.vv-intent-addon-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 12px;
    min-height: 132px;
    padding: 16px;
    border: 1px solid rgba(215, 208, 196, 0.95);
    border-radius: 10px;
    background: #fff;
    color: #1f2428;
    cursor: pointer;
    text-align: left;
    transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.vv-intent-addon-card.is-selectable {
    grid-template-columns: 132px minmax(0, 1fr);
}

.vv-intent-addon-media {
    width: 132px;
    min-width: 132px;
    height: 100%;
    min-height: 100px;
    overflow: hidden;
    border-radius: 10px;
    background:
        radial-gradient(circle at 32% 63%, rgba(200, 150, 66, 0.72) 0, rgba(200, 150, 66, 0.72) 5%, transparent 5%),
        radial-gradient(circle at 54% 59%, rgba(212, 177, 94, 0.76) 0, rgba(212, 177, 94, 0.76) 3.5%, transparent 3.5%),
        linear-gradient(135deg, #65432a 0%, #b78546 58%, #2d3f2f 100%);
}

.vv-intent-addon-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.vv-intent-addon-card.selected {
    border-color: var(--accent-emphasis);
    background: linear-gradient(180deg, var(--accent-surface) 0%, var(--accent-panel) 100%);
    box-shadow: inset 0 0 0 1px var(--accent-subtle);
}

.vv-intent-addon-card.is-included {
    cursor: default;
    border-color: var(--accent-emphasis);
    background: linear-gradient(180deg, var(--accent-surface) 0%, var(--accent-panel) 100%);
    box-shadow: inset 0 0 0 1px var(--accent-subtle);
}

.vv-intent-addon-card.is-included .vv-intent-addon-meta {
    color: var(--accent);
}

.vv-intent-included-days,
.vv-intent-included-day {
    display: grid;
    gap: 12px;
}

.vv-intent-included-days {
    gap: 18px;
}

.vv-intent-included-day-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1f2428;
}

.vv-intent-included-day-heading span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 900;
}

.vv-intent-included-day-heading strong {
    font-size: 0.9rem;
}

.vv-intent-addon-card.is-special-service {
    grid-column: 1 / -1;
}

.vv-spa-selector-stack {
    display: grid;
    gap: 12px;
}

.vv-spa-selector-stack-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.vv-spa-selector-row {
    display: grid;
    grid-template-columns: 132px minmax(230px, 1fr) minmax(170px, 0.68fr) 140px;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(215, 208, 196, 0.95);
    border-radius: 10px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(244, 249, 245, 0.8);
}

.vv-spa-selector-row.is-declined {
    border-color: rgba(183, 150, 140, 0.95);
    background: linear-gradient(180deg, #fbf5f2 0%, #fff 100%);
    box-shadow: inset 0 0 0 1px rgba(183, 150, 140, 0.14);
}

.vv-spa-selector-row.is-declined .vv-spa-selector-media {
    filter: saturate(0.88);
}

.vv-spa-selector-day {
    display: grid;
    gap: 12px;
    min-width: 0;
    align-content: center;
}

.vv-spa-selector-day strong {
    font-size: 1rem;
    line-height: 1.15;
    color: #1f2428;
    overflow-wrap: anywhere;
}

.vv-spa-selector-day span {
    width: fit-content;
    max-width: 100%;
    padding: 3px 8px;
    border: 1px solid rgba(183, 199, 190, 0.92);
    border-radius: 999px;
    background: var(--accent-surface);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.vv-spa-selector-add {
    min-width: 72px;
    padding: 9px 16px;
    border: 1px solid var(--accent);
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.vv-spa-selector-add:hover {
    border-color: var(--accent-strong);
    background: var(--accent-strong);
    box-shadow: 0 10px 20px var(--accent-line);
    transform: translateY(-1px);
}

.vv-spa-selector-media {
    width: 132px;
    height: 156px;
    min-width: 132px;
    min-height: 156px;
    overflow: hidden;
    border-radius: 10px;
    background:
        radial-gradient(circle at 32% 63%, rgba(200, 150, 66, 0.72) 0, rgba(200, 150, 66, 0.72) 5%, transparent 5%),
        radial-gradient(circle at 54% 59%, rgba(212, 177, 94, 0.76) 0, rgba(212, 177, 94, 0.76) 3.5%, transparent 3.5%),
        linear-gradient(135deg, #65432a 0%, #b78546 58%, #2d3f2f 100%);
}

.vv-spa-selector-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.vv-spa-selector-field {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.vv-spa-selector-control-column {
    display: grid;
    grid-template-rows: auto auto;
    gap: 14px;
    align-self: stretch;
    min-width: 0;
}

.vv-spa-selector-inline-fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: end;
    min-width: 0;
}

.vv-spa-selector-persons {
    width: fit-content;
    justify-self: start;
}

.vv-spa-selector-preference {
    min-width: 0;
}

.vv-spa-selector-time {
    min-width: 0;
}

.vv-spa-selector-field > span {
    color: #625f56;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vv-spa-selector-field select {
    width: 100%;
    min-width: 0;
    height: 46px;
    padding: 0 44px 0 14px;
    border: 1px solid rgba(215, 208, 196, 0.95);
    border-radius: 10px;
    background: #fff;
    color: #1f2428;
    font: inherit;
    text-overflow: ellipsis;
    white-space: nowrap;
    accent-color: var(--accent);
    appearance: none;
}

.vv-spa-selector-field select option {
    color: #1f2428;
    background: #fff;
}

.vv-spa-selector-field select option:hover,
.vv-spa-selector-field select option:focus,
.vv-spa-selector-field select option:checked {
    color: #fff;
    background: var(--accent) linear-gradient(0deg, var(--accent) 0%, var(--accent) 100%);
}

.vv-accent-select {
    position: relative;
    min-width: 0;
}

.vv-accent-select-trigger {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(215, 208, 196, 0.95);
    border-radius: 10px;
    background: #fff;
    color: #1f2428;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.vv-accent-select-trigger > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vv-accent-select-trigger:hover,
.vv-accent-select-trigger:focus-visible,
.vv-accent-select-trigger[aria-expanded="true"] {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 2px var(--accent-subtle);
}

.vv-accent-select-chevron {
    color: #6b675f;
    transition: transform 120ms ease;
}

.vv-accent-select-trigger[aria-expanded="true"] .vv-accent-select-chevron {
    transform: rotate(180deg);
}

.vv-accent-select-backdrop {
    position: fixed;
    inset: 0;
    z-index: 30;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: default;
}

.vv-accent-select-menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    z-index: 31;
    display: grid;
    width: 100%;
    min-width: 100%;
    max-height: 260px;
    overflow-y: auto;
    padding: 4px;
    border: 1px solid rgba(183, 199, 190, 0.95);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(31, 36, 40, 0.16);
    text-align: left;
}

.vv-accent-select-option {
    width: 100%;
    min-height: 34px;
    padding: 7px 10px;
    border: 0;
    border-radius: 5px;
    background: #fff;
    color: #1f2428;
    font: inherit;
    line-height: 1.25;
    text-align: left;
    justify-content: flex-start;
    cursor: pointer;
}

.vv-accent-select-option:hover,
.vv-accent-select-option:focus-visible,
.vv-accent-select-option.is-selected {
    outline: none;
    background: var(--accent);
    color: #fff;
}

.vv-spa-selector-group,
.vv-spa-selector-treatment,
.vv-spa-selector-time {
    position: relative;
}

.vv-spa-selector-treatment {
    grid-row: 2;
}

.vv-spa-selector-icon {
    position: absolute;
    right: 16px;
    bottom: 13px;
    color: #6b675f;
    pointer-events: none;
}

.vv-spa-selector-stepper {
    display: grid;
    grid-template-columns: 36px minmax(16px, auto) 36px;
    align-items: center;
    justify-items: center;
    height: 46px;
    width: fit-content;
    padding: 0 6px;
    border: 1px solid rgba(215, 208, 196, 0.95);
    border-radius: 10px;
    background: #fff;
}

.vv-spa-selector-stepper strong {
    color: #1f2428;
    font-size: 1.05rem;
    min-width: 1ch;
    text-align: center;
}

.vv-spa-selector-stepper-button {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(215, 208, 196, 0.95);
    border-radius: 50%;
    background: #fff;
    color: #625f56;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
}

.vv-spa-selector-status {
    display: none;
}

.vv-spa-selector-action-column {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-self: stretch;
    min-width: 0;
}

.vv-spa-selector-price {
    display: grid;
    align-content: center;
    justify-items: end;
    min-height: 46px;
    min-width: 0;
    text-align: right;
}

.vv-intent-display-price,
.vv-spa-selector-price strong {
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 0.3em;
    color: #1f2428;
    font-size: clamp(1.05rem, 1.35vw, 1.22rem);
    font-weight: 450;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.vv-intent-display-price-prefix {
    flex: 0 0 auto;
}

.vv-spa-selector-price small {
    color: #6d6a61;
    font-size: 0.72rem;
    line-height: 1.2;
}

.vv-spa-selector-action {
    display: grid;
    place-items: center;
    height: 46px;
    width: 100%;
    padding: 0;
    border-radius: 10px;
    border: 1px solid rgba(215, 208, 196, 0.95);
    background: #fff;
    color: #1f2428;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease, background 120ms ease, color 120ms ease;
}

.vv-spa-selector-action.is-decline {
    color: #7f4f43;
    border-color: rgba(183, 150, 140, 0.95);
    background: #fbf5f2;
}

.vv-spa-selector-action.is-decline.is-active {
    border-color: rgba(183, 150, 140, 1);
    background: #f4e6e0;
    box-shadow: inset 0 0 0 1px rgba(183, 150, 140, 0.18);
}

.vv-spa-selector-action.is-accept {
    color: #fff;
    border-color: var(--accent);
    background: var(--accent);
}

.vv-spa-selector-action.is-accept.is-booked {
    box-shadow: inset 0 0 0 1px color-mix(in srgb, #ffffff 18%, transparent);
}

.vv-spa-selector-action.is-discovery {
    color: #8a4b12;
    border-color: #d79a3a;
    background: linear-gradient(180deg, #fff1c7 0%, #ffd989 100%);
    box-shadow:
        0 10px 20px rgba(215, 154, 58, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.vv-spa-selector-action.is-discovery .mud-icon-root {
    font-size: 1.4rem;
}

.vv-spa-selector-action:hover,
.vv-spa-selector-action:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.vv-spa-selector-action.is-discovery:hover,
.vv-spa-selector-action.is-discovery:focus-visible {
    border-color: #c98222;
    background: linear-gradient(180deg, #ffebae 0%, #ffc965 100%);
    box-shadow:
        0 12px 24px rgba(201, 130, 34, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.vv-spa-selector-action.is-accept:hover,
.vv-spa-selector-action.is-accept:focus-visible {
    border-color: var(--accent-strong);
    background: var(--accent-strong);
    box-shadow: 0 12px 24px var(--accent-shadow);
}

.vv-spa-selector-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-self: end;
    align-items: end;
    min-width: 0;
}

.vv-spa-availability-panel {
    grid-column: 2 / -1;
    display: grid;
    gap: 10px;
    margin-top: 6px;
    padding: 12px 14px;
    border: 1px solid rgba(215, 208, 196, 0.95);
    border-radius: 10px;
    background: rgba(250, 247, 241, 0.96);
}

.vv-spa-availability-status {
    color: #5d564d;
    font-size: 0.92rem;
    line-height: 1.45;
}

.vv-spa-availability-status.is-error {
    color: #b44141;
}

.vv-spa-availability-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
}

.vv-spa-availability-slot {
    display: grid;
    gap: 3px;
    align-items: start;
    justify-items: start;
    width: auto;
    min-width: 132px;
    max-width: 100%;
    padding: 9px 12px;
    border: 1px solid rgba(203, 191, 172, 0.95);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: #1f2428;
}

.vv-spa-availability-slot:hover,
.vv-spa-availability-slot:focus-visible {
    border-color: rgba(38, 75, 55, 0.4);
    background: rgba(247, 251, 248, 0.96);
}

.vv-spa-availability-slot-time {
    font-weight: 700;
    line-height: 1.2;
}

.vv-spa-availability-slot-price {
    color: var(--accent-text-deep);
    font-weight: 700;
    font-size: 0.86rem;
    line-height: 1.2;
    white-space: nowrap;
}

.vv-intent-addon-copy {
    display: grid;
    grid-template-rows: 44px minmax(46px, 1fr);
    gap: 8px;
    min-width: 0;
}

.vv-intent-addon-content {
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    gap: 4px;
    min-width: 0;
}

.vv-intent-addon-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 12px;
    min-width: 0;
}

.vv-intent-addon-header .vv-intent-addon-title {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vv-intent-addon-header .vv-intent-display-price {
    flex: 0 0 auto;
    white-space: nowrap;
}

.vv-intent-addon-pricing-hint {
    display: block;
    justify-self: end;
    max-width: 100%;
    color: #726d63;
    font-size: 0.74rem;
    line-height: 1.3;
    text-align: right;
}

.vv-intent-addon-description-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 12px;
    min-width: 0;
}

.vv-intent-addon-description {
    display: -webkit-box;
    min-width: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.vv-intent-addon-description-row > .mud-icon-root {
    align-self: end;
    flex: 0 0 auto;
}

.vv-intent-addon-title {
    display: flex;
    align-items: flex-start;
    font-weight: 800;
    line-height: 1.25;
    overflow: hidden;
}

.vv-intent-addon-body {
    display: flex;
    align-items: flex-start;
    min-width: 0;
    overflow: hidden;
}

.vv-intent-addon-copy small {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.vv-intent-addon-meta {
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: stretch;
    gap: 10px;
    justify-items: end;
}

.vv-intent-addon-price {
    display: grid;
    gap: 4px;
    justify-items: end;
    align-self: start;
}

.vv-intent-addon-price small {
    color: #726d63;
    font-size: 0.74rem;
    line-height: 1.3;
    text-align: right;
}

.vv-intent-empty-note {
    padding: 14px 16px;
    border: 1px dashed rgba(215, 208, 196, 0.95);
    border-radius: 10px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.72);
}

.vv-intent-addon-card:hover,
.vv-intent-chip-button:hover,
.vv-intent-checkbox-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(53, 43, 28, 0.06);
}

.vv-intent-details-summary {
    align-items: start;
    padding-top: 8px;
}

.vv-intent-details-copy strong {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.vv-intent-details-copy span {
    color: #2d2b29;
    font-size: 0.98rem;
    line-height: 1.55;
}

.vv-benefit-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.vv-benefit-list span {
    position: relative;
    padding-left: 20px;
    color: #2d2b29;
}

.vv-benefit-list span::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #8d8578;
    font-weight: 900;
}

.vv-assistant {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 40;
}

.vv-assistant-avatar {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: #5b564d;
}

.vv-assistant-avatar .mud-icon-root {
    font-size: 26px;
}

.vv-assistant-fab {
    position: relative;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    padding: 0;
    border: 1px solid rgba(215, 208, 196, 0.95);
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 235, 0.96));
    box-shadow:
        0 18px 34px rgba(53, 43, 28, 0.16),
        0 28px 72px rgba(53, 43, 28, 0.18);
    cursor: pointer;
    animation: vv-assistant-hover 10s ease-in-out infinite;
}

.vv-assistant-tooltip {
    position: absolute;
    right: calc(100% - 8px);
    bottom: calc(100% - 8px);
    transform: translateX(8px) translateY(8px);
    display: grid;
    gap: 3px;
    min-width: 220px;
    max-width: min(280px, calc(100vw - 120px));
    padding: 12px 14px;
    border: 1px solid rgba(215, 208, 196, 0.95);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 235, 0.97));
    box-shadow:
        0 16px 34px rgba(53, 43, 28, 0.16),
        0 24px 56px rgba(53, 43, 28, 0.12);
    color: #4f493f;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 180ms ease,
        transform 180ms ease;
    text-align: left;
}

.vv-assistant-tooltip strong {
    display: block;
    color: #1f2428;
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.vv-assistant-tooltip span {
    display: block;
    color: #6d655a;
    font-size: 0.76rem;
    line-height: 1.4;
}

.vv-assistant-fab::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: -12px;
    height: 18px;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(53, 43, 28, 0.2), transparent 72%);
    opacity: 0.48;
    filter: blur(6px);
    pointer-events: none;
    z-index: -1;
}

.vv-assistant-fab:hover,
.vv-assistant-fab:focus-visible {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 22px 42px rgba(53, 43, 28, 0.18),
        0 34px 84px rgba(53, 43, 28, 0.22);
    outline: none;
}

.vv-assistant-fab:hover .vv-assistant-tooltip,
.vv-assistant-fab:focus-visible .vv-assistant-tooltip {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

@keyframes vv-assistant-hover {
    0%, 100% {
        transform: translateY(0);
    }

    12% {
        transform: translateY(-6px);
    }

    18% {
        transform: translateY(-2px);
    }

    24% {
        transform: translateY(-6px);
    }

    30% {
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .vv-assistant-fab {
        animation: none;
    }
}

@media (max-width: 760px) {
    .vv-assistant {
        right: 18px;
        bottom: 18px;
    }

    .vv-assistant-fab {
        width: 56px;
        height: 56px;
    }

    .vv-assistant-avatar .mud-icon-root {
        font-size: 24px;
    }

    .vv-assistant-tooltip {
        min-width: 190px;
        max-width: min(240px, calc(100vw - 108px));
    }
}

@media (max-width: 520px) {
    .vv-assistant {
        right: 14px;
        bottom: 14px;
    }

    .vv-assistant-tooltip {
        right: 50%;
        bottom: calc(100% + 16px);
        transform: translateX(50%) translateY(8px);
        min-width: 180px;
        max-width: min(220px, calc(100vw - 32px));
    }

    .vv-assistant-fab:hover .vv-assistant-tooltip,
    .vv-assistant-fab:focus-visible .vv-assistant-tooltip {
        transform: translateX(50%) translateY(0);
    }
}

#blazor-error-ui {
    display: none;
}

@media (max-width: 1320px) {
    .vv-layout {
        grid-template-columns: 1fr;
    }

    .vv-summary-card {
        position: static;
        max-height: none;
        overflow: visible;
    }
}

@media (max-width: 1080px) {
    .vv-topbar {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 12px;
        padding: 14px 20px;
    }

    .vv-brand,
    .vv-top-actions {
        justify-self: stretch;
        width: 100%;
        justify-content: space-between;
    }

    .vv-top-search {
        position: static;
        left: auto;
        transform: none;
        width: 100%;
    }

    .vv-search-pill {
        width: 100%;
    }

    .vv-intent-grid,
    .vv-controls-grid,
    .vv-bottom-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vv-intent-card-rail {
        flex-basis: min(240px, calc((100% - 16px) / 2));
    }

    .vv-intent-service-card {
        grid-template-columns: 1fr 1fr;
    }

    .vv-intent-addon-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vv-intent-panel {
        left: 28px;
        right: 28px;
    }
}

@media (max-width: 760px) {
    :root {
        --hero-min-height: 640px;
    }

    .vv-layout {
        width: min(100% - 24px, 720px);
        margin-top: 20px;
    }

    .vv-hero-overlay {
        top: 38px;
        left: 24px;
        right: 24px;
    }

    .vv-intent-panel {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin: -40px 12px 0;
    }

    .vv-controls-card {
        margin-top: 20px;
    }

    .vv-intent-grid,
    .vv-controls-grid,
    .vv-bottom-grid {
        grid-template-columns: 1fr;
    }

    .vv-intent-rail-shell {
        grid-template-columns: 36px minmax(0, 1fr) 36px;
        gap: 10px;
    }

    .vv-intent-scroll-button {
        width: 36px;
        height: 36px;
    }

    .vv-intent-card-rail {
        flex-basis: min(250px, calc(100vw - 120px));
    }

    .vv-search-pill {
        grid-template-columns: 1fr;
        gap: 10px;
        min-height: auto;
        padding: 12px;
    }

    .vv-intent-details-card {
        padding: 24px;
    }

    .vv-intent-details-topbar,
    .vv-intent-details-block-head,
    .vv-intent-upsell-banner,
    .vv-intent-details-summary {
        flex-direction: column;
        align-items: start;
    }

    .vv-intent-addon-grid,
    .vv-intent-rate-options,
    .vv-intent-service-card {
        grid-template-columns: 1fr;
    }

    .vv-intent-room-card {
        grid-template-columns: 1fr;
    }

    .vv-intent-guest-grid {
        grid-template-columns: 1fr;
    }

    .vv-intent-room-side {
        width: 100%;
    }

    .vv-spa-selector-row {
        grid-template-columns: 1fr;
    }

    .vv-spa-selector-stack-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .vv-spa-selector-media {
        width: 100%;
        max-width: 180px;
        min-width: 0;
        min-height: 0;
        height: auto;
    }

    .vv-spa-availability-slot {
        width: 100%;
    }

    .vv-intent-addon-card {
        grid-template-columns: 108px minmax(0, 1fr);
    }

    .vv-intent-addon-card.is-selectable {
        grid-template-columns: 108px minmax(0, 1fr);
    }

    .vv-intent-addon-media {
        width: 108px;
        min-width: 108px;
    }

    .vv-intent-addon-meta {
        grid-column: 2;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto;
        align-items: center;
        justify-items: start;
    }

    .vv-intent-addon-price {
        justify-items: start;
    }

    .vv-intent-addon-price small {
        text-align: left;
    }

    .vv-intent-addon-stepper {
        justify-self: start;
    }

    .vv-search-divider {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vv-stage-shell.is-animating .vv-stage-panel {
        animation: none;
    }
}

.vv-thankyou-page {
    min-height: 100vh;
    padding: 0 20px 160px;
    background: #ffffff;
}

.vv-thankyou-shell {
    width: min(100%, 1100px);
    margin: 0 auto;
}

.vv-thankyou-stage {
    max-width: 1060px;
    margin: 26px auto 0;
}

.vv-topbar-thankyou .vv-top-search {
    width: min(860px, calc(100% - 320px));
}

.vv-top-actions-thankyou {
    gap: 0;
}

.vv-thankyou-hero {
    min-height: var(--hero-min-height);
    border-radius: 12px;
}

.vv-thankyou-hero::after {
    background: linear-gradient(180deg, rgba(12, 18, 26, 0.12), rgba(12, 18, 26, 0.34) 54%, rgba(12, 18, 26, 0.08));
}

.vv-thankyou-loading,
.vv-thankyou-error {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
}

.vv-thankyou-loading {
    background: #f4f2ec;
    color: #4e5d54;
}

.vv-thankyou-panel {
    left: 50%;
    right: auto;
    bottom: -124px;
    width: min(980px, calc(100% - 32px));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 22px;
    align-items: start;
    justify-items: stretch;
    padding: 20px 22px 18px;
    text-align: left;
    border-radius: 18px;
    border: 1px solid rgba(226, 221, 211, 0.92);
    background: rgba(255, 255, 255, 0.965);
    box-shadow:
        16px 28px 80px rgba(53, 43, 28, 0.16);
}

.vv-thankyou-panel-copy,
.vv-thankyou-panel-status {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.vv-thankyou-panel-copy {
    align-content: start;
}

.vv-thankyou-panel-status {
    justify-items: stretch;
}

.vv-thankyou-confirmation-anchor {
    width: 100%;
}

.vv-thankyou-panel .vv-payment-result-shell {
    width: 100%;
}

.vv-thankyou-panel .vv-payment-result-card,
.vv-thankyou-panel .vv-payment-result-stack {
    width: 100%;
}

.vv-thankyou-panel .vv-payment-result-card {
    max-width: 360px;
    margin-left: auto;
    border-radius: 14px;
    box-shadow: none;
}

.vv-thankyou-message {
    margin: 0;
    max-width: none;
    color: #4e5d54;
    font-size: 0.94rem;
    line-height: 1.55;
}

.vv-thankyou-message-primary {
    color: #111111;
    font-weight: 700;
    text-align: center;
}

.vv-thankyou-error {
    background: rgba(142, 56, 44, 0.08);
    color: #8e382c;
}

.vv-thankyou-header-button,
.vv-thankyou-confirmation-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border: none;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 14px 28px var(--accent-shadow);
}

.vv-thankyou-header-button:hover,
.vv-thankyou-header-button:focus-visible,
.vv-thankyou-confirmation-button:hover,
.vv-thankyou-confirmation-button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(83, 114, 94, 0.28);
    outline: none;
}

.vv-thankyou-confirmation-button {
    justify-self: center;
    margin-top: 8px;
    text-decoration: none;
}

.vv-client-diagnostics {
    position: fixed;
    left: 50%;
    bottom: 6px;
    width: min(1380px, calc(100% - 56px));
    max-width: calc(100% - 16px);
    transform: translateX(-50%);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 12px;
    min-height: 36px;
    padding: 8px 14px;
    border: 1px solid rgba(17, 17, 17, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    color: rgba(17, 17, 17, 0.68);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
    box-shadow: 0 4px 14px rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(8px);
}

.vv-client-diagnostics.has-error {
    border-color: rgba(142, 56, 44, 0.4);
    background: rgba(255, 244, 242, 0.97);
    color: #8e382c;
}

.vv-checkout-debug-steps {
    display: grid;
    gap: 12px;
    margin-top: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(215, 208, 196, 0.95);
    border-radius: 14px;
    background: rgba(251, 250, 247, 0.96);
}

.vv-checkout-debug-steps-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.vv-checkout-debug-steps-head strong {
    color: #1f2428;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.vv-checkout-debug-steps-head span {
    color: #6f685d;
    font-size: 0.8rem;
    line-height: 1.4;
}

.vv-checkout-debug-step-list {
    display: grid;
    gap: 10px;
}

.vv-checkout-debug-step {
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.vv-checkout-debug-step-indicator {
    width: 12px;
    height: 12px;
    margin-top: 4px;
    border-radius: 50%;
    border: 1px solid rgba(188, 178, 164, 0.95);
    background: #fff;
}

.vv-checkout-debug-step-copy {
    display: grid;
    gap: 3px;
}

.vv-checkout-debug-step-copy strong {
    color: #1f2428;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.25;
}

.vv-checkout-debug-step-copy span {
    color: #706a61;
    font-size: 0.8rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.vv-checkout-debug-step.is-complete .vv-checkout-debug-step-indicator {
    border-color: var(--accent-text-strong);
    background: var(--accent-text-strong);
}

.vv-checkout-debug-step.is-active .vv-checkout-debug-step-indicator {
    border-color: rgba(200, 158, 73, 0.98);
    background: #c89e49;
    box-shadow: 0 0 0 4px rgba(200, 158, 73, 0.16);
}

.vv-checkout-debug-step.is-failed .vv-checkout-debug-step-indicator {
    border-color: rgba(185, 75, 67, 0.98);
    background: #b94b43;
}

@media (max-width: 760px) {
    .vv-startup-card {
        padding: 1.5rem;
        border-radius: 18px;
    }

    .vv-startup-grid {
        grid-template-columns: 1fr;
    }

    .vv-client-diagnostics {
        width: calc(100% - 20px);
    }

    .vv-thankyou-page {
        padding: 0 14px 110px;
    }

    .vv-thankyou-stage {
        margin-top: 18px;
    }

    .vv-thankyou-hero {
        min-height: 420px;
    }

    .vv-thankyou-panel {
        width: calc(100% - 20px);
        bottom: -116px;
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 20px 16px 18px;
    }

    .vv-thankyou-panel .vv-payment-result-card {
        max-width: 100%;
        margin-left: 0;
    }

    .vv-thankyou-header-button,
    .vv-thankyou-confirmation-button {
        width: 100%;
        justify-self: stretch;
    }
}
