/* GenesysTel Suite Form — reuses original form.css variables and class patterns */
/* All ghf- classes come from the already-loaded form.css                        */
/* This file only adds suite-specific overrides and new elements                 */

/* ── Internet plan dropdown row ─────────────────────────────────────── */
.gsf-plan-row {
  display: grid;
  grid-template-columns: 1fr 80px 110px 110px;
  gap: 0;
  align-items: center;
  padding: 9px 14px;
  border-bottom: 1px solid var(--ghf-border);
}
.gsf-plan-row:last-child { border-bottom: none; }
.gsf-plan-row:nth-child(even) { background: var(--ghf-light); }

.gsf-plan-select {
  border: 1px solid var(--ghf-border);
  border-radius: var(--ghf-radius-sm);
  padding: 7px 10px;
  font-size: 13px;
  font-family: var(--ghf-font);
  color: var(--ghf-text);
  background: #fff;
  width: 100%;
  transition: border-color 0.15s;
}
.gsf-plan-select:focus {
  outline: none;
  border-color: var(--ghf-primary);
  box-shadow: 0 0 0 3px rgba(0,174,45,0.12);
}

/* ── Included calls info strip ───────────────────────────────────────── */
.gsf-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  padding: 7px 14px;
  background: var(--ghf-light);
  border-bottom: 1px solid var(--ghf-border);
  font-size: 11.5px;
  color: var(--ghf-muted);
}
.gsf-included { color: var(--ghf-primary); font-weight: 600; }
.gsf-payg     { color: #e65c00; font-weight: 600; }
.gsf-svc-hint {
  font-size: 11px;
  color: var(--ghf-muted);
  display: block;
  margin-top: 2px;
}

/* ── 3-card MRR summary ──────────────────────────────────────────────── */
.gsf-mrr-summary-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.gsf-mrr-install {
  background: var(--ghf-light2);
  border: 1px solid var(--ghf-border);
  border-radius: var(--ghf-radius-sm);
  padding: 16px 18px;
}
.gsf-mrr-install .ghf-mrr-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ghf-muted); margin-bottom: 4px; }
.gsf-mrr-install .ghf-mrr-value { font-size: 26px; font-weight: 700; color: var(--ghf-dark); line-height: 1.1; }
.gsf-mrr-install .ghf-mrr-sub   { font-size: 11px; color: var(--ghf-muted); margin-top: 3px; }

/* ── TBA badge ───────────────────────────────────────────────────────── */
.gsf-tba {
  font-size: 11px;
  color: #aaa;
  font-style: italic;
}

/* ── Hardware note ───────────────────────────────────────────────────── */
.gsf-hw-note {
  font-size: 11px;
  color: var(--ghf-muted);
  display: block;
  margin-top: 2px;
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .gsf-plan-row { grid-template-columns: 1fr 64px 85px; }
  .gsf-mrr-summary-3 { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .gsf-plan-row { grid-template-columns: 1fr 64px; }
}
