html {
  font-size: 16px;
}

@media (min-width: 768px) {
  html {
    font-size: 17px;
  }
}

:root {
  --spa-site-header-h: 68px;
}

.spa-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--spa-site-header-h);
  background: linear-gradient(180deg, #fffdf8 0%, #fceef2 45%, #f8f4ec 100%);
  color: #3a2f32;
  font-family: "Outfit", system-ui, sans-serif;
}

.font-serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.04em;
}

.text-gold {
  color: #b8860b !important;
}

.text-spa {
  color: #3a2f32;
}

.btn-gold {
  background: linear-gradient(120deg, #d4af37, #c9a12c);
  border: none;
  color: #1f1810;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.btn-gold:hover {
  filter: brightness(1.05);
  color: #1f1810;
}

/* ----- Site header (fixed + megamenu + mobile offcanvas) ----- */
.spa-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* Below Bootstrap offcanvas (1045) + backdrop (1040) so mobile drawer is not covered */
  z-index: 1030;
  padding-top: env(safe-area-inset-top, 0);
  background: rgba(42, 31, 35, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 8px 28px rgba(20, 12, 16, 0.18);
  overflow: visible;
}

.spa-header-bar {
  overflow: visible;
}

.spa-header-bar__inner {
  display: grid;
  align-items: center;
  gap: 0.5rem 0.75rem;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding: 0.55rem 0.75rem;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "menu logo actions";
}

@media (min-width: 992px) {
  .spa-header-bar__inner {
    grid-template-columns: auto 1fr;
    grid-template-areas: "logo nav";
    gap: 0.75rem 1.25rem;
    padding: 0.55rem 1rem;
  }
}

.spa-header-cell--menu {
  grid-area: menu;
}

.spa-header-cell--logo {
  grid-area: logo;
  justify-self: center;
  text-align: center;
  min-width: 0;
}

@media (min-width: 992px) {
  .spa-header-cell--logo {
    justify-self: start;
    text-align: start;
  }
}

.spa-header-cell--actions {
  grid-area: actions;
}

.spa-header-cell--nav {
  grid-area: nav;
}

.spa-icon-btn {
  border: 1px solid rgba(255, 248, 240, 0.2);
  background: rgba(58, 47, 50, 0.35);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f8e9ec;
}

.spa-icon-btn:hover {
  border-color: rgba(243, 216, 137, 0.45);
  background: rgba(58, 47, 50, 0.55);
  color: #fff;
}

a.spa-icon-btn {
  text-decoration: none;
}

a.spa-icon-btn:focus-visible {
  outline: 2px solid rgba(243, 216, 137, 0.65);
  outline-offset: 2px;
}

.spa-header-cart-svg {
  display: block;
}

.spa-header-cart-svg--nav {
  flex-shrink: 0;
  opacity: 0.92;
}

.spa-icon-hamburger {
  display: block;
  width: 18px;
  height: 2px;
  background: #f8e9ec;
  box-shadow: 0 6px 0 #f8e9ec, 0 -6px 0 #f8e9ec;
}

.spa-header-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
  line-height: 1.15;
  text-decoration: none;
  min-width: 0;
}

@media (min-width: 992px) {
  .spa-header-brand {
    align-items: flex-start;
  }
}

.spa-header-brand__name {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.spa-header-brand__tag {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(248, 233, 236, 0.72);
}

.spa-book-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #1f1810;
  background: linear-gradient(120deg, #d4af37, #c9a12c);
  border: 1px solid rgba(212, 175, 55, 0.55);
  white-space: nowrap;
}

.spa-book-chip:hover {
  filter: brightness(1.06);
  color: #1f1810;
}

.spa-header-link {
  color: rgba(248, 233, 236, 0.92) !important;
  font-weight: 400;
  text-decoration: none;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  font-size: 0.95rem;
}

.spa-header-link:hover {
  color: #f3d889 !important;
  background: rgba(255, 255, 255, 0.06);
}

.spa-header-pill {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 248, 240, 0.22);
  background: rgba(58, 47, 50, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f8e9ec;
}

.spa-header-pill::after {
  display: none;
}

.spa-header-pill:hover {
  border-color: rgba(243, 216, 137, 0.45);
}

.spa-header-pill__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3d889, #d4af37);
  box-shadow: 0 0 0 3px rgba(243, 216, 137, 0.2);
}

.spa-header-dd {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 40px rgba(42, 31, 35, 0.12);
}

