/* Container */
.pct-table {
    margin: 2rem 0;
    font-family: inherit;
    color: #111;
}

/* HEADER: two product columns */
.pct-header {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 1.5rem;
}

.pct-header-column {
    flex: 1 1 0;
    text-align: center;
}

.pct-header-image img {
    max-width: 220px;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
    object-fit: contain;
}

.pct-header-title {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.pct-header-select select.pct-product-select {
    width: 100%;
    max-width: 260px;
    padding: 0.45rem 0.75rem;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 1px solid #d0d0d0;
    background: #fafafa;
}

/* SPECS: Apple-like stacked sections */
.pct-specs {
    border-top: 1px solid #e2e2e2;
}

.pct-spec-group {
    padding: 1.25rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.pct-spec-label {
    margin: 0 0 0.6rem;
    font-size: 0.98rem;
    font-weight: 600;
}

.pct-spec-values {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    font-size: 0.95rem;
}

.pct-spec-value {
    flex: 1 1 0;
    line-height: 1.5;
}

/* subtle separator for each value on larger screens */
.pct-spec-value:not(:last-child) {
    border-right: 1px solid #f0f0f0;
    padding-right: 1.5rem;
}

/* MOBILE: stack values */
@media (max-width: 768px) {
    .pct-header {
        flex-direction: column;
        align-items: stretch;
    }

    .pct-header-column {
        text-align: center;
    }

    .pct-spec-group {
        padding: 1rem 0;
    }

    .pct-spec-values {
        flex-direction: column;
        gap: 0.25rem;
    }

    .pct-spec-value {
        border-right: none;
        padding-right: 0;
    }
}
