/* =============================================================================
   VIN-підбір — Split Layout (final design)
   Palette: #1E53EC — TRUCKZONE blue · FontAwesome icons · inherits site font
   ============================================================================= */

:root,
.vin-root {
    --vin-blue-50:  #EEF4FF;
    --vin-blue-100: #DAE6FF;
    --vin-blue-200: #B8D0FF;
    --vin-blue-300: #8AB0FF;
    --vin-blue-400: #5C8FFF;
    --vin-blue-500: #2F6BFF;
    --vin-blue-600: #1E53EC;
    --vin-blue-700: #1742C2;
    --vin-blue-800: #10329A;
    --vin-blue-900: #0A2272;

    --vin-ink-900: #0B1220;
    --vin-ink-700: #1C2432;
    --vin-ink-500: #4B5568;
    --vin-ink-400: #6B7487;
    --vin-ink-300: #98A1B2;
    --vin-ink-200: #C9CFDA;
    --vin-ink-100: #E6E9F0;
    --vin-ink-50:  #F3F5F9;

    --vin-success: #16A34A;
    --vin-success-bg: #DCFCE7;
    --vin-danger:  #DC2626;
    --vin-danger-bg: #FEE2E2;

    --vin-shadow-sm: 0 1px 2px rgba(10,34,114,.06);
    --vin-shadow-md: 0 6px 14px -4px rgba(10,34,114,.10), 0 3px 6px -2px rgba(10,34,114,.06);
    --vin-shadow-xl: 0 32px 64px -16px rgba(10,34,114,.28), 0 12px 24px -10px rgba(10,34,114,.14);

    --vin-ease: cubic-bezier(.2,.8,.2,1);
    --vin-radius: 12px;
}

/* === Trigger (desktop) === */
.vin-trigger {
    background: var(--vin-blue-600);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    box-shadow: 0 8px 20px -6px rgba(30,83,236,.45);
    transition: background .2s var(--vin-ease), transform .15s var(--vin-ease), box-shadow .2s var(--vin-ease);
    white-space: nowrap;
    cursor: pointer;
}

/* Desktop trigger sits inline in the header address row */
.vin-trigger-desktop {
    flex: 0 0 auto;
    margin-right: 12px;
    align-self: center;
}

.vin-trigger:hover,
.vin-trigger:focus {
    background: var(--vin-blue-700);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px -10px rgba(30,83,236,.55);
    color: #fff;
    outline: none;
}

.vin-trigger i {
    font-size: 14px;
    animation: vinPulse 2.5s ease-in-out infinite;
}

@keyframes vinPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .65; }
}

/* === Overlay & backdrop === */
.vin-overlay {
    position: fixed;
    inset: 0;
    z-index: 1055;
    display: none;
}

.vin-overlay.is-open {
    display: block;
}

.vin-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 34, 114, 0.42);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.28s var(--vin-ease);
}

.vin-overlay.is-open .vin-backdrop {
    opacity: 1;
}

/* === Panel === */
.vin-panel {
    position: absolute;
    top: 110px;
    left: 50%;
    width: 720px;
    max-width: calc(100% - 32px);
    background: #fff;
    border: 1px solid var(--vin-ink-100);
    border-radius: 22px;
    box-shadow: var(--vin-shadow-xl);
    overflow: hidden;
    transform: translate(-50%, -8px) scale(.98);
    opacity: 0;
    transition: transform .32s var(--vin-ease), opacity .22s var(--vin-ease);
    display: grid;
    grid-template-columns: 260px 1fr;
}

.vin-overlay.is-open .vin-panel {
    transform: translate(-50%, 0) scale(1);
    opacity: 1;
}

/* === Aside (info panel) === */
.vin-aside {
    background:
        radial-gradient(80% 80% at 100% 0%, rgba(47, 107, 255, .35), transparent 60%),
        linear-gradient(165deg, var(--vin-blue-700) 0%, var(--vin-blue-900) 100%);
    color: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.vin-aside::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 60%);
    pointer-events: none;
}

.vin-aside > * { position: relative; }

.vin-aside-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 5px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    width: fit-content;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
}

.vin-aside-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ADE80;
    box-shadow: 0 0 6px #4ADE80;
    animation: vinDotPulse 1.8s infinite;
}

@keyframes vinDotPulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }

.vin-aside h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #fff;
}

.vin-aside-desc {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.5;
}

.vin-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 8px;
    list-style: none;
    padding-left: 0;
}

.vin-step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.3;
}

.vin-step-item .n {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.vin-aside-contact {
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 14px;
    line-height: 1.5;
}

.vin-aside-contact b {
    color: #fff;
    font-weight: 700;
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.vin-aside-contact a { color: inherit; text-decoration: none; }

/* === Form side === */
.vin-form-wrap {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

.vin-form-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
}

.vin-form-head h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--vin-ink-900);
}

