:root{
  --color-primary:#2C3E50;
  --color-secondary:#3D5266;
  --color-accent:#48C9B0;
}

html{scroll-behavior:smooth;scroll-padding-top:5rem;}
body{font-family:'Inter',system-ui,sans-serif;}

::selection{background:rgba(72,201,176,.28);}

button,.btn,[class*="btn-"],a[href="#order_form"]{
  white-space:nowrap;
  min-width:fit-content;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
}

form button[type="submit"]{
  white-space:normal;
  width:100%;
}

[data-animate]{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .6s ease-out,transform .6s ease-out;
}

[data-animate].is-visible{
  opacity:1;
  transform:translateY(0);
}

.rotate-180{transform:rotate(180deg);}

.header-solid{
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(229,231,235,.85);
}

.header-solid [data-header-link]{
  color:rgb(55,65,81);
}

.header-solid [data-header-link]:hover{
  color:rgb(17,24,39);
}

.header-solid .header-brand,
.header-solid .header-icon{
  color:rgb(17,24,39);
}

.header-solid .header-pill{
  background:rgba(17,24,39,.06);
  color:rgb(17,24,39);
  border-color:rgba(17,24,39,.10);
}

.input-invalid{
  border-color:rgb(239,68,68) !important;
  box-shadow:0 0 0 3px rgba(239,68,68,.12) !important;
}

.input-valid{
  border-color:rgba(72,201,176,.75) !important;
  box-shadow:0 0 0 3px rgba(72,201,176,.14) !important;
}

.visually-hidden{
  position:absolute !important;
  height:1px;width:1px;
  overflow:hidden;
  clip:rect(1px,1px,1px,1px);
  white-space:nowrap;
}