/* 推荐入口样式 */
.sky-cart-recommend-section {
    margin: 15px 0;
    padding: 0 15px;
}

.sky-cart-recommend-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    border-left: 3px solid transparent;
}

.sky-cart-recommend-item:hover {
    background-color: #f5f5f5;
    border-left-color: #007bff;
    transform: translateX(2px);
}

.recommend-icon {
    margin-right: 12px;
    color: #666;
    transition: all 0.3s ease;
}

.recommend-content {
    flex: 1;
}

.recommend-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
    font-family: 'Source Han Sans', sans-serif;
}

.recommend-subtitle {
    font-size: 12px;
    color: #999;
    font-family: 'Source Han Sans', sans-serif;
}

.hot-tag {
    background: #ff4757;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: bold;
}

/* 菜单提示信息样式 */
.sky-cart-menu-tip {
    margin: 15px 0;
    padding: 0 15px;
}

.tip-content {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    font-size: 12px;
    color: #856404;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tip-content:hover {
    background: linear-gradient(135deg, #fff3cd, #fdcb6e);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.tip-icon {
    margin-right: 8px;
    font-size: 14px;
    animation: pulse 2s infinite;
}

.tip-text {
    font-family: 'Source Han Sans', sans-serif;
    line-height: 1.4;
    flex: 1;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}