/* 热门礼物样式 */
.gift-item.hot {
    position: relative;
    background-color: #fff8f0;
    border: 1px solid #ffd591;
}

.gift-item.hot::before {
    content: '热门';
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff6b35;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    z-index: 1;
}