/* Gas Tax Honesty Calculator — scoped under .ctf-gas-tax-calculator-root */
.ctf-gas-tax-calculator-root.is-awaiting-region .gtg-headline,
.ctf-gas-tax-calculator-root.is-awaiting-region .gtg-bd,
.ctf-gas-tax-calculator-root.is-awaiting-region .gtg-outrage,
.ctf-gas-tax-calculator-root.is-awaiting-region .gtg-actions,
.ctf-gas-tax-calculator-root.is-awaiting-region .gtg-note {
  display: none;
}

.ctf-gas-tax-calculator-root {
  --gtg-red: #d3222a;
  --gtg-red-dark: #a81820;
  --gtg-black: #141414;
  --gtg-grey: #6b6b6b;
  --gtg-line: #e4e4e4;
  --gtg-bg: #ffffff;
  --gtg-wash: #f6f6f6;
  color: var(--gtg-black);
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  width: 100%;
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

.ctf-gas-tax-calculator-root *,
.ctf-gas-tax-calculator-root *::before,
.ctf-gas-tax-calculator-root *::after {
  box-sizing: border-box;
}

.ctf-gas-tax-calculator-root .gtg-wrap {
  padding: 28px 20px 40px;
}

.ctf-gas-tax-calculator-root .gtg-logo {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--gtg-black);
}

.ctf-gas-tax-calculator-root .gtg-logo-img {
  display: block;
  max-width: 180px;
  width: 100%;
  height: auto;
}

.ctf-gas-tax-calculator-root .gtg-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 6px 0 4px;
  line-height: 1.05;
  color: var(--gtg-black);
}

.ctf-gas-tax-calculator-root .gtg-tag {
  color: var(--gtg-grey);
  font-size: 15px;
  margin: 0;
}

.ctf-gas-tax-calculator-root .gtg-controls {
  margin-top: 26px;
}

.ctf-gas-tax-calculator-root .gtg-lbl {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gtg-grey);
  margin-bottom: 8px;
  display: block;
}

.ctf-gas-tax-calculator-root .gtg-lbl--spaced {
  margin-top: 20px;
}

.ctf-gas-tax-calculator-root select.gtg-select {
  width: 100%;
  padding: 13px 14px;
  border: 2px solid var(--gtg-black);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  background: #fff;
  color: var(--gtg-black);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23d3222a' stroke-width='3'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.ctf-gas-tax-calculator-root select.gtg-select:focus {
  outline: none;
  border-color: var(--gtg-red);
}

.ctf-gas-tax-calculator-root .gtg-hint {
  font-size: 12.5px;
  color: var(--gtg-grey);
  margin-top: 8px;
  line-height: 1.4;
}

.ctf-gas-tax-calculator-root .gtg-fueltoggle {
  display: flex;
  border: 2px solid var(--gtg-black);
  border-radius: 8px;
  overflow: hidden;
}

.ctf-gas-tax-calculator-root .gtg-fueltoggle button {
  flex: 1;
  padding: 13px;
  border: none;
  background: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  color: var(--gtg-black);
  transition: 0.12s;
}

.ctf-gas-tax-calculator-root .gtg-fueltoggle button + button {
  border-left: 2px solid var(--gtg-black);
}

.ctf-gas-tax-calculator-root .gtg-fueltoggle button.active {
  background: var(--gtg-red);
  color: #fff;
}

.ctf-gas-tax-calculator-root .gtg-vehicles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.ctf-gas-tax-calculator-root .gtg-vehicles.five {
  grid-template-columns: repeat(6, 1fr);
}

.ctf-gas-tax-calculator-root .gtg-vehicles.five .gtg-veh:nth-child(-n + 2) {
  grid-column: span 3;
}

.ctf-gas-tax-calculator-root .gtg-vehicles.five .gtg-veh:nth-child(n + 3) {
  grid-column: span 2;
}

.ctf-gas-tax-calculator-root .gtg-veh {
  border: 2px solid var(--gtg-line);
  border-radius: 8px;
  padding: 12px 4px 9px;
  text-align: center;
  cursor: pointer;
  background: #fff;
  transition: 0.12s;
  user-select: none;
}

.ctf-gas-tax-calculator-root .gtg-veh:hover {
  border-color: var(--gtg-black);
}