.vin-close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--vin-ink-400);
    background: transparent;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: all .15s var(--vin-ease);
}

.vin-close:hover { background: var(--vin-ink-50); color: var(--vin-ink-900); }

/* Field */
.vin-field { display: flex; flex-direction: column; gap: 6px; }

.vin-field-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--vin-ink-900);
    letter-spacing: -0.005em;
    margin: 0;
}

.vin-field-ctl {
    display: flex;
    align-items: stretch;
    background: var(--vin-ink-50);
    border: 1.5px solid transparent;
    border-radius: var(--vin-radius);
    transition: all .18s var(--vin-ease);
    overflow: hidden;
}

.vin-field-ctl:focus-within {
    background: #fff;
    border-color: var(--vin-blue-500);
    box-shadow: 0 0 0 4px rgba(47, 107, 255, .12);
}

.vin-field-ctl.is-error {
    background: #fff;
    border-color: var(--vin-danger);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, .1);
}

.vin-field-ctl .vin-adorn {
    width: 44px;
    display: grid;
    place-items: center;
    color: var(--vin-ink-400);
    font-size: 14px;
    border-right: 1px solid var(--vin-ink-100);
    background: #fff;
    flex-shrink: 0;
}

.vin-field-ctl input,
.vin-field-ctl textarea,
.vin-field-ctl select {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--vin-ink-900);
    font-weight: 500;
    outline: none;
    resize: none;
    min-width: 0;
    font-family: inherit;
}

.vin-field-ctl input::placeholder,
.vin-field-ctl textarea::placeholder {
    color: var(--vin-ink-400);
    font-weight: 400;
}

.vin-field-ctl textarea { min-height: 72px; padding: 12px 14px; }

.vin-field-ctl select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 32px;
}

.vin-select-wrap { position: relative; flex: 1; display: flex; }

.vin-select-wrap::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid var(--vin-ink-400);
    border-bottom: 1.5px solid var(--vin-ink-400);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

.vin-field-error {
    font-size: 12px;
    color: var(--vin-danger);
    display: none;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
    line-height: 1.3;
}

.vin-field-error.is-visible { display: flex; }

.vin-field-error i { font-size: 11px; }

.vin-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Optional badge */
.vin-opt-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--vin-ink-50);
    color: var(--vin-ink-500);
    border: 1px solid var(--vin-ink-100);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 6px;
    margin-left: 8px;
    vertical-align: middle;
}

/* Upload zone */
.vin-upload {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1.5px dashed var(--vin-ink-200);
    border-radius: var(--vin-radius);
    background: #fff;
    transition: all .2s var(--vin-ease);
    cursor: pointer;
    text-align: left;
}

.vin-upload:hover {
    border-color: var(--vin-blue-400);
    background: var(--vin-blue-50);
}

.vin-upload.is-dragover {
    border-color: var(--vin-blue-600);
    background: var(--vin-blue-50);
    border-style: solid;
}

.vin-upload-pic {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--vin-blue-50);
    color: var(--vin-blue-600);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 16px;
}

.vin-upload-text { flex: 1; min-width: 0; }

.vin-upload-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--vin-ink-900);
    line-height: 1.2;
}

.vin-upload-sub {
    font-size: 11px;
    color: var(--vin-ink-400);
    margin-top: 2px;
    line-height: 1.3;
}

.vin-upload-btn {
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--vin-blue-700);
    background: var(--vin-blue-50);
    border-radius: 8px;
    flex-shrink: 0;
}

.vin-upload-hint {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 11px;
    color: var(--vin-ink-400);
    margin-top: 6px;
    line-height: 1.45;
}

.vin-upload-hint i {
    font-size: 11px;
    color: var(--vin-blue-500);
    flex-shrink: 0;
    margin-top: 2px;
}

/* File preview */
.vin-file-preview {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border: 1.5px solid var(--vin-success);
    border-radius: var(--vin-radius);
    animation: vinSlideIn .3s var(--vin-ease);
}

.vin-file-preview.is-visible { display: flex; }

@keyframes vinSlideIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.vin-file-thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: var(--vin-ink-100);
    flex-shrink: 0;
}

.vin-file-info { flex: 1; min-width: 0; }

