



.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: 10px;
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px;
    /* align-items:flex-start; */
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: #FF6B6B;
    font-size: 1rem;
    margin: 0px 10px;
    font-weight: bold;
}
.recommend-item-info p {
    display: flex;
    color: #5A5A5A;
    font-size: 0.8rem;
    margin: 10px 10px;
    line-height: 1.4;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 25px;
    background: linear-gradient(135deg, #6A0572, #AB83A1);
    border-radius: 5px;
    right: 0px;
    box-shadow: 0 3px 10px rgba(106, 5, 114, 0.3);
    transition: all 0.3s ease;
}

.recommend-item-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(106, 5, 114, 0.4);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.ofvcfdbi-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ofvcfdbi-recommend-content img {
    width: 100%;
}

.ofvcfdbi-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 10px 20px;
    padding: 15px;
    background: linear-gradient(135deg, #FFF9C4, #FFFDE7);
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.ofvcfdbi-recommend-content-hot img {
    width: 100%;
}




