/*
 * Account Popup Styles
 * Placed in their own file for modularity.
 */
.account-dropdown-wrapper {
    position: relative;
}
.account-popup {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-radius: 8px;
    min-width: 220px;
    z-index: 999;
    padding: 10px 0;
    margin-top: 10px;
}
.account-popup.open {
    display: block;
}
.account-popup ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.account-popup ul li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.account-popup ul li a:hover {
    background: #f5f5f5;
    color: #c59b27;
}