.custom-header-top {
    display: flex;
    align-items: center;
    gap: 20px;
}

.custom-header-top .header-item {
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    position: relative;
    transition: all .3s ease;
    letter-spacing: .2px;
}

.custom-header-top .header-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: #dcdcdc;
}

.custom-header-top .header-item i {
    font-size: 14px;
    color: var(--color-white);
    transition: .3s;
}

.custom-header-top .header-item:hover {
    color: var(--sage-green);
    transform: translateY(-1px);
}

.custom-header-top .header-item:hover i {
    transform: scale(1.1);
}

/* Page yêu thích */
.custom-wishlist-page {
    width: 100%;
}

.wishlist-product {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #e5e5e5;
    padding: 20px;
    margin-bottom: 15px;
    background: var(--color-white);
    flex-wrap: wrap;
}

.wishlist-remove {
    width: 30px;
}

.wishlist-remove a {
    font-size: 28px;
    color: var(--color-main);
    text-decoration: none;
}

.wishlist-image {
    width: 90px;
}

.wishlist-image img {
    width: 100%;
}

.wishlist-content {
    flex: 1;
}

.wishlist-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.wishlist-content h3 a {
    color: var(--color-main);
    text-decoration: none;
}

.wishlist-price {
    font-size: 18px;
}

.wishlist-button .button {
    background: var(--sage-green);
    color: var(--color-white);
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.wishlist-empty {
    text-align: center;
    padding: 40px 20px;
}

/* MOBILE */
@media(max-width:768px) {
    .wishlist-product {
        gap: 15px;
        padding: 15px;
    }

    .wishlist-image {
        width: 70px;
    }

    .wishlist-content {
        width: calc(100% - 120px);
    }

    .wishlist-button {
        width: 100%;
    }

    .wishlist-button .button {
        width: 100%;
        text-align: center;
    }

}