/* BurgerParity — per-country pricing pages (uses the design tokens from app.css) */

/* ---- Country directory grid --------------------------------------------- */
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
  margin-top: clamp(24px, 4vw, 38px);
}
.country-card {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  text-decoration: none;
  color: var(--char);
  background: var(--paper);
  border: 2.5px solid var(--char);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.country-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow);
  background: var(--cheese);
}
.cc-flag {
  font-size: 22px;
}
.cc-name {
  font-weight: 700;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cc-cur {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--char-soft);
}

/* ---- Country page: examples table --------------------------------------- */
.pricing-table-wrap {
  margin-top: clamp(22px, 3vw, 32px);
  max-width: 720px;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.pricing-table thead th {
  background: var(--char);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-align: left;
  padding: 12px 16px;
}
.pricing-table th.num {
  text-align: right;
}
.pricing-table td {
  padding: 14px 16px;
  border-top: 1.5px solid #e8dabb;
  font-variant-numeric: tabular-nums;
}
.pricing-table td.num {
  text-align: right;
}
.pricing-table td.base {
  font-family: var(--font-display);
  font-weight: 800;
}
.pricing-table b {
  font-family: var(--font-display);
  font-size: 17px;
}
.off {
  display: inline-block;
  margin-left: 6px;
  font-size: 12px;
  font-weight: 800;
}
.off.pos {
  color: var(--lettuce);
}
.off.neg {
  color: var(--ketchup);
}
.pricing-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--char-soft);
}
.pricing-note a {
  color: var(--ketchup);
  font-weight: 700;
}

/* ---- Other-countries chips ---------------------------------------------- */
.other-countries {
  margin-top: clamp(40px, 6vw, 60px);
}
.country-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.country-chip {
  padding: 9px 14px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  color: var(--char);
  background: var(--paper);
  border: 2.5px solid var(--char);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s ease, background 0.12s ease;
}
.country-chip:hover {
  background: var(--cheese);
  transform: translateY(-2px);
}
