



.recommend-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.recommend-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.2);
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.3s;
}

.recommend-item:hover img {
    transform: scale(1.03);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px;
    /* align-items:flex-start; */
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: #7e22ce;
    font-size: 1rem;
    margin: 10px;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.recommend-item-info p {
    display: flex;
    color: #4c1d95;
    font-size: 0.8rem;
    margin: 10px;
    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: 100%;
    height: 35px;
    background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
    border-radius: 15px;
    right: 0px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(147, 51, 234, 0.3);
    border: 1px solid rgba(255,255,255,0.2);
    margin-top: 10px;
    
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.recommend-item-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
    background: linear-gradient(135deg, #7e22ce 0%, #db2777 100%);
}

.misdfvus-recommend-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Two columns layout */
    gap: 20px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.misdfvus-recommend-content img {
    width: 100%;
}

.misdfvus-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.misdfvus-recommend-content-hot img {
    width: 100%;
}




