@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #f8faf7;
  --ink: #151b17;
  --green: #5d8d61;
  --green-dark: #15803d;
  --green-btn: #16a34a;
  --mint: #e4f0e3;
  --text-main: #020617;
  --text-muted: #64748b;
  --text-dim: #94a3b8;
  --border: #e2e8f0;
  --border-light: rgba(226, 232, 240, 0.7);
  --card-bg: #ffffff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-950: #020617;
  --font:
    "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none !important;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text-main);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================================
   CONTAINERS & LAYOUT
========================================= */

.min-h-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.max-w-7xl {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.max-w-5xl {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.max-w-3xl {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.max-w-xl {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* =========================================
   HEADER
========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--slate-950);
}

.brand-logo span {
  font-weight: 500;
}

.header-nav-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-500);
  transition: color 0.15s ease;
}

.header-nav-link:hover {
  color: var(--slate-950);
}

.dashboard-actions-menu {
  position: relative;
}
.dashboard-menu-button {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--slate-700);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.dashboard-options-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  z-index: 20;
  min-width: 9rem;
  padding: 0.35rem;
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}
.service-actions-menu .dashboard-options-menu {
  top: calc(100% + 0.5rem);
  bottom: auto;
}
.dashboard-options-menu button {
  width: 100%;
  border: 0;
  border-radius: 0.4rem;
  background: transparent;
  padding: 0.6rem 0.7rem;
  color: var(--slate-800);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.dashboard-options-menu button:hover {
  background: var(--slate-100);
}
.business-edit-hours {
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}
.business-edit-hours-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.business-edit-hours-note {
  margin-top: 0.25rem;
  color: var(--slate-500);
  font-size: 0.8rem;
}
.business-edit-hours-save {
  width: auto;
  margin-top: 0;
  padding: 0.7rem 1rem;
}
.business-edit-hours-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dashboard-services-bookings-grid {
  display: grid;
  gap: 1.25rem;
}
.dashboard-service-gallery {
  margin-top: 1.25rem;
}
.dashboard-services-bookings-grid #services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 1024px) {
  .dashboard-services-bookings-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(20rem, 0.65fr);
    align-items: start;
  }
  .dashboard-services-bookings-grid #services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .business-edit-hours-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .business-edit-hours-save {
    width: 100%;
  }
}

.profile-menu-wrap {
  position: relative;
}
.profile-button {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--slate-50);
  color: var(--slate-800);
  cursor: pointer;
  font-size: 1.1rem;
}
.profile-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  z-index: 50;
  min-width: 12rem;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}
.profile-menu strong,
.profile-menu a,
.profile-menu button {
  display: block;
  width: 100%;
  padding: 0.65rem 0.75rem;
  text-align: left;
  font-size: 0.8rem;
}
.profile-menu strong {
  color: var(--slate-500);
  overflow-wrap: anywhere;
}
.profile-menu a,
.profile-menu button {
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
}
.profile-menu a:hover,
.profile-menu button:hover {
  background: var(--slate-100);
}

.auth-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 3rem 1.25rem;
}
.auth-panel {
  width: min(100%, 30rem);
  max-width: 30rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}
