/* Reset + base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html, body {
  height: 100%;
  background: #ffffff;
  color: #111111;
  -webkit-text-size-adjust: 100%;
}

/* PAGE LAYOUT */
.page-root {
  max-width: 430px;
  margin: 0 auto;
  padding: 16px 12px 80px;
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent;
}

.page-footer {
  max-width: 430px;
  margin: 0 auto;
  padding: 0 12px 16px;
  text-align: center;
  color: #6b7280;
  font-size: 11px;
}

/* CARD (common) */
.card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 14px 14px 12px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(17,17,17,0.06);
  border: 1px solid rgba(17,17,17,0.04);
}

/* SHOP CARD */
.card-shop {
  margin-top: 8px;
}

.shop-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  color: #0b0b0b;
}

.shop-location-row {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4b5563;
  font-size: 13px;
}

/* HERO / CAROUSEL */
.hero-wrapper {
  margin: 18px 0 24px;
  position: relative;
}

.hero-banner {
  height: 260px;
  border-radius: 14px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 16px 40px rgba(17,17,17,0.08);
  overflow: hidden;
  position: relative;
  transition: transform 220ms ease;
}

.hero-dots {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: #e6e7ea;
  opacity: 0.6;
  cursor: pointer;
  transition: all 0.18s ease-out;
}

.hero-dot.is-active {
  width: 18px;
  opacity: 1;
  background: #0b0b0b;
}

/* CARD TITLES + DIVIDER */
.card-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, rgba(17,17,17,0.06), rgba(17,17,17,0.03));
  margin-bottom: 8px;
}

/* OPENING HOURS */
.card-hours {
  padding-top: 16px;
}

.card-hours-header {
  margin-bottom: 4px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 6px 0;
  color: #0b0b0b;
}

.hours-time {
  color: #6b7280;
}

/* SERVICES */
.card-services-header {
  margin-bottom: 4px;
}

.info-text {
  font-size: 13px;
  color: #6b7280;
}

.services-list {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Category heading inside the services list */
.service-category-block { padding-top: 8px; }
.service-category-header {
  padding: 8px 2px;
  color: #374151;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2px;
}

/* SERVICE ROWS */
.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  column-gap: 10px;
  padding: 12px;
  font-size: 14px;
  color: #0b0b0b;
  cursor: pointer;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(17,17,17,0.04);
  transition: all 0.14s ease-out;
  box-shadow: 0 6px 18px rgba(17,17,17,0.03);
}

.service-row:hover {
  border-color: rgba(11,11,11,0.08);
  box-shadow: 0 12px 26px rgba(17,17,17,0.06);
  transform: translateY(-3px);
}

.service-row-selected {
  position: relative;
  background: #f2f2f2 !important;
  border: 2px solid #111111 !important;
  box-shadow: 0 6px 14px rgba(17,17,17,0.10) !important;
  transform: translateY(-2px);
}

.service-row-selected::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 8px;
  bottom: 8px;
  width: 4px;
  border-radius: 4px;
  background: #111111;
}

/* Thumbs */
.service-thumb-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border: 1px solid rgba(17,17,17,0.03);
}

.service-thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-thumb-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0b0b;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}

.service-name-cell { display:flex; flex-direction:column; gap:4px; }
.service-name { font-weight:700; }
.service-subtitle { font-size:13px; color:#6b7280; max-width:220px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

.service-duration { display:flex; gap:6px; color:#6b7280; white-space:nowrap; }
.service-price { font-weight:800; font-size:14px; color:#0b0b0b; min-width:56px; }

/* BOOKING CARD */
.card-booking { padding-top: 28px; }

/* DAY / TIME PICKERS */
.day-row { display:flex; align-items:flex-start; gap:10px; }
.day-picker { display:flex; gap:8px; overflow-x:auto; padding:8px 6px; }

.day-tile {
  min-width:68px;
  max-width:82px;
  padding:6px 8px;
  border-radius:10px;
  text-align:center;
  background:#fafafa;
  border:1px solid rgba(17,17,17,0.04);
  cursor:pointer;
  transition:transform .12s;
  display:flex;
  flex-direction:column;
  gap:6px;
  align-items:center;
  justify-content:flex-start;
  flex-shrink:0;
}

.day-month { font-size:11px; color:#9ca3af; font-weight:800; text-transform:uppercase; }
.day-label { font-size:12px; color:#6b7280; }
.day-number { font-weight:700; font-size:16px; color:#0b0b0b; }

.day-tile.day-selected {
  background:#0b0b0b;
  color:#fff;
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(11,11,11,0.12);
  border:none;
}

.day-tile.day-selected .day-label,
.day-tile.day-selected .day-number,
.day-tile.day-selected .day-month {
  color:#ffffff !important;
}

/* TIME CHIPS */
.time-chips { display:flex; flex-wrap:wrap; gap:8px; padding:6px 4px; justify-content:center; }
.time-chip { padding:8px 10px; border-radius:999px; background:#fafafa; border:1px solid rgba(17,17,17,0.06); cursor:pointer; font-weight:700; font-size:13px; }

.time-chip:hover { transform:translateY(-3px); box-shadow:0 10px 20px rgba(17,17,17,0.06); }
.time-chip.time-selected {
  background:#0b0b0b;
  color:#fff;
  border:none;
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(11,11,11,0.12);
}

/* DEBUG + SKELETON + RESPONSIVE (unchanged)... */
