:root {
    --vv-primary: #079455;
    --vv-primary-2: #10b981;
    --vv-dark: #061627;
    --vv-ink: #0b1220;
    --vv-muted: #64748b;
    --vv-line: #e2e8f0;
    --vv-soft: #f8fafc;
    --vv-mint: #ecfdf5;
    --vv-gold: #f59e0b;
    --vv-blue: #2563eb;
    --vv-danger: #e11d48;
    --vv-shadow: 0 16px 45px rgba(15, 23, 42, .10);
    --vv-radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    max-width: 100%;
    overflow-x: hidden;
}

body.voyvera-body {
    margin: 0;
    background: #ffffff;
    color: var(--vv-ink);
    font-family: "Inter", "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
    max-width: 100%;
    overflow-x: hidden;
}

a {
    color: inherit;
}

.vv-page-shell {
    min-height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.vv-container {
    width: min(100% - 40px, 1400px);
    margin: 0 auto;
}

.vv-topbar {
    background: #fbfdff;
    border-bottom: 1px solid var(--vv-line);
    font-size: 13px;
    color: #172033;
}

.vv-topbar .vv-container,
.vv-navbar .vv-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.vv-topbar .vv-container {
    min-height: 38px;
}

.vv-top-items {
    display: flex;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
}

.vv-top-item,
.vv-icon-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.vv-icon {
    width: 20px;
    height: 20px;
    color: var(--vv-primary);
    stroke-width: 2;
}

.vv-navbar {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, .9);
}

.vv-navbar .vv-container {
    min-height: 82px;
}

.vv-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    min-width: 250px;
}

.vv-menu-button {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: var(--vv-ink);
    display: inline-grid;
    place-items: center;
}

.vv-menu-open,
.vv-panel-menu-open {
    overflow: hidden;
}

.vv-menu-panel {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(360px, 92vw);
    z-index: 90;
    transform: translateX(-102%);
    transition: transform .22s ease;
    background: #fff;
    box-shadow: 24px 0 60px rgba(15, 23, 42, .2);
    padding: 18px;
    overflow-y: auto;
    scrollbar-gutter: stable;
}

.vv-menu-panel.open {
    transform: translateX(0);
}

.vv-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(6, 22, 39, .42);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.vv-menu-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.vv-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--vv-line);
}

.vv-menu-head img {
    width: 190px;
    max-width: 72%;
}

.vv-menu-close {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--vv-line);
    border-radius: 10px;
    background: #fff;
}

.vv-menu-links {
    display: grid;
    gap: 8px;
    padding-top: 18px;
}

.vv-menu-panel a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 800;
    font-size: 15px;
    padding: 12px 14px;
    border-radius: 10px;
}

.vv-menu-panel a:hover {
    background: var(--vv-mint);
    color: var(--vv-primary);
}

.vv-menu-scroll-hint {
    position: sticky;
    bottom: 0;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .92), #ecfdf5);
    color: #047857;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 -10px 22px rgba(15, 23, 42, .08);
}

.vv-menu-scroll-hint svg {
    width: 17px;
    height: 17px;
    animation: vvScrollNudge 1.25s ease-in-out infinite;
}

.vv-brand img {
    width: 236px;
    max-width: 100%;
    height: auto;
    display: block;
}

.vv-nav-search {
    flex: 1;
    max-width: 760px;
    position: relative;
}

.vv-nav-search input {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    min-height: 48px;
    padding: 0 52px 0 22px;
    color: #0f172a;
    background: #fff;
    outline: none;
}

.vv-nav-search .vv-search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #334155;
}

.vv-nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vv-btn {
    min-height: 44px;
    border-radius: 8px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    white-space: nowrap;
}

.vv-btn:hover {
    transform: translateY(-1px);
}

.vv-btn-primary {
    background: linear-gradient(135deg, #079455, #10b981);
    color: #fff;
    box-shadow: 0 12px 26px rgba(16, 185, 129, .28);
}

.vv-btn-primary:hover {
    color: #fff;
    background: linear-gradient(135deg, #047857, #0ea271);
}

.vv-btn-dark {
    background: rgba(4, 18, 34, .82);
    color: #fff;
    border-color: rgba(255, 255, 255, .35);
}

.vv-btn-dark:hover {
    color: #fff;
    background: #061627;
}

.vv-btn-outline {
    background: #fff;
    color: var(--vv-ink);
    border-color: #cbd5e1;
}

.vv-btn-outline:hover {
    color: var(--vv-primary);
    border-color: var(--vv-primary);
}

.vv-btn-sm {
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
}

.vv-hero {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(5, 18, 35, .98) 0%, rgba(5, 18, 35, .88) 42%, rgba(5, 18, 35, .28) 72%, rgba(5, 18, 35, .05) 100%),
        var(--vv-hero-image);
    background-size: cover;
    background-position: center;
}

.vv-hero-grid {
    min-height: 350px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
    gap: 32px;
    align-items: center;
    padding: 34px 0 58px;
}

.vv-hero::after,
.vv-page-hero::after {
    content: "Scroll down";
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(6, 22, 39, .42);
    color: rgba(255, 255, 255, .9);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .03em;
    text-transform: uppercase;
    pointer-events: none;
    box-shadow: 0 10px 26px rgba(6, 22, 39, .18);
    animation: vvScrollNudge 1.35s ease-in-out infinite;
}

@keyframes vvScrollNudge {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(4px);
    }
}

.vv-menu-scroll-hint svg {
    animation-name: vvMenuScrollNudge;
}

@keyframes vvMenuScrollNudge {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }
}

.vv-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(16, 185, 129, .18);
    color: #86efac;
    font-size: 14px;
    font-weight: 800;
}

.vv-hero h1 {
    max-width: 620px;
    margin: 16px 0 12px;
    font-size: clamp(38px, 4.4vw, 58px);
    line-height: 1.03;
    font-weight: 900;
    overflow-wrap: break-word;
}

.vv-hero h1 span {
    color: #12c785;
}

.vv-hero-copy {
    max-width: 550px;
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 1.58;
    color: rgba(255, 255, 255, .92);
}

.vv-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.vv-rating-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-weight: 800;
}

.vv-avatar-stack {
    display: flex;
    align-items: center;
}

.vv-avatar-stack span,
.vv-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid #fff;
    background-size: cover;
    background-position: center;
    margin-left: -9px;
}

.vv-avatar-stack span:first-child {
    margin-left: 0;
}

.vv-rating-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vv-search-card {
    background: rgba(255, 255, 255, .96);
    color: var(--vv-ink);
    border: 1px solid rgba(226, 232, 240, .86);
    border-radius: 18px;
    box-shadow: var(--vv-shadow);
    padding: 22px;
}

.vv-tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-bottom: 1px solid var(--vv-line);
    margin-bottom: 24px;
}

.vv-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    background: transparent;
    padding: 0 8px 16px;
    color: #162235;
    font-weight: 800;
    font-size: 14px;
    border-bottom: 2px solid transparent;
    text-decoration: none;
}

.vv-tab.active {
    color: var(--vv-primary);
    border-color: var(--vv-primary);
}

.vv-search-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.vv-field {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 62px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    padding: 12px 14px;
    background: #fff;
}

.vv-field-label {
    display: block;
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
}

.vv-field-label.full {
    grid-column: 1 / -1;
}

.vv-field-label .vv-form-control,
.vv-field-label .vv-password-field {
    width: 100%;
    margin-top: 7px;
}

.vv-required {
    display: inline;
    color: #e11d48;
    font-weight: 900;
    margin-left: 2px;
}

