/* ============================================
   ACCOUNT BUTTON (LIGHT)
   ============================================ */
.wed-account-btn {
    z-index: 1001;
    position: absolute !important;
    top: 25px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #dd2241;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(221, 34, 65, 0.3);
}

.wed-account-btn-icon {
    color: #fff;
    font-size: 18px;
    margin-bottom: 2px;
}

.wed-account-btn-arrow {
    color: #fff;
    font-size: 8px;
    position: absolute;
    bottom: 4px;
}

.wed-account-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(221, 34, 65, 0.4);
}

.wed-account-btn:active {
    transform: scale(0.95);
}

.wed-account-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
    line-height: 14px;
}

/* ============================================
   ACCOUNT MENU DROPDOWN (LIGHT)
   ============================================ */
.wed-account-menu {
    z-index: 10000 !important;
    position: absolute;
    top: 80px;
    right: 20px;
    width: 280px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(221, 34, 65, 0.15);
    z-index: 5000;
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.35s ease-out;
    /* NU adăuga visibility în transition - lasă-l instant */
    pointer-events: none;
}

.wed-account-menu.active {
    z-index: 10000 !important;
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}

.wed-account-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 14px;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid rgba(221, 34, 65, 0.15);
    border-top: 1px solid rgba(221, 34, 65, 0.15);
    transform: rotate(45deg);
}

.wed-account-menu-item {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    padding: 12px 14px;
    margin: 4px 0;
    border-radius: 10px;
    transition: all 0.2s;
    font-size: 15px;
}

.wed-account-menu-item-icon {
    margin-right: 12px;
    width: 24px;
    text-align: center;
    color: #dd2241;
}

.wed-account-menu-item:hover {
    background: rgba(221, 34, 65, 0.1);
    transform: translateX(5px);
    color: #dd2241;
}

.wed-account-menu-divider {
    border-top: 1px solid rgba(221, 34, 65, 0.1);
    margin: 10px 0;
    padding-top: 10px;
}

.wed-account-menu-item-badge {
    margin-left: auto;
    background: #dd2241;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
    line-height: 1.2;
}

/* Media query pentru desktop - ascunde pe desktop */
@media (min-width: 769px) {
    .wed-account-btn,
    .wed-account-menu {
        display: none !important;
    }
}