.ctf-gas-tax-calculator-root .gtg-veh.active {
  border-color: var(--gtg-red);
  background: #fdecec;
}

.ctf-gas-tax-calculator-root .gtg-veh .gtg-veh-icon {
  width: 56px;
  height: 26px;
  object-fit: contain;
  display: block;
  margin: 0 auto 6px;
}

.ctf-gas-tax-calculator-root .gtg-veh .gtg-vn {
  font-weight: 700;
  font-size: 13px;
}

.ctf-gas-tax-calculator-root .gtg-veh .gtg-vt {
  font-size: 11px;
  color: var(--gtg-grey);
}

.ctf-gas-tax-calculator-root .gtg-headline {
  margin-top: 30px;
  padding: 24px;
  background: var(--gtg-black);
  color: #fff;
  border-radius: 12px;
}

.ctf-gas-tax-calculator-root .gtg-headline .gtg-top {
  font-size: 14px;
  color: #cfcfcf;
}

.ctf-gas-tax-calculator-root .gtg-headline .gtg-cost {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 2px 0 6px;
}

.ctf-gas-tax-calculator-root .gtg-headline .gtg-basis {
  font-size: 13px;
  color: #bdbdbd;
  margin-bottom: 16px;
}

.ctf-gas-tax-calculator-root .gtg-headline .gtg-basis b {
  color: #fff;
}

.ctf-gas-tax-calculator-root .gtg-split {
  display: flex;
  align-items: center;
  gap: 22px;
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 16px;
}

.ctf-gas-tax-calculator-root .gtg-pie {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  flex: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctf-gas-tax-calculator-root .gtg-pie .gtg-hole {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gtg-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ctf-gas-tax-calculator-root .gtg-pie .gtg-pv {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.ctf-gas-tax-calculator-root .gtg-pie .gtg-pv:after {
  content: "%";
  font-size: 15px;
  font-weight: 700;
}

.ctf-gas-tax-calculator-root .gtg-pie .gtg-pl {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff5a52;
  font-weight: 800;
  margin-top: 3px;
}

.ctf-gas-tax-calculator-root .gtg-splitinfo {
  flex: 1;
  min-width: 0;
}

.ctf-gas-tax-calculator-root .gtg-taxamt {
  font-size: 42px;
  font-weight: 800;
  color: #ff5a52;
  letter-spacing: -0.02em;
  line-height: 1;
}

.ctf-gas-tax-calculator-root .gtg-taxlbl {
  font-size: 14px;
  color: #e8e8e8;
  margin-top: 5px;
}

.ctf-gas-tax-calculator-root .gtg-bd {
  margin-top: 26px;
}

.ctf-gas-tax-calculator-root .gtg-block {
  margin-bottom: 22px;
}

.ctf-gas-tax-calculator-root .gtg-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.ctf-gas-tax-calculator-root .gtg-pill.hidden {
  background: var(--gtg-red);
  color: #fff;
}

.ctf-gas-tax-calculator-root .gtg-pill.visible {
  background: #eee;
  color: var(--gtg-black);
}

.ctf-gas-tax-calculator-root .gtg-pill.provincial {
  background: var(--gtg-black);
  color: #fff;
}

.ctf-gas-tax-calculator-root .gtg-pill.federal {
  background: var(--gtg-red);
  color: #fff;
}

.ctf-gas-tax-calculator-root .gtg-sub {
  font-size: 12px;
  color: var(--gtg-grey);
  margin-bottom: 10px;
}

.ctf-gas-tax-calculator-root .gtg-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--gtg-line);
  font-size: 15px;
}

.ctf-gas-tax-calculator-root .gtg-row .gtg-n {
  color: var(--gtg-black);
}

.ctf-gas-tax-calculator-root .gtg-row .gtg-rate {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: var(--gtg-grey);
}

.ctf-gas-tax-calculator-root .gtg-row .gtg-v {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.ctf-gas-tax-calculator-root .gtg-row--outrage {
  margin-top: 6px;
  padding: 12px 12px;
  border: 2px solid var(--gtg-red);
  border-radius: 8px;
  background: #fff1f1;
  border-bottom: 2px solid var(--gtg-red);
}

.ctf-gas-tax-calculator-root .gtg-row--outrage .gtg-n {
  color: var(--gtg-red-dark);
  font-weight: 700;
}

.ctf-gas-tax-calculator-root .gtg-row--outrage .gtg-v {
  color: var(--gtg-red);
  font-size: 17px;
  font-weight: 800;
}

.ctf-gas-tax-calculator-root .gtg-row--outrage .gtg-rate {
  color: var(--gtg-red);
}

.ctf-gas-tax-calculator-root .gtg-outrage-tag {
  display: inline-block;
  margin-right: 6px;
  padding: 1px 7px;
  border-radius: 999px;
  background: var(--gtg-red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}

.ctf-gas-tax-calculator-root .gtg-outrage {
  margin-top: 22px;
  padding: 18px 18px 16px;
  border: 3px solid var(--gtg-red);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff5f5 0%, #ffe8e8 100%);
  text-align: center;
}

.ctf-gas-tax-calculator-root .gtg-outrage-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gtg-red);
}

.ctf-gas-tax-calculator-root .gtg-outrage-amt {
  margin-top: 4px;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--gtg-red);
}

