



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
    border: 2px solid #fdcb6e;
    border-radius: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.recommend-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border-color: #e17055;
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 12px 12px 0 0;
    border: none;
    transition: transform 0.3s ease;
}

.recommend-item img:hover {
    transform: scale(1.02);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 15px;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: 0 0 13px 13px;
    border-top: 1px solid #f0f0f0;
    position: relative;
}

.recommend-item-info h3 {
    color: #333;
    font-size: 1rem;
    margin: 0px 10px;
    font-weight: bold;
}
.recommend-item-info p {
    display: flex;
    color: #666;
    font-size: 0.8rem;
    margin: 10px 10px;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 25px;
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    border-radius: 5px;
    right: 0px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.recommend-item-btn:hover {
    transform: scale(1.05);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.pwrigvo-recommend-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px;
}

.pwrigvo-recommend-content img {
    width: 100%;
}

.pwrigvo-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;
}

.pwrigvo-recommend-content-hot img {
    width: 100%;
}




