/* Woo Account CSS */

.woo-account-widget {
    display: flex;
    align-items: center;
    position: relative;
}

.woo-account-widget .account-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.woo-account-widget .account-icon {
    margin-right: 5px;
}

.woo-account-widget .account-title {
    font-size: 16px;
}

/* Icon specific styling */
svg.account-icon.e-font-icon-svg.e-fas-user {
    width: 20px;
    height: auto;
    fill: #EB0029;
    transition: fill 0.3s;
}

/* Hover effect */
.woo-account-widget:hover svg.account-icon.e-font-icon-svg.e-fas-user {
    fill: #04A34B;
}

/* Hover frame styling */
.account-hover-frame {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background-color: #ffffff;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    padding: 10px;
    z-index: 1000;
}

.woo-account-widget:hover .account-hover-frame {
    display: block;
}

.account-hover-frame h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #333333;
}

.account-hover-frame ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-hover-frame li {
    margin-bottom: 5px;
}

.account-hover-frame a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000000;
}

.account-hover-frame a:hover {
    color: #04A34B;
}

.account-hover-frame .item-icon {
    margin-right: 5px;
}

.account-hover-frame svg.item-icon {
    width: 15px;
    height: auto;
    fill: #EB0029;
    transition: fill 0.3s;
}

.account-hover-frame a:hover svg.item-icon {
    fill: #04A34B;
}

span.item-text:hover {
    color: #000;
}