﻿.its-header-inner {
    display: flex;
    align-items: center; /* 🔥 dikey ortalama */
    justify-content: space-between;
}

.its-header-shortcuts {
    display: flex;
    align-items: center;
    gap: 36px;
}

    .its-header-shortcuts > a {
        height: 42px;
        display: inline-flex;
        align-items: center;
    }

.its-user-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Avatar */
.its-user-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #16a34a, #0f766e);
    color: #fff;
    font-weight: 800;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(15, 118, 110, .25);
    cursor: pointer;
    transition: .25s ease;
}

    .its-user-circle:hover {
        transform: translateY(-2px);
    }

/* Dropdown */
.its-user-menu {
    position: absolute;
    top: 55px;
    right: 0;
    width: 240px;
    background: #fff;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s ease;
    z-index: 9999;
}

.its-user-dropdown:hover .its-user-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Üst kullanıcı info */
.its-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.its-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #059669);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Yazılar */
.its-user-name {
    font-weight: 700;
    font-size: 14px;
    color: #0f5132;
}

.its-user-email {
    font-size: 12px;
    color: #888;
}

/* Linkler */
.its-user-menu a {
    display: block;
    padding: 9px 10px;
    color: #333 !important;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
}

    .its-user-menu a:hover {
        background: #ecfdf5;
        color: #047857 !important;
    }

.menu-user-logout {
    margin: 8px 0 6px;
    padding: 12px 14px !important;
    border-radius: 16px;
    background: rgba(34, 197, 94, .14);
    border: 1px solid rgba(134, 239, 172, .28);
    display: flex !important;
    align-items: center;
    gap: 12px;
    color: #fff !important;
}

    .menu-user-logout:hover {
        background: rgba(34, 197, 94, .24);
        transform: translateX(4px);
    }

.menu-user-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #059669);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border: 2px solid rgba(255,255,255,.75);
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.menu-user-logout strong {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 1.1;
}

.menu-user-logout small {
    display: block;
    color: rgba(255,255,255,.68);
    font-size: 12px;
    margin-top: 4px;
}

/***************/
.its-header-inner {
    display: flex;
    align-items: center;
}

.its-mobile-user {
    margin-left: auto;
    margin-right: 8px;
    display: flex;
    align-items: center;
}

.its-mobile-login-btn {
    height: 34px;
    padding: 0 15px;
    border-radius: 999px;
    background: #0f9460;
    color: #fff !important;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    box-shadow: 0 8px 18px rgba(15, 148, 96, .22);
    transition: .3s ease;
}

    .its-mobile-login-btn:hover {
        background: #0c7e51;
        color: #fff !important;
    }

.its-mobile-user-circle {
    width: 40px;
    height: 40px;
    font-size: 15px;
}