



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 107, 107, 0.2);
    overflow: hidden;
}

.recommend-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.25);
}

.recommend-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B, #FF8C42);
}

.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;
    display: block;
    width: 100%;
}

.recommend-item img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.recommend-item:hover img {
    transform: scale(1.05);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 12px 8px 8px 8px;
    align-items: center;
    position: relative;
    width: 100%;
}

.recommend-item-info h3 {
    color: #FF6B6B;
    font-size: 0.9rem;
    margin: 0 0 5px 0;
    font-weight: bold;
    text-align: center;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recommend-item-info p {
    display: flex;
    color: #5A5A5A;
    font-size: 0.75rem;
    margin: 0 0 10px 0;
    text-align: center;
    width: 100%;
    line-height: 1.3;
}

.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 32px;
    background: linear-gradient(135deg, #FF8C42, #FF6B6B);
    border-radius: 16px;
    right: 0px;
    box-shadow: 0 3px 10px rgba(255, 140, 66, 0.3);
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    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(255, 140, 66, 0.4);
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    position: relative;
    z-index: 1;
}

.recommend-item-btn img {
    width: 28px;
    height: 16px;
    margin-right: 5px;
    box-shadow: none;
    transition: none;
    object-fit: contain;
}

.recommend-item-btn:hover img {
    transform: none;
}

.vrfvb-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px;
}

.vrfvb-recommend-content img {
    width: 100%;
}

.vrfvb-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;
}

.vrfvb-recommend-content-hot img {
    width: 100%;
}




