.recommend p {
    font-size: 14px;
}

.category {
    padding: 40px 0;
}

.separator {
    display: block;
    width: 60px;
    height: 5px;
    margin: 15px auto 15px;
    background-color: #cccccc;
    position: relative;
    border: 1px solid #cccccc;
}

.separator:after {
    width: 30px;
    height: 5px;
    background: #333333;
    position: absolute;
    top: -1px;
    left: -1px;
    content: "";
}

.category-menus li {
    display: inline-block;
    margin: 4px;
}

.goods-buy {
    line-height: 40px;
    font-size: 13px;
}


.goods-introduction-cate {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.buy-form label {
    font-size: 16px;
}

/* 商品卡片整体可点击 + 悬停效果 */
.goods-card {
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.goods-card:hover {
    transform: translateY(-4px);
    /* 柔和的环绕高亮效果，而不是实心边框 */
    box-shadow:
        0 0 0 2px rgba(13, 110, 253, 0.16),
        0 10px 20px rgba(0, 0, 0, 0.12);
}

/* unicorn 主题背景使用与 luna 主题相同的背景图 */
body {
    background: #f5f7fb url("") no-repeat center top;
    background-size: cover;
}

.main-container {
    background: transparent;
}