.vin-file-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--vin-ink-900);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vin-file-meta {
    font-size: 11px;
    color: var(--vin-success);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.vin-file-remove {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: var(--vin-ink-400);
    display: grid;
    place-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all .15s var(--vin-ease);
    flex-shrink: 0;
}

.vin-file-remove:hover { background: var(--vin-danger-bg); color: var(--vin-danger); }

/* Submit button */
.vin-submit {
    width: 100%;
    padding: 14px 20px;
    background: var(--vin-blue-600);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--vin-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .18s var(--vin-ease);
    box-shadow: 0 6px 14px -4px rgba(30, 83, 236, .45);
    letter-spacing: -0.005em;
    margin-top: 4px;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.vin-submit i { font-size: 14px; transition: transform .2s var(--vin-ease); }
.vin-submit:hover:not(:disabled) {
    background: var(--vin-blue-700);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px -6px rgba(30, 83, 236, .55);
    color: #fff;
}
.vin-submit:hover:not(:disabled) i { transform: translateX(2px); }
.vin-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.vin-consent {
    font-size: 11px;
    color: var(--vin-ink-400);
    line-height: 1.5;
    text-align: center;
    margin-top: 2px;
}

.vin-consent a { color: var(--vin-blue-600); text-decoration: none; }
.vin-consent a:hover { text-decoration: underline; }

/* State banners */
.vin-banner {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    animation: vinSlideIn .3s var(--vin-ease);
}

.vin-banner.is-visible { display: flex; }

.vin-banner.success { background: var(--vin-success-bg); color: #166534; border: 1px solid #BBF7D0; }
.vin-banner.error   { background: var(--vin-danger-bg);  color: #991B1B; border: 1px solid #FECACA; }
.vin-banner.loading { background: var(--vin-blue-50);    color: var(--vin-blue-700); border: 1px solid var(--vin-blue-100); }

.vin-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: vinSpin .7s linear infinite;
    flex-shrink: 0;
}

.vin-submit .vin-spinner { color: #fff; }

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

/* Success screen */
.vin-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 8px 16px;
    gap: 14px;
    animation: vinSlideIn .3s var(--vin-ease);
}

.vin-success.is-visible { display: flex; }

.vin-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--vin-success-bg);
    color: var(--vin-success);
    display: grid;
    place-items: center;
    font-size: 30px;
    animation: vinPop .4s var(--vin-ease);
}

@keyframes vinPop {
    0%   { transform: scale(0.6); opacity: 0; }
    60%  { transform: scale(1.08); }
    100% { transform: scale(1); opacity: 1; }
}

.vin-success h4 { margin: 0; font-size: 20px; font-weight: 800; letter-spacing: -0.01em; color: var(--vin-ink-900); }
.vin-success p { margin: 0; font-size: 13px; color: var(--vin-ink-500); max-width: 320px; line-height: 1.5; }

.vin-success-info {
    display: flex;
    gap: 14px;
    margin-top: 8px;
    padding: 12px 14px;
    background: var(--vin-ink-50);
    border-radius: 10px;
    font-size: 12px;
    color: var(--vin-ink-700);
    font-weight: 600;
    flex-wrap: wrap;
    justify-content: center;
}

.vin-success-info > div { display: flex; align-items: center; gap: 6px; }
.vin-success-info i { font-size: 13px; color: var(--vin-blue-600); }
.vin-success-info a { color: inherit; text-decoration: none; }

/* Honeypot — visually hidden but accessible */
.vin-honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* === Mobile FAB === */
.vin-fab {
    position: fixed;
    bottom: 90px;
    right: 16px;
    z-index: 1045;
    width: 56px;
    height: 56px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--vin-blue-600);
    color: #fff;
    box-shadow: 0 4px 16px rgba(30, 83, 236, .4);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    transition: all .25s var(--vin-ease);
    cursor: pointer;
}

.vin-fab:active { transform: scale(0.92); }
.vin-fab i { font-size: 18px; }
.vin-fab span { font-size: 9px; font-weight: 700; letter-spacing: 0.5px; }

.vin-fab::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(30, 83, 236, .3);
    animation: vinFabPing 3s ease-in-out infinite;
}

@keyframes vinFabPing {
    0%, 70%, 100% { transform: scale(1); opacity: 1; }
    85% { transform: scale(1.15); opacity: 0; }
}

/* === Responsive === */

/* Popup layout — single column on tablet+below */
@media (max-width: 991px) {
    .vin-panel {
        grid-template-columns: 1fr;
        width: 560px;
        top: 80px;
    }
    .vin-aside {
        flex-direction: row;
        align-items: center;
        padding: 18px 22px;
        gap: 14px;
        flex-wrap: wrap;
    }
    .vin-aside h3 { font-size: 18px; flex: 1 1 auto; }
    .vin-aside-desc { display: none; }
    .vin-steps { display: none; }
    .vin-aside-contact { border-top: none; padding-top: 0; font-size: 11px; margin-left: auto; }
    .vin-aside-contact b { font-size: 13px; }
}

/* === Trigger / FAB visibility breakpoints === */

