



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.recommend-item img:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    text-align: center;
}

.recommend-item-info h3 {
    color: #2d3748;
    font-size: 1.1rem;
    margin: 5px 0;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    max-width: 100%;
}
.recommend-item-info p {
    display: flex;
    color: #4a5568;
    font-size: 0.9rem;
    margin: 8px 0;
    line-height: 1.5;
    max-width: 100%;
    text-align: center;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 25px;
    right: 0px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    margin-top: 10px;
    border: none;
}

.recommend-item-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.35);
    background: linear-gradient(135deg, #3da5f5 0%, #00e0ff 100%);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.tofihf-recommend-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Two columns layout */
    gap: 25px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 20px 15px;
}

.tofihf-recommend-content img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.tofihf-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Two columns layout */
    gap: 20px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 20px;
}

.tofihf-recommend-content-hot img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}