.vv-field label {
    display: block;
    font-size: 12px;
    font-weight: 900;
    color: #334155;
    margin-bottom: 3px;
}

.vv-field input,
.vv-field select,
.vv-field textarea,
.vv-clean-input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #64748b;
    font-size: 14px;
    padding: 0;
}

.vv-search-submit {
    min-height: 62px;
    width: 100%;
}

.vv-search-assurance {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--vv-line);
}

.vv-assurance {
    display: flex;
    gap: 12px;
    align-items: center;
}

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

.vv-assurance strong {
    font-size: 14px;
}

.vv-assurance span {
    font-size: 12px;
    color: #64748b;
}

.vv-section {
    padding: 34px 0;
}

.vv-section-tight {
    padding: 22px 0;
}

.vv-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 18px;
}

.vv-section-head h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
}

.vv-section-head p {
    margin: 4px 0 0;
    color: var(--vv-muted);
    font-size: 14px;
}

.vv-view-all {
    color: var(--vv-primary);
    font-weight: 900;
    text-decoration: none;
    font-size: 14px;
}

.vv-category-strip {
    display: grid;
    grid-template-columns: repeat(9, minmax(110px, 1fr));
    gap: 14px;
    padding: 22px 0 8px;
}

.vv-category {
    min-height: 68px;
    background: #fff;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    color: #0f172a;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .04);
}

.vv-category .vv-icon {
    width: 26px;
    height: 26px;
}

.vv-destination-row {
    display: grid;
    grid-template-columns: repeat(8, minmax(170px, 1fr));
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
}

.vv-destination-shell {
    position: relative;
    scroll-snap-align: start;
}

.vv-destination-shell .vv-destination-card {
    display: block;
    height: 100%;
}

.vv-destination-card,
.vv-photo-card {
    position: relative;
    overflow: hidden;
    min-height: 156px;
    border-radius: 12px;
    background: #0f172a;
    color: #fff;
    text-decoration: none;
    isolation: isolate;
    scroll-snap-align: start;
}

.vv-photo-card img,
.vv-destination-card img,
.vv-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vv-destination-card::after,
.vv-photo-card::after,
.vv-package-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 22, 39, 0) 28%, rgba(6, 22, 39, .88) 100%);
    z-index: 1;
}

.vv-card-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .45);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
    cursor: pointer;
    line-height: 0;
    padding: 0;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.vv-card-favorite svg {
    width: 18px;
    height: 18px;
    display: block;
    flex: 0 0 auto;
    stroke: currentColor;
    margin: 0;
}

.vv-card-favorite:hover,
.vv-card-favorite.saved {
    background: #fff;
    color: #e11d48;
    transform: scale(1.04);
}

.vv-card-favorite.saved svg {
    fill: currentColor;
}

.vv-destination-content {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
}

.vv-destination-content strong {
    display: block;
    font-size: 16px;
}

.vv-destination-content span {
    display: block;
    font-size: 12px;
    font-weight: 800;
    margin-top: 3px;
}

.vv-destination-content small {
    display: block;
    margin-top: 9px;
    font-weight: 900;
}

.vv-split-grid {
    display: grid;
    grid-template-columns: minmax(300px, .85fr) minmax(0, 2fr);
    gap: 24px;
    align-items: stretch;
}

.vv-consult-card {
    position: relative;
    min-height: 320px;
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 56%, #dcfce7 100%);
    border: 1px solid #cfe8df;
    border-radius: 14px;
    padding: 28px;
    overflow: hidden;
}

.vv-consult-card h3 {
    margin: 0 0 12px;
    font-size: 26px;
    font-weight: 900;
}

.vv-consult-card h3 span {
    color: var(--vv-primary);
}

.vv-check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 20px 0 24px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
}

.vv-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vv-package-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.vv-package-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--vv-line);
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
}

.vv-package-image {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.vv-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: #fde047;
    color: #0f172a;
    border-radius: 6px;
    padding: 5px 8px;
    font-size: 11px;
    font-weight: 900;
}

.vv-tag.green {
    color: #fff;
    background: var(--vv-primary);
}

.vv-package-body {
    padding: 14px;
}

.vv-package-body h3,
.vv-list-package h3 {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 900;
}

.vv-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 12px;
}

.vv-package-price {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
}

.vv-price strong {
    display: block;
    font-size: 20px;
    font-weight: 900;
}

.vv-price span {
    display: block;
    color: #64748b;
    font-size: 12px;
}

.vv-stars {
    color: var(--vv-gold);
    font-weight: 900;
    letter-spacing: 1px;
}

.vv-agency-list {
    display: grid;
    gap: 12px;
}

.vv-home-agencies {
    margin-top: 28px;
}

.vv-agency-list-home {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.vv-agency-card-shell {
    position: relative;
}

.vv-agency-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-height: 92px;
    padding: 14px 58px 14px 16px;
    background: #fff;
    border: 1px solid var(--vv-line);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.vv-agency-card-shell .vv-card-favorite,
.vv-wishlist-card .vv-card-favorite {
    background: #fff;
    border-color: #dbe3ef;
    color: #94a3b8;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .12);
}

.vv-agency-card-shell .vv-card-favorite:hover,
.vv-agency-card-shell .vv-card-favorite.saved,
.vv-wishlist-card .vv-card-favorite:hover,
.vv-wishlist-card .vv-card-favorite.saved {
    color: #e11d48;
}

.vv-agency-logo {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: linear-gradient(135deg, #dbeafe, #ecfdf5);
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #0f4f8f;
    font-size: 24px;
}

.vv-agency-card h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 900;
}

.vv-agency-card p {
    margin: 3px 0 8px;
    color: #64748b;
    font-size: 12px;
}

.vv-agency-card-rich .vv-agency-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 20px;
    gap: 14px;
    align-items: center;
    min-height: 116px;
    height: auto;
    padding: 14px 52px 14px 16px;
    overflow: visible;
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .055);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.vv-agency-card-rich .vv-agency-card:hover {
    border-color: rgba(16, 185, 129, .32);
    box-shadow: 0 16px 34px rgba(15, 23, 42, .085);
    transform: translateY(-1px);
}

.vv-agency-card-rich .vv-agency-logo {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .06);
    align-self: center;
    flex: 0 0 58px;
    overflow: hidden;
    letter-spacing: 0;
    font-size: 20px;
}

.vv-agency-card-copy h3 {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    text-align: left;
    line-height: 1.22;
    min-width: 0;
    font-size: 16px;
}

.vv-agency-card-copy {
    min-width: 0;
    display: grid;
    align-content: center;
    gap: 5px;
}

.vv-agency-name {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vv-agency-card-rich .vv-agency-card p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    font-size: 13px;
}

.vv-agency-meta-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    line-height: 1.2;
}

.vv-agency-meta-line .small {
    font-size: 12px;
}

.vv-agency-meta-line .vv-stars {
    letter-spacing: 0;
}

.vv-agency-card-foot {
    display: grid;
    place-items: center;
    padding-right: 0;
    color: #0f172a;
}

.vv-agency-card-foot svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.6;
}

.vv-agency-card-rich .vv-status {
    min-height: 24px;
    padding: 0 8px;
    font-size: 12px;
}

.vv-trust-score {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: var(--vv-mint);
    color: #047857;
    font-size: 12px;
    font-weight: 900;
}

.vv-verified {
    color: var(--vv-primary);
    font-size: 12px;
    font-weight: 900;
}

