


.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
    background-color: rgba(10, 10, 26, 0.7);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(153, 0, 255, 0.2);
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.recommend-item img:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px;
    /* align-items:flex-start; */
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: #00f0ff;
    font-size: 1rem;
    margin: 0px 10px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.7);
}
.recommend-item-info p {
    display: flex;
    color: #cccccc;
    font-size: 0.8rem;
    margin: 10px 10px;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 25px;
    background: linear-gradient(135deg, #00f0ff 0%, #9900ff 100%);
    border-radius: 5px;
    right: 0px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 240, 255, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recommend-item-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 240, 255, 0.6);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;
    box-shadow: none;
}

.lafxfpa-recommend-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px;
}

.lafxfpa-recommend-content img {
    width: 100%;
}

.lafxfpa-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Two columns layout */
    gap: 12px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px 20px;
}

.lafxfpa-recommend-content-hot img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 0, 193, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lafxfpa-recommend-content-hot img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 193, 0.5);
}





