.services-page {
  min-height: 100vh;
  padding: 64px 0px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: fixed;
  top: env(safe-area-inset-top);
  left: 0;
  right: 0;
  z-index: 25;
  padding: 8px 16px;
  transition: opacity 180ms ease;
  height: 48px;
}

.services-header__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: #111827;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  cursor: pointer;
  padding: 6px 0px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.services-header__title {
  font-weight: 700;
  font-size: 14px;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111827;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.services-header--hidden {
  opacity: 0;
}

.services-heading {
  display: grid;
  gap: 6px;
  text-align: center;
}

.services-count {
  margin: 4px 0 0;
  font-size: 24px;
  font-weight: 600;
  color: #111827;
}

.services-subtitle {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.services-card {
  

  background: #fff;
  border-radius: 24px 24px 0px 0px;
  padding: 16px 16px calc(16px + var(--nav-height) + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: 0;
}

.services-search {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #e5e7eb;
  border-radius: 18px;
  padding: 10px 14px;
  background: #f7f9fb;
  height: 48px;
}

.services-search input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #111827;
  width: 100%;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.services-search input::placeholder {
  color: #8b95a5;
  font-weight: 600;
}

.services-list {
  display: grid;
  gap: 10px;
}

.service-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 16px 12px 16px;
  background: #f7f9fb;
  border-radius: 16px;
  position: relative;
  height: 64px;
}

.service-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  width: 16px;
  height: 16px;
  background: url("../images/icons/dots.svg") center/contain no-repeat;
  transform: translateY(-50%);
  pointer-events: none;
}

.service-indicator {
  width: 4px;
  height: 40px;
  border-radius: 8px;
}

.service-body {
  display: grid;
  gap: 6px;
  width: 100%;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-name {
  font-weight: 700;
  font-size: 15px;
  color: #111827;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #4b5563;
}

.service-meta img {
  width: 16px;
  height: 16px;
  display: block;
}

.service-price {
  font-weight: 400;
  font-size: 14px;
  color: #111827;
}

.services-empty {
  margin: 8px 0 0;
  color: #6b7280;
  font-size: 14px;
}
