



.recommend-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    border: 2px solid rgba(255,106,213,0.2);
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px;
    /* align-items:flex-start; */
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: #8b5cf6;
    font-size: 1.1rem;
    margin: 0px 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    font-weight: bold;
    line-height: 1.3;
    transition: all 0.3s ease;
}
.recommend-item-info p {
    display: flex;
    color: #ff6ad5;
    font-size: 0.9rem;
    margin: 10px 10px;
    font-weight: 700;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.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, #ff6ad5, #8b5cf6);
    border-radius: 25px;
    right: 0px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.recommend-item-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: shine 1.5s infinite;
    transition: all 0.3s;
}

@keyframes shine {
    100% {
        left: 100%;
    }
}

.recommend-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    border-color: rgba(255,106,213,0.5);
}

.recommend-item-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #8b5cf6, #ff6ad5);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.fewfo-recommend-content{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px;
}

.fewfo-recommend-content img {
    width: 100%;
}

.fewfo-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px;
}

.fewfo-recommend-content-hot img {
    width: 100%;
}




