/* =========================================
   RESET
========================================= */

.wv-header * {
    box-sizing: border-box;
}

/* =========================================
   HEADER
========================================= */

.wv-header {
    width: 100%;
    height: 84px;
    background: #fff;
    border-bottom: 1px solid #edf1f7;
    position: sticky;
    top: 0;
    z-index: 999;
}

.wv-header-inner {
    max-width: 1450px;
    height: 100%;
    margin: auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* =========================================
   LOGO
========================================= */

.wv-logo img {
    height: 60px;
    display: block;
}

/* =========================================
   NAVIGATION
========================================= */

.wv-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

    .wv-nav a {
        text-decoration: none;
        color: #111827;
        font-size: 16px;
        font-weight: 600;
        transition: .2s ease;
        white-space: nowrap;
    }

        .wv-nav a:hover {
            color: #2453ff;
        }

/* =========================================
   ACTIVE DASHBOARD
========================================= */

.wv-dashboard-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 14px;
}

    .wv-dashboard-link.active {
        background: #eef3ff;
        color: #2453ff !important;
    }

/* =========================================
   RIGHT SIDE
========================================= */

.wv-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* =========================================
   ORDER BUTTON
========================================= */

.wv-order-btn {
    background: linear-gradient( 180deg, #2453ff, #1c45dd );
    color: #fff;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(36,83,255,0.18);
    transition: .2s ease;
}

    .wv-order-btn:hover {
        transform: translateY(-2px);
        color: #fff;
    }

.wv-login-btn {
    background: transparent;
    color: #2453ff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid #2453ff;
    transition: .2s ease;
}

    .wv-login-btn:hover {
        background: #2453ff;
        color: #fff;
        transform: translateY(-2px);
    }

/* =========================================
   BELL
========================================= */

.wv-bell {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 1px solid #e9edf5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #111827;
    text-decoration: none;
    transition: .2s ease;
}

    .wv-bell:hover {
        background: #f7f9ff;
        color: #2453ff;
    }

    .wv-bell i {
        font-size: 20px;
    }

    .wv-bell span {
        position: absolute;
        top: -4px;
        right: -4px;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: #2453ff;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 700;
        border: 2px solid #fff;
    }

/* =========================================
   PROFILE
========================================= */

.wv-profile {
    position: relative;
}

.wv-profile-btn {
    border: none;
    background: none;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 0;
}

.wv-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient( 180deg, #2f6bff, #1b4eff );
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.wv-user {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

    .wv-user small {
        color: #6b7280;
        font-size: 12px;
    }

    .wv-user strong {
        color: #111827;
        font-size: 15px;
    }

/* =========================================
   DROPDOWN
========================================= */

.wv-dropdown {
    position: absolute;
    top: 68px;
    right: 0;
    width: 240px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #edf1f7;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    padding: 12px;
    display: none;
    z-index: 999;
}

.wv-profile.active .wv-dropdown {
    display: block;
}

.wv-dropdown a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: #111827;
    font-size: 15px;
    font-weight: 500;
    transition: .2s ease;
}

    .wv-dropdown a:hover {
        background: #f6f9ff;
        color: #2453ff;
    }

.wv-divider {
    height: 1px;
    background: #edf1f7;
    margin: 10px 0;
}

/* =========================================
   LOGOUT
========================================= */

.wv-logout {
    width: 100%;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    color: #ef4444;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s ease;
}

    .wv-logout:hover {
        background: #fff1f2;
    }

/* =========================================
   MOBILE
========================================= */

@media(max-width:991px) {

    .wv-nav {
        display: none;
    }

    .wv-user {
        display: none;
    }

    .wv-header-inner {
        padding: 0 16px;
    }
}

@media(max-width:576px) {

    .wv-order-btn {
        display: none;
    }

    .wv-logo img {
        height: 40px;
    }

    .wv-avatar {
        width: 42px;
        height: 42px;
    }

    .wv-bell {
        width: 46px;
        height: 46px;
    }
}
