/* 商品分类页布局 */

.cat-products-main {
    margin-top: var(--site-nav-height, 50px);
    width: 100%;
    box-sizing: border-box;
}

/* 商品网格 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    align-items: stretch;
    align-content: start;
    margin: 20px auto 24px;
    width: 1200px;
    box-sizing: border-box;
}

.product-grid .product-link {
    width: 100%;
    min-width: 0;
    display: flex;
    text-decoration: none;
}

.product-grid .product-grid-state {
    grid-column: 1 / -1;
}

.product-grid-state {
    width: 100%;
    text-align: center;
    padding: 32px 16px;
    color: #64748b;
    font-size: 14px;
    box-sizing: border-box;
}

.product-grid-state--error {
    color: #b45309;
}

.product-grid-retry {
    margin-top: 12px;
    padding: 8px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background: #fff;
    color: #334155;
    cursor: pointer;
}

.product-grid-retry:hover {
    border-color: #94a3b8;
    background: #f8fafc;
}

@media (max-width: 768px) {
    .cat-products-main {
        width: 100%;
        padding: 0 5px;
        margin-top: var(--site-nav-height, 50px);
        box-sizing: border-box;
    }

    .cat-products-main > * {
        max-width: 100%;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
        padding: 0 15px;
        margin: 16px auto 20px;
        box-sizing: border-box;
    }

    .product-grid .product-link {
        width: 100%;
    }
}