/* Desktop XL (>= 1200px): full trigger pill is visible (default styling). */

/* Small desktop (992 – 1199px): compact pill so it doesn't crowd the address row. */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .vin-trigger-desktop {
        padding: 8px 14px;
        font-size: 12px;
        gap: 6px;
        margin-right: 8px;
        box-shadow: 0 6px 14px -6px rgba(30, 83, 236, .45);
    }
    .vin-trigger-desktop i { font-size: 12px; }
}

/* Tablet & below (<= 991.98px): hide desktop pill, show FAB instead.
   This range covers the user-reported worst case (~770–800px). */
@media (max-width: 991.98px) {
    .vin-trigger-desktop { display: none !important; }
    .vin-fab { display: flex; }
}

/* Mobile-specific popup layout & handle */
@media (min-width: 768px) {
    .vin-mobile-handle { display: none; }
}

@media (max-width: 767.98px) {
    .vin-panel {
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        max-height: 94vh;
        border-radius: 24px 24px 0 0;
        transform: translateY(20px);
        opacity: 0;
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding-bottom: env(safe-area-inset-bottom, 0);
    }

    .vin-overlay.is-open .vin-panel {
        transform: translateY(0);
        opacity: 1;
    }

    .vin-aside {
        padding: 16px 18px 14px;
        gap: 8px;
        flex-shrink: 0;
        flex-direction: column;
        align-items: flex-start;
    }
    .vin-aside h3 { font-size: 17px; }
    .vin-aside-desc { display: block; font-size: 12px; }
    .vin-steps { display: none; }
    .vin-aside-contact { display: none; }

    .vin-mobile-handle {
        position: absolute;
        top: 6px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        border-radius: 2px;
        background: rgba(255, 255, 255, .3);
        z-index: 5;
    }

    .vin-form-wrap {
        padding: 18px;
        overflow-y: auto;
        flex: 1;
    }
}

/* Small phones (<= 575.98px): nudge FAB further from edges, keep clear of Plerdy chat */
@media (max-width: 575.98px) {
    .vin-fab {
        bottom: 96px;
        right: 14px;
        width: 52px;
        height: 52px;
    }
    .vin-fab i { font-size: 16px; }
}

/* =============================================================================
   VIN-підбір — Sticky CTA bar (mobile only, V3)
   Full-width sticky button under the header on phones (<= 768px).
   Uses existing data-vin-trigger hook to open the popup.
   ============================================================================= */
.vin-sticky {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 1040;
    padding: 10px 14px;
    background: #fff;
    border-bottom: 1px solid var(--vin-ink-100);
}

.vin-sticky__btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #1E53EC 0%, #10329A 100%);
    color: #fff;
    cursor: pointer;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px -6px rgba(30, 83, 236, .42);
    transition: transform .15s ease, box-shadow .15s ease;
    font-family: inherit;
}

.vin-sticky__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px -6px rgba(30, 83, 236, .5);
}

.vin-sticky__btn:active {
    transform: translateY(1px);
}

.vin-sticky__btn::before {
    content: '';
    position: absolute;
    /* Anchor at 0; the shine slides via translateX so it stays GPU-accelerated. */
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
    animation: vin-shine 4s ease-in-out infinite;
    pointer-events: none;
    will-change: transform;
}

@keyframes vin-shine {
    0%, 60% { transform: translateX(-100%); }
    80%, 100% { transform: translateX(300%); }
}

.vin-sticky__ic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .18);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: #fff;
}

.vin-sticky__ic i { font-size: 17px; line-height: 1; }

.vin-sticky__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.vin-sticky__title {
    font-size: 14.5px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: #fff;
}

.vin-sticky__sub {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .82);
    margin-top: 3px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vin-sticky__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ADE80;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 6px rgba(74, 222, 128, .7);
    animation: vin-glow 2s ease-in-out infinite;
}

.vin-sticky__dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1.5px solid rgba(74, 222, 128, .55);
    animation: vin-ring 2s ease-out infinite;
}

@keyframes vin-glow {
    0%, 100% { box-shadow: 0 0 6px rgba(74, 222, 128, .7); }
    50%      { box-shadow: 0 0 10px rgba(74, 222, 128, 1); }
}

@keyframes vin-ring {
    0%   { transform: scale(0.7); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

.vin-sticky__online {
    color: #BBF7D0;
    font-weight: 600;
}

.vin-sticky__sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    flex-shrink: 0;
}

.vin-sticky__arr {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    color: #fff;
}

.vin-sticky__arr i { font-size: 14px; line-height: 1; }

@media (max-width: 991.98px) {
    .vin-sticky { display: block; }
    .vin-fab { display: none !important; }
    body.padding-top { padding-top: 148px !important; }
}
