.title-section {
    margin-bottom: 0 !important;
}

.products-container {
    min-width: 1200px;
    margin: 50px auto;
}

@media (max-width: 1366px) {
    .products-container {
        max-width: 1200px;
    }

    .products-search-icon {
        top: 30% !important;
    }
}

.products-page-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 24px;
    color: #2c3e50;
}

/* 搜索框样式 */
.products-search-container {
    max-width: 600px;
    margin-bottom: 10px;
    position: relative;
}

.products-search-input {
    min-width: 280px;
    padding: 8px 14px 8px 48px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.products-search-input:focus {
    outline: none;
    border-color: #009b4c;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.products-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.products-search-icon-cn {
    position: absolute;
    left: 16px;
    top: 30%;
    color: #999;
}

/* 产品列表样式 */
.products-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
    margin-top: 20px;
}

.products-product-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.products-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.products-product-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    padding: 24px;
}

.products-product-info {
    padding: 16px;
}

.products-product-title {
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

/* 分页样式 */
.products-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.products-pagination-btn {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: white;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.products-pagination-btn:hover:not(.active):not(:disabled) {
    border-color: #009b4c;
    color: #009b4c;
}

.products-pagination-btn.active {
    background-color: #009b4c;
    color: white;
    border-color: #009b4c;
}

.products-pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 无结果样式 */
.products-no-results {
    text-align: center;
    padding: 80px 0;
    color: #999;
}

.products-no-results i {
    font-size: 48px;
    margin-bottom: 16px;
    color: #ddd;
}

.products-search-wrap {
    display: flex;
    justify-content: space-between;
    /*border-bottom: 1px solid #eee;*/
    /*margin-bottom: 20px;*/
}

/* 产品分类导航条样式 */
.products-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /*margin-bottom: 20px;
    padding-bottom: 15px;*/
}

.products-category-btn {
    padding: 8px 16px;
    background-color: white;
    color: #666;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: #eceff1;
    text-underline-offset: 15px;
    border-width: 0;
    /*transition: all 0.3s;
    font-size: 14px;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.4);
    background: linear-gradient(to bottom, #e0e0e0, #c2c2c2);
    box-shadow: inset -1px -3px 8px rgb(0 0 0 / 15%), inset 0 -4px 8px rgba(255, 255, 255, 0.5), 0 4px 10px rgba(0, 0, 0, 0.1);*/
}

/*.products-category-btn:hover:not(.active) {
    border-color: #009b4c;
    color: #009b4c;
}*/

.products-category-btn:hover {
    border-color: #009b4c;
    color: #009b4c;
    text-decoration: underline;
    border-width: 0;
}

.products-category-btn.active {
    /*background-color: #009b4c;*/
    color: #009b4c;
    border-color: #009b4c;
    text-decoration-color: #009b4c;
    /*color: #009b4c;
    background: rgba(230, 230, 230, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: inset 2px 3px 12px rgba(0, 0, 0, 0.25), inset -7px -6px 12px rgba(255, 255, 255, 0.6), 0 4px 15px rgba(0, 0, 0, 0.1);*/
}

/* 响应式样式 */
/*@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }

    .page-title {
        font-size: 24px;
    }

    .product-image {
        height: 140px;
    }

    .header-content {
        flex-direction: column;
        gap: 12px;
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .pagination-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}*/