.ctf-gas-tax-calculator-root .gtg-outrage-copy {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--gtg-black);
}

.ctf-gas-tax-calculator-root .gtg-outrage-copy em {
  font-style: italic;
  color: var(--gtg-red-dark);
}

.ctf-gas-tax-calculator-root .gtg-outrage-copy strong {
  color: var(--gtg-red);
  font-weight: 800;
}

.ctf-gas-tax-calculator-root .gtg-subtot {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 2px;
  font-weight: 800;
  font-size: 15px;
}

.ctf-gas-tax-calculator-root .gtg-subtot .gtg-v {
  color: var(--gtg-red);
}

.ctf-gas-tax-calculator-root .gtg-actions {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.ctf-gas-tax-calculator-root .gtg-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 12px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.12s;
  text-decoration: none;
}

.ctf-gas-tax-calculator-root .gtg-btn svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.ctf-gas-tax-calculator-root .gtg-btn-red {
  background: var(--gtg-red);
  color: #fff;
}

.ctf-gas-tax-calculator-root .gtg-btn-red:hover {
  background: var(--gtg-red-dark);
  color: #fff;
}

.ctf-gas-tax-calculator-root .gtg-btn-black {
  background: var(--gtg-black);
  color: #fff;
}

.ctf-gas-tax-calculator-root .gtg-btn-black:hover {
  background: #000;
  color: #fff;
}

.ctf-gas-tax-calculator-root .gtg-note {
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--gtg-grey);
  border-top: 2px solid var(--gtg-black);
  padding-top: 14px;
}

.ctf-gas-tax-calculator-root .gtg-note-lead {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--gtg-black);
}

.ctf-gas-tax-calculator-root .gtg-sources {
  padding: 12px 14px;
  border: 1px solid var(--gtg-line);
  border-radius: 8px;
  background: var(--gtg-wash);
}

.ctf-gas-tax-calculator-root .gtg-sources-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gtg-black);
  margin-bottom: 8px;
}

.ctf-gas-tax-calculator-root .gtg-sources-list {
  margin: 0;
  padding: 0 0 0 1.1em;
  list-style: disc;
}

.ctf-gas-tax-calculator-root .gtg-sources-list li {
  margin: 0 0 6px;
  line-height: 1.45;
  color: var(--gtg-grey);
}

.ctf-gas-tax-calculator-root .gtg-sources-list li:last-child {
  margin-bottom: 0;
}

.ctf-gas-tax-calculator-root .gtg-sources-list a {
  color: var(--gtg-red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ctf-gas-tax-calculator-root .gtg-sources-list a:hover {
  color: var(--gtg-red-dark);
}

.ctf-gas-tax-calculator-root .gtg-note b {
  color: var(--gtg-black);
}

@media (max-width: 440px) {
  .ctf-gas-tax-calculator-root .gtg-split {
    flex-direction: column;
    text-align: center;
  }

  .ctf-gas-tax-calculator-root .gtg-logo-img {
    max-width: 140px;
  }

  .ctf-gas-tax-calculator-root .gtg-title {
    font-size: 26px;
  }
}

@media (max-width: 460px) {
  .ctf-gas-tax-calculator-root .gtg-actions {
    flex-direction: column;
  }
}
