



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px;
    /* align-items:flex-start; */
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: #ff6b6b;
    font-size: 1.15rem;
    margin: 0px 10px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(255, 107, 107, 0.2);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.recommend-item-info h3:hover {
    color: #f093fb;
    text-shadow: 2px 2px 7px rgba(240, 147, 251, 0.3);
}

.recommend-item-info p {
    display: flex;
    color: #5A5A5A;
    font-size: 0.85rem;
    margin: 10px 10px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 42px;
    background: linear-gradient(135deg, #ffa726 0%, #ffeb3b 100%);
    border-radius: 30px;
    right: 0px;
    box-shadow: 
        0 6px 20px rgba(255, 167, 38, 0.35),
        inset 0 2px 5px rgba(255, 255, 255, 0.7);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.4s ease;
    border: 3px solid #fff;
    position: relative;
    overflow: hidden;
}

.recommend-item-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.recommend-item-btn:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 
        0 10px 30px rgba(255, 167, 38, 0.45),
        inset 0 2px 8px rgba(255, 255, 255, 0.9);
}

.recommend-item-btn:hover::before {
    transform: rotate(45deg) translate(20%, 20%);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.fopewpf-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px;
}

.fopewpf-recommend-content img {
    width: 100%;
}

.fopewpf-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 15px 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 35px;
    box-shadow: 
        0 12px 40px rgba(240, 147, 251, 0.25),
        inset 0 0 0 4px rgba(255, 255, 255, 0.95);
    border: 4px solid #b3e5fc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fopewpf-recommend-content-hot:hover {
    box-shadow: 
        0 15px 45px rgba(240, 147, 251, 0.3),
        inset 0 0 0 4px rgba(255, 255, 255, 1);
}

.fopewpf-recommend-content-hot img {
    width: 100%;
}




