



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 0;
    position: relative;
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 3px solid #FF6B6B;
}

.recommend-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(255, 107, 107, 0.4);
    border-color: #4ECDC4;
}

.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;
    width: 100%;
}

.recommend-item img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    transition: all 0.3s ease;
}

.recommend-item:hover img {
    transform: scale(1.05);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 12px 0 8px 0;
    position: relative;
    width: 100%;
}

.recommend-item-info h3 {
    color: #FF6B6B;
    font-size: 0.9rem;
    margin: 0 0 8px 0;
    font-weight: bold;
    text-align: center;
}

.recommend-item-info p {
    display: flex;
    color: #4ECDC4;
    font-size: 0.8rem;
    margin: 0 0 12px 0;
    text-align: center;
    justify-content: center;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 28px;
    background-color: #FFD166;
    border-radius: 8px;
    right: 0px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.recommend-item-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    background-color: #06D6A0;
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.hudvbuj-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 15px;
}

.hudvbuj-recommend-content img {
    width: 100%;
}

.hudvbuj-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 15px 20px;
}

.hudvbuj-recommend-content-hot img {
    width: 100%;
}