.vv-card-panel {
    background: #fff;
    border: 1px solid var(--vv-line);
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .05);
    padding: 24px;
}

.vv-empty-state {
    min-height: 160px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    text-align: center;
    padding: 26px;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    background: #fbfdff;
    color: #334155;
}

.vv-empty-state svg,
.vv-empty-state .vv-icon {
    width: 38px;
    height: 38px;
    color: var(--vv-primary);
}

.vv-empty-state h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
}

.vv-empty-state p {
    margin: 0;
    max-width: 520px;
    color: var(--vv-muted);
}

.vv-benefit-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--vv-line);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.vv-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-right: 1px solid var(--vv-line);
}

.vv-benefit:last-child {
    border-right: 0;
}

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

.vv-benefit strong {
    font-size: 14px;
    font-weight: 900;
}

.vv-benefit span {
    color: #64748b;
    font-size: 12px;
}

.vv-lower-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(300px, .72fr);
    gap: 24px;
}

.vv-testimonial-row,
.vv-recommended-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.vv-recommended-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vv-testimonial-slider {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 12px;
    align-items: center;
}

.vv-testimonial-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 32%);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    padding: 4px 2px 12px;
}

.vv-testimonial-track .vv-testimonial {
    scroll-snap-align: start;
    min-height: 230px;
}

.vv-slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--vv-line);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}

.vv-testimonial {
    background: #fff;
    border: 1px solid var(--vv-line);
    border-radius: 12px;
    padding: 16px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    height: 100%;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .07);
}

.vv-testimonial-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    align-items: flex-start;
}

.vv-person {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vv-person img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.vv-testimonial-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 88px;
    gap: 14px;
    align-items: start;
}

.vv-testimonial-body img {
    width: 88px;
    height: 88px;
    border-radius: 10px;
    object-fit: cover;
}

.vv-testimonial p {
    color: #334155;
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vv-testimonial footer {
    display: block;
    margin-top: 12px;
    color: #64748b;
    font-weight: 800;
    font-size: 12px;
}

.vv-testimonial .vv-person span {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.vv-testimonial .vv-person strong,
.vv-testimonial .vv-person small {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vv-blog-list {
    display: grid;
    gap: 14px;
}

.vv-blog-item {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    text-decoration: none;
}

.vv-blog-item img {
    width: 78px;
    height: 66px;
    border-radius: 10px;
    object-fit: cover;
}

.vv-blog-item strong {
    display: block;
    line-height: 1.35;
    font-size: 14px;
}

.vv-blog-item span {
    display: block;
    color: #64748b;
    margin-top: 5px;
    font-size: 12px;
}

.vv-blog-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.vv-blog-card {
    padding: 12px;
    border: 1px solid var(--vv-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
}

.vv-blog-card img {
    height: 96px;
}

.vv-stats-band {
    background: linear-gradient(135deg, #00172d 0%, #012a25 100%);
    color: #fff;
    padding: 18px 0;
}

.vv-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.vv-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.vv-stat-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(16, 185, 129, .13);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 58px;
    line-height: 0;
}

.vv-stat-icon .vv-icon {
    width: 25px;
    height: 25px;
    color: #10b981;
    display: block;
    margin: 0;
}

.vv-stat strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
}

.vv-stat > span:not(.vv-stat-icon),
.vv-stat > span:not(.vv-stat-icon) span {
    display: block;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}

.vv-newsletter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    background: linear-gradient(135deg, #effcf7, #ffffff 65%, #dcfce7);
    border: 1px solid #cfe8df;
    border-radius: 14px;
    padding: 24px;
}

.vv-newsletter-form {
    display: flex;
    gap: 10px;
}

.vv-newsletter input {
    min-height: 46px;
    width: min(360px, 45vw);
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    padding: 0 16px;
}

.vv-popup-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(6, 22, 39, .56);
}

.vv-popup-backdrop.open {
    display: flex;
}

.vv-popup-card {
    position: relative;
    width: min(420px, 100%);
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--vv-line);
    padding: 28px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(15, 23, 42, .28);
}

.vv-popup-card h2 {
    font-size: 24px;
    font-weight: 900;
    margin: 12px 0 8px;
}

.vv-popup-card p {
    color: #475569;
}

.vv-popup-icon {
    width: 46px;
    height: 46px;
    color: var(--vv-primary);
}

.vv-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #f1f5f9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vv-footer {
    background: #061627;
    color: #fff;
    border-radius: 18px 18px 0 0;
    margin-top: 34px;
    padding: 34px 0 26px;
}

.vv-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    gap: 28px;
}

.vv-footer img {
    width: 220px;
    max-width: 100%;
}

.vv-footer p,
.vv-footer a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
}

.vv-footer h3 {
    font-size: 14px;
    font-weight: 900;
    margin: 0 0 12px;
}

.vv-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vv-footer li {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 10px 0;
}

.vv-mobile-bottom {
    display: none;
}

.vv-help-widget {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
}

.vv-help-toggle {
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #079455;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(7, 148, 85, .28);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.vv-help-widget.active .vv-help-toggle,
.vv-help-toggle:hover {
    background: #047857;
    box-shadow: 0 22px 44px rgba(7, 148, 85, .36);
    transform: translateY(-1px);
}

.vv-help-panel {
    position: absolute;
    right: 0;
    bottom: 60px;
    width: min(360px, calc(100vw - 28px));
    background: #fff;
    border: 1px solid var(--vv-line);
    border-radius: 14px;
    box-shadow: var(--vv-shadow);
    padding: 14px;
    display: none;
}

.vv-help-panel.open {
    display: block;
}

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

.vv-help-head strong,
.vv-help-head span {
    display: block;
}

.vv-help-head span,
.vv-help-result {
    color: var(--vv-muted);
    font-size: 12px;
}

.vv-help-head button,
.vv-support-choice {
    border: 1px solid var(--vv-line);
    background: #fff;
    border-radius: 8px;
}

.vv-help-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.vv-help-options button {
    min-height: 40px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 12px;
    font-weight: 800;
    transition: border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.vv-help-options button:hover,
.vv-help-options button.active {
    border-color: rgba(7, 148, 85, .32);
    background: #ecfdf5;
    color: #047857;
}

.vv-help-options button.active {
    box-shadow: inset 0 0 0 1px rgba(7, 148, 85, .22);
}

.vv-help-form {
    display: grid;
    gap: 9px;
}

.vv-help-form input,
.vv-help-form textarea {
    width: 100%;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    min-height: 42px;
    padding: 10px 12px;
}

.vv-help-form textarea {
    min-height: 80px;
}

.vv-password-match {
    display: block;
    margin-top: 7px;
    min-height: 18px;
    font-size: 12px;
    font-weight: 800;
}

.vv-password-match.ok {
    color: #047857;
}

.vv-password-match.bad {
    color: #be123c;
}

.vv-support-choice {
    min-height: 92px;
    padding: 16px;
    display: grid;
    gap: 8px;
    justify-items: start;
    font-weight: 900;
    text-align: left;
}

.vv-page-hero {
    position: relative;
    padding: 42px 0 56px;
    background:
        linear-gradient(135deg, rgba(6, 22, 39, .94), rgba(7, 148, 85, .78)),
        var(--vv-hero-image);
    background-size: cover;
    background-position: center;
    color: #fff;
}

.vv-page-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
}

.vv-page-hero p {
    max-width: 740px;
    margin: 0;
    color: rgba(255, 255, 255, .86);
}

.vv-filter-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    background: #fff;
    border: 1px solid var(--vv-line);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
    margin-top: -30px;
    position: relative;
    z-index: 3;
}

