/* ==========================================================================
   VIKINET
   Brand tokens and the components the Hostiko template does not ship with:
   the client area, the admin panel, crypto checkout, spec tables and badges.
   The template's own gradient was rebranded in place, so this file only adds.
   ========================================================================== */

:root {
    --vk-cyan: #22d3ee;
    --vk-blue: #2563eb;
    --vk-magenta: #c026d3;
    --vk-gradient: linear-gradient(90deg, #22d3ee 0%, #2563eb 50%, #c026d3 100%);
    --vk-ink: #0b1020;
    --vk-ink-soft: #1a2138;
    --vk-body: #4b5563;
    --vk-line: #e5e9f2;
    --vk-surface: #ffffff;
    --vk-surface-alt: #f6f8fc;
    --vk-radius: 14px;
    --vk-shadow: 0 10px 30px rgba(15, 23, 42, .07);
    --vk-shadow-lg: 0 18px 50px rgba(15, 23, 42, .12);
}

/* --------------------------------------------------------------------------
   Brand marks
   The logo is white-on-transparent, so it needs a dark plate on light headers.
   -------------------------------------------------------------------------- */

.vk-logo {
    height: 42px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    /* Built for dark backgrounds: a soft dark halo keeps it legible on white. */
    filter: drop-shadow(0 1px 2px rgba(11, 16, 32, .45));
}

.vk-logo-footer {
    height: 36px;
}

.vk-nav-login {
    color: var(--vk-ink);
    font-weight: 600;
    margin-right: 18px;
    white-space: nowrap;
}

.vk-nav-login:hover {
    color: var(--vk-blue);
}

.vk-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--vk-surface-alt);
    color: var(--vk-ink);
    margin-right: 14px;
    transition: .2s;
}

.vk-cart-link:hover {
    background: var(--vk-gradient);
    color: #fff;
}

.vk-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 10px;
    background: var(--vk-magenta);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
}

/* --------------------------------------------------------------------------
   Generic building blocks
   -------------------------------------------------------------------------- */

.vk-section {
    padding: 70px 0;
}

.vk-section-tight {
    padding: 40px 0;
}

.vk-heading span {
    display: block;
    color: var(--vk-blue);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 8px;
}

.vk-heading h2,
.vk-heading h3 {
    color: var(--vk-ink);
    font-weight: 800;
}

.vk-card {
    background: var(--vk-surface);
    border: 1px solid var(--vk-line);
    border-radius: var(--vk-radius);
    box-shadow: var(--vk-shadow);
}

.vk-card-pad {
    padding: 26px;
}

.vk-gradient-text {
    background: var(--vk-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border: 0;
    border-radius: 999px;
    background: var(--vk-gradient);
    color: #fff !important;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: .2s;
}

.vk-btn:hover {
    opacity: .9;
    transform: translateY(-1px);
    text-decoration: none;
}

.vk-btn-ghost {
    background: transparent;
    border: 2px solid var(--vk-line);
    color: var(--vk-ink) !important;
}

.vk-btn-ghost:hover {
    border-color: var(--vk-blue);
    color: var(--vk-blue) !important;
}

.vk-btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.vk-btn-block {
    width: 100%;
}

.vk-btn[disabled],
.vk-btn.disabled {
    opacity: .55;
    pointer-events: none;
}

.vk-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.6;
}

