.page-order{ background:#f3f3f3; }

/* reuse banner styles from contact */
.page-banner{ padding:24px 0 0; }
.page-banner__bg{
  height:360px;border-radius:22px;overflow:hidden;
  background-size:cover;background-position:center;background-repeat:no-repeat;
  display:flex;align-items:center;justify-content:center;position:relative;
}
.page-banner__bg::before{content:"";position:absolute;inset:0;background:rgba(0,0,0,.25);}
.page-banner__title{
  position:relative;margin:0;color:#fff;font-size:36px;font-weight:700;line-height:1.1;
  text-align:center;
}

/* form */
.order-form{ padding-top: 46px; }
.order-form__wrap{ max-width: 520px; margin: 0 auto; }

.qv-form{ display:grid; }

.qv-field{ display:block; margin:0; margin-top: 29px; }
.qv-field__label{
  display:block;
  font-size:16px;font-weight:400;line-height:14px;letter-spacing:-0.0391em;
  color:rgba(35,31,32,.75);margin-bottom:8px;
}

.qv-field__input,
.qv-field__textarea{
  width:100%;
  border:1px solid #E5E5E5;
  border-radius:8px;
  background:#fff;
  font-size:14px;
  color:rgba(35,31,32,.75);
  outline:none;
}

.qv-field__input{
  height: 44px;
  padding: 0 14px;
  appearance: none;
}

select.qv-field__input{
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'%3E%3Cpath d='M1 1l7 7 7-7' fill='none' stroke='%23231F20' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 10px;
}

.qv-field__textarea{ height:160px; padding:12px 14px; resize:vertical; }

/* 2 columns rows */
.qv-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
}

.qv-row.is-hidden{
  display: none;
}

/* button */
.qv-submit{
    height: 50px;
    width: 248px;
    border: 0;
    border-radius: 8px;
    background: #D12329;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
    letter-spacing: 0.0156em;
    text-transform: uppercase;
    margin-top: 29px;
}

/* success message */
.order-success{
  background:#fff;
  border:1px solid #E5E5E5;
  border-radius:8px;
  padding:14px 16px;
  margin-bottom: 10px;
  color:#231F20;
}

/* mobile */
@media (max-width: 768px){
  .page-banner__bg{ height:260px; }
  .page-banner__title{ font-size:28px; line-height:28px; }

  .order-form{ padding-top: 26px; }
  .order-form__wrap{ max-width: 100%; }

  .qv-row{
    grid-template-columns: 1fr;
    gap: 0;
  }

  .qv-submit{
      width: 100%;
    margin: 0 auto;
    display: block;
    margin-top: 29px;
  }
}
