/* SERVICES-APP-r2
   Bottom-sheet selectors for the service request screen.
   Scope: services app field sheet only.
*/
body.services-app-sheet-open{
  overflow:hidden;
}
.services-app-sheet{
  position:fixed;
  inset:0;
  z-index:11050;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:opacity .16s ease;
  color:#101114;
  font-family:Arial, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
.services-app-sheet.open{
  opacity:1;
  pointer-events:auto;
}
.services-app-sheet__backdrop{
  position:absolute;
  inset:0;
  background:rgba(15,23,42,.36);
  backdrop-filter:blur(5px);
}
.services-app-sheet__panel{
  position:relative;
  width:min(430px,100%);
  max-height:min(76dvh,640px);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  border-radius:22px 22px 0 0;
  background:#fff;
  box-shadow:0 -24px 70px rgba(15,23,42,.22);
  padding:9px 14px calc(14px + env(safe-area-inset-bottom));
  transform:translateY(22px);
  transition:transform .18s ease;
}
.services-app-sheet.open .services-app-sheet__panel{
  transform:translateY(0);
}
.services-app-sheet__handle{
  width:44px;
  height:4px;
  border-radius:99px;
  background:#d4d4d8;
  margin:0 auto 12px;
}
.services-app-sheet__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding:0 2px 12px;
  border-bottom:1px solid #eeeeee;
}
.services-app-sheet__head b{
  display:block;
  color:#101114;
  font-size:16px;
  line-height:1.2;
  font-weight:900;
}
.services-app-sheet__head span{
  display:block;
  margin-top:3px;
  color:#8b8f98;
  font-size:11.5px;
  line-height:1.25;
  font-weight:700;
}
.services-app-sheet__head button{
  width:32px;
  height:32px;
  border:0;
  border-radius:10px;
  background:#f3f3f3;
  color:#101114;
  font-size:22px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.services-app-sheet__options{
  display:flex;
  flex-direction:column;
  gap:8px;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior:contain;
  padding:12px 0;
}
.services-app-sheet__options button{
  width:100%;
  min-height:44px;
  border:1px solid #ececec;
  border-radius:12px;
  background:#fff;
  color:#101114;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  text-align:left;
  box-shadow:0 6px 18px rgba(15,23,42,.045);
  cursor:pointer;
}
.services-app-sheet__options button.active{
  border-color:rgba(255,179,0,.45);
  background:rgba(255,179,0,.10);
}
.services-app-sheet__options button span{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  color:#101114;
  font-size:12.5px;
  line-height:1.25;
  font-weight:800;
}
.services-app-sheet__options button em{
  color:#101114;
  font-style:normal;
  font-size:20px;
  line-height:1;
}
.services-app-sheet__custom{
  display:grid;
  grid-template-columns:minmax(0,1fr) 92px;
  gap:8px;
  padding-top:10px;
  border-top:1px solid #eeeeee;
}
.services-app-sheet__custom input{
  width:100%;
  height:42px;
  border:1px solid #eeeeee;
  border-radius:12px;
  background:#f7f7f7;
  color:#101114;
  outline:none;
  padding:0 12px;
  font-size:12.5px;
  font-weight:800;
}
.services-app-sheet__custom input::placeholder{
  color:#a1a1aa;
}
.services-app-sheet__custom button{
  height:42px;
  border:0;
  border-radius:12px;
  background:#ffb300;
  color:#101114;
  font-size:12.5px;
  font-weight:900;
  cursor:pointer;
}
.services-app-field[data-svc-value] span{
  color:#101114;
}
@media (min-width:768px){
  .services-app-sheet{
    align-items:center;
  }
  .services-app-sheet__panel{
    border-radius:24px;
    padding:10px 16px 16px;
  }
}
[data-theme="dark"] .services-app-sheet,
[data-theme="dark"] .services-app-sheet__panel{
  color:#101114;
}
