



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
    border-radius: 15px;
    padding: 10px;
    background: linear-gradient(145deg, #ffffff 0%, #fef3f4 25%, #fef0f8 75%, #f8f9fa 100%);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(255, 154, 158, 0.3);
    backdrop-filter: blur(10px);
}

.recommend-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ee5a6f, #f06292, #ff6b6b);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    border-radius: 15px 15px 0 0;
}

.recommend-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.25), 0 5px 15px rgba(255, 154, 158, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 154, 158, 0.6);
}

.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;
}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.recommend-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.2);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 8px;
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: #ff6b6b;
    font-size: 1rem;
    margin: 8px 10px 5px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255, 107, 107, 0.2);
    line-height: 1.3;
}
.recommend-item-info p {
    display: flex;
    color: #5A5A5A;
    font-size: 0.85rem;
    margin: 5px 10px 10px;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, #ff6b6b, #ee5a6f);
    border-radius: 8px;
    right: 0px;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.2);
    transition: all 0.3s ease;
    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 ease;
}

.recommend-item-btn:hover::before {
    left: 100%;
}

.recommend-item-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.3);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.rgjfdon-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px;
}

.rgjfdon-recommend-content img {
    width: 100%;
}

.rgjfdon-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;
}

.rgjfdon-recommend-content-hot img {
    width: 100%;
}




