.customer-account-menu {
    position: relative;
}

.customer-account-menu summary.account-link {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    cursor: pointer;
    user-select: none;
}

.customer-account-menu summary::-webkit-details-marker {
    display: none;
}

.customer-account-menu[open] .chevron {
    transform: rotate(180deg);
}

.customer-account-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    z-index: 500;
    width: 260px;
    padding: 9px;
    border: 1px solid #dce5ef;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(15, 34, 63, .18);
}

.customer-account-dropdown::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 26px;
    width: 13px;
    height: 13px;
    border-top: 1px solid #dce5ef;
    border-left: 1px solid #dce5ef;
    background: #fff;
    transform: rotate(45deg);
}

.account-dropdown-head {
    padding: 12px 13px 13px;
    border-bottom: 1px solid #edf1f5;
    margin-bottom: 5px;
}

.account-dropdown-head strong,
.account-dropdown-head small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-dropdown-head strong {
    color: #102a43;
    font-size: 13px;
}

.account-dropdown-head small {
    margin-top: 4px;
    color: #7b899c;
    font-size: 10px;
}

.customer-account-dropdown form {
    margin: 0;
}

.customer-account-dropdown > a,
.customer-account-dropdown button {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 41px;
    padding: 10px 13px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #263750;
    font: 700 12px/1.3 Inter, sans-serif;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.customer-account-dropdown > a:hover,
.customer-account-dropdown button:hover {
    background: #f2f6fc;
    color: #0b5fd7;
}

.account-dropdown-divider {
    height: 1px;
    margin: 6px 7px;
    background: #edf1f5;
}

.customer-account-dropdown button.account-logout {
    color: #c33d49;
}

.customer-account-dropdown button.account-logout:hover {
    background: #fff1f2;
    color: #b42331;
}

.customer-account-dropdown button.account-admin-switch,
.customer-account-dropdown > a.account-admin-link {
    color: #0b5fd7;
}

.customer-account-dropdown button.account-admin-switch::before,
.customer-account-dropdown > a.account-admin-link::before {
    content: "◆";
    margin-right: 9px;
    color: #f56a15;
    font-size: 8px;
}

@media (max-width: 620px) {
    .customer-account-dropdown {
        position: fixed;
        top: 72px;
        right: 12px;
        left: 12px;
        width: auto;
    }

    .customer-account-dropdown::before {
        right: 24px;
    }
}
