/* First-paint shell before the React bundle mounts. Keep in sync with checkout-v2.css .checkout-opening-*. */
html, body {
  margin: 0;
  min-height: 100%;
  background: #F5F5F7;
}
.co-open {
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: #1F2937;
  background: #F5F5F7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px;
  box-sizing: border-box;
}
.co-open-card {
  background: #FFFFFF;
  border-radius: 18px;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  max-width: 420px;
  width: 100%;
}
.co-open-head {
  background: #F9FAFB;
  border-bottom: 1px solid #F3F4F6;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #6B7280;
}
.co-open-body {
  padding: 28px 18px 22px;
  text-align: center;
}
.co-open-logo {
  height: 28px;
  width: auto;
  display: block;
  margin: 0 auto 20px;
}
.co-open-wordmark {
  display: none;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  margin: 0 auto 20px;
}
html.co-open--jirafix .co-open-logo { display: none; }
html.co-open--jirafix .co-open-wordmark { display: block; }
.co-open-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin: 0 0 6px;
}
.co-open-hint {
  font-size: 13px;
  color: #4B5563;
  line-height: 1.5;
  margin: 0 0 22px;
}
.co-open-spinner {
  width: 36px;
  height: 36px;
  margin: 0 auto 22px;
}
.co-open-spinner-ring {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid #E0E7FF;
  border-top-color: #6366F1;
  animation: co-open-spin 0.8s linear infinite;
}
@keyframes co-open-spin {
  to { transform: rotate(360deg); }
}
.co-open-skel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 14px;
}
.co-open-skel-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #F3F4F6;
  flex-shrink: 0;
}
.co-open-skel-info { flex: 1; min-width: 0; padding-top: 6px; }
.co-open-skel-line {
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(90deg, #F3F4F6 0%, #E5E7EB 50%, #F3F4F6 100%);
  background-size: 200% 100%;
  animation: co-open-shimmer 1.2s ease-in-out infinite;
}
.co-open-skel-line--name { width: 55%; margin-bottom: 8px; }
.co-open-skel-line--sub { width: 38%; height: 8px; }
.co-open-skel-line--amt { width: 64px; height: 16px; margin-top: 4px; }
@keyframes co-open-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.co-open-foot {
  text-align: center;
  padding: 16px 8px 0;
  font-size: 11px;
  color: #6B7280;
}
