.vms-wrapper .docked-bar {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(9, 32, 51, 0.98);
    border-bottom: 2px solid #43b02a;
    padding: 0 2.5rem;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transform: translateY(-120%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.vms-wrapper .docked-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vms-wrapper .docked-progress svg {
    width: 36px;
    height: 36px;
}

.vms-wrapper .docked-progress-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
}

.vms-wrapper .docked-progress {
    position: relative;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.vms-wrapper .docked-bar-title {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.vms-wrapper .docked-bar-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1px;
}

.vms-wrapper .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #43b02a;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.1s ease;
    white-space: nowrap;
}

.vms-wrapper .docked-bar.visible {
    transform: translateY(0);
}

.vms-wrapper .mobile-sticky-bar {
    display: none;
}

.vms-wrapper .drawer-overlay {
    display: none;
}

/* MOBILE */
@media(max-width:768px) {

    .vms-wrapper .docked-bar {
        display: none;
    }

    .vms-wrapper .mobile-sticky-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 90;
        background: #092033;
        border-top: 2px solid #43b02a;
        padding: 10px 1.25rem;
        align-items: center;
        gap: 12px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    }

    .vms-wrapper .mobile-sticky-progress {
        position: relative;
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .vms-wrapper .mobile-sticky-progress svg {
        width: 36px;
        height: 36px;
    }

    .vms-wrapper .mobile-sticky-text {
        flex: 1;
        min-width: 0;
    }

    .vms-wrapper .mobile-sticky-title {
        font-size: 13px;
        font-weight: 600;
        color: #fff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .vms-wrapper .mobile-sticky-sub {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.5);
        margin-top: 1px;
        line-height: 1.3;
    }

    .vms-wrapper .drawer-overlay.open {
        display: flex;
    }

    .vms-wrapper .drawer-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 200;
        align-items: flex-end;
    }

    .vms-wrapper .drawer {
        width: 100%;
        background: #fff;
        border-radius: 16px 16px 0 0;
        padding: 0 1.25rem 2rem;
        max-height: 90vh;
        overflow-y: auto;
    }

    .vms-wrapper .drawer-handle-wrap {
        display: flex;
        justify-content: center;
        padding: 12px 0 8px;
    }
  
  .drawer-handle-wrap .drawer-handle {
    width: 36px;
    height: 4px;
    background: #dde3e9;
    border-radius: 2px;
}
  

    .vms-wrapper .drawer-close {
        float: right;
        background: none;
        border: none;
        font-size: 20px;
        color: #5a6a78;
        cursor: pointer;
        padding: 4px;
        line-height: 1;
        margin-top: -4px;
    }

    .vms-wrapper .drawer-badge {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: #c0dd97;
        color: #27500A;
        font-size: 10px;
        font-weight: 600;
        padding: 3px 10px;
        border-radius: 20px;
        margin-bottom: 0.625rem;
    }

    .vms-wrapper .drawer-title {
        font-size: 18px;
        font-weight: 700;
        color: #092033;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    .vms-wrapper .drawer-desc {
        font-size: 13px;
        color: #5a6a78;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .vms-wrapper .drawer-meta {
        display: flex;
        gap: 8px;
        margin-bottom: 1rem;
    }

    .vms-wrapper .drawer-meta-item {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 7px;
        background: #f5f7f9;
        border-radius: 4px;
        padding: 8px 10px;
    }

    .vms-wrapper .drawer-meta-sub {
        font-size: 10px;
        color: #5a6a78;
        margin-top: 1px;
        line-height: 1.2;
    }

    .vms-wrapper .drawer-meta-icon {
        width: 22px;
        height: 22px;
        border-radius: 4px;
        background: #eaf3de;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .vms-wrapper .drawer-meta-val {
        font-size: 13px;
        font-weight: 700;
        color: #092033;
        line-height: 1;
    }

    .vms-wrapper .drawer-divider {
        height: 1px;
        background: #dde3e9;
        margin: 0.875rem 0;
    }

    .vms-wrapper .drawer-domains-label {
        font-size: 10px;
        color: #5a6a78;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .vms-wrapper .drawer-domain-row {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        color: #5a6a78;
    }

    .vms-wrapper .drawer-domain-bar {
        height: 2px;
        background: #dde3e9;
        border-radius: 2px;
        margin: 2px 0 5px;
    }

    .vms-wrapper .drawer-progress {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0.875rem 0;
        border-top: 1px solid #dde3e9;
        margin-top: 0.25rem;
    }

    .vms-wrapper .drawer-progress-text {
        font-size: 12px;
        color: #5a6a78;
        line-height: 1.5;
    }

    .vms-wrapper .btn-full {
        width: 100%;
        justify-content: center;
    }

    .vms-wrapper .btn {
        font-size: 14px;
        font-weight: 600;
    }

    .vms-wrapper .drawer-disclaimer {
        font-size: 11px;
        color: #5a6a78;
        text-align: center;
        margin-top: 8px;
        line-height: 1.5;
    }
}