.auth-panel h1 {
  margin-top: 0.5rem;
  font-size: 2rem;
  letter-spacing: -0.04em;
}
.auth-intro {
  margin-top: 0.5rem;
  color: var(--slate-500);
  font-size: 0.875rem;
  line-height: 1.4;
}
.auth-tabs {
  display: flex;
  gap: 1.25rem;
  margin: 2rem 0 1.25rem;
  border-bottom: 1px solid var(--border);
}
.auth-tab {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  padding: 0 0 0.7rem;
  color: var(--slate-400);
  font-weight: 800;
  cursor: pointer;
}
.auth-tab.active {
  border-color: var(--green-dark);
  color: var(--slate-950);
}
.auth-form {
  display: grid;
  gap: 1rem;
}
.auth-form label {
  color: var(--slate-700);
  font-size: 0.8rem;
  font-weight: 800;
}
.auth-form .form-input {
  margin-top: 0.4rem;
}
.auth-form .btn-primary {
  margin-top: 0.5rem;
}
.auth-error {
  margin-bottom: 1rem;
  border-radius: 0.65rem;
  background: #fef2f2;
  padding: 0.75rem;
  color: #b91c1c;
  font-size: 0.8rem;
  font-weight: 700;
}
.hours-fieldset {
  border: 0;
}
.hours-fieldset legend {
  color: var(--slate-700);
  font-size: 0.8rem;
  font-weight: 800;
}
.signup-hours {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.signup-hour-row {
  display: grid;
  grid-template-columns: minmax(8rem, 1fr) 1fr auto 1fr;
  gap: 0.5rem;
  align-items: center;
}
.signup-hour-row .form-input {
  margin-top: 0;
  padding: 0.65rem;
}
.day-check {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--slate-700);
}
.password-wrap {
  position: relative;
}
.password-wrap .form-input {
  padding-right: 4rem;
}
.password-toggle {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}
@media (max-width: 560px) {
  .auth-panel {
    padding: 1.25rem;
  }
  .signup-hour-row {
    grid-template-columns: 1fr 1fr;
  }
  .signup-hour-row span {
    display: none;
  }
}

/* =========================================
   HERO SECTION
========================================= */

.hero-section {
  background-color: #ffffff;
}

.hero-inner {
  padding-top: 2.25rem;
  padding-bottom: 1.25rem;
}

.hero-inner > .max-w-xl {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

@media (min-width: 768px) {
  .hero-inner {
    padding-top: 3rem;
    padding-bottom: 1.75rem;
  }
}

.eyebrow-text {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green-dark);
}

.hero-title {
  margin-top: 0.5rem;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--slate-950);
}

@media (max-width: 639px) {
  .hero-title {
    font-size: 21px;
    white-space: nowrap;
  }
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 46px;
  }
}

.hero-title .text-muted {
  color: var(--slate-400);
  font-weight: 800;
}

.hero-tagline {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--slate-400);
  font-size: 0.58em;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-subtitle {
  margin-top: 0.75rem;
  max-width: 28rem;
  font-size: 14px;
  line-height: 1.5rem;
  color: var(--slate-500);
}

/* =========================================
   FILTER TABS
========================================= */

.filter-bar {
  margin-top: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.filter-scroll {
  display: flex;
  gap: 1.75rem;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.filter-scroll::-webkit-scrollbar {
  display: none;
}

.filter-tab-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding-bottom: 0.75rem;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-400);
  transition: color 0.15s ease;
}

.filter-tab-btn:hover {
  color: var(--slate-700);
}

.filter-tab-btn.active {
  color: var(--slate-950);
}

/* =========================================
   LOCATION CHIPS
========================================= */

.location-chips-bar {
  margin-top: 1.25rem;
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.location-chips-bar::-webkit-scrollbar {
  display: none;
}

.location-border-bar {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.location-chip-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-400);
  transition: color 0.15s ease;
}

.location-chip-btn.active,
.location-chip-btn:hover {
  color: var(--slate-950);
}

/* =========================================
   SECTION HEADING
========================================= */

.section-heading-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.section-title {
  margin-top: 0.25rem;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 1.875rem;
  }
}

.section-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-400);
}

/* =========================================
   FILTER ICON & MENU (reduced, wrapper removed)
========================================= */

.filter-icon-btn {
  position: relative;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background-color: var(--card-bg);
  color: var(--slate-700);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-icon-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.filter-icon-btn:hover {
  background-color: var(--slate-50);
  color: var(--slate-950);
}

.filter-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  z-index: 50;
  min-width: 10rem;
  padding: 0.5rem;
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.filter-menu-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-500);
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.filter-menu-item:hover {
  background-color: var(--slate-50);
  color: var(--slate-950);
}

.filter-menu-item.active {
  color: var(--green-dark);
  background-color: var(--mint);
}

/* =========================================
   CARD GRIDS
========================================= */

.main-content {
  flex: 1;
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

@media (min-width: 768px) {
  .main-content {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.cards-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =========================================
   SERVICE & BUSINESS CARDS (reduced text sizes)
========================================= */

.item-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1rem;
  background-color: var(--slate-200);
  text-decoration: none;
}

.card-media-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.item-card:hover .card-image {
  transform: scale(1.05);
}

.card-placeholder {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: var(--slate-200);
  padding: 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-400);
}

.card-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.card-content-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem;
  color: #ffffff;
  z-index: 2;
}

