/* --- Petsy Gateway (Desktop 68) --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  color: rgba(0, 0, 0, 1);
}

.petsy-gateway {
  margin: 0;
  min-height: 100vh;
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: rgba(250, 246, 253, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;

  @media (min-width: 480px) {
    padding: 1.5rem 1.5rem 60px 1.5rem;
  }
}

.petsy-screen {
  width: 100%;
  max-width: 520px;
}

.petsy-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.petsy-logo-img {
  display: block;
  width: 100%;
  max-width: 232px;
  height: auto;
  margin: 0 auto;
}

/* Instruction */
.petsy-instruction {
  font-size: 1rem;
  line-height: 1.5;
}

/* Consent box */
.petsy-consent-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 20px 24px 24px;
  text-align: left;
  max-width: 360px;
  width: 100%;
  font-size: 14px;
}

.petsy-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* Custom checkbox (same pattern as index) */
.petsy-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 1px solid #ccc;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 2px;
}
.petsy-checkbox:checked {
  background-color: #5334da;
  border-color: #5334da;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12l5 5 10-11'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.petsy-consent-label {
  font-size: 14px;

  line-height: 1.5;
  cursor: pointer;
}

.petsy-powered {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 10px;
  margin-top: 12px;
  padding-left: 48px;
}

.petsy-powered-text {
  font-weight: 400;
}

.petsy-powered-logo {
  display: inline-block;
  height: 12px;
  width: auto;
}

/* Privacy disclaimer */
.petsy-privacy {
  margin: 0;
  font-size: 9px;
  line-height: 1.5;
}

.petsy-privacy-link {
  text-decoration: underline;
  color: rgba(0, 0, 0, 1);
}

.petsy-privacy-link:hover {
  color: #5a3d8a;
}

@media (min-width: 480px) {
  .petsy-logo-img {
    max-width: 233px;
  }

  .petsy-consent-box {
    padding: 1.75rem 1.5rem;
  }
}
