.myaccount-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;

}
.myaccount-header > h1 {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
    text-align: center;
    font-weight: 700;
}
.myaccount-header button.svg-icon { width: 24px; height: 24px; }
.myaccount-header button.svg-icon svg path { stroke-width: 1.8px; vector-effect: non-scaling-stroke; }
.myaccount-header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.myaccount-header-left { width: 64px; height: 24px; }
.myaccount-header-right .svg-icon {
    display: flex;
    align-self: center;
    cursor: pointer;
    width: 24px; height: 24px;
}
.myaccount-header-right .cart-icon-wrapper {
    position: relative;
    cursor: pointer;
}
.myaccount-header-right .cart-badge {
    display: flex;
    width: auto;
    min-width: 18px;
    height: 18px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 20px;
    background: #FF514D;
    color: #FFFFFF;

    position: absolute;
    top: -4px;
    right: -6px;
    z-index: 100;

    font-size: 11px;
    font-weight: 700;
    line-height: 14px;
}
.myaccount-header-right .cart-badge.empty {
    display: none;
}
