/* WC Silent Stripe — Checkout Styles */

#wcss-payment-wrapper {
  padding: 4px 0;
}

/* ── Payment Request Button (Apple/Google Pay) ── */
#wcss-payment-request-btn {
  margin-bottom: 12px;
  min-height: 48px;
}

#wcss-pr-separator {
  display: none;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #9ca3af;
  font-size: 13px;
}

#wcss-pr-separator::before,
#wcss-pr-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

/* ── Card Element container ── */
#wcss-card-element {
  background:    #ffffff;
  border:        1.5px solid #d1d5db;
  border-radius: 8px;
  padding:       12px 14px;
  transition:    border-color 0.15s ease, box-shadow 0.15s ease;
  min-height:    46px;
}

#wcss-card-element.StripeElement--focus {
  border-color: #111827;
  box-shadow:   0 0 0 3px rgba(17, 24, 39, 0.08);
  outline:      none;
}

#wcss-card-element.StripeElement--invalid {
  border-color: #ef4444;
  box-shadow:   0 0 0 3px rgba(239, 68, 68, 0.08);
}

/* ── Error message ── */
#wcss-card-errors {
  color:      #ef4444;
  font-size:  13px;
  min-height: 20px;
  margin-top: 8px;
  line-height: 1.4;
}

/* ── Place Order button while processing ── */
#place_order[disabled] {
  opacity: 0.65;
  cursor:  not-allowed;
}