.vk-badge-success { background: #dcfce7; color: #15803d; }
.vk-badge-warning { background: #fef3c7; color: #b45309; }
.vk-badge-danger  { background: #fee2e2; color: #b91c1c; }
.vk-badge-info    { background: #cffafe; color: #0e7490; }
.vk-badge-primary { background: #dbeafe; color: #1d4ed8; }
.vk-badge-secondary { background: #eef1f7; color: #475569; }
.vk-badge-dark    { background: #1f2937; color: #f9fafb; }

/* --------------------------------------------------------------------------
   Alerts and validation
   -------------------------------------------------------------------------- */

.vk-alert {
    display: flex;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 10px;
    border-left: 4px solid;
    margin-bottom: 22px;
}

.vk-alert i { margin-top: 3px; }
.vk-alert-success { background: #f0fdf4; border-color: #16a34a; color: #14532d; }
.vk-alert-danger  { background: #fef2f2; border-color: #dc2626; color: #7f1d1d; }
.vk-alert-info    { background: #eff6ff; border-color: var(--vk-blue); color: #1e3a8a; }
.vk-alert-warning { background: #fffbeb; border-color: #d97706; color: #78350f; }
.vk-alert ul { margin: 0; padding-left: 18px; }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.vk-field { margin-bottom: 18px; }

.vk-field label {
    display: block;
    font-weight: 600;
    color: var(--vk-ink);
    margin-bottom: 6px;
    font-size: 14px;
}

.vk-field .vk-hint {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 5px;
}

.vk-input,
.vk-field input[type="text"],
.vk-field input[type="email"],
.vk-field input[type="password"],
.vk-field input[type="number"],
.vk-field input[type="date"],
.vk-field input[type="url"],
.vk-field select,
.vk-field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--vk-line);
    border-radius: 10px;
    background: #fff;
    color: var(--vk-ink);
    font-size: 15px;
    transition: .15s;
}

.vk-input:focus,
.vk-field input:focus,
.vk-field select:focus,
.vk-field textarea:focus {
    outline: none;
    border-color: var(--vk-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

.vk-field textarea { min-height: 130px; resize: vertical; }
.vk-field .is-invalid { border-color: #dc2626; }
.vk-error { display: block; color: #dc2626; font-size: 13px; margin-top: 5px; }

.vk-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--vk-body);
}

.vk-check input { margin-top: 4px; }

.vk-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.vk-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 18px; }

/* --------------------------------------------------------------------------
   Tables
   -------------------------------------------------------------------------- */

.vk-table-wrap {
    overflow-x: auto;
    border-radius: var(--vk-radius);
    border: 1px solid var(--vk-line);
    background: #fff;
}

.vk-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
}

.vk-table th {
    text-align: left;
    padding: 14px 16px;
    background: var(--vk-surface-alt);
    color: var(--vk-ink);
    font-weight: 700;
    white-space: nowrap;
    border-bottom: 1px solid var(--vk-line);
}

.vk-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--vk-line);
    color: var(--vk-body);
    vertical-align: middle;
}

.vk-table tbody tr:last-child td { border-bottom: 0; }
.vk-table tbody tr:hover { background: #fbfcfe; }
.vk-table .vk-num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }

.vk-empty {
    padding: 50px 24px;
    text-align: center;
    color: #6b7280;
}

.vk-empty i { font-size: 40px; color: #cbd5e1; display: block; margin-bottom: 14px; }

/* --------------------------------------------------------------------------
   Plan cards and spec tables
   -------------------------------------------------------------------------- */

.vk-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
    gap: 26px;
}

.vk-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--vk-line);
    border-radius: 18px;
    padding: 30px 26px;
    box-shadow: var(--vk-shadow);
    transition: .25s;
}

.vk-plan:hover { transform: translateY(-6px); box-shadow: var(--vk-shadow-lg); }

.vk-plan-featured {
    border-color: transparent;
    box-shadow: 0 0 0 2px var(--vk-blue), var(--vk-shadow-lg);
}

.vk-plan-flag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--vk-gradient);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 999px;
    white-space: nowrap;
}

.vk-plan h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--vk-ink);
    margin-bottom: 4px;
}

.vk-plan-location {
    font-size: 13px;
    color: #6b7280;
    display: block;
    margin-bottom: 18px;
}

.vk-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 4px;
}

