



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
    transition: all 0.3s ease;
}

.recommend-item:hover {
    transform: translateY(-5px);
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.2);
    border: 2px solid #76D7C4;
    transition: all 0.3s ease;
}

.recommend-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.35);
    border-color: #1ABC9C;
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 12px;
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: #1ABC9C;
    font-size: 1rem;
    margin: 0px 10px;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 1px 3px rgba(26, 188, 156, 0.2);
}
.recommend-item-info p {
    display: flex;
    color: #4a4a4a;
    font-size: 0.8rem;
    margin: 10px 10px;
    font-weight: 500;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 30px;
    background: #1ABC9C;
    border-radius: 8px;
    right: 0px;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.4);
    transition: all 0.3s ease;
    border: 2px solid #48C9B0;
    justify-content: center;
    align-items: center;
}

.recommend-item-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.6);
    background: #16A085;
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.tbgbn-recommend-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
    background: #FFFFFF;
    border-radius: 0 0 15px 15px;
}

.tbgbn-recommend-content img {
    width: 100%;
}

.tbgbn-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 10px 20px;
    padding: 15px;
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(26, 188, 156, 0.2);
    border: 3px solid #48C9B0;
    position: relative;
    overflow: hidden;
}

.tbgbn-recommend-content-hot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #1ABC9C;
}

.tbgbn-recommend-content-hot img {
    width: 100%;
}




