/* [project]/app/globals.css [app-client] (css) */
:root {
  --background: #fbf7f6;
  --foreground: #302326;
  --card: #fff;
  --muted: #786a70;
  --border: #eadfe0;
  --primary: #c94f73;
  --primary-button: #c94f73;
  --primary-button-text: #fff;
  --primary-soft: #f6dfe5;
  --secondary: #f3e7e5;
  --secondary-button: #fff;
  --secondary-button-text: #302326;
  --shadow-soft: 0 18px 42px #7b495824;
  --shadow-card: 0 8px 24px #30232614;
  --gradient-rose: linear-gradient(135deg, #e96f91 0%, #b94165 100%);
  --gradient-blush: linear-gradient(180deg, #fff7f8 0%, #f4e0e3 100%);
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

body {
  background: linear-gradient(180deg, #f7f0ef 0%, var(--background) 100%);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-family: Segoe UI, Arial, Helvetica, sans-serif;
}

:is(body:has(.template-minimal), body:has(.payload__modal-container)) {
  background: var(--theme-bg);
  color: var(--theme-text);
}

button, a {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

a {
  text-decoration: none;
}

.app-page {
  background: linear-gradient(#f7f0ef 0%, #fbf7f6 100%);
  justify-content: center;
  min-height: 100svh;
  display: flex;
}

.mobile-app {
  background: var(--background);
  width: min(100%, 430px);
  min-height: 100svh;
  padding: 0 0 112px;
  position: relative;
  overflow-x: hidden;
}

.app-header {
  grid-template-columns: 56px minmax(0, 1fr) 104px;
  align-items: center;
  gap: 10px;
  padding: 20px 16px 14px;
  display: grid;
}

.app-header p {
  color: var(--muted);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 0;
  font-size: .72rem;
  font-weight: 700;
}

.app-header h2, .section-heading h2, .inspiration-panel h2, .chat-teaser h2 {
  color: var(--foreground);
  letter-spacing: -.02em;
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-weight: 600;
}

.app-header h2 {
  font-size: 1.7rem;
}

.user-greeting {
  text-align: center;
  min-width: 0;
}

.header-brand {
  width: 52px;
  height: 52px;
  box-shadow: var(--shadow-card);
  background: #ffffffe6;
  border-radius: 16px;
  place-items: center;
  display: grid;
  overflow: hidden;
}

.header-brand img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.header-brand span {
  color: var(--primary);
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.header-actions {
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  display: flex;
}

.icon-button, .avatar-button {
  width: 44px;
  height: 44px;
  box-shadow: var(--shadow-card);
  border-radius: 50%;
  place-items: center;
  display: grid;
}

.icon-button {
  background: var(--card);
  position: relative;
}

.icon-button span {
  background: var(--primary);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.avatar-button {
  background: var(--gradient-rose);
  color: #fff;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.app-header-anonymous {
  grid-template-columns: 56px minmax(0, 1fr) auto;
}

.app-header-anonymous .user-greeting h2 {
  font-size: 1.24rem;
}

.login-pill {
  background: var(--primary-button);
  min-height: 42px;
  color: var(--primary-button-text);
  box-shadow: var(--shadow-card);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 0 13px;
  font-size: .78rem;
  font-weight: 850;
  display: inline-flex;
}

.hero-feature {
  min-height: 360px;
  box-shadow: var(--shadow-soft);
  border-radius: 32px;
  margin: 0 16px;
  position: relative;
  overflow: hidden;
}

.hero-feature img {
  object-fit: cover;
  width: 100%;
  height: 360px;
}

.hero-overlay {
  background: linear-gradient(#30232605 0%, #302326bd 100%);
  position: absolute;
  inset: 0;
}

.hero-copy {
  color: #fff;
  padding: 24px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-copy p {
  letter-spacing: .23em;
  opacity: .8;
  text-transform: uppercase;
  margin: 0;
  font-size: .74rem;
  font-weight: 700;
}

.hero-copy h1 {
  letter-spacing: -.03em;
  max-width: 11ch;
  margin: 8px 0 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.04;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  display: flex;
}

.hero-button {
  background: var(--card);
  min-height: 48px;
  color: var(--foreground);
  box-shadow: var(--shadow-card);
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  font-size: .92rem;
  font-weight: 700;
  display: inline-flex;
}

.hero-button-secondary {
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #ffffff2e;
  box-shadow: inset 0 0 0 1px #ffffff42;
}

.contact-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  background: #ffffffeb;
  border-radius: 26px;
  gap: 16px;
  margin: 18px 16px 0;
  padding: 18px;
  display: grid;
}

.contact-copy h2 {
  color: var(--foreground);
  letter-spacing: -.02em;
  margin: 10px 0 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.54rem;
  font-weight: 600;
}

.contact-copy p {
  color: var(--muted);
  margin: 6px 0 0;
  font-size: .92rem;
  line-height: 1.45;
}

.contact-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  display: grid;
}

.contact-actions a {
  background: var(--secondary);
  min-height: 44px;
  color: var(--foreground);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  font-weight: 800;
  display: flex;
}

.contact-actions a:first-child {
  background: var(--primary-button);
  color: var(--primary-button-text);
}

.contact-map {
  background: var(--secondary);
  border: 0;
  border-radius: 20px;
  width: 100%;
  min-height: 190px;
  overflow: hidden;
}

.chat-teaser > span {
  background: var(--secondary);
  width: 44px;
  height: 44px;
  color: var(--primary);
  border-radius: 50%;
  place-items: center;
  display: grid;
}

.section-block, .inspiration-panel, .chat-teaser {
  margin: 28px 16px 0;
}

.section-heading {
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 14px;
  display: flex;
}

.section-heading h2 {
  font-size: 1.34rem;
}

.section-heading button, .section-heading a, .service-card button, .service-card a {
  color: var(--muted);
  white-space: nowrap;
  background: none;
  align-items: center;
  gap: 4px;
  font-size: .78rem;
  font-weight: 700;
  display: inline-flex;
}

.appointment-card {
  background: var(--gradient-rose);
  color: #fff;
  box-shadow: var(--shadow-soft);
  border-radius: 24px;
  padding: 20px;
}

.appointment-top {
  justify-content: space-between;
  gap: 16px;
  display: flex;
}

.appointment-top p {
  letter-spacing: .2em;
  opacity: .8;
  text-transform: uppercase;
  margin: 0;
  font-size: .74rem;
  font-weight: 700;
}

.appointment-top h3 {
  margin: 4px 0 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.08;
}

.appointment-meta {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
  font-size: .88rem;
  display: flex;
}

.appointment-meta span, .appointment-actions, .appointment-actions button, .inspiration-panel button, .bottom-nav button {
  align-items: center;
  display: flex;
}

.appointment-meta span {
  gap: 6px;
}

.appointment-actions {
  gap: 10px;
  margin-top: 20px;
}

.appointment-actions button {
  border-radius: 999px;
  flex: 1;
  justify-content: center;
  min-height: 42px;
  font-size: .88rem;
  font-weight: 700;
}

.appointment-actions button:first-child {
  color: #fff;
  background: #ffffff29;
  border: 1px solid #ffffff38;
}

.appointment-actions button:last-child {
  background: var(--secondary-button);
  color: var(--primary);
}

.service-carousel {
  scroll-snap-type: x mandatory;
  gap: 16px;
  margin: 0 -16px;
  padding: 0 16px 6px;
  display: flex;
  overflow-x: auto;
}

.service-carousel::-webkit-scrollbar {
  display: none;
}

.service-card {
  scroll-snap-align: start;
  background: var(--card);
  width: 68%;
  min-width: 224px;
  box-shadow: var(--shadow-card);
  border-radius: 28px;
  flex: none;
  overflow: hidden;
}

.service-explore-card {
  min-height: 424px;
  color: var(--foreground);
  background: linear-gradient(160deg, #fff 0%, #fff5f7 48%, #f5dce3 100%);
  border: 1px solid #c94f732e;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.service-card img {
  object-fit: cover;
  width: 100%;
  height: 176px;
}

.explore-card-visual {
  color: #fff;
  background: radial-gradient(circle at 30% 28%, #fffffff2 0 16%, #0000 17%), linear-gradient(135deg, #e96f91e6 0%, #b94165eb 100%);
  place-items: center;
  height: 176px;
  display: grid;
}

.service-card > div {
  padding: 16px;
}

.service-category {
  color: var(--primary);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: .68rem;
  font-weight: 800;
  display: block;
}

.service-card h3 {
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.28rem;
}

.service-card p {
  -webkit-line-clamp: 2;
  min-height: 42px;
  color: var(--muted);
  -webkit-box-orient: vertical;
  margin: 6px 0 12px;
  font-size: .8rem;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
}

.service-card button, .service-card a {
  color: var(--primary);
}

.service-explore-card p {
  -webkit-line-clamp: 4;
  min-height: 84px;
}

.explore-card-button {
  background: var(--primary-button);
  width: 100%;
  min-height: 42px;
  color: var(--primary-button-text);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: .84rem;
  font-weight: 800;
  display: inline-flex;
}

.service-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 12px;
  display: grid;
}

.service-meta div {
  background: var(--secondary);
  border-radius: 14px;
  min-width: 0;
  padding: 10px;
}

.service-meta dt, .service-meta dd {
  margin: 0;
}

.service-meta dt {
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .64rem;
  font-weight: 800;
}

.service-meta dd {
  color: var(--foreground);
  margin-top: 2px;
  font-size: .78rem;
  font-weight: 800;
}

.service-tags {
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
  display: flex;
}

.service-tags span {
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: .68rem;
  font-weight: 700;
}

.category-grid {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
  display: grid;
}

.category-tile {
  border: 1px solid var(--border);
  color: var(--foreground);
  text-align: left;
  background: #ffffffdb;
  border-radius: 18px;
  grid-template-columns: 62px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  padding: 8px 10px 8px 8px;
  display: grid;
  box-shadow: 0 6px 18px #3023260d;
}

.category-tile img {
  object-fit: cover;
  border-radius: 14px;
  width: 62px;
  height: 62px;
}

.category-tile span {
  min-width: 0;
}

.category-tile strong, .category-tile small {
  display: block;
}

.category-tile strong {
  color: var(--foreground);
  font-family: Georgia, Times New Roman, serif;
  font-size: 1rem;
  line-height: 1.15;
}

.category-tile small {
  -webkit-line-clamp: 2;
  color: var(--muted);
  -webkit-box-orient: vertical;
  margin-top: 3px;
  font-size: .74rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
}

.inspiration-panel {
  border: 1px solid var(--border);
  background: var(--gradient-blush);
  border-radius: 30px;
  padding: 24px;
}

.eyebrow {
  color: var(--primary);
  letter-spacing: .18em;
  text-transform: uppercase;
  align-items: center;
  gap: 8px;
  font-size: .76rem;
  font-weight: 800;
  display: flex;
}

.inspiration-panel h2 {
  margin-top: 12px;
  font-size: 1.7rem;
  line-height: 1.08;
}

.inspiration-panel p {
  color: var(--muted);
  margin: 10px 0 0;
  font-size: .93rem;
  line-height: 1.55;
}

.inspiration-panel button {
  background: var(--primary-button);
  min-height: 48px;
  color: var(--primary-button-text);
  border-radius: 999px;
  gap: 8px;
  margin-top: 18px;
  padding: 0 18px;
  font-size: .9rem;
  font-weight: 700;
}

.chat-teaser {
  background: var(--card);
  box-shadow: var(--shadow-card);
  border-radius: 22px;
  align-items: center;
  gap: 14px;
  padding: 16px;
  display: flex;
}

.chat-teaser div {
  flex: 1;
  min-width: 0;
}

.chat-teaser h2 {
  font-family: Segoe UI, Arial, Helvetica, sans-serif;
  font-size: .96rem;
  font-weight: 800;
}

.chat-teaser p {
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 2px 0 0;
  font-size: .78rem;
  overflow: hidden;
}

.bottom-nav {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #fffffff0;
  border-radius: 999px;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  display: flex;
  position: fixed;
  bottom: 12px;
  left: max(12px, 50vw - 203px);
  right: max(12px, 50vw - 203px);
}

.bottom-nav button {
  min-width: 64px;
  color: var(--muted);
  background: none;
  border-radius: 999px;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 8px 10px;
  font-size: .66rem;
  font-weight: 700;
}

.bottom-nav button.active {
  background: var(--primary-button);
  color: var(--primary-button-text);
}

.explorer-app, .detail-app {
  padding-bottom: 96px;
}

.detail-header, .subpage-header {
  align-items: center;
  gap: 14px;
  padding: 20px 16px 10px;
  display: flex;
}

.round-back, .detail-back {
  width: 42px;
  height: 42px;
  box-shadow: var(--shadow-card);
  background: #ffffffeb;
  border-radius: 50%;
  flex: none;
  place-items: center;
  display: grid;
}

.detail-header p, .subpage-header p, .detail-hero-copy span {
  color: var(--primary);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0;
  font-size: .7rem;
  font-weight: 800;
}

.detail-header h1, .subpage-header h1, .catalog-heading h2, .detail-hero-copy h1 {
  color: var(--foreground);
  letter-spacing: -.02em;
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-weight: 600;
}

.subpage-header h1 {
  margin-top: 2px;
  font-size: 1.85rem;
}

.detail-header {
  padding-bottom: 12px;
}

.detail-header h1 {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-top: 2px;
  font-size: 1.32rem;
  line-height: 1.12;
  display: -webkit-box;
  overflow: hidden;
}

.search-panel {
  border: 1px solid var(--border);
  background: var(--card);
  min-height: 48px;
  color: var(--muted);
  box-shadow: var(--shadow-card);
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  margin: 12px 16px 0;
  padding: 0 16px;
  font-size: .86rem;
  font-weight: 700;
  display: flex;
}

.search-panel input {
  min-width: 0;
  color: var(--foreground);
  font: inherit;
  background: none;
  border: 0;
  outline: 0;
  flex: 1;
}

.search-panel input::placeholder {
  color: var(--muted);
}

.search-panel a, .search-panel button {
  background: var(--secondary);
  min-width: 30px;
  height: 30px;
  color: var(--primary);
  border-radius: 50%;
  place-items: center;
  display: grid;
}

.search-panel button {
  border-radius: 999px;
  width: auto;
  padding: 0 10px;
  font-size: .68rem;
  font-weight: 900;
}

.category-tabs {
  scrollbar-width: none;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0 16px 4px;
  display: flex;
  overflow-x: auto;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tabs a {
  border: 1px solid var(--border);
  color: var(--foreground);
  background: #ffffffe6;
  border-radius: 999px;
  flex: none;
  padding: 10px 13px;
  font-size: .78rem;
  font-weight: 800;
}

.explorer-feature, .recurrence-card {
  background: var(--gradient-blush);
  color: var(--foreground);
  border-radius: 20px;
  align-items: center;
  gap: 12px;
  margin: 16px 16px 0;
  padding: 14px;
  display: flex;
}

.explorer-feature svg, .recurrence-card svg {
  color: var(--primary);
  flex: none;
}

.explorer-feature strong, .recurrence-card strong {
  font-size: .9rem;
  display: block;
}

.explorer-feature p, .recurrence-card span {
  color: var(--muted);
  margin: 2px 0 0;
  font-size: .78rem;
  line-height: 1.35;
}

.catalog-sections {
  gap: 20px;
  margin-top: 24px;
  display: grid;
}

.catalog-section {
  scroll-margin-top: 18px;
}

.empty-results {
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-card);
  border-radius: 22px;
  gap: 5px;
  margin: 24px 16px 0;
  padding: 18px;
  display: grid;
}

.empty-results strong {
  color: var(--foreground);
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.24rem;
}

.empty-results p {
  color: var(--muted);
  margin: 0;
  font-size: .86rem;
}

.catalog-heading {
  background: var(--foreground);
  min-height: 178px;
  box-shadow: var(--shadow-soft);
  border-radius: 28px;
  align-items: end;
  margin: 0 16px 12px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.catalog-heading img {
  object-fit: cover;
  opacity: .68;
  border-radius: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.catalog-heading:after {
  content: "";
  background: linear-gradient(#30232614 0%, #302326c7 100%);
  position: absolute;
  inset: 0;
}

.catalog-heading div {
  z-index: 1;
  padding: 18px;
  position: relative;
}

.catalog-heading span {
  color: var(--primary);
  background: #ffffffe6;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .7rem;
  font-weight: 850;
  display: inline-flex;
}

.catalog-heading h2 {
  color: #fff;
  margin-top: 10px;
  font-size: 1.58rem;
  line-height: 1.02;
}

.catalog-heading p {
  -webkit-line-clamp: 2;
  color: #fffc;
  -webkit-box-orient: vertical;
  margin: 4px 0 0;
  font-size: .8rem;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
}

.service-list {
  gap: 10px;
  margin: 0 16px;
  display: grid;
}

.service-row {
  border: 1px solid var(--border);
  background: #ffffffe6;
  border-radius: 20px;
  grid-template-columns: 74px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  padding: 8px 10px 8px 8px;
  display: grid;
  box-shadow: 0 6px 18px #3023260d;
}

.service-row img {
  object-fit: cover;
  border-radius: 16px;
  width: 74px;
  height: 74px;
}

.service-row span {
  min-width: 0;
}

.service-row strong, .service-row small, .service-row em {
  display: block;
}

.service-row strong {
  color: var(--foreground);
  font-size: .92rem;
}

.service-row small {
  -webkit-line-clamp: 1;
  color: var(--muted);
  -webkit-box-orient: vertical;
  margin-top: 3px;
  font-size: .74rem;
  line-height: 1.25;
  display: -webkit-box;
  overflow: hidden;
}

.service-row em {
  color: var(--primary);
  align-items: center;
  gap: 4px;
  margin-top: 7px;
  font-size: .72rem;
  font-style: normal;
  font-weight: 800;
  display: flex;
}

.sticky-cta {
  background: var(--primary-button);
  width: calc(100% - 32px);
  min-height: 52px;
  color: var(--primary-button-text);
  box-shadow: var(--shadow-soft);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 26px 16px 0;
  font-weight: 800;
  display: flex;
  position: sticky;
  bottom: 14px;
}

.service-hero-detail {
  border-radius: 30px;
  min-height: 420px;
  margin: 0 16px;
  position: relative;
  overflow: hidden;
}

.service-hero-detail img {
  object-fit: cover;
  width: 100%;
  height: 420px;
}

.detail-gradient {
  background: linear-gradient(#3023260a 0%, #302326d1 100%);
  position: absolute;
  inset: 0;
}

.detail-back {
  color: var(--foreground);
  display: none;
  position: absolute;
  top: 18px;
  left: 16px;
}

.detail-hero-copy {
  position: absolute;
  bottom: 24px;
  left: 18px;
  right: 18px;
}

.detail-hero-copy span {
  color: #fffc;
}

.detail-hero-copy h1 {
  color: #fff;
  max-width: 11ch;
  margin-top: 6px;
  font-size: 2.4rem;
  line-height: 1.02;
}

.detail-content {
  background: var(--background);
  border-radius: 28px;
  margin: -18px 16px 0;
  padding: 22px 16px 0;
  position: relative;
}

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

.detail-price-row strong {
  color: var(--foreground);
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.8rem;
}

.detail-price-row span {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: .78rem;
  font-weight: 800;
}

.detail-description {
  color: var(--muted);
  margin: 14px 0 0;
  font-size: .96rem;
  line-height: 1.55;
}

.option-picker {
  gap: 14px;
  margin-top: 18px;
  display: grid;
}

.option-total {
  background: var(--card);
  box-shadow: var(--shadow-card);
  border-radius: 22px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 3px 12px;
  padding: 16px;
  display: grid;
}

.option-total span {
  color: var(--muted);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 850;
}

.option-total strong {
  color: var(--foreground);
  grid-row: 2;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.option-total em {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 999px;
  grid-row: 2;
  align-self: center;
  padding: 8px 11px;
  font-size: .78rem;
  font-style: normal;
  font-weight: 800;
}

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

.option-card {
  border: 1px solid var(--border);
  background: #ffffffe6;
  border-radius: 20px;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 10px;
  display: grid;
}

.option-card.selected {
  border-color: #c94f7361;
  box-shadow: 0 10px 28px #c94f731a;
}

.option-icon {
  background: var(--secondary);
  width: 42px;
  height: 42px;
  color: var(--primary);
  border-radius: 14px;
  place-items: center;
  font-size: .82rem;
  font-weight: 900;
  display: grid;
}

.option-card h3 {
  color: var(--foreground);
  margin: 0;
  font-size: .92rem;
}

.option-card p {
  -webkit-line-clamp: 2;
  color: var(--muted);
  -webkit-box-orient: vertical;
  margin: 3px 0 0;
  font-size: .74rem;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
}

.option-card small {
  color: var(--primary);
  margin-top: 6px;
  font-size: .72rem;
  font-weight: 850;
  display: block;
}

.option-stepper {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 999px;
  grid-template-columns: 30px minmax(44px, auto) 30px;
  align-items: center;
  display: grid;
  overflow: hidden;
}

.option-stepper button {
  width: 30px;
  height: 34px;
  color: var(--foreground);
  background: none;
  place-items: center;
  display: grid;
}

.option-stepper button:disabled {
  color: var(--border);
  cursor: not-allowed;
}

.option-stepper strong {
  min-width: 44px;
  color: var(--foreground);
  text-align: center;
  font-size: .72rem;
}

.detail-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  display: grid;
}

.detail-stats article {
  background: var(--card);
  min-width: 0;
  box-shadow: var(--shadow-card);
  border-radius: 18px;
  gap: 10px;
  padding: 13px;
  display: flex;
}

.detail-stats svg {
  color: var(--primary);
  flex: none;
}

.detail-stats span {
  min-width: 0;
  color: var(--foreground);
  font-size: .82rem;
  font-weight: 800;
}

.detail-stats strong {
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 2px;
  font-size: .64rem;
  display: block;
}

.keyword-cloud {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  display: flex;
}

.keyword-cloud span {
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 11px;
  font-size: .76rem;
  font-weight: 800;
}

.detail-actions {
  grid-template-columns: .8fr 1.2fr;
  gap: 10px;
  margin: 24px 16px 0;
  display: grid;
  position: sticky;
  bottom: 12px;
}

.primary-cta, .secondary-cta {
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  font-weight: 800;
  display: flex;
}

.primary-cta {
  background: var(--primary-button);
  color: var(--primary-button-text);
  box-shadow: var(--shadow-soft);
}

.secondary-cta {
  border: 1px solid var(--border);
  background: var(--secondary-button);
  color: var(--secondary-button-text);
}

.auth-app {
  padding-bottom: 48px;
}

.auth-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  background: #ffffffeb;
  border-radius: 28px;
  gap: 18px;
  margin: 18px 16px 0;
  padding: 18px;
  display: grid;
}

.auth-tabs {
  background: var(--secondary);
  border-radius: 999px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 5px;
  display: grid;
}

.auth-tabs button {
  min-height: 42px;
  color: var(--muted);
  background: none;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 850;
}

.auth-tabs button.active {
  background: var(--card);
  color: var(--foreground);
  box-shadow: var(--shadow-card);
}

.auth-form {
  gap: 13px;
  display: grid;
}

.auth-form label {
  color: var(--foreground);
  gap: 6px;
  font-size: .76rem;
  font-weight: 850;
  display: grid;
}

.auth-form input, .auth-form select {
  border: 1px solid var(--border);
  background: var(--card);
  width: 100%;
  min-height: 46px;
  color: var(--foreground);
  font: inherit;
  border-radius: 16px;
  padding: 0 12px;
}

.auth-form label > span {
  align-items: center;
  display: flex;
  position: relative;
}

.auth-form label > span svg {
  color: var(--primary);
  position: absolute;
  left: 12px;
}

.auth-form label > span input {
  padding-left: 38px;
}

.auth-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  display: grid;
}

.auth-message {
  background: var(--secondary);
  color: var(--foreground);
  border-radius: 18px;
  margin: 0;
  padding: 12px;
  font-size: .82rem;
  line-height: 1.4;
}

.auth-submit {
  width: 100%;
  margin-top: 4px;
}

.auth-submit:disabled {
  opacity: .66;
  cursor: wait;
}

.auth-result {
  text-align: center;
  align-content: center;
  justify-items: center;
  min-height: 300px;
}

.auth-result svg, .reservation-card > svg {
  color: var(--primary);
}

.auth-result h1, .reservation-card h1 {
  color: var(--foreground);
  margin: 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.08;
}

.auth-result p, .reservation-card p {
  color: var(--muted);
  margin: 0;
  font-size: .9rem;
  line-height: 1.5;
}

.reservation-card {
  align-content: start;
}

@media (max-width: 390px) {
  .app-header {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-feature, .contact-card, .section-block, .inspiration-panel, .chat-teaser {
    margin-left: 10px;
    margin-right: 10px;
  }

  .hero-feature {
    border-radius: 26px;
  }

  .hero-copy {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-carousel {
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .category-grid, .contact-actions {
    gap: 8px;
  }
}

@media (min-width: 760px) {
  .app-page {
    align-items: center;
    padding: 24px;
  }

  .mobile-app {
    border: 1px solid var(--border);
    width: min(100%, 980px);
    min-height: min(860px, 100svh - 48px);
    box-shadow: var(--shadow-soft);
    border-radius: 36px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    padding: 24px 24px 104px;
    display: grid;
    overflow: hidden auto;
  }

  .app-header, .catalog-sections, .contact-card, .detail-actions, .detail-content, .detail-header, .explorer-feature, .search-panel, .services-section, .service-hero-detail, .sticky-cta, .subpage-header, .bottom-nav, .category-tabs {
    grid-column: 1 / -1;
  }

  .explorer-app > .category-tabs, .explorer-app > .catalog-sections {
    width: 100%;
  }

  .catalog-sections {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-section {
    min-width: 0;
  }

  .service-hero-detail {
    border-radius: 30px;
    margin: 0;
  }

  .detail-content {
    border-radius: 26px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .app-header {
    padding: 0;
  }

  .app-header h2 {
    font-size: 2rem;
  }

  .hero-feature {
    grid-column: 1 / -1;
    min-height: 420px;
    margin: 0;
  }

  .hero-feature img {
    min-height: 420px;
  }

  .hero-copy {
    padding: 32px;
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.5rem, 4vw, 4rem);
  }

  .contact-card {
    grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr);
    align-items: stretch;
    margin: 0;
  }

  .contact-actions {
    align-self: start;
  }

  .contact-map {
    grid-area: 1 / 2 / span 2;
    min-height: 230px;
  }

  .appointment-section {
    grid-column: 1 / span 6;
    align-self: start;
    margin: 0;
  }

  .appointment-card {
    min-height: 250px;
  }

  .appointment-top h3 {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
  }

  .services-section {
    grid-column: 1 / -1;
    margin: 0;
  }

  .service-carousel {
    scroll-snap-type: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    display: grid;
    overflow: visible;
  }

  .service-card {
    width: auto;
    min-width: 0;
  }

  .service-card img {
    height: 210px;
  }

  .service-explore-card {
    min-height: 100%;
  }

  .explore-card-visual {
    height: 210px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inspiration-section {
    grid-column: 7 / -1;
    margin: 0;
  }

  .inspiration-panel h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 3vw, 2.6rem);
  }

  .chat-section {
    grid-column: 1 / -1;
    align-self: stretch;
    margin: 0;
  }

  .chat-teaser p {
    white-space: normal;
  }

  .bottom-nav {
    justify-self: center;
    width: min(100%, 560px);
    margin-top: 0;
    position: sticky;
    bottom: 0;
    left: auto;
    right: auto;
  }
}

@media (min-width: 1120px) {
  .app-page {
    padding: 32px;
  }

  .mobile-app {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 28px;
    width: min(100%, 1180px);
    min-height: min(900px, 100svh - 64px);
    padding: 30px 30px 112px;
  }

  .hero-feature {
    grid-column: 1 / -1;
    min-height: 520px;
  }

  .hero-feature img {
    min-height: 520px;
  }

  .appointment-section {
    grid-column: 1 / span 5;
  }

  .inspiration-section {
    grid-column: 6 / span 4;
    margin: 0;
  }

  .chat-section {
    grid-column: 10 / -1;
  }

  .services-section {
    grid-column: 1 / -1;
  }

  .service-card img, .explore-card-visual {
    height: 230px;
  }

  .category-grid, .catalog-sections {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/*# sourceMappingURL=app_globals_0jn8.0u.css.map*/