.gtg-booking__embedded-payment {
  display: grid;
  gap: 1rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.gtg-booking__teya-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem .8rem;
}

.gtg-booking__teya-grid label {
  min-width: 0;
  display: grid;
  gap: .4rem;
  color: var(--gtg-booking-ink);
  font-size: .9rem;
  font-weight: 750;
}

.gtg-booking__teya-holder,
.gtg-booking__teya-grid--with-holder label:nth-of-type(2) {
  grid-column: 1 / -1;
}

.gtg-booking__teya-holder input {
  width: 100%;
  min-height: 52px;
  padding: .7rem .68rem;
  border: 1px solid #d6c8bd;
  border-radius: 9px;
  background: #fff;
  color: var(--gtg-booking-ink);
  font: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.gtg-booking__teya-field {
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gtg-booking__teya-holder input:focus {
  outline: none;
  border-color: var(--gtg-booking-accent);
  box-shadow: 0 0 0 3px rgba(182, 102, 73, .16);
}

.gtg-booking__teya-field:focus-within {
  border: 0;
  box-shadow: none;
}

.gtg-booking__embedded-payment .gtg-booking__actions {
  margin-top: .2rem;
}

.gtg-booking__hold-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem 1rem;
  flex-wrap: wrap;
  margin-top: .2rem;
  padding-top: .85rem;
  border-top: 1px solid #e7ddd5;
}

.gtg-booking__hold-timer {
  margin: 0;
  color: var(--gtg-booking-muted);
  font-size: .92rem;
}

.gtg-booking__hold-timer strong {
  display: inline-block;
  min-width: 3.25rem;
  color: var(--gtg-booking-ink);
  font-variant-numeric: tabular-nums;
}

.gtg-booking__cancel-payment {
  padding: .55rem .85rem;
  border: 1px solid #d6c8bd;
  border-radius: 999px;
  background: transparent;
  color: var(--gtg-booking-ink);
  font: inherit;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
}

.gtg-booking__cancel-payment:hover,
.gtg-booking__cancel-payment:focus-visible {
  border-color: var(--gtg-booking-accent);
  background: rgba(182, 102, 73, .08);
  outline: none;
}

.gtg-booking__processing-screen {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: .7rem;
  min-height: 220px;
  padding: clamp(1.35rem, 4vw, 2rem);
  text-align: center;
}

.gtg-booking__processing-screen h3 {
  margin: .2rem 0 0;
  font-size: clamp(1.45rem, 3.4vw, 1.8rem);
  line-height: 1.2;
}

.gtg-booking__processing-screen p {
  margin: 0;
  color: var(--gtg-booking-muted);
}

.gtg-booking__processing-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid #e5d9d0;
  border-top-color: var(--gtg-booking-accent);
  border-radius: 50%;
  animation: gtg-payment-spin .7s linear infinite;
}

.gtg-booking__stage--confirmed {
  display: grid;
  align-content: center;
}

.gtg-booking__confirmed-screen {
  display: grid;
  justify-items: center;
  gap: .55rem;
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(1.35rem, 4vw, 2rem);
  text-align: center;
}

.gtg-booking__confirmed-screen .gtg-booking__eyebrow {
  margin: .25rem 0 0;
  color: var(--gtg-booking-accent-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
}

.gtg-booking__confirmed-screen h3 {
  margin: 0 0 .25rem;
  font-size: clamp(1.65rem, 3.5vw, 2rem);
  line-height: 1.15;
}

.gtg-booking__confirmed-screen p {
  margin: .2rem 0;
  color: var(--gtg-booking-muted);
  line-height: 1.5;
}

.gtg-booking__confirmation-reference {
  margin-top: .75rem !important;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: var(--gtg-booking-paper);
  color: var(--gtg-booking-ink) !important;
  font-size: .88rem;
  font-weight: 700;
}

.gtg-booking__success-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: .45rem;
  border: 3px solid var(--gtg-booking-accent);
  border-radius: 50%;
  transform: scale(.3);
  opacity: 0;
  animation: gtg-success-pop .42s cubic-bezier(.15, .8, .25, 1.25) forwards;
}

.gtg-booking__success-mark span {
  width: 31px;
  height: 17px;
  margin-top: -6px;
  border-left: 4px solid var(--gtg-booking-accent);
  border-bottom: 4px solid var(--gtg-booking-accent);
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
  animation: gtg-success-tick .3s ease .31s forwards;
}

@keyframes gtg-payment-spin {
  to { transform: rotate(360deg); }
}

@keyframes gtg-success-pop {
  to { opacity: 1; transform: scale(1); }
}

@keyframes gtg-success-tick {
  to { transform: rotate(-45deg) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .gtg-booking__processing-spinner {
    animation-duration: 1.5s;
  }
  .gtg-booking__success-mark,
  .gtg-booking__success-mark span {
    animation: none;
    opacity: 1;
  }
  .gtg-booking__success-mark { transform: scale(1); }
  .gtg-booking__success-mark span { transform: rotate(-45deg) scale(1); }
}

@media (max-width: 430px) {
  .gtg-booking__teya-grid {
    grid-template-columns: 1fr;
  }
}
