



.recommend-item{    display: flex;    flex-direction: column;    align-items: center;    justify-self: center;    margin: 15px 0px;    position: relative;    transition: transform 0.3s ease;}.recommend-item:hover {    transform: translateY(-5px);}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {    width: 100%;    object-fit: contain;    border-radius: 10px;    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);    transition: transform 0.3s ease, box-shadow 0.3s ease;}.recommend-item:hover img {    transform: translateY(-3px);    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px;
    /* align-items:flex-start; */
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {    color: #ffffff;    font-size: 1rem;    margin: 0px 10px;    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);}
.recommend-item-info p {    display: flex;    color: #a0a0a0;    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(45deg, #4361ee, #3a0ca3);    border-radius: 5px;    right: 0px;    box-shadow: 0 3px 10px rgba(67, 97, 238, 0.3);    transition: transform 0.3s ease, box-shadow 0.3s ease;}.recommend-item-btn:hover {    transform: translateY(-1px);    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.5);}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.ofier-recommend-content{    display: grid;    grid-template-columns: repeat(4, 1fr);    gap: 15px;    margin: 10px;    padding: 10px;    background: rgba(255, 255, 255, 0.03);    border-radius: 10px;    backdrop-filter: blur(5px);}

.ofier-recommend-content img {
    width: 100%;
}

.ofier-recommend-content-hot{    display: grid;    grid-template-columns: repeat(4, 1fr);    gap: 12px;    margin: 10px 20px;    padding: 10px;    background: rgba(247, 37, 133, 0.1);    border-radius: 10px;    backdrop-filter: blur(5px);}

.ofier-recommend-content-hot img {
    width: 100%;
}




