:root {
  /* Colors - Warm, sophisticated palette */
  --surface: #faf8f5;
  --surface-secondary: #f3ede5;
  --text-primary: #2a2520;
  --text-secondary: #6b6359;
  --text-muted: #8b8278;
  --accent: #a67c52;
  --accent-hover: #8b6a47;
  --accent-light: #d4c4b0;
  --line: #d9d0c3;
  --line-soft: #ebe4d7;
  --error: #b85c5c;
  --success: #6b8b5c;

  /* Typography */
  --font-display: "Lora", serif;
  --font-body: "Inter", sans-serif;

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2rem;
  --sp-xl: 3rem;
  --sp-2xl: 4rem;

  /* Radius */
  --radius: 6px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(42, 37, 32, 0.04);
  --shadow-md: 0 4px 6px rgba(42, 37, 32, 0.07);
  --shadow-lg: 0 10px 15px rgba(42, 37, 32, 0.1);

  /* Z-index */
  --z-header: 100;
  --z-overlay: 1000;
}

#checkout-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(42, 37, 32, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-overlay);
}

#checkout-frame {
  width: 90%;
  max-width: 500px;
  height: 90vh;
  max-height: 700px;
  border: none;
  border-radius: var(--radius-lg);
}

@media (max-width: 640px) {
  #checkout-frame {
    width: 100%;
    height: 100vh;
    max-height: none;
    border-radius: 0;
  }
}
