.tc-wrap {
    max-width: 1400px;
    margin: 0 auto;
    font-family: inherit;
    color: inherit;
}

.tc-header {
    margin-bottom: 24px;
}

.tc-header h2 {
    margin-bottom: 6px;
}

.tc-intro {
    margin: 0;
    opacity: .8;
}

.tc-controls,
.tc-product-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 16px;
    align-items: end;
    margin-bottom: 20px;
}

.tc-product-controls {
    grid-template-columns: minmax(280px, 2fr) minmax(220px, 1fr) auto;
}

.tc-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tc-field label {
    font-weight: 600;
}

.tc-field select,
.tc-field input {
    width: 100%;
    min-height: 44px;
    padding: 8px 10px;
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    background: #fff;
    font: inherit;
}

.tc-store-info {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 18px;
    margin: 0 0 20px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background: #fafafa;
}

.tc-store-info > div:first-child strong {
    display: block;
    margin-bottom: 3px;
    font-size: 1.08em;
}

.tc-updated {
    white-space: nowrap;
    text-align: right;
}

.tc-actions {
    display: flex;
    align-items: end;
}

.tc-button,
.tc-page-button {
    min-height: 44px;
    padding: 9px 16px;
    border: 1px solid #222;
    border-radius: 6px;
    background: #222;
    color: #fff;
    cursor: pointer;
    font: inherit;
}

.tc-page-button:disabled {
    opacity: .4;
    cursor: default;
}

.tc-status {
    padding: 18px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background: #fafafa;
}

.tc-status.is-error {
    border-color: #d9a1a1;
}

.tc-results-meta {
    display: flex;
    justify-content: flex-end;
    margin: 0 0 8px;
    font-size: .95em;
    opacity: .75;
}

.tc-table-scroll {
    overflow-x: auto;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
}

.tc-table {
    width: 100%;
    min-width: 1080px;
    border-collapse: collapse;
    margin: 0;
    background: #fff;
}

.tc-table th,
.tc-table td {
    padding: 11px 10px;
    border-bottom: 1px solid #ededed;
    text-align: left;
    vertical-align: top;
}

.tc-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #f5f5f5;
    font-size: .92em;
}

.tc-table tr:last-child td {
    border-bottom: 0;
}

.tc-price,
.tc-nowrap {
    white-space: nowrap;
}

.tc-sale {
    font-weight: 700;
}

.tc-mobile-category {
    display: none;
    margin-top: 3px;
    font-size: .82em;
    opacity: .65;
}

.tc-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}

@media (max-width: 760px) {
    .tc-controls,
    .tc-product-controls {
        grid-template-columns: 1fr;
    }

    .tc-store-info {
        flex-direction: column;
    }

    .tc-updated {
        text-align: left;
        white-space: normal;
    }

    .tc-actions,
    .tc-actions .tc-button {
        width: 100%;
    }

    .tc-table-scroll {
        overflow: visible;
        border: 0;
    }

    .tc-table {
        min-width: 0;
        background: transparent;
    }

    .tc-table thead {
        display: none;
    }

    .tc-table,
    .tc-table tbody,
    .tc-table tr,
    .tc-table td {
        display: block;
        width: 100%;
    }

    .tc-table tr {
        margin-bottom: 12px;
        padding: 10px 12px;
        border: 1px solid #e1e1e1;
        border-radius: 8px;
        background: #fff;
    }

    .tc-table td {
        display: grid;
        grid-template-columns: 42% 58%;
        gap: 8px;
        padding: 6px 0;
        border: 0;
        white-space: normal;
    }

    .tc-table td::before {
        content: attr(data-label);
        font-weight: 600;
    }

    .tc-mobile-category {
        display: block;
    }

    .tc-pagination {
        flex-wrap: wrap;
    }
}
