.header-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-right .menu ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-right .menu a {
    text-decoration: none;
    color: #333;
}

.header-account,
.header-cart {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #333;
}

.header-account svg,
.header-cart svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 50%;
    background: #333;
    color: #fff;
    font-size: 11px;
}

/* ==============================
   ACCOUNT DROPDOWN
   ============================== */

.account-dropdown {
    position: relative;
}

.header-account {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: none;
    padding: 0;
    margin: 0;
    color: #333;
    cursor: pointer;
    font-size: 14px;
}

.header-account svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.account-arrow {
    font-size: 16px;
    margin-left: 2px;
}


/* Dropdown */

.account-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;

    width: 210px;

    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);

    padding: 8px 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;

    z-index: 9999;
}


/* Show dropdown on hover */

.account-dropdown:hover .account-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Dropdown links */

.account-dropdown-menu a {
    display: block;

    padding: 11px 16px;

    color: #333;
    text-decoration: none;

    font-size: 14px;

    transition: background 0.2s ease;
}

.account-dropdown-menu a:hover {
    background: #f5f5f5;
}