.vk-price-prefix { font-size: 22px; font-weight: 700; color: var(--vk-ink); }
.vk-price-whole { font-size: 44px; font-weight: 800; line-height: 1; color: var(--vk-ink); }
.vk-price-cents { font-size: 20px; font-weight: 700; color: var(--vk-ink); }
.vk-price-cycle { font-size: 15px; color: #6b7280; font-weight: 600; margin-left: 4px; }
.vk-price-note { font-size: 13px; color: #6b7280; margin-bottom: 20px; }
.vk-price-was { text-decoration: line-through; color: #9ca3af; margin-right: 6px; }

.vk-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex-grow: 1;
}

.vk-plan-features li {
    display: flex;
    gap: 10px;
    padding: 7px 0;
    font-size: 14.5px;
    color: var(--vk-body);
    border-bottom: 1px dashed #eef1f7;
}

.vk-plan-features li:last-child { border-bottom: 0; }
.vk-plan-features i { color: var(--vk-blue); margin-top: 4px; font-size: 13px; }

/* Auto-scaling notice, shown on business / dedicated / GPU plans. */
.vk-scaling {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(34, 211, 238, .10), rgba(192, 38, 211, .10));
    border: 1px solid rgba(37, 99, 235, .20);
    margin-bottom: 20px;
}

.vk-scaling i { color: var(--vk-blue); font-size: 18px; margin-top: 2px; }
.vk-scaling strong { display: block; color: var(--vk-ink); font-size: 14px; }
.vk-scaling span { font-size: 13px; color: var(--vk-body); line-height: 1.5; }

/* --------------------------------------------------------------------------
   Domain search
   -------------------------------------------------------------------------- */

.vk-domain-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    padding: 18px 22px;
    border: 1px solid var(--vk-line);
    border-radius: 12px;
    margin-bottom: 12px;
    background: #fff;
}

