



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recommend-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.recommend-item img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    width: 100%;
}

.recommend-item-info h3 {
    color: #ff3366;
    font-size: 1.1rem;
    margin: 5px 0;
    font-weight: bold;
    text-align: center;
}

.recommend-item-info p {
    display: flex;
    color: #666666;
    font-size: 0.8rem;
    margin: 5px 0;
    justify-content: center;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 40px;
    background: #4dabf7;
    border-radius: 20px;
    right: 0px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
}

.recommend-item-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background: #339af0;
}

.recommend-item-btn img {
    width: 32px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.efvbjk-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 10px;
}

.efvbjk-recommend-content img {
    width: 100%;
}

.efvbjk-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.efvbjk-recommend-content-hot img {
    width: 100%;
}

@media (max-width: 480px) {
    .efvbjk-recommend-content {
        gap: 10px;
        margin: 5px;
    }
    
    .efvbjk-recommend-content-hot {
        gap: 10px;
        margin: 10px;
        padding: 15px;
    }
    
    .recommend-item {
        padding: 10px;
    }
    
    .recommend-item-btn {
        height: 35px;
    }
}