.vv-filter-bar input,
.vv-filter-bar select,
.vv-form-control {
    min-height: 46px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    padding: 0 14px;
    width: 100%;
}

.vv-password-field {
    position: relative;
    display: block;
    width: 100%;
}

.vv-password-field input {
    padding-right: 48px;
}

.vv-password-toggle {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #334155;
    padding: 0;
}

.vv-password-toggle svg {
    width: 17px;
    height: 17px;
    display: block;
}

.vv-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.vv-blog-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.vv-blog-article {
    padding: 0;
    overflow: hidden;
}

.vv-blog-cover {
    height: 340px;
    border-radius: 0;
}

.vv-blog-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vv-rich-text {
    padding: 28px;
    color: #334155;
    font-size: 16px;
    line-height: 1.78;
}

.vv-rich-text p + p {
    margin-top: 18px;
}

.vv-related-link-list {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.vv-related-link-list a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    padding: 11px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #0f172a;
    text-decoration: none;
    background: #f8fafc;
    font-weight: 900;
}

.vv-related-link-list a:hover {
    border-color: rgba(7, 148, 85, .32);
    background: #ecfdf5;
    color: #047857;
}

.vv-related-link-list small {
    color: #64748b;
    font-weight: 700;
}

.vv-wishlist-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-rows: 170px 1fr;
    background: #fff;
    border: 1px solid var(--vv-line);
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .05);
}

.vv-wishlist-media {
    position: relative;
    overflow: hidden;
    background: #061627;
}

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

.vv-wishlist-logo {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #effcf7, #dbeafe);
}

.vv-wishlist-logo > span {
    width: 82px;
    height: 82px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--vv-primary);
    font-size: 42px;
    font-weight: 900;
    box-shadow: 0 18px 34px rgba(15, 23, 42, .12);
}

.vv-wishlist-logo-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--vv-primary);
    font-size: 30px;
    font-weight: 900;
    border: 3px solid #fff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, .18);
    overflow: hidden;
}

.vv-wishlist-logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vv-wishlist-body {
    padding: 18px;
}

.vv-wishlist-body h2 {
    margin: 12px 0 8px;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 900;
}

.vv-wishlist-body p {
    min-height: 40px;
    margin: 0;
    color: var(--vv-muted);
    font-size: 13px;
}

.vv-wishlist-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
}

.vv-wishlist-actions strong {
    color: #0f172a;
}

.vv-list-package {
    background: #fff;
    border: 1px solid var(--vv-line);
    border-radius: 14px;
    overflow: hidden;
}

.vv-list-package .vv-package-image {
    height: 210px;
}

.vv-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) 390px;
    gap: 24px;
    align-items: start;
    max-width: 100%;
}

.vv-detail-grid > *,
.vv-package-detail-page [data-vv-gallery] {
    min-width: 0;
    max-width: 100%;
}

.vv-detail-media {
    height: 430px;
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
    width: 100%;
    max-width: 100%;
}

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

.vv-detail-sidebar {
    position: sticky;
    top: 104px;
}

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

.vv-form-grid .full {
    grid-column: 1 / -1;
}

.vv-field-label {
    display: block;
    color: #0b1220;
    font-size: 13px;
    font-weight: 800;
}

.vv-field-label .vv-form-control,
.vv-field-label .vv-password-field {
    margin-top: 7px;
}

.vv-field-hint {
    display: block;
    color: #64748b;
    font-size: 12px;
    margin-top: -8px;
}

.vv-field-error {
    display: block;
    color: #be123c;
    font-size: 12px;
    font-weight: 800;
    margin-top: 6px;
}

.vv-form-grid textarea,
.vv-form-control.textarea {
    min-height: 130px;
    padding-top: 12px;
}

.vv-auth-wrap {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    background: #061627;
}

.vv-auth-media {
    position: relative;
    background:
        linear-gradient(90deg, rgba(6, 22, 39, .92), rgba(6, 22, 39, .36)),
        var(--vv-hero-image);
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: end;
    padding: 52px;
}

.vv-auth-media img {
    width: 260px;
}

.vv-auth-card {
    background: #fff;
    padding: 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.vv-auth-card-inner {
    width: min(100%, 430px);
}

.vv-auth-card-wide {
    width: min(100%, 680px);
}

.vv-auth-wrap-compact {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
}

.vv-auth-wrap-agency {
    grid-template-columns: minmax(0, .85fr) minmax(520px, 760px);
}

.vv-auth-wrap-agency .vv-auth-card {
    align-items: center;
    padding: 42px 34px;
}

.vv-auth-wrap-agency .vv-auth-card-inner,
.vv-auth-wrap-agency .vv-auth-card-wide {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.vv-auth-card h1 {
    margin: 0 0 8px;
    font-weight: 900;
    letter-spacing: 0;
}

.vv-required {
    display: inline;
    color: #dc2626;
    font-weight: 900;
    margin-left: 2px;
}

.vv-login-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 20px 0;
}

.vv-login-tabs label {
    cursor: pointer;
}

.vv-login-tabs input {
    position: absolute;
    opacity: 0;
}

.vv-login-tabs span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    font-weight: 800;
    font-size: 13px;
}

.vv-login-tabs input:checked + span {
    background: var(--vv-mint);
    border-color: var(--vv-primary);
    color: var(--vv-primary);
}

.vv-panel-body {
    background: #f6f8fc;
    color: #0b1220;
}

.vv-panel-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 288px minmax(0, 1fr);
}

.vv-sidebar {
    background: linear-gradient(180deg, #001a2f, #00101f);
    color: #fff;
    padding: 28px 18px;
    position: sticky;
    top: 0;
    min-height: 100vh;
}

.vv-sidebar-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 30px;
}

.vv-sidebar-logo {
    display: block;
    margin: 0;
    padding: 0 6px;
}

.vv-sidebar-logo img {
    width: 220px;
    max-width: 100%;
}

.vv-sidebar-close,
.vv-panel-menu-button {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid #dbe3ef;
    border-radius: 10px;
    background: #fff;
    color: #0f172a;
}

.vv-sidebar-close {
    display: none;
}

.vv-panel-menu-button {
    flex: 0 0 auto;
}

@media (min-width: 981px) {
    .vv-panel-menu-button {
        display: none;
    }
}

.vv-panel-backdrop {
    position: fixed;
    inset: 0;
    z-index: 75;
    background: rgba(6, 22, 39, .46);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.vv-panel-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.vv-side-nav {
    display: grid;
    gap: 6px;
}

.vv-side-link {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 8px;
    color: rgba(255, 255, 255, .88);
    text-decoration: none;
    font-weight: 800;
}

.vv-side-link.active,
.vv-side-link:hover {
    color: #fff;
    background: linear-gradient(135deg, #079455, #10b981);
}

.vv-side-badge {
    margin-left: auto;
    padding: 4px 8px;
    border-radius: 7px;
    background: #079455;
    color: #fff;
    font-size: 12px;
}

.vv-upgrade {
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    padding: 22px;
    text-align: center;
}

.vv-panel-main {
    padding: 30px 26px 26px;
}

.vv-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.vv-panel-title {
    display: flex;
    align-items: center;
    gap: 18px;
}

.vv-panel-title h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
}

.vv-panel-title p {
    margin: 4px 0 0;
    color: #64748b;
}

.vv-panel-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vv-panel-user img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.vv-kpi-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 20px;
}

.vv-kpi {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px;
    display: flex;
    gap: 18px;
    min-height: 132px;
}

