.fru-checkout-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 24px 24px 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.14);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.fru-tabs {
  display: flex;
  gap: 8px;
  background: #F6F1EE;
  border-radius: 999px;
}

.fru-tab {
  flex: 1;
  border: 0;
  padding: 10px 12px;
  border-radius: 999px;
  letter-spacing: 0.4px;
  color: #1A1A1D;
  text-align: center;
  font-family: e-Ukraine;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
}

.fru-tab.is-active {
  background: #FDDB31;
}

.fru-presets {
  display: flex;
  gap: 12px;
  margin: 32px 0 16px;
}

.fru-preset {
  flex: 1;
  border: 0;
  padding: 12px 10px;
  border-radius: 999px;
  background: #F6F1EE;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
  color: #1A1A1D;
  text-align: center;
  font-family: e-Ukraine;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
}

.fru-preset:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

.fru-preset:focus-visible {
  outline: 3px solid rgba(245, 211, 33, 0.65);
  outline-offset: 2px;
}

.fru-preset.is-active {
  background: #f5d321;
  box-shadow: 0 10px 22px rgba(0,0,0,0.14);
  transform: translateY(-1px);
}

.fru-preset.is-active:hover {
  transform: translateY(-2px);
}

.fru-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  color: #8E8E93;
  font-size: 14px;
  line-height: 1;
}

.fru-sep::before,
.fru-sep::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #F6F1EE;
}


.fru-input {
  width: 100%;
  border: 0;
  background: #F6F1EE;
  padding: 14px 16px;
  border-radius: 999px;
  font-size: 16px;
  margin-bottom: 32px;
  outline: none;
}

.fru-input:focus-visible {
  outline: 3px solid rgba(245, 211, 33, 0.65);
  outline-offset: 2px;
}

.fru-cta {
  width: 100%;
/*   margin-top: 32px; */
  border: 0;
  border-radius: 999px;
  background: #FDDB31;
  letter-spacing: 0.6px;
  color: #1A1A1D;
  text-align: center;
  font-family: e-Ukraine;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  display: flex;
  height: 48px;
  padding: 8px 24px 8px 32px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  align-self: stretch;
}

.fru-cta:hover {
  box-shadow: 0 10px 22px rgba(0,0,0,0.14);
  transform: translateY(-1px);
}

.fru-cta:focus-visible {
  outline: 3px solid rgba(245, 211, 33, 0.65);
  outline-offset: 2px;
}

.fru-error {
  margin-top: 10px;
  color: #b00020;
  min-height: 18px;
  font-size: 14px;
}

.fru-checkout-form.has-error .fru-input {
  outline: 2px solid #b00020;
}

.fru-cta span[aria-hidden="true"] {
  font-size: 24px;
/*   line-height: 1;
  display: inline-block;  */
  transform: translateY(-1px);
}

@media (max-width: 767px) {
	 .fru-checkout-form {
	  padding: 24px 16px 24px 16px;
	}
	.fru-error {
  		margin-top: unset;
		min-height: unset;
	}
	
	.fru-presets {
	  margin: 24px 0 8px;
	}
	
	.fru-input {
	  margin-bottom: 24px;
	}
	
	.fru-sep {
	  margin-bottom: 8px;
	}
}