@media (min-width: 768px) {
  .card-content-overlay {
    padding: 1rem;
  }
}

.card-eyebrow {
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.65);
}

.card-title {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 768px) {
  .card-title {
    font-size: 16px;
  }
}

.card-meta-row {
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.card-price {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .card-price {
    font-size: 0.75rem;
  }
}

.card-location {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .card-location {
    font-size: 0.65rem;
  }
}

/* =========================================
   SKELETON ANIMATIONS
========================================= */

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.skeleton-card {
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  background-color: var(--slate-200);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* =========================================
   EMPTY STATE & ALERTS
========================================= */

.empty-state-card {
  margin-top: 2.5rem;
  border-radius: 1.5rem;
  background-color: #ffffff;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.empty-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.empty-desc {
  margin-top: 0.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: var(--slate-500);
}

.empty-btn {
  margin-top: 1.5rem;
  display: inline-block;
  border-radius: 9999px;
  background-color: var(--slate-950);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  transition: opacity 0.15s ease;
}

.empty-btn:hover {
  opacity: 0.9;
}

.alert-error {
  border-radius: 1rem;
  background-color: #fef2f2;
  padding: 1.5rem;
  color: #b91c1c;
}

.alert-error p {
  font-weight: 700;
}

/* =========================================
   BOOKING PAGE STYLES
========================================= */

.business-profile-card {
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: #ffffff;
  padding: 1.25rem;
}
.business-profile-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.business-profile-media {
  width: 6rem;
  height: 6rem;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--slate-200);
  color: var(--slate-500);
  padding: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
}
.business-profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.business-profile-name {
  margin-top: 0.2rem;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.business-profile-location {
  margin-top: 0.35rem;
  color: var(--slate-500);
  font-size: 0.8rem;
  font-weight: 700;
}
.business-profile-description {
  margin-top: 1rem;
  color: var(--slate-700);
  font-size: 0.875rem;
  line-height: 1.5;
}
.business-profile-contacts {
  margin-top: 0.75rem;
  color: var(--slate-500);
  font-size: 0.8rem;
  font-weight: 700;
}
.business-profile-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.business-profile-services {
  margin-top: 1.5rem;
}
.business-hours-card {
  margin-top: 2rem;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: #ffffff;
  padding: 1.25rem;
}
.business-profile-section-title {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 900;
}
.business-services-list,
.business-hours-list {
  display: grid;
  gap: 0.5rem;
}
.business-services-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .business-services-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .business-services-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.business-service-option,
.business-hour-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  background: #fff;
  padding: 0.75rem;
  color: var(--slate-700);
  font-size: 0.8rem;
  text-align: left;
}
.business-service-option {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
}
.business-service-option-media {
  position: relative;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-100);
  color: var(--slate-500);
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
}
.business-service-option-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.business-service-option-details {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem;
  color: #ffffff;
}
.business-service-option:hover,
.business-service-option.selected {
  border-color: var(--green-dark);
  background: var(--mint);
}
.business-service-option strong {
  color: #ffffff;
  white-space: nowrap;
}
.business-hour-row strong {
  color: var(--slate-950);
  white-space: nowrap;
}
.business-services-list:empty::after {
  content: "No services available yet.";
  color: var(--slate-500);
  font-size: 0.8rem;
}
@media (max-width: 640px) {
  .business-profile-columns {
    grid-template-columns: 1fr;
  }
}

.booking-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background-color: var(--slate-200);
}

.booking-hero-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.booking-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    transparent 60%,
    transparent 100%
  );
  pointer-events: none;
}

.booking-hero-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
  color: #ffffff;
}

@media (min-width: 768px) {
  .booking-hero-text {
    padding: 1.75rem;
  }
}

