



.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: #1A237E;
    font-size: 1.1rem;
    margin: 0px 10px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
.recommend-item-info p {
    display: flex;
    color: #5A5A5A;
    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: 35px;
    background: #1A237E;
    border-radius: 20px;
    right: 0px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #0D47A1;
}

.recommend-item-btn:hover {
    background: #0D47A1;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.psazkwg-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Two columns layout */
    gap: 1rem;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px;
    background-color: #F0F8FF;
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
    color: #5A5A5A;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.psazkwg-recommend-content img {
    width: 100%;
}

.psazkwg-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1rem 0.5rem;
    padding: 15px;
    background: #E6F3FF;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.2);
    box-sizing: border-box;
    color: #5A5A5A;
    margin-bottom: 15px;
}

.psazkwg-recommend-content-hot img {
    width: 100%;
}




