



.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
    background: linear-gradient(135deg, #fff9e6 0%, #ffe4b5 100%);
    border-radius: 28px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.15), inset 0 1px 3px rgba(255, 255, 255, 0.8);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #ffd166;
}
.recommend-item:hover {
    transform: translateY(-10px) scale(1.03) rotate(1deg);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4), inset 0 1px 3px rgba(255, 255, 255, 0.8);
    border-color: #ff8c00;
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 22px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.recommend-item:hover img {
    transform: scale(1.05) rotate(1deg);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 12px;
    /* align-items:flex-start; */
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: #ff8c00;
    font-size: 1rem;
    margin: 0px 10px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(255, 140, 0, 0.2);
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.recommend-item:hover .recommend-item-info h3 {
    color: #ff7f00;
    text-shadow: 3px 3px 6px rgba(255, 140, 0, 0.3);
}
.recommend-item-info p {
    display: flex;
    color: #5A5A5A;
    font-size: 0.9rem;
    margin: 10px 10px;
    line-height: 1.5em;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.recommend-item:hover .recommend-item-info p {
    color: #333;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 30px;
    background: linear-gradient(135deg, #ffd166 0%, #ff8c00 100%);
    border-radius: 28px;
    right: 0px;
    box-shadow: 0 3px 10px rgba(255, 140, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}

.recommend-item-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, #ffda79 0%, #ff9f43 100%);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.hgudb-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Two columns layout */
    gap: 15px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px;
}

.hgudb-recommend-content img {
    width: 100%;
}

.hgudb-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Two columns layout */
    gap: 12px;
    /* Gap between items */
    /* padding: 0.5rem 1rem; */
    margin: 10px 20px;
}

.hgudb-recommend-content-hot img {
    width: 100%;
}




