/* TNC Counter Animation */
.tnc-counter-wrap { padding: 20px 12px; }

.tnc-counter-number {
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    font-variant-numeric: tabular-nums;
}

.tnc-counter-prefix,
.tnc-counter-suffix { font-size: 0.6em; font-weight: 700; }

.tnc-counter-label {
    font-size: 15px;
    margin-top: 10px;
    font-weight: 500;
}

/* ── Price Compare ── */
.tnc-pc-wrap { padding: 10px 0; }
.tnc-pc-title {
    font-size: 18px;
    font-weight: 700;
    color: #0d3d3a;
    margin-bottom: 24px;
}
.tnc-pc-row {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    background: #f0f0f0;
    border-radius: 0 30px 30px 0;
    overflow: hidden;
}
.tnc-pc-fill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 50px;
    border-radius: 0 30px 30px 0;
    color: #fff;
    /* animation width khi scroll tới */
    transition: width 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.tnc-pc-fill.tnc-pc-hidden { width: 0 !important; }
.tnc-pc-label { font-size: 13px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tnc-pc-price { font-size: 14px; font-weight: 700; white-space: nowrap; margin-left: 12px; }
.tnc-pc-saving {
    color: #999;
    font-size: 13px;
    font-weight: 700;
    padding: 0 20px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.tnc-pc-note {
    font-size: 12px;
    color: #999;
    font-style: italic;
    line-height: 1.6;
    margin-top: 16px;
}