



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.recommend-item:hover img {
    transform: scale(1.05) rotate(-2deg);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: linear-gradient(145deg, #ffffff 0%, #FFF5F8 100%);
    border-radius: 12px;
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.15);
    position: relative;
    width: 90%;
}

.recommend-item-info h3 {
    color: #FF6B6B;
    font-size: 1.1rem;
    margin: 8px 10px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.recommend-item-info p {
    display: flex;
    color: #4A4A4A;
    font-size: 0.85rem;
    margin: 10px 10px;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 30px;
    background: #4ECDC4;
    border-radius: 8px;
    right: 0px;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.recommend-item-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
    background: #45B7AA;
}
.recommend-item-btn img {
    width: 32px;
    height: 18px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.fhvbfu-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
}

.fhvbfu-recommend-content img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.fhvbfu-recommend-content img:hover {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.fhvbfu-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
}

.fhvbfu-recommend-content-hot img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.fhvbfu-recommend-content-hot img:hover {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}




