.menucustomer {
    display: flex;
    gap: 30px;
}

/* =============================================================================
! CART
============================================================================= */

.menucustomer-cart {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
}
.menucustomer-cart:hover {
    color: #007200;
}
.menucustomer-cart img {
    width: 35px;
    height: 35px;
}
.cart-icon {
    position: relative;
}
.header-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #198754;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-name {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
}
.header-cart-amount {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-size: 15px;
}

/* =============================================================================
! CONTA
============================================================================= */

.menucustomer-conta {
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: #000;
}
.menucustomer-conta:hover {
    color: #007200;
}
.menucustomer-conta img {
    width: 35px;
    height: 35px;
}
.conta-title {
    font-family: "Open Sans";
    font-size: 15px;
    font-weight: 400;
}
.conta-subtitle {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
}