.vv-kpi-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #ecfdf5;
    color: var(--vv-primary);
    flex: 0 0 auto;
}

.vv-kpi h3 {
    margin: 0 0 6px;
    color: #334155;
    font-size: 15px;
    font-weight: 800;
}

.vv-kpi strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
}

.vv-kpi small {
    color: var(--vv-primary);
    font-weight: 800;
}

.vv-panel-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) 320px;
    gap: 20px;
}

.vv-panel-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px;
}

.vv-panel-card h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
}

.vv-card-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.vv-agency-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    list-style: none;
}

.vv-agency-summary::-webkit-details-marker {
    display: none;
}

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

.vv-agency-summary small {
    margin-top: 4px;
    color: var(--vv-muted);
}

.vv-lead-list,
.vv-notification-list,
.vv-package-mini-list {
    display: grid;
    gap: 14px;
}

.vv-lead-item,
.vv-package-mini,
.vv-notification-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid #e2e8f0;
}

.vv-lead-item:last-child,
.vv-package-mini:last-child,
.vv-notification-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.vv-lead-item img,
.vv-package-mini img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.vv-package-mini img {
    width: 92px;
    border-radius: 8px;
}

.vv-status {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 900;
    background: #ecfdf5;
    color: #079455;
}

.vv-status.warn {
    background: #fff7ed;
    color: #ea580c;
}

.vv-status.success {
    background: #ecfdf5;
    color: #047857;
}

.vv-status.info {
    background: #eff6ff;
    color: #2563eb;
}

.vv-upload-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 62px;
    border: 1px dashed #b7c7db;
    border-radius: 10px;
    padding: 12px 14px;
    background: #f8fafc;
}

.vv-upload-field span {
    display: grid;
    gap: 3px;
}

.vv-upload-field strong {
    font-size: 14px;
    color: #0f172a;
}

.vv-upload-field small {
    color: #64748b;
    font-weight: 700;
}

.vv-upload-field input {
    max-width: 260px;
    font-size: 13px;
}

.vv-media-preview-grid,
.vv-public-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.vv-public-gallery {
    max-width: 100%;
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    grid-auto-flow: unset;
    grid-template-columns: none;
    grid-auto-columns: unset;
    scroll-snap-type: x proximity;
    padding: 3px 2px 12px;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.vv-media-preview-grid > div,
.vv-public-gallery img,
.vv-gallery-thumb,
.vv-media-thumb {
    min-height: 92px;
    max-height: 118px;
    border-radius: 10px;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.vv-gallery-thumb {
    flex: 0 0 clamp(104px, 18vw, 160px);
    width: clamp(104px, 18vw, 160px);
    aspect-ratio: 4 / 3;
    min-height: 0;
    max-height: none;
    padding: 0;
    cursor: pointer;
    appearance: none;
    scroll-snap-align: start;
}

.vv-gallery-thumb.active {
    border-color: var(--vv-primary);
    box-shadow: 0 0 0 3px rgba(7, 148, 85, .14);
}

.vv-media-preview-grid img,
.vv-public-gallery img,
.vv-media-thumb img {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
    display: block;
    scroll-snap-align: start;
}

.vv-floating-booking {
    display: none;
}

.vv-form-submitting {
    position: relative;
}

.vv-form-submitting .vv-form-control,
.vv-form-submitting .vv-upload-field {
    pointer-events: none;
}

.vv-submit-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .45);
    border-top-color: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: vvSpin .75s linear infinite;
}

@keyframes vvSpin {
    to {
        transform: rotate(360deg);
    }
}

.vv-media-preview-grid span,
.vv-media-thumb {
    display: grid;
    place-items: center;
    gap: 6px;
    min-height: 92px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.vv-card-panel > .vv-media-thumb {
    height: 180px;
}

.vv-agency-membership,
.vv-agency-analytics {
    display: grid;
    gap: 20px;
}

.vv-membership-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vv-renew-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    border: 1px solid #dbe4f0;
    border-radius: 12px;
    background: #f8fafc;
}

.vv-renew-strip h3 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 900;
}

.vv-renew-strip p {
    margin: 0;
    color: #64748b;
}

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

