/* GTON product identity */
.gton-product-model {
    margin: .35rem 0 .75rem;
    font-size: .95em;
    opacity: .88;
}

.gton-identity-separator {
    display: inline-block;
    padding: 0 .4em;
    opacity: .5;
}

/* Retail-only Utenzo elements are intentionally hidden for the GTON B2B catalog.
   The PHP integration also removes the relevant hooks; these rules are a fallback. */
.woocommerce-loop-product__sold,
.bt-product-meta .vendor {
    display: none !important;
}

.gton-product-meta {
    margin-top: 1rem;
}

/* B2B product actions */
.gton-b2b-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 8px;
}

.gton-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid currentColor;
    border-radius: 4px;
    text-decoration: none !important;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
}


.gton-action-button.is-disabled {
    cursor: not-allowed;
    opacity: .48;
}

/* Technical specifications */
.gton-technical-specifications {
    width: 100%;
}

.gton-spec-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.gton-spec-table {
    width: 100%;
    border-collapse: collapse;
}

.gton-spec-table th,
.gton-spec-table td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    text-align: left;
    vertical-align: top;
}

.gton-spec-table th {
    width: 34%;
    font-weight: 600;
}

@media (max-width: 640px) {
    .gton-b2b-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .gton-action-button {
        width: 100%;
    }

    .gton-spec-table th {
        width: 42%;
    }
}
