.woocommerce-product-gallery__wrapper {
    display: none;
}
a.woocommerce-product-gallery__trigger {
    display: none;
}
.woocommerce-product-gallery {
    display: none;
}

.summary.entry-summary {
    width: 100% !important;
}


/* Card shell */
.fh-grid-card {
    margin-top: 24px;
    padding: 16px 18px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

/* Header */
.fh-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.fh-grid-title {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #111827;
}

.fh-grid-subtitle {
    margin: 3px 0 0;
    font-size: 13px;
    color: #6b7280;
}

/* Table container */
.fh-grid-body {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

/* Table */
.fh-grid-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

/* Header row */
.fh-grid-table thead tr {
    background: #f9fafb;
}

.fh-grid-table th {
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap;
}

.fh-col-check,
.fh-col-select {
    width: 52px;
    text-align: center;
}

/* Body rows */
.fh-grid-table td {
    padding: 10px 12px;
    font-size: 13px;
    color: #111827;
    border-bottom: 1px solid #f3f4f6;
    background: #ffffff;
}

.fh-grid-table tbody tr:last-child td {
    border-bottom: none;
}

.fh-grid-table tbody tr:hover td {
    background: #f3f4ff;
}

/* Site name + type */
.fh-site-name {
    font-weight: 500;
}

.fh-site-type {
    font-size: 12px;
    color: #6b7280;
}

/* Authority number */
.fh-authority {
    font-variant-numeric: tabular-nums;
}

/* Notes */
.fh-notes-text {
    font-size: 12px;
    color: #6b7280;
}

/* Checkboxes */
.fh-grid-table input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0 auto;
    cursor: pointer;
}

/* Badges */
.fh-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
}

.fh-badge-primary {
    background: #e0ecff;
    color: #1d4ed8;
}

.fh-badge-success {
    background: #dcfce7;
    color: #15803d;
}

.fh-badge-warn {
    background: #fef3c7;
    color: #92400e;
}

.fh-badge-neutral {
    background: #e5e7eb;
    color: #374151;
}

/* Small screens: horizontal scroll instead of stacking */
@media (max-width: 768px) {
    .fh-grid-body {
        overflow-x: auto;
    }

    .fh-grid-table {
        min-width: 700px;
    }
}
