



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 10px 0;
    position: relative;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recommend-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.recommend-item img:hover {
    transform: translateY(-5px) scale(1.02);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px 5px;
    align-items: center;
    position: relative;
    width: 100%;
}

.recommend-item-info h3 {
    color: #333;
    font-size: 0.9rem;
    margin: 5px 0;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
}

.recommend-item-info p {
    display: flex;
    color: #666;
    font-size: 0.75rem;
    margin: 5px 0;
    text-align: center;
    line-height: 1.3;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 28px;
    background: linear-gradient(135deg, #ffd700 0%, #ff9800 100%);
    border-radius: 8px;
    right: 0px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.recommend-item-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.recommend-item-btn img {
    width: 30px;
    height: 18px;
    transition: transform 0.2s ease;
}

.recommend-item-btn:hover img {
    transform: scale(1.05);
}

.qorgnv-recomed-div {
    margin: 15px 10px;
    padding: 15px;
    border: 6px double #ffd700;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8);
}

.qorgnv-recommend-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px 0;
}

.qorgnv-recommend-content img {
    width: 100%;
}

.qorgnv-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Two columns layout */
    gap: 12px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 15px 20px;
    padding: 15px;
    border: 3px double #ffd700;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8);
}

.qorgnv-recommend-content-hot img {
    width: 100%;
}




