/* User Menu Container */
.cum-user-menu {
    position: relative;
    display: inline-block;
}

/* User Toggle Button */
.cum-user-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #f5f5f5;
        border: 1px solid #000000;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cum-user-toggle:hover {
    background: #ebebeb;
    border-color: #d0d0d0;
}

.cum-user-toggle img {
border-radius:100px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.cum-dropdown-icon {
    transition: transform 0.3s ease;
    color: #666;
}

.cum-user-menu.active .cum-dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.cum-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 250px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.cum-user-menu.active .cum-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* User Info Section */
.cum-user-info {
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cum-user-info strong {
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

.cum-user-info span {
    font-size: 13px;
    color: #666;
}

/* Menu Items */
.cum-menu-items {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.cum-menu-items li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
    font-size: 14px;
}

.cum-menu-items li a:hover {
    background: #f5f5f5;
}

.cum-menu-items li a svg {
    color: #666;
    flex-shrink: 0;
}

/* Login Button */
.cum-login-button {
    display: inline-block;
}

.cum-btn-login {
font-family: "Open Sans", Sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 30px;
    background: #D1A52A;
    color: white;
line-height:27px;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
}

.cum-btn-login:hover {
    background: #005a87;
    color: white;
}

.cum-btn-login svg {
    fill: white;
}

/* Responsive */
@media (max-width: 768px) {
    .cum-dropdown {
        min-width: 220px;
    }
    
    .cum-user-toggle {
        padding: 4px 8px;
    }
    
    .cum-user-toggle img {
        width: 35px;
        height: 35px;
    }
}