.vv-media-card-compact {
    min-width: 0;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.vv-media-card-compact .vv-media-thumb {
    height: 118px;
    min-height: 118px;
    max-height: 118px;
    border: 0;
    border-radius: 0;
}

.vv-media-card-compact > div {
    padding: 10px 12px 12px;
    min-width: 0;
}

.vv-media-card-compact h3 {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vv-media-card-compact p {
    margin: 0;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.vv-compact-upload-card {
    align-content: start;
}

.vv-kpi-grid-compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vv-analytics-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
}

.vv-analytics-bars {
    display: grid;
    gap: 14px;
}

.vv-analytics-bars > div {
    display: grid;
    gap: 8px;
}

.vv-analytics-bars span {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #0f172a;
}

.vv-analytics-bars small {
    color: #64748b;
    font-weight: 900;
}

.vv-analytics-bars i {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #079455 var(--value), #e2e8f0 var(--value));
}

.vv-activity-list {
    display: grid;
    gap: 12px;
}

.vv-activity-list > div:not(.vv-empty-state) {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
}

.vv-activity-list i {
    width: 38px;
    height: 38px;
    padding: 9px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #079455;
}

.vv-activity-list strong,
.vv-activity-list small {
    display: block;
    min-width: 0;
}

.vv-activity-list strong {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vv-activity-list small {
    color: #64748b;
}

.vv-builder-page {
    align-items: start;
}

.vv-builder-stack {
    display: grid;
    gap: 20px;
}

.vv-builder-page .vv-panel-card {
    min-width: 0;
}

.vv-builder-editor {
    scroll-margin-top: 24px;
}

.vv-builder-editor-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    cursor: pointer;
    list-style: none;
}

.vv-builder-editor-summary::-webkit-details-marker {
    display: none;
}

.vv-builder-editor-summary span {
    display: grid;
    gap: 4px;
}

.vv-builder-editor-summary strong {
    font-size: 20px;
    font-weight: 900;
}

.vv-builder-editor-summary small {
    color: #64748b;
    font-weight: 700;
}

.vv-builder-list-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto auto auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
}

.vv-builder-list-card strong,
.vv-builder-list-card small {
    min-width: 0;
}

.vv-builder-list-card small {
    display: block;
    color: #64748b;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vv-builder-lines,
.vv-itinerary-day-editor {
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
}

.vv-builder-line {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(96px, .35fr) minmax(120px, .5fr);
    gap: 10px;
}

.vv-repeatable {
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid #dbe4f0;
    border-radius: 12px;
    background: #f8fafc;
}

.vv-repeatable-rows,
.vv-package-day-rows {
    display: grid;
    gap: 10px;
}

.vv-repeatable-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.vv-package-day-row {
    display: grid;
    gap: 10px;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
}

.vv-package-day-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.vv-package-day-head strong {
    font-size: 14px;
    font-weight: 900;
    color: #0f172a;
}

.vv-inline-danger,
.vv-danger-zone {
    border-color: rgba(220, 38, 38, .28) !important;
    background: #fff7f7 !important;
}

.vv-danger-zone h2,
.vv-danger-zone h3 {
    color: #991b1b;
}

.vv-danger-zone .vv-form-control {
    background: #fff;
}

.vv-builder-lock {
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 14px;
    min-height: 320px;
    background: linear-gradient(135deg, #f8fafc, #ecfdf5);
}

.vv-builder-lock > i {
    width: 52px;
    height: 52px;
    padding: 13px;
    border-radius: 16px;
    background: #dcfce7;
    color: #079455;
}

.vv-builder-lock p {
    color: #64748b;
    line-height: 1.55;
}

.vv-itinerary-day-editor > details {
    background: #fff;
}

.vv-itinerary-day-editor .vv-agency-summary {
    min-height: auto;
}

.vv-itinerary-day-row,
.vv-itinerary-hotel-row {
    border-color: #dbe4f0;
}

.vv-policy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.vv-policy-grid > div {
    min-width: 0;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
}

.vv-policy-grid h3 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 900;
    color: #0f172a;
}

.vv-policy-grid p {
    margin: 0;
    color: #64748b;
    line-height: 1.55;
    font-size: 13px;
}

.vv-profile-checklist {
    display: grid;
    gap: 8px;
}

.vv-profile-checklist a,
.vv-profile-checklist > span {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #0f172a;
    text-decoration: none;
    background: #fff;
}

.vv-profile-checklist a.done,
.vv-profile-checklist > span.done {
    background: #ecfdf5;
    border-color: #bbf7d0;
}

.vv-profile-checklist i {
    width: 18px;
    height: 18px;
    color: #079455;
    margin-top: 2px;
}

.vv-profile-checklist span {
    display: grid;
    gap: 2px;
}

.vv-profile-checklist strong {
    font-size: 13px;
}

.vv-profile-checklist small {
    color: #64748b;
    font-weight: 700;
}

.vv-chart {
    height: 260px;
    display: flex;
    align-items: end;
    gap: 12px;
    padding: 28px 8px 0;
    border-bottom: 1px solid #dbe3ef;
}

.vv-chart span {
    flex: 1;
    min-width: 10px;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(180deg, rgba(16, 185, 129, .92), rgba(16, 185, 129, .12));
    position: relative;
}

.vv-chart span::after {
    content: "";
    position: absolute;
    left: 28%;
    right: 28%;
    bottom: 0;
    height: 65%;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(180deg, rgba(37, 99, 235, .95), rgba(37, 99, 235, .15));
}

.vv-completion {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
}

.vv-ring {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: conic-gradient(var(--vv-primary) 0 calc(var(--vv-ring-value, 0) * 3.6deg), #e2e8f0 calc(var(--vv-ring-value, 0) * 3.6deg) 360deg);
    display: grid;
    place-items: center;
}

.vv-ring div {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    text-align: center;
}

.vv-ring strong {
    display: block;
    font-size: 30px;
    line-height: 1;
}

.vv-help-card {
    background: linear-gradient(135deg, #079455, #10b981);
    color: #fff;
    border-radius: 12px;
    padding: 26px;
}

.vv-module-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 20px;
}

.vv-data-table {
    width: 100%;
    border-collapse: collapse;
}

.vv-data-table th,
.vv-data-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
    vertical-align: middle;
}

.vv-data-table th {
    color: #475569;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.vv-admin-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.vv-admin-table-wrap {
    min-width: 0;
    width: 100%;
    overflow-x: auto;
}

.vv-admin-editor {
    min-width: 0;
    width: 100%;
    max-width: 780px;
    overflow: visible;
    align-self: start;
}

.vv-panel-card.vv-admin-editor {
    overflow: visible;
}

.vv-inline-action {
    display: grid;
    grid-template-columns: minmax(130px, 1fr) auto;
    gap: 8px;
    align-items: center;
    min-width: 220px;
}

.vv-textarea-sm {
    min-height: 112px;
}

.vv-textarea-lg {
    min-height: 220px;
}

.vv-receipt {
    max-width: 980px;
    margin: 0 auto;
}

.vv-receipt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--vv-line);
    border-radius: 12px;
    overflow: hidden;
}

.vv-receipt-grid div {
    padding: 16px;
    border-right: 1px solid var(--vv-line);
    border-bottom: 1px solid var(--vv-line);
}

.vv-receipt-grid div:nth-child(3n) {
    border-right: 0;
}

.vv-receipt-grid strong,
.vv-receipt-grid span {
    display: block;
}

.vv-receipt-grid strong {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--vv-muted);
    margin-bottom: 6px;
}

.vv-blue-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--vv-blue);
    border: 1px solid #bfdbfe;
    font-size: 11px;
    font-weight: 900;
    vertical-align: middle;
    white-space: nowrap;
}

.vv-blue-badge svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.4;
}

.vv-agency-logo img,
.vv-agency-logo-lg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
    display: block;
    background: #fff;
    padding: 5px;
}

.vv-agency-logo-lg {
    width: 74px;
    height: 74px;
    flex: 0 0 74px;
}

.vv-agency-hero {
    min-height: 260px;
    display: flex;
    align-items: end;
    background:
        linear-gradient(180deg, rgba(6, 22, 39, .45) 0%, rgba(6, 22, 39, .88) 100%),
        var(--vv-hero-image);
    background-size: cover;
    background-position: center;
}

.vv-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.vv-pricing-card {
    border: 1px solid var(--vv-line);
    border-radius: 12px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.vv-pricing-card h3 {
    margin: 14px 0 8px;
    font-size: 30px;
    font-weight: 900;
}

.vv-pricing-card h3 small {
    font-size: 13px;
    color: #64748b;
    margin-left: 4px;
}

.vv-pricing-card p {
    color: #475569;
    min-height: 44px;
}

.vv-pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: grid;
    gap: 8px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
}

.vv-pricing-card li::before {
    content: "✓";
    color: var(--vv-primary);
    font-weight: 900;
    margin-right: 8px;
}

.vv-admin-context .vv-context-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.vv-admin-context .vv-context-list span {
    display: block;
    padding: 12px;
    border: 1px solid var(--vv-line);
    border-radius: 10px;
    background: #f8fafc;
}

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

.vv-agency-summary {
    cursor: pointer;
}

.vv-agency-summary-media {
    width: 72px;
    height: 54px;
    border-radius: 8px;
    overflow: hidden;
    background: #e2e8f0;
}

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

.vv-footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .14);
}

.vv-footer-socials a i {
    color: #fff;
    font-size: 16px;
    line-height: 1;
}

.vv-service-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
}

.vv-service-card .vv-media-thumb {
    height: 150px;
    min-height: 150px;
}

.vv-service-card .vv-btn {
    align-self: flex-start;
    margin-top: auto;
}

.vv-voyvera-card {
    border-color: rgba(7, 148, 85, .22);
    box-shadow: 0 14px 34px rgba(7, 148, 85, .08);
}

.vv-voyvera-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.vv-auth-split {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, 520px);
    gap: 24px;
    align-items: stretch;
    padding: 34px 0;
}

.vv-register-section {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.vv-register-card {
    box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
}

.vv-contact-grid,
.vv-legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.vv-contact-panel {
    padding: 30px;
}

.vv-contact-aside {
    display: grid;
    gap: 16px;
}

.vv-contact-methods {
    display: grid;
    gap: 14px;
}

.vv-contact-methods span {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 8px 12px;
    align-items: start;
}

.vv-contact-methods i {
    grid-row: span 2;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--vv-mint);
    color: var(--vv-primary);
}

.vv-contact-methods strong,
.vv-contact-methods small {
    display: block;
}

.vv-contact-methods small {
    color: var(--vv-muted);
    line-height: 1.5;
}

.vv-contact-green {
    background: linear-gradient(135deg, #079455, #02684a);
    color: #fff;
}

.vv-contact-green p {
    color: rgba(255, 255, 255, .84);
}

.vv-legal-layout {
    grid-template-columns: 250px minmax(0, 1fr);
}

.vv-legal-toc {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--vv-line);
    border-radius: 14px;
    background: #fff;
}

