/* ============================================================
   nu-pricing-table — RTO/Total-price matrix module
   Layout: image+CTA on the left, dropdown + table on the right.
   Stacks single-column under 880px.
   ============================================================ */
.nu-pricing-table {
    margin: 0 auto;
    max-width: 1280px;
    padding: 56px 24px;
}
.nu-pricing-table__head {
    margin: 0 auto 40px;
    text-align: center;
}
.nu-pricing-table__title {
    color: #1a1a1a;
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 700;
    margin: 0 0 14px;
}
.nu-pricing-table__rule {
    background: #1a1a1a;
    display: inline-block;
    height: 2px;
    width: 48px;
}
.nu-pricing-table__grid {
    display: grid;
    gap: 40px;
    grid-template-columns: minmax(260px, 1fr) 2fr;
    align-items: start;
}
.nu-pricing-table__media {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.nu-pricing-table__media img {
    border-radius: 6px;
    display: block;
    max-width: 100%;
    height: auto;
}
.nu-pricing-table__cta {
    align-self: flex-start;
    background: var(--primary-color, #8b1f1f);
    color: #fff !important;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    padding: 14px 28px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.18s ease, transform 0.18s ease;
}
.nu-pricing-table__cta:hover {
    background: #14110f;
    color: #fff !important;
    transform: translateY(-1px);
}
.nu-pricing-table__termbar {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}
.nu-pricing-table__termlabel {
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
}
.nu-pricing-table__termselect {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 4px;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 32px 8px 14px;
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
    background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}
.nu-pricing-table__table {
    border-collapse: separate;
    border-spacing: 14px 0;
    margin: 0 -14px;
    width: calc(100% + 28px);
}
.nu-pricing-table__table thead th {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    color: rgba(0, 0, 0, 0.55);
    font-size: 16px;
    font-weight: 500;
    padding: 18px 18px;
    text-align: center;
}
.nu-pricing-table__table tbody tr:nth-child(odd) td {
    background: #ffffff;
}
.nu-pricing-table__table tbody tr:nth-child(even) td {
    background: #f4f1ec;
}
.nu-pricing-table__table tbody td {
    color: rgba(0, 0, 0, 0.75);
    font-size: 15px;
    padding: 18px 14px;
    text-align: center;
}
.nu-pricing-table__size {
    font-weight: 500;
}
.nu-pricing-table__cell {
    font-weight: 700;
}
.nu-pricing-table__val { white-space: nowrap; }
.nu-pricing-table__disclaimer {
    color: rgba(0, 0, 0, 0.55);
    font-size: 13px;
    line-height: 1.6;
    margin: 28px auto 0;
    max-width: 760px;
    text-align: center;
}
.nu-pricing-table__empty {
    background: #faf7f1;
    border: 1px dashed rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    color: rgba(0, 0, 0, 0.55);
    margin: 0;
    padding: 32px 24px;
    text-align: center;
}
@media (max-width: 880px) {
    .nu-pricing-table__grid { grid-template-columns: 1fr; }
    .nu-pricing-table__media { flex-direction: row; align-items: center; }
    .nu-pricing-table__media img { width: 50%; }
    .nu-pricing-table__table thead th,
    .nu-pricing-table__table tbody td { padding: 10px 12px; font-size: 14px; }
}
