/* Trade-in purity table */
.tgp-trade-in-table {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 480px;
}
.tgp-trade-in-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #eee;
    padding: 12px 18px;
}
.tgp-purity-label {
    font-weight: 600;
}
.tgp-purity-rate {
    color: #1a5fb4;
    font-weight: 600;
}
.tgp-purity-rate .tgp-unit {
    color: #555;
    font-weight: 400;
    font-size: 0.85em;
}

/* Bar design grid */
.tgp-bar-design-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 24px;
}
.tgp-bar-design-card {
    text-align: center;
}
.tgp-bar-design-card img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}
.tgp-bar-design-name {
    margin-top: 8px;
    color: #1a5fb4;
    font-size: 0.9em;
}
.tgp-bar-design-price {
    color: #222;
    font-weight: 600;
}

.tgp-price-unavailable {
    color: #a94442;
    font-style: italic;
}