.vk-domain-result.is-available { border-color: #86efac; background: #f6fefa; }
.vk-domain-result.is-taken { background: var(--vk-surface-alt); }
.vk-domain-name { font-size: 18px; font-weight: 700; color: var(--vk-ink); word-break: break-all; }
.vk-domain-price { font-size: 20px; font-weight: 800; color: var(--vk-ink); white-space: nowrap; }

/* --------------------------------------------------------------------------
   Crypto checkout
   -------------------------------------------------------------------------- */

.vk-crypto-panel {
    border: 1px solid var(--vk-line);
    border-radius: var(--vk-radius);
    overflow: hidden;
}

.vk-crypto-head {
    background: var(--vk-ink);
    color: #fff;
    padding: 22px 26px;
}

.vk-crypto-head h3 { color: #fff; margin: 0 0 4px; font-size: 20px; font-weight: 800; }
.vk-crypto-head p { margin: 0; color: #9aa5b8; font-size: 14px; }
.vk-crypto-body { padding: 26px; background: #fff; }

.vk-crypto-amount {
    font-size: 26px;
    font-weight: 800;
    color: var(--vk-ink);
    word-break: break-all;
}

.vk-address {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--vk-surface-alt);
    border: 1px dashed var(--vk-line);
    border-radius: 10px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 13.5px;
    word-break: break-all;
}

.vk-copy {
    border: 0;
    background: var(--vk-ink);
    color: #fff;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
}

.vk-qr {
    width: 190px;
    height: 190px;
    background: #fff;
    padding: 8px;
    border: 1px solid var(--vk-line);
    border-radius: 12px;
}

.vk-countdown {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    color: var(--vk-magenta);
}

.vk-crypto-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #cbd5e1;
    font-size: 13px;
}

.vk-crypto-badge i { color: #f7931a; font-size: 17px; }

/* --------------------------------------------------------------------------
   Panel shell - client area and admin
   -------------------------------------------------------------------------- */

.vk-panel {
    display: flex;
    min-height: 100vh;
    background: var(--vk-surface-alt);
}

.vk-sidebar {
    width: 262px;
    flex-shrink: 0;
    background: var(--vk-ink);
    color: #cbd5e1;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.vk-sidebar-brand {
    padding: 22px 22px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.vk-sidebar-brand img { height: 34px; width: auto; }

.vk-sidebar-nav { padding: 16px 12px; flex-grow: 1; }

.vk-sidebar-label {
    font-size: 11px;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #64748b;
    padding: 16px 12px 8px;
    font-weight: 700;
}

.vk-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 9px;
    color: #cbd5e1;
    font-size: 14.5px;
    font-weight: 500;
    transition: .15s;
}

.vk-sidebar-nav a:hover { background: rgba(255, 255, 255, .06); color: #fff; text-decoration: none; }
.vk-sidebar-nav a.active { background: var(--vk-gradient); color: #fff; font-weight: 600; }
.vk-sidebar-nav a i { width: 18px; text-align: center; font-size: 15px; }

.vk-sidebar-nav .vk-pill {
    margin-left: auto;
    background: var(--vk-magenta);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    padding: 1px 8px;
}

.vk-main { flex-grow: 1; min-width: 0; display: flex; flex-direction: column; }

.vk-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 30px;
    background: #fff;
    border-bottom: 1px solid var(--vk-line);
    position: sticky;
    top: 0;
    z-index: 20;
}

.vk-topbar h1 { font-size: 21px; font-weight: 800; color: var(--vk-ink); margin: 0; }
.vk-topbar-actions { display: flex; align-items: center; gap: 14px; }

.vk-content { padding: 30px; flex-grow: 1; }

.vk-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.vk-stat {
    background: #fff;
    border: 1px solid var(--vk-line);
    border-radius: var(--vk-radius);
    padding: 20px 22px;
}

.vk-stat-label { font-size: 13px; color: #6b7280; font-weight: 600; margin-bottom: 6px; }
.vk-stat-value { font-size: 27px; font-weight: 800; color: var(--vk-ink); line-height: 1.15; }
.vk-stat-meta { font-size: 12.5px; color: #6b7280; margin-top: 6px; }
.vk-stat-icon { float: right; font-size: 22px; color: var(--vk-blue); opacity: .5; }

.vk-panel-card {
    background: #fff;
    border: 1px solid var(--vk-line);
    border-radius: var(--vk-radius);
    margin-bottom: 24px;
    overflow: hidden;
}

.vk-panel-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 22px;
    border-bottom: 1px solid var(--vk-line);
}

.vk-panel-card-head h2,
.vk-panel-card-head h3 { font-size: 16px; font-weight: 700; color: var(--vk-ink); margin: 0; }
.vk-panel-card-body { padding: 22px; }
.vk-panel-card-body.is-flush { padding: 0; }

.vk-dl { display: grid; grid-template-columns: 190px 1fr; gap: 10px 18px; font-size: 14.5px; }
.vk-dl dt { color: #6b7280; font-weight: 600; }
.vk-dl dd { margin: 0; color: var(--vk-ink); word-break: break-word; }

.vk-usage-bar {
    height: 8px;
    background: #eef1f7;
    border-radius: 999px;
    overflow: hidden;
    margin-top: 6px;
}

.vk-usage-bar span { display: block; height: 100%; background: var(--vk-gradient); border-radius: 999px; }
.vk-usage-bar.is-high span { background: linear-gradient(90deg, #f59e0b, #dc2626); }

.vk-tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid var(--vk-line);
    margin-bottom: 24px;
    overflow-x: auto;
}

.vk-tabs a {
    padding: 11px 18px;
    font-size: 14.5px;
    font-weight: 600;
    color: #6b7280;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.vk-tabs a.active { color: var(--vk-blue); border-bottom-color: var(--vk-blue); }
.vk-tabs a:hover { color: var(--vk-ink); text-decoration: none; }

.vk-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 22px;
}

.vk-filters .vk-field { margin-bottom: 0; min-width: 170px; }

/* Ticket thread */
.vk-thread-item {
    display: flex;
    gap: 16px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--vk-line);
}

.vk-thread-item:last-child { border-bottom: 0; }
.vk-thread-item.is-staff { background: #f8fbff; }
.vk-thread-item.is-internal { background: #fffbeb; }

.vk-avatar {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--vk-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.vk-thread-meta { font-size: 13px; color: #6b7280; margin-bottom: 8px; }
.vk-thread-body { color: var(--vk-ink); white-space: pre-wrap; line-height: 1.65; }

/* Impersonation banner */
.vk-impersonating {
    background: #7c2d12;
    color: #fff;
    padding: 9px 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.vk-impersonating button {
    background: #fff;
    color: #7c2d12;
    border: 0;
    border-radius: 999px;
    padding: 4px 14px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   Auth screens
   -------------------------------------------------------------------------- */

.vk-auth {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background:
        radial-gradient(900px 500px at 15% -10%, rgba(34, 211, 238, .16), transparent 60%),
        radial-gradient(900px 500px at 85% 110%, rgba(192, 38, 211, .16), transparent 60%),
        var(--vk-ink);
}

.vk-auth-card {
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--vk-shadow-lg);
}

.vk-auth-wide { max-width: 760px; }

.vk-auth-brand { text-align: center; margin-bottom: 26px; }
.vk-auth-brand img { height: 44px; width: auto; filter: drop-shadow(0 1px 2px rgba(11, 16, 32, .5)); }
.vk-auth-card h1 { font-size: 24px; font-weight: 800; color: var(--vk-ink); margin: 20px 0 6px; text-align: center; }
.vk-auth-card .vk-auth-sub { text-align: center; color: #6b7280; margin-bottom: 26px; font-size: 15px; }
.vk-auth-foot { text-align: center; margin-top: 22px; font-size: 14.5px; color: #6b7280; }

/* --------------------------------------------------------------------------
   Cart and checkout
   -------------------------------------------------------------------------- */

.vk-checkout-grid { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }

.vk-summary { position: sticky; top: 20px; }

.vk-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 0;
    font-size: 14.5px;
    color: var(--vk-body);
}

.vk-summary-total {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 0 0;
    margin-top: 10px;
    border-top: 2px solid var(--vk-line);
    font-size: 19px;
    font-weight: 800;
    color: var(--vk-ink);
}

.vk-line-extra { font-size: 13px; color: #6b7280; padding-left: 14px; }

/* --------------------------------------------------------------------------
   Print (invoices)
   -------------------------------------------------------------------------- */

@media print {
    .vk-no-print,
    .vk-sidebar,
    .vk-topbar,
    .header-main-con,
    .footer-main-con { display: none !important; }

    body { background: #fff; }
    .vk-content { padding: 0; }
    .vk-panel-card { border: 0; box-shadow: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 991px) {
    .vk-checkout-grid { grid-template-columns: 1fr; }
    .vk-summary { position: static; }
    .vk-sidebar {
        position: fixed;
        left: -262px;
        z-index: 60;
        transition: left .25s;
        box-shadow: var(--vk-shadow-lg);
    }
    .vk-sidebar.is-open { left: 0; }
    .vk-content { padding: 20px; }
    .vk-topbar { padding: 14px 20px; }
}

@media (max-width: 767px) {
    .vk-grid-2,
    .vk-grid-3 { grid-template-columns: 1fr; }
    .vk-dl { grid-template-columns: 1fr; gap: 2px 0; }
    .vk-dl dd { margin-bottom: 10px; }
    .vk-price-whole { font-size: 38px; }
    .vk-auth-card { padding: 28px 22px; }
}

/* --------------------------------------------------------------------------
   Panel topbar controls
   -------------------------------------------------------------------------- */

.vk-sidebar-toggle,
.vk-icon-btn {
    position: relative;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 10px;
    background: var(--vk-surface-alt);
    color: var(--vk-ink);
    font-size: 16px;
    cursor: pointer;
}

.vk-icon-btn:hover,
.vk-sidebar-toggle:hover { background: #e8edf6; }

.vk-icon-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: var(--vk-magenta);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    line-height: 18px;
}

.vk-user-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    border: 0;
    background: none;
    color: var(--vk-ink);
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    padding: 0;
}

.vk-notif-menu {
    width: 340px;
    max-height: 420px;
    overflow-y: auto;
    padding: 0;
}

.vk-notif {
    display: flex;
    gap: 12px;
    width: 100%;
    padding: 13px 16px;
    border: 0;
    border-bottom: 1px solid var(--vk-line);
    background: none;
    text-align: left;
    cursor: pointer;
}

.vk-notif:hover { background: var(--vk-surface-alt); }
.vk-notif.is-unread { background: #f2f7ff; }
.vk-notif i { color: var(--vk-blue); margin-top: 3px; }
.vk-notif strong { display: block; font-size: 14px; color: var(--vk-ink); }
.vk-notif small { display: block; font-size: 12.5px; color: #6b7280; line-height: 1.45; }
.vk-notif em { display: block; font-size: 11.5px; color: #9ca3af; font-style: normal; margin-top: 3px; }

/* --------------------------------------------------------------------------
   Header navigation fit
   The Hostiko template's navbar was laid out for five menu items with a 48px
   gap. VIKINET has six plus a cart, so at container widths the row overflowed
   and the labels broke mid-word ("HOSTIN / G"). These rules keep every label on
   one line and tighten the spacing to match.

   Scoped to >=992px on purpose: below that Bootstrap collapses the navbar into
   the hamburger menu, which mobile.css already styles as a stacked list.
   -------------------------------------------------------------------------- */

@media (min-width: 992px) {
    /* Never break a menu label across two lines. */
    .header-main-con .navbar .navbar-nav .nav-link {
        white-space: nowrap;
    }

    /* The row itself must not wrap either. */
    .header-main-con .navbar .navbar-nav {
        flex-wrap: nowrap;
        gap: clamp(14px, 1.9vw, 34px);
    }

    .header-main-con .navbar {
        flex-wrap: nowrap;
    }

    /* Reclaim the fixed margins the template used to centre five items. */
    .header-main-con .collapse.navbar-collapse {
        margin-right: 24px;
    }

    .header-main-con .navbar-light .navbar-brand {
        margin-right: clamp(16px, 2vw, 39px);
        flex-shrink: 0;
    }

    .nav-btns.d-flex.align-items-center {
        flex-shrink: 0;
        white-space: nowrap;
    }

    /* Every label shares one alignment box, so plain links and dropdown links
       sit on the same baseline, and the caret stays beside its label instead
       of wrapping after it. */
    .header-main-con .navbar .navbar-nav .nav-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
}

/* Between the lg breakpoint and xl the container is only 960px wide, which is
   the tightest the full row ever gets - trim the type and buttons to match. */
@media (min-width: 992px) and (max-width: 1199px) {
    .header-main-con .navbar .navbar-nav {
        gap: 13px;
    }

    .header-main-con .navbar .navbar-nav .nav-link {
        font-size: 12.5px;
        letter-spacing: -0.1px;
    }

    .vk-logo {
        height: 34px;
        max-width: 150px;
    }

    .login-btn a {
        min-width: auto;
        padding: 12px 18px;
        font-size: 13px;
    }

    .vk-cart-link {
        width: 36px;
        height: 36px;
        margin-right: 8px;
    }

    /* "Sign in" is the least important control here and duplicates a link in
       the Get started flow, so it is the first thing to give up space. */
    .vk-nav-login {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Header controls on the dark hero
   The header overlays the blue banner, where the template's own links are
   white. The cart and sign-in link have to match rather than inherit the dark
   body ink.
   -------------------------------------------------------------------------- */

.header-main-con .vk-nav-login {
    color: #fff;
}

.header-main-con .vk-nav-login:hover {
    color: var(--vk-cyan);
    text-decoration: none;
}

.header-main-con .vk-cart-link {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .22);
}

.header-main-con .vk-cart-link:hover {
    background: #fff;
    color: var(--vk-ink);
}

/* The template's hover colour is the brand blue, which disappears against the
   blue banner; cyan reads clearly on both. */
.header-main-con .navbar .navbar-nav .nav-link.active,
.header-main-con .navbar .navbar-nav .nav-link:hover {
    color: var(--vk-cyan);
}

/* The template reserves a 142px minimum on the header CTA for a much longer
   label than ours; letting it size to its content frees the space the extra
   menu items need. */
@media (min-width: 992px) {
    .header-main-con .login-btn a {
        min-width: auto;
        padding: 12px 24px;
    }
}
