.gitc-wcpt-wrap {
    width: 100%;
    margin: 24px 0;
    font-size: 15px;
}

.gitc-wcpt-heading-row {
    margin-bottom: 16px;
}

.gitc-wcpt-heading {
    margin: 0;
    font-size: 28px;
    line-height: 1.25;
}

.gitc-wcpt-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: end;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.gitc-wcpt-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 220px;
    flex: 1 1 220px;
}

.gitc-wcpt-field label {
    font-weight: 600;
    color: #111827;
}

.gitc-wcpt-field input,
.gitc-wcpt-field select {
    height: 42px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 0 12px;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}

.gitc-wcpt-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gitc-wcpt-actions button,
.gitc-wcpt-reset {
    height: 42px;
    border-radius: 10px;
    padding: 0 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gitc-wcpt-actions button {
    border: none;
    background: #4c2ba8;
    color: #fff;
    cursor: pointer;
}

.gitc-wcpt-reset {
    border: 1px solid #d1d5db;
    color: #111827;
    background: #fff;
}

.gitc-wcpt-table-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.gitc-wcpt-table {
    width: 100%;
    border-collapse: collapse;
}

.gitc-wcpt-table thead th {
    background: #4c2ba8;
    color: #fff;
    text-align: left;
    padding: 14px 16px;
    font-size: 15px;
}

.gitc-wcpt-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #ede9fe;
    vertical-align: middle;
}

.gitc-wcpt-table tbody tr:nth-child(odd) {
    background: #f4efff;
}

.gitc-wcpt-table tbody tr:nth-child(even) {
    background: #fbfaff;
}

.gitc-wcpt-table tbody tr:hover {
    background: #efe8ff;
}

.gitc-wcpt-table a {
    color: #5b35c9;
    text-decoration: none;
    font-weight: 500;
}

.gitc-wcpt-table a:hover {
    text-decoration: underline;
}

.gitc-wcpt-updated-col {
    width: 90px;
    text-align: center;
}

.gitc-wcpt-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #dcfce7;
    color: #15803d;
    font-size: 16px;
    font-weight: 700;
}

.gitc-wcpt-text-status {
    display: inline-block;
    background: #dcfce7;
    color: #15803d;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.gitc-wcpt-empty {
    text-align: center;
    padding: 24px 16px !important;
    color: #6b7280;
}

.gitc-wcpt-footer {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.gitc-wcpt-counts {
    color: #6b7280;
    font-size: 14px;
}

.gitc-wcpt-pagination {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.gitc-wcpt-pagination .page-numbers {
    min-width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    padding: 0 10px;
}

.gitc-wcpt-pagination .page-numbers.current,
.gitc-wcpt-pagination a.page-numbers:hover {
    background: #4c2ba8;
    border-color: #4c2ba8;
    color: #fff;
}

.gitc-wcpt-notice {
    padding: 14px 16px;
    border-radius: 12px;
    background: #fff7ed;
    border: 1px solid #fdba74;
    color: #9a3412;
}

@media (max-width: 767px) {
    .gitc-wcpt-table,
    .gitc-wcpt-table thead,
    .gitc-wcpt-table tbody,
    .gitc-wcpt-table th,
    .gitc-wcpt-table td,
    .gitc-wcpt-table tr {
        display: block;
        width: 100%;
    }

    .gitc-wcpt-table thead {
        display: none;
    }

    .gitc-wcpt-table tbody tr {
        padding: 8px 0;
        border-bottom: 1px solid #ede9fe;
    }

    .gitc-wcpt-table tbody td {
        padding: 10px 14px;
        border: none;
        text-align: left;
    }

    .gitc-wcpt-table tbody td::before {
        content: attr(data-label);
        display: block;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: #6b7280;
        margin-bottom: 4px;
        font-weight: 700;
    }

    .gitc-wcpt-updated-col {
        width: auto;
        text-align: left;
    }
}

.gitc-wcpt-product-slug {
    margin-top: 4px;
    font-size: 13px;
    color: #6b7280;
    word-break: break-word;
}

.gitc-wcpt-hide-slug .gitc-wcpt-product-slug {
    display: none !important;
}

.gitc-wcpt-show-slug .gitc-wcpt-product-slug {
    display: block;
}