.vv-legal-toc a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    padding: 9px 10px;
    border-radius: 10px;
}

.vv-legal-toc a:hover {
    background: var(--vv-mint);
    color: var(--vv-primary);
}

.vv-legal-card h2 {
    margin-top: 26px;
    font-weight: 900;
}

.vv-legal-card h2:first-child {
    margin-top: 0;
}

.vv-register-aside {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    background:
        linear-gradient(180deg, rgba(6, 22, 39, .9), rgba(7, 148, 85, .72)),
        var(--vv-hero-image);
    background-size: cover;
    background-position: center;
    color: #fff;
}

.vv-register-aside .vv-check {
    color: #fff;
}

.vv-register-aside .vv-profile-checklist {
    gap: 12px;
}

.vv-register-aside .vv-profile-checklist > span,
.vv-register-aside .vv-profile-checklist > a {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 12px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    backdrop-filter: blur(8px);
}

.vv-register-aside .vv-profile-checklist strong {
    color: #fff;
}

.vv-register-aside .vv-profile-checklist i {
    color: #86efac;
    flex: 0 0 auto;
}

.vv-register-aside p,
.vv-register-aside small {
    color: rgba(255, 255, 255, .9);
}

.vv-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.vv-checkbox {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.vv-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: var(--vv-primary);
    flex: 0 0 auto;
}

