



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
    background-color: #ffffff;
    border-radius: 15px;
    border: 3px solid #FF6B6B;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
}

.recommend-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
    border-color: #4ECDC4;
}

.recommend-item:hover img {
    transform: scale(1.05);
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.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: 1.1rem;
    margin: 0px 10px;
    font-weight: bold;
    text-align: center;
}
.recommend-item-info p {
    display: flex;
    color: #5A5A5A;
    font-size: 0.8rem;
    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-color: #4ECDC4;
    border-radius: 8px;
    right: 0px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    justify-content: center;
    align-items: center;
}

.recommend-item-btn:hover {
    background-color: #FF6B6B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.efbca-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 10px;
}

.efbca-recommend-content img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.efbca-recommend-content .recommend-item:hover img {
    transform: scale(1.05);
}

.efbca-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 10px 20px;
}

.efbca-recommend-content-hot img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.efbca-recommend-content-hot .recommend-item:hover img {
    transform: scale(1.05);
}




