



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.recommend-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.recommend-item img:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    text-align: center;
}

.recommend-item-info h3 {
    color: #333;
    font-size: 1rem;
    margin: 5px 10px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.recommend-item:hover .recommend-item-info h3 {
    color: #667eea;
}

.recommend-item-info p {
    display: flex;
    justify-content: center;
    color: #666;
    font-size: 0.85rem;
    margin: 8px 10px;
    font-weight: 500;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 30px;
    background: linear-gradient(135deg, #ff6b9d 0%, #667eea 50%, #4ecdc4 100%);
    border-radius: 15px;
    right: 0px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    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.3), transparent);
    transition: left 0.5s;
}

.recommend-item-btn:hover:before {
    left: 100%;
}

.recommend-item-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.prngvfo-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 15px 10px;
    padding: 15px;
    background: rgba(255,255,255,0.6);
    border-radius: 15px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}

.prngvfo-recommend-content img {
    width: 100%;
}

.prngvfo-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 15px 20px;
    padding: 10px;
    background: rgba(255,255,255,0.6);
    border-radius: 15px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}

.prngvfo-recommend-content-hot img {
    width: 100%;
}