.vv-newsletter-form {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.vv-newsletter-success {
    flex: 1 0 100%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    background: #ecfdf5;
    color: #047857;
    font-size: 13px;
    font-weight: 800;
}

.vv-panel-card {
    overflow-x: auto;
}

.vv-data-table {
    min-width: 760px;
}

@media (max-width: 1280px) {
    .vv-hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .vv-search-card {
        max-width: 760px;
    }

    .vv-split-grid,
    .vv-lower-grid,
    .vv-panel-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vv-checkbox-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vv-kpi-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vv-kpi-grid-compact,
    .vv-media-library-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (min-width: 981px) and (max-width: 1280px) {
    .vv-container {
        width: min(100% - 32px, 1220px);
    }

    .vv-brand {
        min-width: 210px;
    }

    .vv-brand img {
        width: 205px;
    }

    .vv-nav-search {
        max-width: 520px;
    }

    .vv-nav-actions {
        gap: 8px;
    }

    .vv-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
    }

    .vv-search-card {
        max-width: none;
        padding: 18px;
    }

    .vv-search-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vv-hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 980px) {
    .vv-container {
        width: min(100% - 28px, 720px);
    }

    .vv-topbar,
    .vv-nav-search,
    .vv-nav-actions .vv-icon-text,
    .vv-nav-actions .vv-auth-link,
    .vv-benefit-strip {
        display: none;
    }

    .vv-navbar .vv-container {
        min-height: 84px;
    }

    .vv-brand {
        min-width: 0;
    }

    .vv-brand img {
        width: 190px;
    }

    .vv-hero {
        min-height: auto;
        background:
            linear-gradient(180deg, rgba(5, 18, 35, .44) 0%, rgba(5, 18, 35, .82) 42%, rgba(5, 18, 35, .95) 100%),
            var(--vv-hero-image);
        background-size: cover;
        background-position: center top;
    }

    .vv-hero-grid {
        min-height: auto;
        padding: 30px 0 54px;
        align-items: start;
        gap: 20px;
    }

    .vv-hero h1 {
        font-size: 36px;
    }

    .vv-search-card {
        display: block;
        width: 100%;
        max-width: none;
        padding: 14px;
        border-radius: 14px;
    }

    .vv-tabs {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scrollbar-width: none;
        border-bottom: 0;
        margin-bottom: 14px;
        padding-bottom: 2px;
    }

    .vv-tabs::-webkit-scrollbar {
        display: none;
    }

    .vv-tab {
        flex: 0 0 auto;
        min-height: 40px;
        padding: 0 12px;
        border: 1px solid #dbe3ef;
        border-radius: 999px;
        background: #fff;
        font-size: 12px;
        white-space: nowrap;
    }

    .vv-tab.active {
        color: #fff;
        border-color: var(--vv-primary);
        background: var(--vv-primary);
    }

    .vv-search-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .vv-field,
    .vv-search-submit {
        min-height: 54px;
    }

    .vv-field {
        padding: 10px 12px;
    }

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

    .vv-category-strip {
        grid-template-columns: repeat(4, 1fr);
    }

    .vv-category {
        min-height: 86px;
        flex-direction: column;
        font-size: 12px;
        text-align: center;
    }

    .vv-destination-row {
        grid-template-columns: repeat(8, 156px);
    }

    .vv-split-grid,
    .vv-lower-grid,
    .vv-footer-grid,
    .vv-detail-grid,
    .vv-blog-detail-grid,
    .vv-agency-list-home,
    .vv-admin-split,
    .vv-module-grid {
        grid-template-columns: 1fr;
    }

    .vv-package-row,
    .vv-testimonial-row,
    .vv-recommended-row,
    .vv-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vv-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vv-stat {
        justify-content: start;
    }

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

    .vv-newsletter-form {
        flex-direction: column;
    }

    .vv-newsletter input {
        width: 100%;
    }

    .vv-mobile-bottom {
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        inline-size: 100%;
        max-inline-size: 100%;
        box-sizing: border-box;
        overflow: hidden;
        bottom: 0;
        z-index: 70;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        background: #fff;
        border-top: 1px solid var(--vv-line);
        box-shadow: 0 -10px 30px rgba(15, 23, 42, .1);
        padding-bottom: env(safe-area-inset-bottom);
    }

    .vv-help-widget {
        bottom: 76px;
        right: 12px;
        z-index: 80;
    }

    .vv-mobile-bottom a {
        min-height: 64px;
        display: grid;
        place-items: center;
        gap: 2px;
        text-decoration: none;
        color: #0f172a;
        font-size: 10px;
        font-weight: 800;
        min-width: 0;
    }

    .vv-mobile-bottom a:first-child {
        color: var(--vv-primary);
    }

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

    .vv-auth-wrap,
    .vv-auth-split,
    .vv-contact-grid,
    .vv-legal-layout,
    .vv-panel-shell {
        grid-template-columns: 1fr;
    }

    .vv-panel-grid {
        grid-template-columns: 1fr !important;
    }

    .vv-auth-card-inner,
    .vv-auth-card-wide {
        width: 100%;
    }

    .vv-legal-toc {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vv-register-aside {
        min-height: 280px;
    }

    .vv-auth-media {
        display: none;
    }

    .vv-sidebar {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(330px, 88vw);
        min-height: 100vh;
        overflow-y: auto;
        z-index: 90;
        transform: translateX(-104%);
        transition: transform .22s ease;
        box-shadow: 22px 0 60px rgba(15, 23, 42, .24);
    }

    .vv-sidebar.open {
        transform: translateX(0);
    }

    .vv-sidebar-close {
        display: inline-grid;
    }

    .vv-panel-main {
        padding: 18px 14px 86px;
    }

    .vv-panel-card {
        padding: 18px;
    }

    .vv-panel-top,
    .vv-panel-title {
        align-items: flex-start;
    }

    .vv-panel-top {
        flex-direction: column;
    }

    .vv-panel-title,
    .vv-panel-user {
        width: 100%;
        min-width: 0;
    }

    .vv-panel-title span,
    .vv-panel-user span {
        min-width: 0;
    }

    .vv-panel-title h1 {
        font-size: 24px;
    }

    .vv-panel-user {
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .vv-panel-user .vv-btn {
        flex: 1 1 180px;
        justify-content: center;
    }

    .vv-kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vv-kpi-grid-compact,
    .vv-media-library-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vv-membership-facts,
    .vv-receipt-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vv-renew-strip {
        align-items: flex-start;
        flex-direction: column;
    }

    .vv-media-preview-grid,
    .vv-public-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vv-public-gallery {
        display: flex;
        grid-template-columns: none;
        grid-auto-flow: unset;
        grid-auto-columns: unset;
        max-width: 100%;
        width: 100%;
        min-width: 0;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .vv-gallery-thumb {
        flex-basis: clamp(96px, 24vw, 132px);
        width: clamp(96px, 24vw, 132px);
        min-width: clamp(96px, 24vw, 132px);
        max-width: 132px;
    }
}

@media (max-width: 640px) {
    .vv-container {
        width: min(100% - 20px, 420px);
    }

    .vv-navbar .vv-container {
        justify-content: center;
    }

    .vv-nav-actions {
        position: absolute;
        right: 10px;
    }

    .vv-nav-actions .vv-btn-primary {
        display: none;
    }

    .vv-hero h1 {
        font-size: 29px;
    }

    .vv-hero-copy {
        font-size: 15px;
    }

    .vv-hero-grid {
        padding: 18px 0 52px;
        gap: 16px;
    }

    .vv-hero::after,
    .vv-page-hero::after {
        bottom: 8px;
        min-height: 26px;
        padding: 0 12px;
        font-size: 10px;
    }

    .vv-hero-actions,
    .vv-rating-row {
        margin-bottom: 16px;
    }

    .vv-search-card {
        order: -1;
        padding: 10px;
    }

    .vv-search-card .vv-field:nth-of-type(n+2) {
        display: none;
    }

    .vv-search-grid {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: stretch;
    }

    .vv-field,
    .vv-search-submit {
        min-height: 48px;
    }

    .vv-field label {
        display: none;
    }

    .vv-search-submit {
        width: auto;
        padding: 0 14px;
    }

    .vv-category-strip {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .vv-package-row,
    .vv-testimonial-row,
    .vv-recommended-row,
    .vv-list-grid,
    .vv-stats-grid,
    .vv-kpi-grid,
    .vv-kpi-grid-compact,
    .vv-media-library-grid {
        grid-template-columns: 1fr;
    }

    .vv-panel-title {
        gap: 12px;
    }

    .vv-panel-title h1 {
        font-size: 22px;
    }

    .vv-panel-title p {
        font-size: 13px;
    }

    .vv-panel-user {
        gap: 10px;
    }

    .vv-panel-user img {
        width: 42px;
        height: 42px;
    }

    .vv-panel-user > span {
        max-width: calc(100vw - 160px);
    }

    .vv-panel-user .vv-btn {
        flex-basis: 100%;
        order: 3;
    }

    .vv-agency-summary {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
    }

    .vv-agency-summary-media {
        width: 100%;
        height: 132px;
    }

    .vv-agency-summary .vv-btn {
        width: 100%;
        justify-content: center;
    }

    .vv-card-title-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .vv-card-panel,
    .vv-consult-card,
    .vv-newsletter,
    .vv-panel-card,
    .vv-kpi {
        padding: 18px;
    }

    .vv-auth-split {
        padding: 18px 0;
        gap: 14px;
    }

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

    .vv-membership-facts,
    .vv-receipt-grid {
        grid-template-columns: 1fr;
    }

    .vv-agency-logo-lg {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
    }

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

    .vv-detail-media {
        height: auto;
        max-height: 280px;
        aspect-ratio: 16 / 9;
        border-radius: 14px;
    }

    .vv-detail-sidebar {
        position: static;
        top: auto;
    }

    .vv-auth-card {
        padding: 32px 22px;
    }

    .vv-contact-panel {
        padding: 18px;
    }

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

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

    .vv-builder-list-card,
    .vv-builder-line {
        grid-template-columns: 1fr;
    }

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

    .vv-builder-list-card {
        align-items: stretch;
    }

    .vv-builder-list-card .vv-btn {
        width: 100%;
        justify-content: center;
    }

    .vv-upload-field {
        align-items: stretch;
        flex-direction: column;
    }

    .vv-upload-field input {
        max-width: 100%;
    }

    .vv-media-preview-grid,
    .vv-public-gallery {
        grid-template-columns: 1fr;
    }

    .vv-public-gallery {
        display: flex;
        grid-template-columns: none;
        grid-auto-flow: unset;
        grid-auto-columns: unset;
        gap: 10px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 3px 2px 12px;
        max-width: 100%;
        width: 100%;
        min-width: 0;
    }

    .vv-gallery-thumb {
        flex-basis: clamp(88px, 29vw, 116px);
        width: clamp(88px, 29vw, 116px);
        min-width: clamp(88px, 29vw, 116px);
        max-width: 116px;
    }

    .vv-floating-booking {
        position: fixed;
        left: 16px;
        right: auto;
        bottom: 76px;
        z-index: 80;
        min-height: 48px;
        width: min(42vw, 190px);
        max-width: calc(100vw - 206px);
        padding: 0 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border-radius: 999px;
        background: var(--vv-primary);
        color: #fff;
        text-decoration: none;
        font-weight: 900;
        font-size: 14px;
        box-shadow: 0 18px 34px rgba(7, 148, 85, .32);
    }

    .vv-floating-booking span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media print {
    .vv-topbar,
    .vv-navbar,
    .vv-footer,
    .vv-help-widget,
    .vv-mobile-bottom,
    .vv-floating-booking,
    .vv-btn,
    .alert {
        display: none !important;
    }

    body {
        background: #fff !important;
    }

    .vv-page-shell,
    .vv-section,
    .vv-container {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: none !important;
    }

    .vv-receipt,
    .vv-card-panel {
        box-shadow: none !important;
        border-color: #cbd5e1 !important;
    }
}

@media (max-width: 1100px) {
    .vv-agency-card-rich .vv-agency-card {
        grid-template-columns: 60px minmax(0, 1fr) 22px;
        gap: 14px;
        padding: 15px 52px 15px 16px;
    }

    .vv-agency-card-foot {
        grid-column: auto;
        display: grid;
        place-items: center;
        padding: 0;
    }

    .vv-recommended-row,
    .vv-blog-feature-grid,
    .vv-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vv-agency-list-home {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vv-testimonial-track {
        grid-auto-columns: minmax(280px, 48%);
    }
}

@media (max-width: 640px) {
    .vv-agency-card-rich .vv-agency-card {
        grid-template-columns: 56px minmax(0, 1fr) 18px;
        gap: 12px;
        padding: 14px 48px 14px 14px;
    }

    .vv-agency-card-rich .vv-card-favorite {
        top: 10px;
        right: 10px;
    }

    .vv-agency-card-rich .vv-agency-logo {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .vv-agency-card-foot {
        padding: 0;
    }

    .vv-agency-card-foot {
        grid-column: auto;
        display: grid;
        place-items: center;
    }

    .vv-recommended-row,
    .vv-blog-feature-grid,
    .vv-pricing-grid,
    .vv-agency-list-home {
        grid-template-columns: 1fr;
    }

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

    .vv-slider-btn {
        display: none;
    }

    .vv-testimonial-track {
        grid-auto-columns: minmax(260px, 88%);
    }
}
