

.primaryButton {
  background: none;
  border: none;
  color: #c2186b;
  font-weight: 700;
  padding: 0.5rem 0.25rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.primaryButton:hover {
  color: #8e0f4d;
}

.quietButton {
  background: none;
  border: none;
  color: #6b3a51;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.5rem 0.25rem;
}

.quietButton:hover {
  color: #c2186b;
}

.brightButton {
  background: none;
  border: none;
  color: #e6329a;
  font-weight: 700;
  padding: 0.5rem 0.25rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.brightButton:hover {
  color: #ffffff;
}



.orderForm {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.formGroup {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}

.formLabel {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9f7a89;
}

.formInput {
  width: 100%;
  background: #24101a;
  border: 1px solid #3a1f2b;
  color: #f2eef0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 6px;
}

.formInput::placeholder {
  color: #7a5464;
}

.formInput:focus {
  outline: 2px solid #e6329a;
  outline-offset: 1px;
}

.formCheck {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.8125rem;
  color: #cdb9c3;
}

.formCheck input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #c2186b;
  flex: 0 0 auto;
}

.formCheck a {
  color: #e6329a;
  text-decoration: underline;
}

.formNote {
  font-size: 0.75rem;
  color: #9f7a89;
  margin-bottom: 0;
}

.formNote a {
  color: #e6329a;
  text-decoration: underline;
}

.formErrors {
  display: none;
  border-left: 3px solid #e6329a;
  padding: 0.618rem 1rem;
  background: #24101a;
  color: #f2eef0;
  font-size: 0.875rem;
  border-radius: 4px;
}

.formErrors p {
  margin-bottom: 0;
}

.successPanel {
  border: 1px solid #c2186b;
  border-radius: 14px;
  padding: 2.618rem;
  background: #fffafb;
}

.successMark {
  display: block;
  width: 14px;
  height: 14px;
  background: #c2186b;
  transform: rotate(45deg);
  margin-bottom: 1.618rem;
}



.successPanel .formLabel {
  color: #881337;
}

.successPanel .formCheck,
.successPanel .formNote {
  color: #6b3a51;
}

.successPanel .formCheck a,
.successPanel .formNote a {
  color: #c2186b;
}



a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #c2186b;
  outline-offset: 3px;
}

.visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .primaryButton,
  .brightButton {
    font-size: 0.875rem;
    letter-spacing: 0.08em;
  }
  .successPanel {
    padding: 1.618rem;
  }
}