.spa-header-cta {
  margin-left: 0.25rem;
}

.spa-services-mega-wrap {
  position: static;
}

.spa-services-mega-wrap .dropdown-menu {
  width: min(1080px, calc(100vw - 1.25rem));
  max-width: none;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  margin-top: 0.55rem !important;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: linear-gradient(155deg, #fffdf8 0%, #fff8f0 45%, #fceef2 100%);
}

.spa-mega-trigger {
  border: 1px solid rgba(255, 248, 240, 0.22);
  background: rgba(58, 47, 50, 0.35);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.42rem 0.95rem 0.42rem 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #f8e9ec !important;
}

.spa-mega-trigger:hover,
.spa-mega-trigger:focus,
.spa-mega-trigger.show {
  border-color: rgba(243, 216, 137, 0.45);
  color: #fff !important;
  background: rgba(58, 47, 50, 0.55);
}

.spa-mega-trigger::after {
  margin-left: 0.1rem;
  opacity: 0.75;
}

.spa-mega-trigger__grid {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, #d4af37, #8b6914);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.spa-mega-panel__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
}

@media (max-width: 1199.98px) {
  .spa-mega-panel__inner {
    grid-template-columns: 1fr;
  }

  .spa-mega-panel__visual {
    display: none;
  }
}

.spa-mega-panel__visual {
  padding: 1.5rem 1.1rem;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.18), rgba(252, 238, 242, 0.95));
  border-right: 1px solid rgba(212, 175, 55, 0.22);
}

.spa-mega-panel__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #8b6914;
  margin-bottom: 0.4rem;
}

.spa-mega-panel__tagline {
  font-size: 0.82rem;
  color: #6b5a5e;
  line-height: 1.45;
  margin: 0;
}

.spa-mega-col {
  border-right: 1px solid rgba(58, 47, 50, 0.08);
  padding: 1.1rem 1.2rem;
}

.spa-mega-col:last-child {
  border-right: 0;
}

@media (max-width: 991.98px) {
  .spa-mega-col {
    border-right: 0;
    border-bottom: 1px solid rgba(58, 47, 50, 0.08);
  }
}

.spa-mega-root {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.25rem 0 0.65rem;
  color: #3a2f32;
  text-decoration: none;
  border-radius: 12px;
}

.spa-mega-root:hover {
  background: rgba(255, 255, 255, 0.65);
  color: #2a1f23;
}

