



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #E6E6FA;
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;
    transition: transform 0.3s ease;

}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 12px 10px 5px;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    text-align: center;
}

.recommend-item-info h3 {
    color: #4B0082;
    font-size: 1rem;
    margin: 0px 10px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    line-height: 1.4;
}
.recommend-item-info p {
    display: flex;
    color: #6A5ACD;
    font-size: 0.8rem;
    margin: 8px 10px 0;
    justify-content: center;
    font-weight: 500;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    transition: transform 0.3s ease;

}
.recommend-item-btn {
    display: flex;
    width: 90%;
    margin: 12px auto 0;
    height: 30px;
    background: linear-gradient(135deg, #4B0082 0%, #836FFF 100%);
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(75, 0, 130, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;
    transition: transform 0.3s ease;

}

/* Add hover effects for visual feedback */
.recommend-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(75, 0, 130, 0.1);
}

.recommend-item:hover img {
    transform: scale(1.02);
}

.recommend-item:hover a {
    transform: translateY(-2px);
}

.recommend-item-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(75, 0, 130, 0.3);
}

.recommend-item-btn:hover img {
    transform: scale(1.05);
}

/* Animation for subtle loading effect */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.recommend-item {
    animation: fadeIn 0.5s ease-out;
}

/* Staggered animation for items */
.recommend-item:nth-child(1) { animation-delay: 0.1s; }
.recommend-item:nth-child(2) { animation-delay: 0.2s; }
.recommend-item:nth-child(3) { animation-delay: 0.3s; }
.recommend-item:nth-child(4) { animation-delay: 0.4s; }
.recommend-item:nth-child(5) { animation-delay: 0.5s; }
.recommend-item:nth-child(6) { animation-delay: 0.6s; }
.recommend-item:nth-child(7) { animation-delay: 0.7s; }
.recommend-item:nth-child(8) { animation-delay: 0.8s; }

.budvyc-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 15px 10px 20px;
    padding: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #f9f8ff 100%);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.budvyc-recommend-content img {
    width: 100%;
}

.budvyc-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 15px 20px 20px;
    padding: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #f9f8ff 100%);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.budvyc-recommend-content-hot img {
    width: 100%;
}




