



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 10px 0px;
    position: relative;
    transition: transform 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: contain;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
    transition: box-shadow 0.3s ease;
}

.recommend-item img:hover {
    box-shadow: 0 8px 25px rgba(0, 150, 136, 0.5);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}

.recommend-item-info h3 {
    color: #00BCD4;
    font-size: 1rem;
    margin: 0px 5px;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0, 188, 212, 0.2);
    text-align: center;
}
.recommend-item-info p {
    display: flex;
    color: #00695C;
    font-size: 0.8rem;
    margin: 8px 5px;
    font-weight: 500;
    text-align: center;
    justify-content: center;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 90%;
    height: 28px;
    background: linear-gradient(135deg, #00BCD4 0%, #009688 50%, #4CAF50 100%);
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
    transition: all 0.3s ease;
    border: none;
    margin: 5px auto;
    cursor: pointer;
}

.recommend-item-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.6);
    background: linear-gradient(135deg, #009688 0%, #4CAF50 50%, #8BC34A 100%);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.idvbdk-recommend-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 0 10px 10px 10px;
    padding: 18px;
    background: linear-gradient(145deg, #FFFFFF 0%, #E0F7FA 50%, #B2DFDB 100%);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.25);
    border: 3px solid #00BCD4;
    border-top: none;
}

.idvbdk-recommend-content img {
    width: 100%;
}

.idvbdk-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 15px 20px;
    padding: 20px;
    background: linear-gradient(145deg, #FFFFFF 0%, #E0F7FA 40%, #B2DFDB 70%, #C8E6C9 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 188, 212, 0.3);
    border: 3px solid #00BCD4;
    position: relative;
    overflow: hidden;
}

.idvbdk-recommend-content-hot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00BCD4, #009688, #4CAF50, #8BC34A, #CDDC39);
}

.idvbdk-recommend-content-hot::after {
    content: '🔥 HOT';
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: #fff;
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.4);
}

.idvbdk-recommend-content-hot img {
    width: 100%;
}