.spa-mega-root__ic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.35), rgba(252, 238, 242, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.spa-mega-root__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.spa-mega-root__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.spa-mega-root__desc {
  font-size: 0.76rem;
  color: #7a6569;
  line-height: 1.35;
}

.spa-mega-sub {
  margin: 0;
  padding: 0 0 0 0.25rem;
}

.spa-mega-sub > li {
  margin-bottom: 0.25rem;
}

.spa-mega-sub__link {
  display: block;
  padding: 0.26rem 0.35rem;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 500;
  color: #5c4d50;
  text-decoration: none;
}

.spa-mega-sub__link:hover {
  background: rgba(184, 134, 11, 0.12);
  color: #8b6914;
}

.spa-mega-panel__footer {
  padding: 0.75rem 1.2rem 1rem;
  border-top: 1px solid rgba(58, 47, 50, 0.08);
  background: rgba(255, 253, 248, 0.75);
}

.spa-mega-panel__all {
  font-weight: 600;
  font-size: 0.88rem;
  color: #8b6914;
  text-decoration: none;
}

.spa-mega-panel__all:hover {
  color: #6b5210;
  text-decoration: underline;
}

.spa-mobi-nav.offcanvas {
  max-width: min(100vw - 2rem, 22rem);
  border-right: 1px solid rgba(212, 175, 55, 0.2);
  background: linear-gradient(180deg, #fffdf8, #fceef2);
}

.spa-mobi-nav__head {
  background: rgba(42, 31, 35, 0.04);
}

.spa-mobi-nav__head-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.spa-mobi-nav__close {
  margin-inline-start: auto;
}

.spa-mobi-nav__headline {
  font-size: 1.25rem;
  color: #2a1f23;
}

.spa-mobi-nav__body {
  overflow-y: auto;
}

.spa-mobi-panel {
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.65rem;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(58, 47, 50, 0.06);
}

.spa-mobi-panel__summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 0.95rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: #3a2f32;
  list-style: none;
}

.spa-mobi-panel__summary::-webkit-details-marker {
  display: none;
}

.spa-mobi-panel__title {
  flex: 1 1 auto;
  min-width: 0;
}

.spa-mobi-panel__ic {
  display: flex;
  color: #b8860b;
  flex-shrink: 0;
}

.spa-mobi-panel__chev {
  width: 9px;
  height: 9px;
  border-right: 2px solid #9a8588;
  border-bottom: 2px solid #9a8588;
  transform: rotate(45deg);
  margin-top: -3px;
  flex-shrink: 0;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.spa-mobi-panel[open] > .spa-mobi-panel__summary .spa-mobi-panel__chev {
  transform: rotate(225deg);
  margin-top: 2px;
}

.spa-mobi-panel__body {
  padding: 0 0.85rem 0.85rem;
  border-top: 1px solid rgba(58, 47, 50, 0.06);
  background: rgba(255, 253, 248, 0.65);
}

.spa-mobi-cat-stack {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.spa-mobi-cat-link {
  display: block;
  padding: 0.45rem 0.5rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.88rem;
  color: #3a2f32;
  text-decoration: none;
}

.spa-mobi-cat-link:hover {
  background: rgba(184, 134, 11, 0.12);
  color: #8b6914;
}

.spa-mobi-cat-link--muted {
  font-size: 0.8rem;
  font-weight: 600;
  color: #7a6569;
}

.spa-mobi-cat-details {
  border-radius: 12px;
  border: 1px solid rgba(58, 47, 50, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.spa-mobi-cat-summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 0.88rem;
  color: #3a2f32;
}

.spa-mobi-cat-summary::-webkit-details-marker {
  display: none;
}

.spa-mobi-cat-summary__name {
  flex: 1 1 auto;
  min-width: 0;
}

.spa-mobi-cat-summary__chev {
  width: 8px;
  height: 8px;
  border-right: 2px solid #9a8588;
  border-bottom: 2px solid #9a8588;
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.75;
  transition: transform 0.2s ease;
}

.spa-mobi-cat-details[open] > .spa-mobi-cat-summary .spa-mobi-cat-summary__chev {
  transform: rotate(225deg);
}

.spa-mobi-cat-details__body {
  padding: 0.35rem 0.55rem 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-top: 1px solid rgba(58, 47, 50, 0.06);
}

.spa-mobi-stack-link {
  font-size: 0.86rem;
  padding: 0.32rem 0.35rem;
  border-radius: 8px;
  color: #5c4d50;
  text-decoration: none;
}

.spa-mobi-stack-link:hover {
  background: rgba(184, 134, 11, 0.1);
  color: #8b6914;
}

.spa-mobi-ghost-row {
  display: flex;
  align-items: center;
  padding: 0.55rem 0.35rem;
  border-radius: 10px;
  font-weight: 500;
  color: #3a2f32;
  text-decoration: none;
}

.spa-mobi-ghost-row:hover {
  background: rgba(184, 134, 11, 0.1);
  color: #8b6914;
}

.spa-mobi-hr {
  border: 0;
  border-top: 1px solid rgba(58, 47, 50, 0.1);
}

.spa-mobi-nav__footer {
  background: rgba(255, 253, 248, 0.95);
}

@media (prefers-reduced-motion: reduce) {
  .spa-mobi-panel__chev,
  .spa-mobi-cat-summary__chev {
    transition: none;
  }
}

.spa-footer {
  background: rgba(255, 253, 248, 0.9);
}

.spa-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgba(58, 47, 50, 0.06);
}

/* Gift card designer — preview background matches catalog / PDF theme */
.gift-card-preview {
  min-height: 280px;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  background: linear-gradient(145deg, #fffdf8 0%, #fdf8f3 100%);
  border-color: rgba(212, 175, 55, 0.35) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.gift-card-preview--christmas {
  background: linear-gradient(135deg, #f2faf5 0%, #fff2f0 52%, #f6f8fc 100%);
}

.gift-card-preview--mothers-day {
  background: linear-gradient(135deg, #fffbfc 0%, #fceef4 48%, #fff8f2 100%);
}

.gift-card-preview--birthday {
  background: linear-gradient(135deg, #fffffb 0%, #fff7ed 50%, #fffbf0 100%);
}

.gift-card-preview--valentines {
  background: linear-gradient(135deg, #fff7f9 0%, #fce8ee 45%, #fdf2f8 100%);
}

.gift-card-preview--spa {
  background: linear-gradient(135deg, #f4faf7 0%, #eef6f2 50%, #f8f6f0 100%);
}

.gift-card-preview--custom {
  background: linear-gradient(135deg, #ffffff 0%, #fbf9f7 55%, #f8f4ec 100%);
}

.hero {
  padding: 3rem 1rem 2rem;
}

.hero-eyebrow {
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: #b8860b;
}

.hero-lead {
  max-width: 36rem;
}

.spa-table th {
  font-weight: 500;
  color: #7a6569;
  font-size: 0.85rem;
}

.border-light-subtle {
  border-color: rgba(0, 0, 0, 0.06) !important;
}

/* ——— Homepage (carousel + Lottie + sections) ——— */
main.home-layout {
  width: 100%;
  max-width: 100%;
  padding: 0 !important;
  flex: 1 0 auto;
}

.home-hero-carousel {
  --home-hero-min-height: clamp(28rem, 70vh, 44rem);
  position: relative;
}

.home-hero-carousel .carousel-inner {
  min-height: var(--home-hero-min-height);
}

/* Same min-height on every panel so slides match; do not set display on .carousel-item (breaks Bootstrap fade). */
.home-hero-carousel .home-hero-panel {
  min-height: var(--home-hero-min-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-hero-panel__inner {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.home-carousel-indicators {
  margin-bottom: 0.75rem;
  z-index: 4;
}

.home-carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background-color: rgba(255, 255, 255, 0.45);
}

.home-carousel-indicators .active {
  background-color: #f3d889;
}

.home-carousel-control {
  width: 8%;
  min-width: 2.5rem;
  opacity: 0.85;
  z-index: 4;
}

.home-hero-panel--primary {
  background: linear-gradient(135deg, #2a1f23 0%, #4a3540 48%, #2a1f23 100%);
}

.home-hero-panel--rose {
  background: linear-gradient(180deg, #fffdf8 0%, #fceef2 55%, #f5e6ea 100%);
}

.home-hero-panel--cream {
  background: linear-gradient(180deg, #f8f4ec 0%, #fffdf8 100%);
}

.home-eyebrow {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: #f3d889;
}

.home-hero-panel--rose .home-eyebrow,
.home-hero-panel--cream .home-eyebrow {
  color: #b8860b;
}

.home-lottie {
  width: min(100%, 22rem);
  height: min(52vw, 22rem);
  max-height: 360px;
}

@media (min-width: 992px) {
  .home-lottie {
    width: 100%;
    max-width: 420px;
    height: 380px;
  }
}

.home-section--muted {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.95) 0%, #fceef2 100%);
}

.home-feature {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(58, 47, 50, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(58, 47, 50, 0.08);
}

.home-feature-icon {
  font-size: 1.75rem;
  color: #b8860b;
  line-height: 1;
}

.home-review {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 12px 40px rgba(58, 47, 50, 0.06);
}

.home-service-card {
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.home-service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(58, 47, 50, 0.1) !important;
}

.home-badge-best {
  background: linear-gradient(120deg, #3a2f32, #554049);
  color: #fceef2;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.home-badge-popular {
  background: linear-gradient(120deg, #d4af37, #c9a12c);
  color: #1f1810;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.home-cta {
  background: linear-gradient(120deg, #2a1f23 0%, #4a3540 50%, #2a1f23 100%);
}

/* ——— Booking calendar (month grid) ——— */
.booking-cal__header {
  background: linear-gradient(180deg, #fffdf8 0%, #f8f4ec 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.booking-cal__nav {
  width: 2.25rem;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
}

.booking-cal__dow-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.booking-cal__dow-row span {
  padding: 0.15rem 0;
}

.booking-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.booking-cal__cell {
  aspect-ratio: 1;
  min-height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-cal__cell--pad {
  visibility: hidden;
}

.booking-cal__day {
  border: 1px solid rgba(58, 47, 50, 0.12);
  background: #fff;
  color: #3a2f32;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.booking-cal__day:hover:not(:disabled) {
  border-color: #d4af37;
  transform: translateY(-1px);
}

.booking-cal__day--open {
  background: linear-gradient(180deg, #fffef9 0%, #fceef2 100%);
  font-weight: 600;
}

.booking-cal__day--none,
.booking-cal__day--past {
  opacity: 0.38;
  cursor: not-allowed;
  background: #f4f1ed;
}

.booking-cal__day--selected {
  border-color: #b8860b;
  box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.35);
  background: linear-gradient(180deg, #fff8e7 0%, #fceef2 100%);
}

.booking-cal__num {
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .booking-cal__num {
    font-size: 1.05rem;
  }
}

/* ——— Booking time picker (compact grid + expandable artists) ——— */
.booking-slots-panel {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.booking-slots-panel__label {
  font-weight: 500;
  color: #5c4d50;
}

.booking-times {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: flex-start;
  align-content: flex-start;
  max-height: min(50vh, 21rem);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 2px;
}

.booking-time-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  min-width: 5.5rem;
  padding: 0.45rem 0.65rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(184, 134, 11, 0.45);
  background: linear-gradient(180deg, #fffef9 0%, #fff 100%);
  color: #3a2f32;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.booking-time-chip:hover {
  border-color: #b8860b;
  box-shadow: 0 2px 8px rgba(58, 47, 50, 0.08);
}

.booking-time-chip:focus-visible {
  outline: 2px solid #b8860b;
  outline-offset: 2px;
}

.booking-time-chip__time {
  color: #b8860b;
  letter-spacing: 0.02em;
}

.booking-time-chip__action {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7a6569;
}

.booking-time-chip--solo .booking-time-chip__action {
  color: #5c4d50;
}

.booking-time-chip--summary {
  list-style: none;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 6.25rem;
}

.booking-time-chip--summary::-webkit-details-marker {
  display: none;
}

.booking-time-chip__chev {
  display: block;
  width: 0.45rem;
  height: 0.45rem;
  flex-shrink: 0;
  border-right: 2px solid #b8860b;
  border-bottom: 2px solid #b8860b;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.booking-time-slot[open] > .booking-time-chip--summary .booking-time-chip__chev {
  transform: rotate(225deg);
}

.booking-time-slot {
  flex: 0 0 auto;
}

.booking-time-slot[open] {
  flex: 1 1 100%;
  width: 100%;
}

.booking-time-slot__panel {
  margin-top: 0.4rem;
  padding: 0.55rem 0.65rem 0.65rem;
  border-radius: 0.55rem;
  background: #fff;
  border: 1px solid rgba(184, 134, 11, 0.28);
  box-shadow: 0 4px 14px rgba(58, 47, 50, 0.06);
}

.booking-time-slot__legend {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a6569;
  margin-bottom: 0.25rem;
}

.booking-time-slot__techs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.booking-time-slot__tech {
  flex: 1 1 auto;
  min-width: 5.5rem;
  padding: 0.35rem 0.6rem;
  border-radius: 0.45rem;
  border: 1px solid rgba(58, 47, 50, 0.15);
  background: #fffdf8;
  color: #3a2f32;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.booking-time-slot__tech:hover {
  border-color: #b8860b;
  background: rgba(255, 248, 231, 0.85);
}

.booking-time-slot__tech:focus-visible {
  outline: 2px solid #b8860b;
  outline-offset: 2px;
}

@media (min-width: 992px) {
  .booking-times {
    max-height: min(56vh, 24rem);
  }
}

.booking-times-shell {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.booking-daypart-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.booking-daypart-tab {
  border: 1px solid rgba(58, 47, 50, 0.12);
  background: #fff;
  color: #5c4d50;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.booking-daypart-tab:hover {
  border-color: rgba(184, 134, 11, 0.45);
}

.booking-daypart-tab.is-active {
  border-color: #b8860b;
  background: linear-gradient(180deg, #fff8e7 0%, #fffef9 100%);
  color: #3a2f32;
}

.booking-daypart-tab:focus-visible {
  outline: 2px solid #b8860b;
  outline-offset: 2px;
}

.booking-time-chip__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08rem;
}

.booking-time-chip__dur {
  font-size: 0.68rem;
  font-weight: 500;
  color: #7a6569;
  letter-spacing: 0.02em;
}

.booking-time-chip--solo .booking-time-chip__dur {
  margin: 0.05rem 0;
}

.booking-time-slot__tech--preferred {
  border-color: rgba(184, 134, 11, 0.55) !important;
  background: rgba(255, 248, 231, 0.95) !important;
  font-weight: 600;
}

.booking-times--skeleton {
  pointer-events: none;
}

.booking-skel-chip {
  min-width: 5.5rem;
  height: 2.65rem;
  border-radius: 0.65rem;
  background: linear-gradient(90deg, #ede8e2 0%, #f5f1ec 45%, #ede8e2 90%);
  background-size: 200% 100%;
  animation: booking-skel-shimmer 1.1s ease-in-out infinite;
}

@keyframes booking-skel-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@media (max-width: 991.98px) {
  .booking-guest-sticky {
    position: sticky;
    top: calc(var(--spa-site-header-h, 68px) + 0.35rem);
    z-index: 6;
    margin: 0;
    padding: 0.65rem 0.75rem 0.75rem;
    border-radius: 0.65rem;
    background: linear-gradient(180deg, #fffdf8 0%, #fceef2 40%, #fffdf8 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 22px rgba(58, 47, 50, 0.08);
  }
}

.home-category-block .btn-outline-dark {
  border-color: rgba(58, 47, 50, 0.2);
  font-weight: 400;
}

.home-category-block .btn-outline-dark:hover {
  border-color: #b8860b;
  color: #3a2f32;
  background: rgba(255, 248, 231, 0.6);
}

/* ----- Promo strips (admin-managed; same behavior as NailSupplyWebsite) ----- */
.ns-promo-rotator {
  position: relative;
  z-index: 1020;
  min-height: 2.75rem;
  overflow: hidden;
}

.ns-promo-rotator:not(.ns-promo-rotator--stacked) {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

.ns-promo-rotator:not(.ns-promo-rotator--stacked) .ns-promo-slide {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  margin: 0;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  pointer-events: none;
  z-index: 0;
}

.ns-promo-rotator:not(.ns-promo-rotator--stacked) .ns-promo-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  pointer-events: auto;
}

.ns-promo-rotator:not(.ns-promo-rotator--stacked) .ns-promo-slide.ns-promo-slide--enter {
  opacity: 0;
  visibility: visible;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.ns-promo-rotator:not(.ns-promo-rotator--stacked) .ns-promo-slide.ns-promo-slide--enter.ns-promo-slide--enter-show {
  opacity: 1;
}

.ns-promo-rotator--stacked {
  display: block;
  min-height: 0;
  overflow: visible;
}

.ns-promo-rotator--stacked .ns-promo-slide {
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  margin-bottom: 0.15rem;
}

.ns-promo-strip {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ns-promo-strip--info {
  background: linear-gradient(90deg, #e8f4ff, #f3f7ff);
  color: #1a3a5c;
}

.ns-promo-strip--warning {
  background: linear-gradient(90deg, #fff8e6, #fff3cd);
  color: #5c4a1a;
}

.ns-promo-strip--sale {
  background: linear-gradient(90deg, #fde7ef, #fce4ec);
  color: #6b1a3d;
}

.ns-promo-row {
  min-height: 2.25rem;
}

.ns-promo-marquee {
  overflow: hidden;
  max-width: min(100%, 36rem);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.ns-promo-marquee__track {
  display: inline-flex;
  width: max-content;
  will-change: transform;
}

.ns-promo-marquee__seg {
  padding-inline: 1.75rem;
  white-space: nowrap;
  font-weight: 500;
}

.ns-promo-marquee--ltr .ns-promo-marquee__track--animate {
  animation: ns-promo-marquee-ltr var(--ns-marquee-ms, 14s) linear infinite;
}

.ns-promo-marquee--ltr .ns-promo-marquee__track--animate.ns-promo-marquee__track--once {
  animation-iteration-count: 1;
}

@keyframes ns-promo-marquee-ltr {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ns-promo-marquee__track--animate {
    animation: none !important;
    transform: none !important;
  }
}

.ns-promo-countdown {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #fafafa;
  background: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.35);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.ns-promo-strip .ns-promo-cta.btn {
  font-weight: 700;
  border-radius: 999px;
  padding-inline: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.ns-promo-strip--sale .ns-promo-cta.btn {
  background: linear-gradient(120deg, #d4af37, #c9a12c);
  border-color: #b8860b;
  color: #1f1810;
}

.ns-promo-strip--info .ns-promo-cta.btn {
  background: #1a3a5c;
  border-color: #1a3a5c;
  color: #fff;
}

.ns-promo-strip--warning .ns-promo-cta.btn {
  background: #5c4a1a;
  border-color: #5c4a1a;
  color: #fff;
}

.ns-promo-dismiss {
  position: absolute;
  top: 50%;
  right: 0.15rem;
  transform: translateY(-50%);
  z-index: 2;
  border: 0;
  background: transparent;
  font-size: 1.35rem;
  line-height: 1;
  opacity: 0.55;
  padding: 0.15rem 0.45rem;
  cursor: pointer;
  color: inherit;
}

.ns-promo-dismiss:hover {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .ns-promo-rotator .ns-promo-slide {
    transition: none;
  }
}
