



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 12px 0;
    position: relative;
    padding: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.recommend-item:hover {
    transform: translateY(-3px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.12);
}

.recommend-item img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.18);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 12px 8px 8px;
    align-items: center;
    position: relative;
    width: 100%;
    text-align: center;
}

.recommend-item-info h3 {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    margin: 0 5px 8px;
    font-weight: 700;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
    line-height: 1.3;
    transition: all 0.3s ease;
}

.recommend-item:hover .recommend-item-info h3 {
    transform: scale(1.02);
}

.recommend-item-info p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #555;
    font-size: 0.85rem;
    margin: 0 5px 10px;
    line-height: 1.4;
    opacity: 0.9;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 32px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-radius: 8px;
    right: 0px;
    box-shadow: 0px 6px 20px rgba(255, 107, 107, 0.3), 0px 2px 5px rgba(0, 0, 0, 0.15), inset 0px 1px 0px rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    position: relative;
    overflow: hidden;
}

.recommend-item-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.recommend-item-btn:hover::before {
    left: 100%;
}

.recommend-item-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0px 10px 30px rgba(255, 107, 107, 0.4), 0px 4px 10px rgba(0, 0, 0, 0.2), inset 0px 1px 0px rgba(255, 255, 255, 0.5);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.lewgnob-recommend-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px;
}

.lewgnob-recommend-content img {
    width: 100%;
}

.lewgnob-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;
}

.lewgnob-recommend-content-hot img {
    width: 100%;
}