.booking-hero-title {
  margin-top: 0.25rem;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

@media (min-width: 768px) {
  .booking-hero-title {
    font-size: 2.25rem;
  }
}

.booking-hero-price {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

/* Related services carousel */
.more-services-sec {
  margin-top: 1.75rem;
}

.more-services-header {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.more-services-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.more-services-scroll::-webkit-scrollbar {
  display: none;
}

.service-thumb-btn {
  width: 105px;
  flex-shrink: 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.service-thumb-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 1rem;
  background-color: var(--slate-200);
}

.service-thumb-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-thumb-btn:hover .service-thumb-media img {
  transform: scale(1.05);
}

.service-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

.service-thumb-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-thumb-price {
  margin-top: 0.375rem;
  font-size: 11px;
  font-weight: 700;
  color: var(--slate-700);
}

/* Booking Form Card */
.form-card {
  margin-top: 2rem;
  border-radius: 1.5rem;
  background-color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .form-card {
    padding: 2rem;
  }
}

.selected-service-summary {
  border-radius: 1rem;
  background-color: var(--slate-50);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.summary-thumb {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0.75rem;
  background-color: var(--slate-200);
}

.summary-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-field-label {
  display: block;
  margin-top: 1.25rem;
}

.form-field-title {
  font-size: 0.875rem;
  font-weight: 800;
}

.form-input,
.form-select {
  margin-top: 0.5rem;
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background-color: #ffffff;
  padding: 0.875rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.15s ease;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--slate-500);
}

.form-select:disabled {
  background-color: var(--slate-50);
  color: var(--slate-400);
}

.btn-primary {
  margin-top: 1.75rem;
  width: 100%;
  border-radius: 0.75rem;
  background-color: var(--slate-950);
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    opacity 0.15s ease;
}

.btn-primary:hover:not(:disabled) {
  background-color: var(--slate-800);
}

.btn-primary:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.form-footer-note {
  margin-top: 1rem;
  text-align: center;
  font-size: 11px;
  line-height: 1.25rem;
  color: var(--slate-400);
}

/* Booking Confirmation Screen */
.confirmation-card {
  border-radius: 1.5rem;
  background-color: #ffffff;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .confirmation-card {
    padding: 2.5rem;
  }
}

.check-icon-circle {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  height: 4rem;
  width: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: #dcfce7;
  font-size: 1.5rem;
  color: var(--green-dark);
}

.confirmation-title {
  margin-top: 1.5rem;
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.receipt-box {
  margin-top: 1.75rem;
  border-radius: 1rem;
  background-color: var(--slate-50);
  padding: 1.25rem;
  text-align: left;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.receipt-row:first-child {
  padding-top: 0;
}

.receipt-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.receipt-label {
  font-size: 0.875rem;
  color: var(--slate-500);
}

.receipt-value {
  font-size: 0.875rem;
  font-weight: 700;
}

.btn-whatsapp {
  margin-top: 1.75rem;
  display: block;
  border-radius: 0.75rem;
  background-color: var(--green-btn);
  padding: 0.875rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  transition: background-color 0.15s ease;
}

.btn-whatsapp:hover {
  background-color: var(--green-dark);
}

.btn-secondary {
  margin-top: 0.75rem;
  display: block;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 0.875rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-700);
  text-align: center;
  background: transparent;
  cursor: pointer;
}

/* =========================================
   DASHBOARD STYLES
========================================= */

.dashboard-card {
  margin-top: 1.5rem;
  border-radius: 1rem;
  background-color: #ffffff;
  padding: 1.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.dashboard-heading {
  font-size: 1.5rem;
  font-weight: 900;
}

.bg-ink {
  background-color: var(--ink);
  color: #ffffff;
}

.bg-green {
  background-color: var(--green);
  color: #ffffff;
}

.grid-2col {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .grid-2col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.col-span-full {
  grid-column: 1 / -1;
}

.dashboard-select {
  margin-top: 1.25rem;
  width: 100%;
  max-width: 36rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background-color: #ffffff;
  padding: 0.75rem;
  font-weight: 600;
}

.hours-row {
  display: grid;
  gap: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 0.75rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hours-row {
    grid-template-columns: 150px 100px 1fr 1fr;
  }
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
  background-color: #ffffff;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: 0.75rem;
  color: var(--slate-400);
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
