



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
    border: 3px solid #ffc0cb;
    border-radius: 20px;
    padding: 15px;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}

.recommend-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #ff69b4;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

.recommend-item::before {
    content: '🌸';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 20px;
    color: #ff69b4;
    opacity: 0.8;
}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 15px;
    border: 2px solid #ffc0cb;
    box-shadow: 0 4px 10px rgba(255, 105, 180, 0.2);
    transition: transform 0.3s ease;
}

.recommend-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(255, 105, 180, 0.4);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px;
    /* align-items:flex-start; */
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: #6a4c93;
    font-size: 1rem;
    margin: 10px 10px 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(106, 76, 147, 0.2);
}
.recommend-item-info p {
    display: flex;
    color: #6a4c93;
    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: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    border-radius: 15px;
    right: 0px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
    border: 2px solid #ffc0cb;
}

.recommend-item-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
    box-shadow: 0 6px 15px rgba(255, 105, 180, 0.6);
    border-color: #ff69b4;
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.jduvhfdu-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px;
}

.jduvhfdu-recommend-content img {
    width: 100%;
}

.jduvhfdu-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Two columns layout */
    gap: 12px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px 20px;
}

.jduvhfdu-recommend-content-hot img {
    width: 100%;
}




