/** Shopify CDN: Minification failed

Line 67:11 Expected identifier but found whitespace
Line 67:12 Unexpected "0"

**/
.complaint-page {
  padding-top: 10px;
  padding-bottom: 50px;
}

.complaint-wrapper {
  max-width: 750px;
  margin: 0 auto;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.complaint-header {
  text-align: center;
  margin-bottom: 35px;
}

.complaint-header h1 {
  margin: 0 0 12px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
}

.complaint-header p {
  margin: 0;
  color: #666666;
  font-size: 15px;
  line-height: 1.7;
}

.complaint-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  width: 100%;
}

.full-width {
  grid-column: span 2;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background: #ffffff;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
}

box-shadow: 0 0 0 3px rgba(0,0,0,0.08); {
  border-color: #000000;
}

.field textarea {
  resize: vertical;
  min-height: 200px;
}

.complaint-button {
  margin-top: 28px;
}

.complaint-button button {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 8px;
  background: #000000;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.complaint-button button:hover {
  background: #1a1a1a;
}

.complaint-success {
  margin-bottom: 25px;
  border: 1px solid #cfe7d1;
  background: #f4fff5;
  border-radius: 10px;
  padding: 20px;
}

.complaint-success h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.complaint-error {
  margin-bottom: 25px;
}

.ticket-box {
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px dashed #000000;
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
  font-weight: 700;
}

@media screen and (max-width: 749px) {

  .complaint-page {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .complaint-wrapper {
    padding: 24px;
  }

  .complaint-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: span 1;
  }

  .complaint-header h1 {
    font-size: 30px;
  }

}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
  box-shadow: 0 0 0px 1000px #ffffff inset !important;
}

.complaint-note {
  margin-top: 20px;
  font-size: 13px;
  color: #666666;
  line-height: 1.6;
}