#top{
    width: 100%;
    height: 100px;
}
#link-chitiet{
    width: 80%;
    height: auto;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
#link-chitiet a,
#link-chitiet span{
    text-decoration: none;
    color: black;
    font-size: 15px;
}
#link-chitiet a.Danhmuc:hover,
#link-chitiet a.Trangchu:hover,
#link-chitiet a.Hang:hover{
    text-decoration: underline;
}
#product-list {
    width: 80%;
    margin: auto;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}
.pro-info {
    margin-top: 8px;
}

.pro-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    padding: 12px;
    display: flex;
    flex-direction: column;
    min-height: 320px; /* QUAN TRỌNG */ 
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    padding: 12px;
    transition: 0.2s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.pro-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.pro-item img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 8px;
}

.pro-item .name {
    font-size: 15px;
    font-weight: 600;
    width: 100%;
}

.pro-item .price {
    font-size: 17px;
    color: #e4002b;
    font-weight: bold;
    margin-top: 6px;
}
.pro-link {
    text-decoration: none;
    color: inherit;
    display: block;
    text-decoration: none;
}
.pro_like {
    margin-top: 10px;
    background: transparent;
    border: none;
    color: #ff4d4f;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start; 
}


.fav-btn.active,
.ti-heart.active {
    color: #e53935; /* đỏ */
}
