/* Gorilla Public Payments – Checkout Styles */

.gpp-wrap {
  max-width: 480px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a1a;
}

/* Plan selector */
.gpp-plan-selector { margin-bottom: 1.5rem; }
.gpp-field-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  margin-bottom: 6px;
}
.gpp-plan-selector select,
.gpp-field input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  color: #1a1a1a;
  background: #fff;
  outline: none;
  transition: border-color .15s;
  box-sizing: border-box;
}
.gpp-plan-selector select:focus,
.gpp-field input[type="email"]:focus { border-color: #3b82f6; }

/* Summary card */
.gpp-summary-card {
  background: #f8f9fa;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.gpp-plan-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111;
}
.gpp-plan-desc {
  font-size: 13px;
  color: #666;
  margin: 0 0 1rem;
}
.gpp-price-rows { border-top: 1px solid #e0e0e0; }
.gpp-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  color: #444;
}
.gpp-price-row:last-child { border-bottom: none; }
.gpp-due-today {
  font-weight: 600;
  font-size: 15px;
  color: #111;
}
.gpp-due-today em {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: #666;
  margin-left: 6px;
}
.gpp-billing-note {
  font-size: 12px;
  color: #777;
  margin: 12px 0 0;
  line-height: 1.5;
}

/* Form section */
.gpp-field { margin-bottom: 1rem; }

/* Method tabs */
.gpp-method-tabs {
  display: flex;
  gap: 8px;
  margin: 1.25rem 0;
}
.gpp-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: all .15s;
}
.gpp-tab.active {
  border-color: #3b82f6;
  color: #1d4ed8;
  background: #eff6ff;
}
.gpp-tab:hover:not(.active) { border-color: #bbb; }

/* Panels */
.gpp-panel-note {
  font-size: 13px;
  color: #666;
  margin: 0 0 12px;
  line-height: 1.5;
}

/* Buttons */
.gpp-pay-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s, transform .1s;
}
.gpp-pay-btn:hover { opacity: 0.88; }
.gpp-pay-btn:active { transform: scale(0.98); }
.gpp-pay-btn:disabled { opacity: 0.55; cursor: not-allowed; }

.gpp-stripe-btn { background: #635BFF; color: #fff; }
.gpp-paypal-btn { background: #FFC439; color: #111; }

/* Error */
.gpp-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #b91c1c;
  margin-top: 10px;
}

/* Secure note */
.gpp-secure-note {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #999;
  justify-content: center;
  margin-top: 14px;
}
