:root {
  color: #f8f1e7;
  background: #050403;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  max-width: 100%;
}

/* Global native date, time, and month picker indicators visibility override */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator,
input[type="month"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8) sepia(1) saturate(5) hue-rotate(15deg) !important;
  cursor: pointer;
  opacity: 1 !important;
  padding: 6px;
  transition: transform 0.1s ease;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover,
input[type="month"]::-webkit-calendar-picker-indicator:hover {
  transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    transition-delay: -1ms !important;
  }
}
:root {
  --lux-black: #050403;
  --lux-charcoal: #141414;
  --lux-gray: #2b2b2b;
  --lux-ivory: #f8f1e7;
  --lux-muted: rgba(248, 241, 231, 0.72);
  --lux-gold: #c8a75a;
  --lux-gold-soft: #f1d78d;
  --lux-gold-dim: rgba(200, 167, 90, 0.34);
  --lux-sky: #bde8ff;
  --lux-sky-soft: rgba(189, 232, 255, 0.42);
  --lux-sky-wash: rgba(116, 198, 255, 0.18);
  --lux-blue-shadow: rgba(116, 198, 255, 0.22);
  --sb-badge-size: 48px;
}

.section,
.hero-section,
.nav,
.glass-button,
.service-card,
.review-card,
.auth-card,
.profile-card,
.admin-card,
.booking-service-card,
.map-preview {
  --lux-black: #050403;
  --lux-charcoal: #141414;
  --lux-gray: #2b2b2b;
  --lux-ivory: #f8f1e7;
  --lux-muted: rgba(248, 241, 231, 0.72);
  --lux-gold: #c8a75a;
  --lux-gold-soft: #f1d78d;
  --lux-gold-dim: rgba(200, 167, 90, 0.34);
  --lux-sky: #bde8ff;
  --lux-sky-soft: rgba(189, 232, 255, 0.42);
  --lux-sky-wash: rgba(116, 198, 255, 0.18);
  --lux-blue-shadow: rgba(116, 198, 255, 0.22);
  --sb-badge-size: 48px;
}

.service-image,
.style-upload-frame,
.gallery-draft-preview,
.create-review-upload,
.service-cover-preview {
  overflow: hidden;
}

.service-image img,
.gallery-media-card img,
.gallery-media-card video,
.gallery-draft-preview video,
.style-upload-frame img,
.gallery-draft-preview img,
.create-review-upload img,
.review-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 220ms ease,
    object-position 220ms ease,
    filter 220ms ease;
}

.section {
  padding: clamp(72px, 8vw, 124px) clamp(20px, 5vw, 72px);
}

.section-light {
  background:
    radial-gradient(circle at 14% 8%, rgba(189, 232, 255, 0.1), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(200, 167, 90, 0.12), transparent 30%),
    linear-gradient(180deg, #101010, #050403);
  color: var(--lux-ivory);
}

.section-dark {
  background:
    radial-gradient(circle at 12% 12%, rgba(189, 232, 255, 0.1), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(200, 167, 90, 0.08), transparent 30%),
    #050403;
  color: var(--lux-ivory);
}

.hero-section {
  --hero-image-position-x: center;
  --hero-image-position-y: 35%;
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  color: var(--lux-ivory);
}

.hero-portrait-section {
  background-color: #24496e;
  background-image: url('/images/homepage-hero-web1.png');
  background-size: cover;
  background-position: var(--hero-image-position-x) var(--hero-image-position-y);
  background-repeat: no-repeat;
}

.hero-portrait-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.hero-portrait-section::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 0;
  background: transparent;
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0;
  padding: 38px clamp(40px, 4.1vw, 64px) 16px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  column-gap: clamp(24px, 3vw, 56px);
  row-gap: 14px;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand {
  width: var(--sb-badge-size);
  height: var(--sb-badge-size);
  max-width: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  color: #1a1205;
  background: transparent;
  box-shadow: none;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1;
  min-width: 0;
  text-decoration: none;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
  text-shadow: none;
}

.brand-logo-slot {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  align-self: center;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  color: #1a1205;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.86), transparent 31%),
    linear-gradient(145deg, #fff0ad, #c8a75a 58%, #7b6328);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.22);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(0.95rem, 1.15vw, 1.14rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-text {
  display: block;
  transform: translateY(-0.02em);
  white-space: nowrap;
}

.brand:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(8px, 0.85vw, 14px);
  flex-wrap: wrap;
  min-width: 0;
}

.nav-links-center {
  justify-self: center;
  justify-content: center;
  gap: clamp(12px, 1vw, 16px);
}

.nav-messages-btn,
.nav-links a {
  min-width: 128px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px clamp(23px, 1.7vw, 30px);
  border: 1px solid rgba(241, 215, 141, 0.38);
  border-radius: 999px;
  color: #fff8e9;
  background:
    linear-gradient(180deg, rgba(189, 232, 255, 0.16), rgba(255, 255, 255, 0.052)),
    rgba(6, 18, 27, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 14px 34px rgba(5, 19, 28, 0.22),
    0 0 20px rgba(116, 198, 255, 0.16);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.34);
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  white-space: nowrap;
}

.nav-messages-btn:hover,
.nav-messages-btn:active,
.nav-links a:hover,
.nav-links a:active {
  transform: translateY(-2px);
  border-color: rgba(241, 215, 141, 0.7);
  color: #fffdf8;
  background:
    linear-gradient(180deg, rgba(241, 215, 141, 0.18), rgba(189, 232, 255, 0.12)),
    rgba(8, 24, 35, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 42px rgba(5, 19, 28, 0.24),
    0 0 28px rgba(189, 232, 255, 0.24),
    0 0 16px rgba(241, 215, 141, 0.12);
}

.nav-links a.active,
.mobile-menu-links a.active {
  border-color: rgba(241, 215, 141, 0.7);
  background:
    linear-gradient(180deg, rgba(241, 215, 141, 0.12), rgba(189, 232, 255, 0.08)),
    rgba(8, 24, 35, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 42px rgba(5, 19, 28, 0.24),
    0 0 28px rgba(189, 232, 255, 0.24),
    0 0 16px rgba(241, 215, 141, 0.12);
}

.nav-right-cluster {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
  justify-self: end;
}

.nav-booking-btn {
  min-width: 116px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 27px;
  border: 1px solid var(--lux-gold);
  border-radius: 999px;
  color: var(--lux-black);
  background: linear-gradient(135deg, var(--lux-gold-soft), var(--lux-gold));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 14px 34px rgba(5, 19, 28, 0.22),
    0 0 20px rgba(241, 215, 141, 0.25);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  white-space: nowrap;
}

.nav-booking-btn:hover,
.nav-booking-btn:active {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #fffcf3, var(--lux-gold-soft));
  border-color: #fffaf1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 18px 42px rgba(5, 19, 28, 0.26),
    0 0 28px rgba(241, 215, 141, 0.45);
}

.nav-auth {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1vw, 14px);
}

.admin-create-menu {
  position: relative;
}

.admin-create-button {
  min-height: 50px;
  border: 1px solid rgba(255, 238, 172, 0.78);
  border-radius: 999px;
  padding: 12px 21px;
  color: #111;
  background:
    linear-gradient(135deg, rgba(255, 239, 174, 1), rgba(241, 215, 141, 0.98) 48%, rgba(200, 167, 90, 0.96)),
    #c8a75a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 16px 38px rgba(5, 19, 28, 0.22),
    0 0 24px rgba(241, 215, 141, 0.22);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 950;
}

.admin-create-popover,
.style-card-actions-menu {
  position: absolute;
  z-index: 30;
  display: grid;
  border: 1px solid rgba(200, 167, 90, 0.28);
  border-radius: 16px;
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(189, 232, 255, 0.11), rgba(255, 255, 255, 0.032)),
    rgba(8, 16, 22, 0.96);
  box-shadow:
    0 22px 64px rgba(116, 198, 255, 0.2),
    0 12px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.admin-create-popover {
  top: calc(100% + 10px);
  right: 0;
  width: 240px;
}

.admin-create-popover button,
.style-card-actions-menu button {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 10px 11px;
  color: var(--lux-ivory);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  text-align: left;
}

.admin-create-popover button {
  display: grid;
  gap: 3px;
}

.admin-create-popover button:hover:not(:disabled),
.style-card-actions-menu button:hover {
  background: rgba(200, 167, 90, 0.13);
}

.admin-create-popover button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.admin-create-popover small {
  color: rgba(248, 241, 231, 0.56);
  font-size: 0.74rem;
}

.login-nav-button,
.profile-nav-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.login-nav-button {
  gap: 10px;
  min-width: 132px;
  padding: 13px 23px;
  border: 1px solid rgba(241, 215, 141, 0.5);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(189, 232, 255, 0.2), rgba(241, 215, 141, 0.14)),
    rgba(6, 18, 27, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 44px rgba(5, 19, 28, 0.2),
    0 0 20px rgba(116, 198, 255, 0.16);
  color: var(--lux-ivory);
  font-weight: 900;
  letter-spacing: 0.02em;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.login-nav-button::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lux-gold-soft);
  box-shadow:
    0 0 0 5px rgba(189, 232, 255, 0.16),
    0 0 18px rgba(241, 215, 141, 0.18);
}

.profile-nav-button {
  width: 54px;
  height: 54px;
  overflow: hidden;
  border: 1px solid rgba(241, 215, 141, 0.52);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.76), transparent 28%),
    linear-gradient(145deg, #112533, #756135);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 44px rgba(5, 19, 28, 0.18),
    0 0 22px rgba(116, 198, 255, 0.2);
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  font-weight: 800;
}

.profile-nav-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-nav-button:hover,
.profile-nav-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 54px rgba(116, 198, 255, 0.24),
    0 10px 28px rgba(0, 0, 0, 0.14);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - clamp(64px, 8vw, 132px)));
  flex: 1;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.59fr) minmax(420px, 0.41fr);
  align-items: center;
  gap: 0;
  padding-block: clamp(52px, 5vw, 82px) clamp(76px, 8vw, 118px);
}

.hero-copy {
  grid-column: 2;
  max-width: 520px;
  margin-left: clamp(28px, 3vw, 52px);
  margin-top: clamp(18px, 3vw, 48px);
  padding: 0;
  text-align: left;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lux-gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  margin: 24px 0 0;
  color: #fff0ad;
  line-height: 1.25;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.52);
}

.hero-copy h1,
.section-heading h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 740px;
  font-size: clamp(4rem, 8vw, 7.6rem);
  line-height: 0.86;
  color: var(--lux-ivory);
  text-shadow:
    0 0 24px rgba(189, 232, 255, 0.18),
    0 18px 44px rgba(4, 13, 20, 0.72);
}

.hero-title-mobile {
  display: none;
}

.hero-text {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 250, 241, 0.86);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.5;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-copy .button-row {
  margin-top: 28px;
  gap: 18px;
  flex-wrap: nowrap;
  display: flex;
  width: 100%;
}

.hero-copy .glass-button {
  padding: 14px 18px;
  font-size: 0.94rem;
  min-height: 64px;
  flex: 1;
  white-space: nowrap;
}

@media (min-width: 769px) {
  .landing-hero.hero-section {
    --hero-image-position-x: center;
    --hero-image-position-y: 35%;
    min-height: 100svh;
  }

  .landing-hero > .nav {
    padding: clamp(34px, 3vw, 44px) clamp(48px, 5vw, 86px) 14px;
  }

  .landing-hero-content.hero-content {
    width: min(1420px, calc(100% - clamp(96px, 10vw, 184px)));
    grid-template-columns: minmax(520px, 0.56fr) minmax(560px, 0.44fr);
    align-items: center;
    padding-block: clamp(72px, 7vw, 118px) clamp(88px, 8vw, 132px);
  }

  .landing-hero-copy.hero-copy {
    grid-column: 2;
    max-width: 680px;
    margin: clamp(42px, 5vh, 74px) 0 0 clamp(24px, 3vw, 54px);
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    text-align: left;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .landing-hero-copy.hero-copy h1 {
    max-width: 680px;
    font-size: clamp(4.4rem, 5.8vw, 7rem);
    line-height: 0.9;
  }

  .landing-hero-copy.hero-copy .hero-title-desktop {
    white-space: nowrap;
  }

  .landing-hero-copy.hero-copy .button-row {
    max-width: 560px;
  }
}

.glass-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid rgba(200, 167, 90, 0.42);
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.glass-button:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 215, 141, 0.72);
  box-shadow:
    0 18px 44px rgba(116, 198, 255, 0.22),
    0 10px 26px rgba(0, 0, 0, 0.16);
}

.glass-button:focus-visible,
.message-widget-button:focus-visible,
.nav-links a:focus-visible,
.login-nav-button:focus-visible,
.profile-nav-button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.glass-button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.glass-dark {
  color: var(--lux-black);
  background:
    linear-gradient(135deg, #f1d78d, #c8a75a 58%, #fff1bd);
  border-color: rgba(255, 232, 165, 0.72);
}

.glass-light {
  color: var(--lux-ivory);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 167, 90, 0.38);
}

.glass-card {
  color: var(--lux-ivory);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(200, 167, 90, 0.3);
}

.hero-image-card {
  position: relative;
  min-height: clamp(330px, 40vw, 460px);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 38px;
  background:
    radial-gradient(circle at 62% 18%, rgba(255, 255, 255, 0.9), transparent 24%),
    linear-gradient(145deg, #121212 0%, #292621 46%, #f3efe7 46.5%, #ffffff 100%);
  box-shadow:
    0 26px 70px rgba(116, 198, 255, 0.16),
    0 10px 28px rgba(0, 0, 0, 0.1);
}

.hair-frame {
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 30px;
}

.hair-line {
  position: absolute;
  left: 50%;
  display: block;
  width: 42%;
  height: 80%;
  border-left: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  transform-origin: top center;
}

.line-one {
  top: 8%;
  transform: translateX(-60%) rotate(8deg);
}

.line-two {
  top: 13%;
  transform: translateX(-40%) rotate(-8deg);
}

.line-three {
  top: 18%;
  transform: translateX(-15%) rotate(-18deg);
}

.portrait-mark {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0b0b0b;
  background: rgba(255, 255, 255, 0.8);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.4rem;
}

.section-heading {
  width: min(1160px, 100%);
  margin: 0 auto 36px;
}

.services-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 0.98;
}

.services-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-block: clamp(74px, 8vw, 118px);
}

.styles-page {
  min-height: 100svh;
  overflow-x: hidden;
  background: #050403;
}

.public-marketing-page {
  --public-nav-offset: 111px;
  position: relative;
  min-height: 100svh;
  overflow-x: hidden;
  color: var(--lux-ivory);
}

.public-marketing-page > .nav {
  position: absolute;
  top: 0;
  left: 0;
}

.services-section-standalone {
  min-height: 100svh;
}

/* Standalone marketing pages start near the navigation instead of reusing
   the vertically centered homepage section presentation. The first section
   starts at the top so its background sits behind the overlay navigation. */
.styles-page > .services-section-standalone,
.public-section-page > .reviews-section {
  min-height: 100svh;
  justify-content: flex-start;
  padding-top: calc(var(--public-nav-offset) + clamp(34px, 4vw, 58px));
  padding-bottom: clamp(72px, 8vw, 112px);
}

.public-section-page > .gallery-section {
  min-height: 100svh;
  padding-top: 0;
  padding-bottom: 0;
}

.styles-page > .services-section-standalone .section-heading,
.public-section-page > .reviews-section .reviews-heading {
  margin-bottom: clamp(24px, 3vw, 38px);
}

.service-carousel {
  position: relative;
  width: min(1360px, calc(100% - 168px));
  margin: 0 auto;
}

.service-grid {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.026)),
    rgba(18, 18, 18, 0.72);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.add-style-button {
  border: 1px solid rgba(241, 215, 141, 0.56);
  color: #111;
  background: linear-gradient(135deg, #f1d78d, #c8a75a);
  box-shadow:
    0 16px 38px rgba(116, 198, 255, 0.2),
    0 8px 22px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  font-weight: 900;
}

.add-style-button {
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 18px;
}

.style-card-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 9;
}

.style-card-actions-trigger {
  min-width: 48px;
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(241, 215, 141, 0.42);
  border-radius: 50%;
  color: var(--lux-gold-soft);
  background:
    linear-gradient(180deg, rgba(189, 232, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(5, 16, 23, 0.72);
  box-shadow:
    0 14px 34px rgba(116, 198, 255, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.12em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  line-height: 1;
  padding: 0;
}

.ellipsis-dots {
  display: grid;
  place-items: center;
  width: 1.6em;
  height: 1.6em;
  line-height: 1;
  font-size: 0.92rem;
  letter-spacing: 0.11em;
  transform: translateY(-0.02em);
}

.style-card-actions-trigger:hover,
.style-card-actions-trigger:focus-visible {
  border-color: rgba(241, 215, 141, 0.7);
  color: #fff;
}

.style-card-actions-menu {
  top: calc(100% + 8px);
  right: 0;
  width: 150px;
}

.style-card-actions-menu button.danger {
  color: #ffd4c6;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 215, 141, 0.54);
  background:
    linear-gradient(180deg, rgba(200, 167, 90, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(22, 22, 22, 0.82);
}

.service-card-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.service-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
}

.service-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.08);
  transition: transform 220ms ease;
}

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.14) 38%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(135deg, rgba(241, 215, 141, 0.22), transparent 38%);
  pointer-events: none;
}

.service-card-number {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.95rem;
  color: var(--lux-gold-soft);
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.service-card:hover .service-image img {
  transform: scale(1.045);
}

.service-card-body {
  padding: 16px;
}

.service-card h3 {
  margin: 0 0 6px;
  color: var(--lux-ivory);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
}

.service-card p {
  margin: 0 0 14px;
  color: rgba(248, 241, 231, 0.66);
  font-size: 0.95rem;
}

.edge-navigation {
  position: fixed;
  top: 111px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 18;
  pointer-events: none;
}

.edge-navigation-zone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(72px, 8vw, 100px);
  display: grid;
  place-items: center;
  border: 0;
  color: rgba(241, 215, 141, 0.72);
  background: transparent;
  cursor: pointer;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  line-height: 1;
  opacity: 0.46;
  pointer-events: auto;
  transition:
    opacity 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.edge-navigation-zone span {
  transform: translateY(-2px);
  text-shadow: 0 0 26px rgba(241, 215, 141, 0.18);
}

.edge-navigation-zone:hover,
.edge-navigation-zone:focus-visible {
  opacity: 1;
  color: #fff;
  outline: none;
}

.edge-navigation-zone:disabled {
  cursor: default;
  opacity: 0.18;
}

.edge-navigation-zone-left {
  left: 0;
  background: linear-gradient(90deg, rgba(200, 167, 90, 0.22), transparent);
}

.edge-navigation-zone-right {
  right: 0;
  background: linear-gradient(270deg, rgba(200, 167, 90, 0.22), transparent);
}

.edge-navigation-zone-left:hover,
.edge-navigation-zone-left:focus-visible {
  background: linear-gradient(90deg, rgba(200, 167, 90, 0.34), transparent);
}

.edge-navigation-zone-right:hover,
.edge-navigation-zone-right:focus-visible {
  background: linear-gradient(270deg, rgba(200, 167, 90, 0.34), transparent);
}

.edge-navigation-anchor {
  position: absolute;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.service-dots {
  width: min(1160px, 100%);
  margin: 26px auto 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.service-dots button {
  width: 28px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.service-dots span {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: rgba(200, 167, 90, 0.34);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.service-dots .active span {
  background: var(--lux-gold-soft);
  transform: scale(1.18);
}

.gallery-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--lux-ivory);
  background-color: #050403;
  background-image: url('/images/lookbook-salon.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover !important;
}

.gallery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 5, 7, 0.48), rgba(3, 5, 7, 0.58)),
    radial-gradient(circle at 50% 24%, rgba(200, 167, 90, 0.16), transparent 32%);
  pointer-events: none;
}

.gallery-section .section-heading {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: calc(100% - 170px);
  margin: 0 auto;
  padding: clamp(12px, 1.6vw, 16px) clamp(22px, 2.8vw, 34px);
  border: 1px solid rgba(200, 167, 90, 0.26);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(189, 232, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(5, 13, 19, 0.42);
  box-shadow:
    0 24px 68px rgba(116, 198, 255, 0.16),
    0 10px 28px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gallery-section .section-heading h2 {
  font-size: clamp(2.5rem, 6vw, 5.2rem);
}

.gallery-section .section-heading h2,
.gallery-section .eyebrow {
  color: var(--lux-ivory);
}

.gallery-media-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: clamp(26px, 4vw, 50px) auto 0;
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  flex-wrap: nowrap;
  gap: clamp(16px, 3vw, 32px);
  padding: 10px clamp(24px, 6vw, 80px) 30px;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-media-grid::-webkit-scrollbar {
  display: none;
}

.gallery-upload-tile,
.gallery-media-card {
  flex: 0 0 auto;
  scroll-snap-align: center;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026)),
    rgba(7, 18, 26, 0.78);
  box-shadow:
    0 22px 60px rgba(116, 198, 255, 0.16),
    0 10px 30px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
}

.gallery-upload-tile {
  height: clamp(380px, 60vh, 500px);
  width: clamp(240px, 30vw, 300px);
  border: 1px dashed var(--lux-gold);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: var(--lux-ivory);
  cursor: pointer;
  font: inherit;
  text-align: center;
}

.gallery-upload-tile:hover,
.gallery-upload-tile:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(241, 215, 141, 0.64);
  outline: none;
  box-shadow:
    0 28px 70px rgba(116, 198, 255, 0.24),
    0 12px 34px rgba(0, 0, 0, 0.22);
}

.gallery-upload-tile span {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 215, 141, 0.54);
  border-radius: 50%;
  color: #121006;
  background: linear-gradient(135deg, var(--lux-gold-soft), var(--lux-gold));
  box-shadow: 0 0 30px rgba(241, 215, 141, 0.24);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
}

.gallery-upload-tile strong {
  color: var(--lux-ivory);
  font-size: 1.1rem;
}

.gallery-upload-tile small {
  color: rgba(248, 241, 231, 0.62);
  font-weight: 700;
}

.gallery-media-card {
  position: relative;
  overflow: hidden;
  height: clamp(380px, 60vh, 500px);
  width: auto;
  border: 1px solid var(--lux-gold);
}

.gallery-media-card.is-hidden {
  opacity: 0.55;
  transition: opacity 250ms ease;
}

.gallery-media-button {
  position: relative;
  width: auto;
  height: 100%;
  display: block;
  overflow: hidden;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.gallery-media-button img {
  position: relative;
  width: auto;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: saturate(0.98) contrast(1.05);
}

.gallery-media-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.72)),
    linear-gradient(135deg, rgba(241, 215, 141, 0.16), transparent 38%);
  color: var(--lux-ivory);
  text-align: left;
}

.gallery-media-overlay small {
  width: fit-content;
  border: 1px solid rgba(241, 215, 141, 0.42);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--lux-gold-soft);
  background: rgba(5, 13, 19, 0.64);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery-media-overlay strong {
  max-width: 88%;
  font-size: 1rem;
  line-height: 1.25;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.64);
}

.gallery-media-video-wrapper {
  position: relative;
  width: auto;
  height: 100%;
  overflow: hidden;
  background: #020202;
  line-height: 0;
  display: flex;
  align-items: center;
}

.gallery-video-element {
  width: auto;
  height: 100%;
  display: block;
  object-fit: contain;
}

.gallery-media-video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 18px;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.85) 90%);
  pointer-events: none;
  z-index: 2;
}

.gallery-video-caption {
  color: var(--lux-ivory);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
  max-width: 80%;
  pointer-events: auto;
}

.gallery-video-fullscreen-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  pointer-events: auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 215, 141, 0.42);
  border-radius: 50%;
  color: var(--lux-gold-soft);
  background: rgba(5, 13, 19, 0.64);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 180ms ease;
  z-index: 10;
}

.gallery-video-fullscreen-btn:hover {
  border-color: var(--lux-gold);
  color: #121006;
  background: linear-gradient(135deg, var(--lux-gold-soft), var(--lux-gold));
  transform: scale(1.08);
}

.gallery-management-panel {
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(200, 167, 90, 0.18);
  padding: 12px;
  background: rgba(5, 13, 19, 0.92);
}

.gallery-management-badges,
.gallery-management-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.gallery-management-badges span {
  border: 1px solid rgba(241, 215, 141, 0.34);
  border-radius: 999px;
  padding: 4px 8px;
  color: rgba(248, 241, 231, 0.76);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gallery-management-panel label {
  display: grid;
  gap: 5px;
  color: rgba(248, 241, 231, 0.7);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-management-panel input {
  min-height: 38px;
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 12px;
  padding: 8px 10px;
  color: var(--lux-ivory);
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
  text-transform: none;
}

.gallery-management-actions button {
  min-height: 32px;
  border: 1px solid rgba(200, 167, 90, 0.24);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--lux-ivory);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 850;
}

.gallery-management-actions button:hover:not(:disabled) {
  border-color: rgba(241, 215, 141, 0.58);
}

.gallery-management-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.gallery-management-actions button.danger {
  color: #ffd4c6;
}

.gallery-upload-dropzone.drag-active {
  border-color: rgba(241, 215, 141, 0.72);
  background:
    linear-gradient(180deg, rgba(241, 215, 141, 0.16), rgba(255, 255, 255, 0.052)),
    rgba(7, 18, 26, 0.84);
}

.gallery-upload-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.gallery-upload-progress span {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lux-gold), var(--lux-gold-soft));
  transition: width 180ms ease;
}

.gallery-viewer-backdrop {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 34px);
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.gallery-viewer {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100svh - 48px);
  display: grid;
  gap: 14px;
}

.gallery-viewer-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.gallery-viewer-media {
  min-height: min(76svh, 760px);
  display: grid;
  place-items: center;
  overflow: visible;
}

.gallery-viewer-media .gallery-media-frame {
  max-width: 100%;
  max-height: 76svh;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.gallery-viewer p {
  width: fit-content;
  max-width: min(760px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--lux-ivory);
  background: rgba(5, 13, 19, 0.74);
  text-align: center;
}

.reviews-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-block: clamp(112px, 12vw, 176px);
}

.reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 167, 90, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 28%);
}

.reviews-heading {
  position: relative;
  width: min(1240px, 100%);
  margin: 0 auto clamp(46px, 6vw, 76px);
  text-align: center;
}

.reviews-heading h2 {
  margin: 0;
  color: var(--lux-ivory);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3.1rem, 8.2vw, 8rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
}

.reviews-grid {
  position: relative;
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.review-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 2.2vw, 32px);
  border: 1px solid rgba(200, 167, 90, 0.38);
  border-radius: 24px;
  color: var(--lux-ivory);
  background:
    linear-gradient(180deg, rgba(44, 44, 44, 0.92), rgba(18, 18, 18, 0.9)),
    rgba(20, 20, 20, 0.9);
  box-shadow:
    0 24px 68px rgba(116, 198, 255, 0.16),
    0 10px 30px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.review-card:hover {
  transform: translateY(-7px);
  border-color: rgba(241, 215, 141, 0.68);
  box-shadow:
    0 34px 86px rgba(116, 198, 255, 0.22),
    0 12px 34px rgba(0, 0, 0, 0.18);
}

.review-stars {
  color: var(--lux-gold-soft);
  font-size: 1.02rem;
  letter-spacing: 0.16em;
}

.review-text {
  margin: 0;
  color: rgba(248, 241, 231, 0.86);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.08rem, 1.5vw, 1.26rem);
  line-height: 1.42;
}

.review-client {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 167, 90, 0.28);
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.62), transparent 22%),
    linear-gradient(145deg, #111, #755f31);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.review-avatar-2,
.review-avatar-4 {
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.58), transparent 24%),
    linear-gradient(145deg, #0b0b0b, #403c37 52%, #a89f91);
}

.review-client h3 {
  margin: 0 0 4px;
  color: var(--lux-ivory);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
}

.review-client p,
.review-client span {
  display: block;
  margin: 0;
  color: rgba(248, 241, 231, 0.68);
  font-size: 0.82rem;
  line-height: 1.35;
}

.review-client span {
  color: rgba(241, 215, 141, 0.78);
}

.location-section {
  padding-block: clamp(86px, 10vw, 144px);
}

.location-content {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 82px);
}

.location-content h2 {
  margin: 0;
  color: var(--lux-ivory);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.45rem, 6vw, 5.2rem);
  font-weight: 500;
  line-height: 0.98;
}

.location-content p:not(.eyebrow) {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(248, 241, 231, 0.72);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.6;
}

.location-content address {
  max-width: 360px;
  margin-top: 24px;
  color: var(--lux-gold-soft);
  font-style: normal;
  font-weight: 800;
  line-height: 1.5;
}

.map-preview {
  position: relative;
  min-height: clamp(260px, 32vw, 390px);
  overflow: hidden;
  border: 1px solid rgba(200, 167, 90, 0.3);
  border-radius: 34px;
  background: #111;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.map-preview iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.04);
}

.map-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(200, 167, 90, 0.42);
  border-radius: 18px;
  color: var(--lux-ivory);
  background: rgba(5, 4, 3, 0.54);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.map-card span {
  max-width: 220px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.detail-page {
  min-height: 100svh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(200, 167, 90, 0.13), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(255, 255, 255, 0.06), transparent 30%),
    #030303;
  color: var(--lux-ivory);
}

.booking-menu-page {
  min-height: 100svh;
  overflow-x: hidden;
  color: var(--lux-ivory);
  background:
    radial-gradient(circle at 78% 12%, rgba(200, 167, 90, 0.14), transparent 28%),
    radial-gradient(circle at 10% 32%, rgba(255, 255, 255, 0.06), transparent 28%),
    #030303;
}

.booking-payment-page {
  background:
    radial-gradient(circle at 82% 12%, rgba(200, 167, 90, 0.065), transparent 30%),
    radial-gradient(circle at 8% 34%, rgba(255, 255, 255, 0.026), transparent 30%),
    #030303;
}

.booking-menu-hero {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(24px, 3.5vw, 40px) 0 clamp(48px, 6vw, 80px);
}

.booking-menu-hero .booking-menu-intro {
  margin: 0 auto clamp(24px, 4vw, 40px);
}

.booking-menu-hero .booking-menu-intro p:not(.eyebrow) {
  margin-top: 12px;
}

.booking-menu-intro {
  max-width: 860px;
  margin: 0 auto clamp(44px, 6vw, 74px);
  text-align: center;
}

.booking-menu-intro h1 {
  margin: 0;
  color: var(--lux-ivory);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

.booking-menu-intro p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px auto 0;
  color: rgba(248, 241, 231, 0.72);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.58;
}

.booking-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.booking-service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 2.5vw, 34px);
  border: 1px solid rgba(200, 167, 90, 0.24);
  border-radius: 28px;
  color: var(--lux-ivory);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(22, 22, 22, 0.72);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transform: translateY(0);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.booking-service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(241, 215, 141, 0.56);
  background:
    linear-gradient(180deg, rgba(200, 167, 90, 0.14), rgba(255, 255, 255, 0.048)),
    rgba(32, 30, 26, 0.78);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.42);
}

.booking-card-kicker {
  margin: 0 0 18px;
  color: rgba(241, 215, 141, 0.7);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-service-card h2 {
  margin: 0;
  color: var(--lux-ivory);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 500;
  line-height: 1;
}

.booking-service-card p:not(.booking-card-kicker) {
  margin: 18px 0 0;
  color: rgba(248, 241, 231, 0.68);
  line-height: 1.55;
}

.booking-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.booking-card-footer > span:first-child {
  color: rgba(241, 215, 141, 0.72);
  font-weight: 800;
}

.auth-page {
  min-height: 100svh;
  overflow-x: hidden;
  color: var(--lux-ivory);
  background:
    radial-gradient(circle at 78% 12%, rgba(200, 167, 90, 0.14), transparent 28%),
    radial-gradient(circle at 8% 74%, rgba(255, 255, 255, 0.06), transparent 30%),
    #030303;
}

.auth-shell,
.profile-shell,
.admin-shell,
.access-state {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 118px) 0 clamp(86px, 10vw, 140px);
}

.auth-shell {
  min-height: calc(100svh - 111px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 7vw, 96px);
}

.auth-copy h1,
.profile-header h1,
.admin-heading h1,
.access-state h1 {
  margin: 0;
  color: var(--lux-ivory);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

.auth-copy p:not(.eyebrow),
.admin-heading p:not(.eyebrow),
.access-state p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(248, 241, 231, 0.72);
  font-size: clamp(1.04rem, 2vw, 1.26rem);
  line-height: 1.58;
}

.auth-card,
.profile-card,
.admin-card,
.access-state {
  border: 1px solid rgba(200, 167, 90, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(22, 22, 22, 0.72);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.auth-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 36px);
}

.auth-card label {
  display: grid;
  gap: 8px;
  color: rgba(248, 241, 231, 0.78);
  font-weight: 800;
}

.auth-card input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--lux-ivory);
  background: rgba(255, 255, 255, 0.075);
  font: inherit;
}

.password-input-wrap {
  position: relative;
  display: block;
}

.password-input-wrap input {
  padding-right: 96px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  min-width: 72px;
  min-height: 38px;
  transform: translateY(-50%);
  border: 1px solid rgba(241, 215, 141, 0.78);
  border-radius: 999px;
  padding: 8px 14px;
  color: #1a1306;
  background:
    linear-gradient(180deg, #ffe59b, #d6ad4a);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 0 0 1px rgba(6, 4, 2, 0.44),
    0 10px 22px rgba(0, 0, 0, 0.24),
    0 0 18px rgba(241, 215, 141, 0.22);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.password-toggle:hover,
.password-toggle:focus-visible {
  border-color: rgba(255, 240, 177, 0.96);
  color: #0e0902;
  background:
    linear-gradient(180deg, #fff1bd, #e8bf5e);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 0 0 2px rgba(8, 5, 2, 0.48),
    0 12px 26px rgba(0, 0, 0, 0.3),
    0 0 26px rgba(241, 215, 141, 0.38);
  transform: translateY(-50%) scale(1.02);
  outline: none;
}

.auth-card input:focus {
  border-color: rgba(241, 215, 141, 0.58);
  outline: none;
}

.auth-card p {
  margin: 0;
  color: rgba(248, 241, 231, 0.72);
}

.auth-card .auth-alert,
.profile-edit-form .auth-alert {
  border: 1px solid rgba(200, 167, 90, 0.26);
  border-radius: 16px;
  padding: 12px 14px;
  color: #fff5e1;
  background: rgba(200, 167, 90, 0.11);
  font-weight: 800;
  line-height: 1.4;
}

.auth-card .auth-success,
.profile-edit-form .auth-success {
  border: 1px solid rgba(200, 167, 90, 0.34);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--lux-gold-soft);
  background: rgba(200, 167, 90, 0.1);
  font-weight: 800;
  line-height: 1.4;
}

.auth-inline-link {
  width: fit-content;
  margin-top: -8px;
  font-size: 0.92rem;
}

.auth-card a {
  color: var(--lux-gold-soft);
  font-weight: 800;
}

.unified-auth-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% -10%, rgba(212, 175, 55, 0.2), transparent 34%),
    radial-gradient(circle at 110% 22%, rgba(255, 255, 255, 0.07), transparent 24%),
    linear-gradient(180deg, #050505 0%, #080808 48%, #020202 100%);
}

.unified-auth-shell {
  width: min(100% - 40px, 680px);
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:
    max(28px, env(safe-area-inset-top))
    0
    max(34px, env(safe-area-inset-bottom));
}

.unified-auth-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  gap: 22px;
  border-radius: 30px;
  padding: clamp(24px, 6vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025)),
    rgba(7, 7, 7, 0.86);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.unified-auth-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: '';
  background:
    linear-gradient(90deg, transparent, rgba(241, 215, 141, 0.12), transparent) top / 100% 1px no-repeat,
    radial-gradient(circle at 30% 0%, rgba(212, 175, 55, 0.1), transparent 28%);
}

.auth-panel-heading {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.auth-panel-heading h1 {
  margin: 0;
  color: #fffaf0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(2.45rem, 11vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.auth-panel-heading p:not(.eyebrow) {
  max-width: 460px;
  margin: 0;
  color: rgba(248, 241, 231, 0.62);
  font-size: clamp(1rem, 4vw, 1.2rem);
  line-height: 1.42;
}

.auth-flow-stack {
  position: relative;
  z-index: 1;
  display: grid;
}

.auth-flow-panel {
  grid-area: 1 / 1;
  display: grid;
  gap: 16px;
  min-width: 0;
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    visibility 260ms ease;
}

.auth-flow-stack.show-login .auth-signup-panel,
.auth-flow-stack.show-signup .auth-login-panel {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px) scale(0.985);
}

.auth-flow-stack.show-signup .auth-signup-panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.auth-flow-stack.show-login .auth-login-panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.unified-auth-card .auth-field,
.unified-auth-card .password-input-wrap {
  min-width: 0;
}

.unified-auth-card .auth-field > span,
.unified-auth-card label > .password-input-wrap + span {
  color: rgba(248, 241, 231, 0.72);
}

.unified-auth-card .auth-field > span,
.unified-auth-card label:has(.password-input-wrap) {
  font-size: 0.86rem;
  letter-spacing: 0;
}

.unified-auth-card input {
  min-height: 68px;
  border-radius: 24px;
  border-color: rgba(255, 255, 255, 0.15);
  padding: 17px 22px;
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(0, 0, 0, 0.24);
  font-size: 1.04rem;
}

.unified-auth-card input::placeholder {
  color: rgba(248, 241, 231, 0.44);
}

.unified-auth-card input:focus {
  border-color: rgba(241, 215, 141, 0.8);
  box-shadow:
    0 0 0 4px rgba(212, 175, 55, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.unified-auth-card .password-input-wrap input {
  padding-right: 96px;
}

.unified-auth-card .password-toggle {
  right: 12px;
  min-width: 70px;
  min-height: 44px;
  border-color: transparent;
  color: rgba(248, 241, 231, 0.74);
  background: transparent;
  box-shadow: none;
  font-size: 0.95rem;
  text-shadow: none;
}

.unified-auth-card .password-toggle:hover,
.unified-auth-card .password-toggle:focus-visible {
  color: #f1d78d;
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.16);
}

.unified-auth-card .auth-inline-link {
  justify-self: end;
  margin-top: -8px;
  color: #d4af37;
  font-size: 0.98rem;
  text-decoration: none;
}

.auth-primary-button,
.auth-provider-button,
.auth-back-button {
  width: 100%;
  min-height: 64px;
  border-radius: 999px;
  padding: 16px 22px;
  font: inherit;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.auth-primary-button {
  border: 1px solid rgba(255, 225, 135, 0.7);
  color: #151006;
  background: linear-gradient(180deg, #ffe49a, #c89f38);
  box-shadow:
    0 18px 44px rgba(212, 175, 55, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.auth-primary-button:hover:not(:disabled),
.auth-primary-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 239, 187, 0.92);
  background: linear-gradient(180deg, #fff0bd, #d9ae43);
  outline: none;
}

.auth-primary-button:disabled,
.auth-provider-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 8px 0 2px;
  color: rgba(248, 241, 231, 0.36);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.auth-divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 241, 231, 0.18), transparent);
}

.auth-provider-stack {
  display: grid;
  gap: 14px;
}

.auth-provider-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.035);
}

.auth-provider-apple {
  border-color: rgba(255, 255, 255, 0.92);
  color: #050505;
  background: #fff;
}

.auth-provider-google,
.auth-provider-email,
.auth-back-button {
  border-color: rgba(255, 255, 255, 0.2);
}

.auth-provider-button:hover:not(:disabled),
.auth-provider-button:focus-visible,
.auth-back-button:hover,
.auth-back-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(241, 215, 141, 0.68);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  outline: none;
}

.auth-provider-apple:hover:not(:disabled),
.auth-provider-apple:focus-visible {
  border-color: #fff;
  box-shadow:
    0 16px 34px rgba(255, 255, 255, 0.1),
    0 0 0 4px rgba(255, 255, 255, 0.08);
}

.auth-provider-icon {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
}

.auth-terms-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  color: rgba(248, 241, 231, 0.74);
  font-size: 0.92rem;
  line-height: 1.45;
}

.auth-terms-row input {
  width: 22px;
  height: 22px;
  min-height: 22px;
  margin-top: 1px;
  accent-color: #d4af37;
}

.auth-back-button {
  min-height: 58px;
  color: rgba(248, 241, 231, 0.9);
  background: transparent;
}

.auth-cancel-link {
  position: relative;
  z-index: 1;
  justify-self: center;
  margin-top: clamp(12px, 5vw, 28px);
  color: rgba(248, 241, 231, 0.86);
  font-size: 1rem;
  text-decoration: none;
}

.profile-header,
.admin-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.profile-title-group {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 32px);
}

.profile-avatar-block {
  display: grid;
  justify-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.profile-avatar-large {
  position: relative;
  width: clamp(86px, 10vw, 132px);
  height: clamp(86px, 10vw, 132px);
  flex: 0 0 auto;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 167, 90, 0.34);
  border-radius: 50%;
  color: var(--lux-ivory);
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.7), transparent 28%),
    linear-gradient(145deg, #111, #756135);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.3);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  text-decoration: none;
}

.profile-avatar-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-photo-action {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 167, 90, 0.34);
  border-radius: 999px;
  padding: 8px 14px;
  color: #111;
  background: linear-gradient(135deg, #f1d78d, #c8a75a);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

.profile-photo-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

.profile-edit-form {
  display: grid;
  gap: 16px;
}

.profile-edit-form label {
  display: grid;
  gap: 8px;
  color: rgba(248, 241, 231, 0.78);
  font-weight: 800;
}

.profile-edit-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--lux-ivory);
  background: rgba(255, 255, 255, 0.075);
  font: inherit;
}

.profile-edit-form input:focus {
  border-color: rgba(241, 215, 141, 0.58);
  outline: none;
}

.profile-upload-field {
  display: grid;
  gap: 9px;
  color: rgba(248, 241, 231, 0.78);
  font-weight: 800;
}

.profile-upload-control {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px dashed rgba(200, 167, 90, 0.38);
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
}

.profile-upload-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.profile-upload-control span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 167, 90, 0.28);
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(248, 241, 231, 0.58);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.84rem;
  font-weight: 900;
}

.profile-upload-field small {
  color: rgba(248, 241, 231, 0.56);
  font-size: 0.88rem;
  line-height: 1.4;
}

.profile-edit-form .auth-alert {
  margin: 0;
}

.profile-editor-card {
  min-height: 380px;
}

.profile-grid,
.admin-grid {
  display: grid;
  gap: clamp(18px, 2.2vw, 28px);
}

.profile-grid {
  align-items: stretch;
  grid-template-columns: 1.2fr 1fr 1fr;
}

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

.profile-card,
.admin-card {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.5vw, 32px);
}

.profile-card h2,
.admin-card h2 {
  margin: 0 0 16px;
  color: var(--lux-ivory);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 500;
}

.profile-card p,
.admin-card p {
  color: rgba(248, 241, 231, 0.68);
  line-height: 1.55;
}

.profile-card dl,
.profile-card dd {
  margin: 0;
}

.profile-card dl {
  display: grid;
  gap: 16px;
}

.profile-card dt {
  color: rgba(241, 215, 141, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-card dd {
  margin-top: 4px;
  color: var(--lux-ivory);
  overflow-wrap: anywhere;
}

.admin-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.access-state {
  min-height: calc(100svh - 111px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: clamp(24px, 4vw, 52px);
}

.access-state .glass-button {
  width: fit-content;
  margin-top: 30px;
}

.nav-detail {
  border-bottom: none;
  background: transparent;
}

.nav-detail .brand {
  color: #fffaf1;
  background:
    radial-gradient(circle at 14% 18%, rgba(189, 232, 255, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(7, 20, 29, 0.92), rgba(12, 34, 48, 0.82));
  opacity: 1;
  -webkit-text-fill-color: currentColor;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.55),
    0 0 20px rgba(241, 215, 141, 0.22),
    0 10px 28px rgba(0, 0, 0, 0.36);
}

.styles-page .nav-detail .brand {
  color: #fffaf1;
  background:
    radial-gradient(circle at 14% 18%, rgba(189, 232, 255, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(7, 20, 29, 0.92), rgba(12, 34, 48, 0.82));
  opacity: 1;
  -webkit-text-fill-color: currentColor;
}

.styles-page .nav-detail .brand,
.styles-page .nav-detail .brand:visited,
.styles-page .nav-detail .brand:hover,
.styles-page .nav-detail .brand:focus-visible {
  color: #fffaf1;
  opacity: 1;
  -webkit-text-fill-color: currentColor;
}

.nav-detail .nav-messages-btn,
.nav-detail .nav-links a {
  border-color: rgba(241, 215, 141, 0.38);
  color: #fff8e9;
  background:
    linear-gradient(180deg, rgba(189, 232, 255, 0.16), rgba(255, 255, 255, 0.052)),
    rgba(6, 18, 27, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 14px 38px rgba(5, 19, 28, 0.2),
    0 0 20px rgba(116, 198, 255, 0.16);
}

.nav-detail .login-nav-button {
  border-color: rgba(200, 167, 90, 0.42);
  color: var(--lux-ivory);
  background:
    linear-gradient(135deg, rgba(189, 232, 255, 0.22), rgba(200, 167, 90, 0.12)),
    rgba(8, 22, 31, 0.48);
  box-shadow:
    0 16px 42px rgba(116, 198, 255, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.14);
}

.nav-detail .login-nav-button::before {
  background: var(--lux-gold-soft);
  box-shadow:
    0 0 0 5px rgba(189, 232, 255, 0.16),
    0 0 18px rgba(241, 215, 141, 0.16);
}

.nav-detail .profile-nav-button {
  border-color: rgba(200, 167, 90, 0.34);
}

.style-detail-hero {
  position: relative;
  min-height: calc(100svh - 110px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) clamp(22px, 7vw, 112px);
}

.style-detail-content {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
}

.style-detail-copy {
  max-width: 620px;
}

.style-detail-hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3.4rem, 8.5vw, 7.4rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

.style-detail-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(248, 241, 231, 0.72);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
  line-height: 1.55;
}

.detail-price {
  font-weight: 800;
}

.style-detail-hero .glass-button {
  align-self: flex-start;
  margin-top: 30px;
}

.substyle-panel {
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(200, 167, 90, 0.24);
  border-radius: 28px;
  background: rgba(20, 20, 20, 0.72);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.substyle-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.substyle-heading span {
  color: rgba(241, 215, 141, 0.62);
  font-weight: 800;
}

.substyle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.substyle-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 22px;
  border: 1px solid rgba(200, 167, 90, 0.34);
  border-radius: 22px;
  color: var(--lux-ivory);
  background:
    linear-gradient(180deg, rgba(44, 44, 44, 0.94), rgba(18, 18, 18, 0.91)),
    rgba(20, 20, 20, 0.94);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.substyle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
}

.substyle-card h2 {
  margin: 0 0 14px;
  color: var(--lux-ivory);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 500;
  line-height: 1;
}

.substyle-card p {
  margin: 0;
  color: rgba(248, 241, 231, 0.68);
  font-size: 0.96rem;
  line-height: 1.5;
}

.substyle-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.substyle-meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(200, 167, 90, 0.28);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--lux-gold-soft);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-edit-launcher,
.admin-edit-toolbar {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 20;
  pointer-events: none;
}

.admin-edit-launcher *,
.admin-edit-toolbar * {
  pointer-events: auto;
}

.admin-edit-toolbar {
  left: clamp(14px, 3vw, 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(200, 167, 90, 0.34);
  border-radius: 22px;
  padding: 12px;
  color: var(--lux-ivory);
  background: rgba(5, 4, 3, 0.86);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.admin-edit-status {
  display: grid;
  gap: 3px;
  min-width: 160px;
}

.admin-edit-status strong {
  color: var(--lux-gold-soft);
}

.admin-edit-status span {
  color: rgba(248, 241, 231, 0.68);
  font-size: 0.86rem;
}

.admin-edit-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.toolbar-button,
.edit-image-marker,
.booking-option-button,
.mini-calendar button,
.time-slot-grid button,
.conversation-list button {
  font: inherit;
}

.toolbar-button {
  min-height: 42px;
  border: 1px solid rgba(200, 167, 90, 0.32);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--lux-ivory);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-weight: 800;
}

.toolbar-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.toolbar-button.danger {
  border-color: rgba(241, 215, 141, 0.28);
  color: #f6d9d9;
}

.toolbar-button.active,
.toolbar-button:hover:not(:disabled) {
  border-color: rgba(241, 215, 141, 0.68);
  background: rgba(200, 167, 90, 0.18);
}

.edit-image-marker {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 6;
  min-height: 36px;
  border: 1px solid rgba(241, 215, 141, 0.72);
  border-radius: 999px;
  padding: 8px 12px;
  color: #111;
  background: linear-gradient(135deg, #f1d78d, #c8a75a);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-section > .edit-image-marker {
  top: 130px;
  right: clamp(18px, 4vw, 58px);
}

.image-editor-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.image-editor-modal {
  width: min(980px, 100%);
  max-height: min(820px, calc(100svh - 36px));
  overflow: auto;
  border: 1px solid rgba(200, 167, 90, 0.34);
  border-radius: 24px;
  padding: clamp(20px, 3vw, 30px);
  color: var(--lux-ivory);
  background:
    radial-gradient(circle at 82% 10%, rgba(241, 215, 141, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(36, 36, 36, 0.96), rgba(10, 9, 8, 0.98));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.55);
}

.image-editor-heading,
.image-editor-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.image-editor-heading {
  margin-bottom: 22px;
}

.image-editor-heading h2 {
  margin: 4px 0 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
}

.style-wizard-intro {
  max-width: 720px;
}

.style-wizard-intro p:not(.eyebrow) {
  margin: 10px 0 0;
  color: rgba(248, 241, 231, 0.74);
  font-size: 1rem;
  line-height: 1.45;
}

.style-wizard-intro small {
  display: block;
  margin-top: 7px;
  color: rgba(241, 215, 141, 0.66);
  font-size: 0.86rem;
  line-height: 1.42;
}

.image-editor-icon-button {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(200, 167, 90, 0.34);
  border-radius: 50%;
  color: var(--lux-ivory);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.image-editor-body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
  gap: clamp(18px, 3vw, 28px);
}

.image-editor-preview-frame {
  min-height: clamp(280px, 44vw, 500px);
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 167, 90, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(241, 215, 141, 0.08), transparent 34%),
    #0e0e0e;
}

.image-editor-preview-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.image-editor-empty-preview {
  width: calc(100% - 34px);
  min-height: 220px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(200, 167, 90, 0.36);
  border-radius: 16px;
  color: rgba(248, 241, 231, 0.58);
  font-weight: 900;
}

.image-editor-controls {
  display: grid;
  align-content: start;
  gap: 16px;
}

.image-upload-button {
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 167, 90, 0.42);
  border-radius: 999px;
  color: #111;
  background: linear-gradient(135deg, #f1d78d, #c8a75a);
  cursor: pointer;
  font-weight: 900;
}

.image-upload-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.image-editor-file-name,
.image-editor-note {
  margin: 0;
  color: rgba(248, 241, 231, 0.62);
  font-size: 0.9rem;
  line-height: 1.45;
}

.image-editor-controls label:not(.image-upload-button) {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  color: rgba(248, 241, 231, 0.78);
  font-weight: 800;
}

.image-editor-controls input[type='range'] {
  grid-column: 1 / -1;
  accent-color: var(--lux-gold-soft);
}

.image-editor-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 24px;
}

.booking-detail-shell,
.booking-checkout-shell,
.booking-calendar-shell,
.booking-payment-shell,
.messages-shell,
.confirmation-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 118px) 0 clamp(86px, 10vw, 140px);
}

.booking-detail-shell {
  width: min(1320px, calc(100% - 40px));
  min-height: calc(100svh - 111px);
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(460px, 1.45fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
}

.booking-detail-copy h1,
.booking-calendar-panel h2,
.booking-form-panel h2,
.messages-heading h1,
.confirmation-card h1,
.admin-section-heading h2 {
  margin: 0;
  color: var(--lux-ivory);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: 0;
}

.booking-detail-copy h1,
.messages-heading h1,
.confirmation-card h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
}

.booking-detail-copy p:not(.eyebrow),
.messages-heading p,
.confirmation-card p {
  max-width: 620px;
  color: rgba(248, 241, 231, 0.72);
  font-size: clamp(1.04rem, 2vw, 1.26rem);
  line-height: 1.58;
}

.booking-detail-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.booking-detail-summary span,
.availability-day span,
.admin-thread-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
  padding: 8px 16px;
  border: 1px solid rgba(241, 215, 141, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.booking-options-panel,
.booking-calendar-panel,
.booking-form-panel,
.client-message-panel,
.confirmation-card,
.admin-foundation-section,
.admin-thread-panel {
  border: 1px solid rgba(200, 167, 90, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(22, 22, 22, 0.72);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.booking-options-panel {
  display: grid;
  gap: 14px;
  padding: clamp(16px, 2vw, 24px);
}

.booking-option-button {
  width: 100%;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 20px;
  padding: 18px;
  color: var(--lux-ivory);
  background: rgba(255, 255, 255, 0.065);
  cursor: pointer;
  text-align: left;
}

.booking-option-button.active,
.booking-option-button:hover {
  border-color: rgba(241, 215, 141, 0.62);
  background: rgba(200, 167, 90, 0.13);
}

.booking-option-button span:first-child {
  display: grid;
  gap: 8px;
}

.booking-option-button strong {
  color: var(--lux-ivory);
  font-size: 1.05rem;
}

.booking-option-button small {
  color: rgba(248, 241, 231, 0.66);
  line-height: 1.4;
}

.booking-option-button > span:last-child {
  color: var(--lux-gold-soft);
  font-weight: 900;
  white-space: nowrap;
}

.booking-next-button {
  margin-top: 8px;
}

.checkout-intro {
  margin-bottom: clamp(26px, 4vw, 46px);
}

.booking-calendar-shell {
  width: min(1380px, calc(100% - 40px));
  min-height: calc(100svh - 111px);
  display: flex;
  flex-direction: column;
  padding: clamp(4px, 1vw, 14px) 0 clamp(20px, 3vw, 42px);
}

.booking-calendar-shell .booking-menu-intro {
  max-width: 760px;
  margin-bottom: clamp(10px, 1.4vw, 16px);
}

.booking-calendar-shell .eyebrow {
  margin-bottom: 8px;
}

.booking-calendar-shell .booking-menu-intro h1 {
  font-size: clamp(2.15rem, 3.45vw, 3.65rem);
  line-height: 0.96;
}

.booking-calendar-shell .booking-menu-intro p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 14px;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.45;
}

.checkout-choice-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 auto clamp(30px, 5vw, 52px);
}

.booking-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.8fr);
  gap: clamp(20px, 3.5vw, 42px);
}

.booking-calendar-layout,
.booking-payment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.52fr);
  gap: clamp(20px, 3.5vw, 42px);
}

.booking-calendar-layout {
  align-items: stretch;
  flex: 1 1 auto;
  grid-template-columns: minmax(620px, 1fr) minmax(350px, 0.48fr);
  gap: clamp(14px, 2vw, 24px);
  min-height: 0;
}

.calendar-month-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.calendar-month-heading button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(200, 167, 90, 0.34);
  border-radius: 50%;
  color: var(--lux-gold-soft);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.lux-calendar-weekdays,
.lux-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.lux-calendar-grid {
  grid-template-rows: repeat(6, minmax(0, 1fr));
}

.lux-calendar-weekdays span {
  color: rgba(248, 241, 231, 0.58);
  font-size: 0.7rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.lux-calendar-grid button {
  min-height: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 3px;
  border: 1px solid rgba(200, 167, 90, 0.16);
  border-radius: 13px;
  color: rgba(248, 241, 231, 0.56);
  background: rgba(255, 255, 255, 0.045);
}

.lux-calendar-grid button.available {
  color: var(--lux-ivory);
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(200, 167, 90, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
}

.lux-calendar-grid button.active,
.lux-calendar-grid button.available:hover {
  border-color: rgba(241, 215, 141, 0.7);
  background: rgba(200, 167, 90, 0.2);
}

.lux-calendar-grid button:disabled {
  cursor: not-allowed;
}

.lux-calendar-grid button.past {
  color: rgba(248, 241, 231, 0.28);
  opacity: 0.58;
}

.lux-calendar-grid button span {
  color: inherit;
  font-size: 1rem;
  font-weight: 900;
}

.lux-calendar-grid button small,
.lux-calendar-grid button em {
  color: rgba(248, 241, 231, 0.52);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
}

.booking-payment-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.94fr);
}

.booking-payment-shell {
  width: min(1120px, calc(100% - 40px));
  min-height: calc(100svh - 111px);
  display: flex;
  flex-direction: column;
  padding: clamp(8px, 1.2vw, 18px) 0 clamp(18px, 2.4vw, 34px);
}

.booking-payment-shell .booking-menu-intro {
  max-width: 940px;
  margin-bottom: clamp(12px, 1.5vw, 20px);
}

.booking-payment-shell .booking-menu-intro h1 {
  font-size: clamp(2.2rem, 3.35vw, 3.55rem);
  line-height: 0.95;
  white-space: nowrap;
}

.booking-payment-shell .booking-menu-intro p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 12px;
  font-size: clamp(0.98rem, 1.4vw, 1.13rem);
  line-height: 1.45;
}

.booking-payment-shell .booking-payment-grid {
  flex: 1 1 auto;
  align-items: start;
  gap: clamp(18px, 2.4vw, 30px);
  min-height: 0;
}

.booking-payment-shell .booking-form-panel {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.35vw, 18px);
  border-color: rgba(205, 174, 99, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    rgba(18, 18, 18, 0.86);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: clamp(20px, 2vw, 28px);
}

.booking-payment-shell .booking-form-panel h2 {
  color: #fbf6ea;
  font-size: clamp(1.85rem, 2.9vw, 3.1rem);
  line-height: 0.98;
}

.booking-payment-shell .payment-summary-list {
  flex: 0 0 auto;
}

.booking-payment-shell .booking-form-panel .glass-button {
  margin-top: auto;
}

.payment-checkout-panel {
  justify-content: space-between;
}

.payment-service-card {
  min-height: 300px;
}

.booking-payment-shell .payment-service-card {
  padding: clamp(22px, 2.3vw, 32px);
}

.booking-payment-shell .payment-service-card h2 {
  font-size: clamp(2.05rem, 3.25vw, 3.45rem);
}

.payment-client-block {
  display: grid;
  gap: 8px;
}

.payment-summary-list.compact {
  flex: 0 0 auto;
  gap: 8px;
}

.payment-summary-list.compact div {
  padding-bottom: 9px;
}

.guest-payment-form,
.stripe-payment-mockup {
  display: grid;
  gap: 9px;
}

.guest-payment-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.stripe-payment-mockup {
  border: 1px solid rgba(205, 174, 99, 0.24);
  border-radius: 18px;
  padding: clamp(12px, 1.35vw, 16px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    rgba(12, 12, 12, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 42px rgba(0, 0, 0, 0.22);
}

.stripe-payment-mockup.disabled {
  opacity: 0.58;
}

.stripe-mockup-heading,
.stripe-amount-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.stripe-mockup-heading h3 {
  margin: 3px 0 0;
  color: #fbf6ea;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.35rem, 2.05vw, 1.85rem);
  font-weight: 500;
  line-height: 1;
}

.stripe-mockup-heading > span {
  border: 1px solid rgba(205, 174, 99, 0.32);
  border-radius: 999px;
  padding: 5px 9px;
  color: rgba(241, 215, 141, 0.82);
  background: rgba(200, 167, 90, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stripe-amount-grid {
  align-items: stretch;
}

.stripe-amount-grid div {
  flex: 1;
  border: 1px solid rgba(205, 174, 99, 0.2);
  border-radius: 14px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.04);
}

.stripe-amount-grid small {
  display: block;
  color: rgba(225, 193, 116, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stripe-amount-grid strong {
  display: block;
  margin-top: 3px;
  color: #fbf6ea;
  font-size: 1.05rem;
}

.booking-payment-shell .payment-summary-list {
  gap: 12px;
}

.booking-payment-shell .payment-summary-list div {
  gap: 5px;
  border-bottom-color: rgba(205, 174, 99, 0.16);
  padding-bottom: 11px;
}

.booking-payment-shell .payment-summary-list dt,
.stripe-amount-grid small {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
}

.booking-payment-shell .payment-summary-list dt,
.payment-checkout-panel .eyebrow,
.stripe-mockup-heading .eyebrow {
  color: rgba(225, 193, 116, 0.78);
}

.booking-payment-shell .payment-summary-list dd {
  color: rgba(255, 250, 240, 0.9);
  line-height: 1.38;
}

.booking-payment-shell .booking-form-panel p {
  margin-top: 4px;
}

.payment-checkout-panel label {
  gap: 5px;
  color: rgba(255, 250, 240, 0.84);
  font-size: 0.86rem;
}

.payment-checkout-panel input {
  min-height: 40px;
  border-color: rgba(205, 174, 99, 0.22);
  border-radius: 13px;
  padding: 9px 11px;
  color: rgba(255, 250, 240, 0.92);
  background: rgba(255, 255, 255, 0.052);
}

.stripe-payment-mockup .glass-button {
  border-color: rgba(236, 204, 124, 0.58);
  color: #10100e;
  min-height: 44px;
  background: linear-gradient(135deg, #ead184, #d4b964);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.stripe-payment-mockup .payment-placeholder-note {
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.82rem;
  line-height: 1.35;
}

.booking-calendar-panel,
.booking-form-panel {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: clamp(22px, 2.6vw, 34px);
}

.booking-calendar-shell .booking-calendar-panel,
.booking-calendar-shell .booking-form-panel {
  gap: clamp(8px, 1.2vw, 12px);
  padding: clamp(12px, 1.6vw, 18px);
}

.booking-calendar-shell .booking-calendar-panel {
  align-content: stretch;
  grid-template-rows: auto auto minmax(0, 1fr);
}

.booking-calendar-shell .booking-form-panel {
  display: flex;
  flex-direction: column;
}

.booking-calendar-shell .time-slot-grid {
  flex: 1 1 auto;
  align-content: start;
}

.booking-calendar-shell .booking-form-panel > .glass-button {
  margin-top: auto;
}

.booking-calendar-panel h2,
.booking-form-panel h2,
.admin-section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.booking-calendar-shell .booking-calendar-panel h2 {
  font-size: clamp(1.95rem, 3vw, 3.1rem);
}

.booking-calendar-shell .booking-form-panel h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
}

.booking-calendar-shell .time-slot-empty-state {
  grid-column: 1 / -1;
  width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-break: break-word;
  font-size: 0.92rem;
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: 12px;
  display: block;
}

.booking-form-panel p {
  margin: 8px 0 0;
  color: rgba(248, 241, 231, 0.7);
}

.mini-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.mini-calendar button,
.time-slot-grid button {
  min-height: 66px;
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 16px;
  color: var(--lux-ivory);
  background: rgba(255, 255, 255, 0.065);
  cursor: pointer;
}

.mini-calendar button {
  display: grid;
  place-items: center;
  gap: 3px;
}

.mini-calendar button span,
.message-bubble small,
.conversation-list small {
  color: rgba(248, 241, 231, 0.58);
  font-size: 0.78rem;
}

.mini-calendar button strong {
  color: var(--lux-gold-soft);
  font-size: 1rem;
}

.mini-calendar button.active,
.mini-calendar button:hover,
.time-slot-grid button.active,
.time-slot-grid button:hover {
  border-color: rgba(241, 215, 141, 0.68);
  background: rgba(200, 167, 90, 0.16);
}

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

.booking-calendar-layout .time-slot-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payment-summary-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.payment-summary-list div {
  display: grid;
  gap: 5px;
  border-bottom: 1px solid rgba(200, 167, 90, 0.16);
  padding-bottom: 12px;
}

.payment-summary-list dt {
  color: rgba(200, 167, 90, 0.72);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.payment-summary-list dd {
  margin: 0;
  color: var(--lux-ivory);
}

.payment-placeholder-note {
  margin: 0;
  color: rgba(248, 241, 231, 0.58);
  font-size: 0.9rem;
}

.booking-form-panel label,
.message-compose label,
.guest-message-fields label {
  display: grid;
  gap: 8px;
  color: rgba(248, 241, 231, 0.78);
  font-weight: 800;
}

.booking-form-panel input,
.booking-form-panel textarea,
.message-compose input,
.message-compose textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--lux-ivory);
  background: rgba(255, 255, 255, 0.075);
  font: inherit;
}

.booking-form-panel input:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.booking-form-panel input:read-only {
  color: rgba(248, 241, 231, 0.72);
  background: rgba(255, 255, 255, 0.045);
}

.booking-form-panel textarea,
.message-compose textarea {
  resize: vertical;
}

.booking-form-panel input:focus,
.booking-form-panel textarea:focus,
.message-compose input:focus,
.message-compose textarea:focus {
  border-color: rgba(241, 215, 141, 0.58);
  outline: none;
}

.deposit-placeholder {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(200, 167, 90, 0.24);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(200, 167, 90, 0.1);
}

.deposit-placeholder span {
  color: rgba(248, 241, 231, 0.66);
  font-size: 0.9rem;
}

.confirmation-shell {
  min-height: calc(100svh - 111px);
  display: grid;
  place-items: center;
}

.confirmation-card {
  width: min(820px, 100%);
  padding: clamp(26px, 4vw, 48px);
}

.confirmation-card dl {
  display: grid;
  gap: 16px;
  margin: 30px 0;
}

.confirmation-card dl div {
  border-bottom: 1px solid rgba(200, 167, 90, 0.16);
  padding-bottom: 14px;
}

.confirmation-card dt {
  color: rgba(241, 215, 141, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.confirmation-card dd {
  margin: 4px 0 0;
  color: var(--lux-ivory);
  line-height: 1.45;
}

.messages-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.client-message-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  gap: clamp(20px, 3vw, 34px);
  padding: clamp(20px, 2.5vw, 32px);
}

.message-thread {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: auto;
  border: 1px solid rgba(200, 167, 90, 0.16);
  border-radius: 22px;
  padding: 16px;
  background: rgba(5, 4, 3, 0.3);
}

.message-bubble {
  width: min(78%, 520px);
  border: 1px solid rgba(200, 167, 90, 0.2);
  border-radius: 20px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.075);
}

.message-bubble.client,
.message-bubble.guest {
  align-self: flex-end;
  border-color: rgba(241, 215, 141, 0.36);
  background: rgba(200, 167, 90, 0.16);
}

.message-bubble.admin,
.message-bubble.dev {
  align-self: flex-start;
}

.message-bubble span {
  display: block;
  color: var(--lux-gold-soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.message-bubble p {
  margin: 8px 0;
  color: rgba(248, 241, 231, 0.82);
  line-height: 1.48;
}

.message-widget {
  position: fixed;
  right: clamp(14px, 3vw, 24px);
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 25;
  display: grid;
  justify-items: end;
  gap: 12px;
  pointer-events: none;
}

.message-widget > * {
  pointer-events: auto;
}

.message-widget-actions {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 8px;
  pointer-events: auto;
}

.message-widget-dismiss {
  display: none;
}

.message-widget-button {
  position: relative;
  min-width: 124px;
  min-height: 54px;
  border: 1px solid var(--lux-gold);
  border-radius: 20px;
  padding: 0 20px;
  color: var(--lux-gold-soft);
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.96), rgba(5, 4, 3, 0.98));
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.45),
    0 0 15px rgba(200, 167, 90, 0.15);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Chat bubble subtle tail */
.message-widget-button::after {
  content: '';
  position: absolute;
  right: -8px;
  bottom: 15px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 9px solid rgba(5, 4, 3, 0.98);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.message-widget-button::before {
  content: '';
  position: absolute;
  right: -10px;
  bottom: 14px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 10px solid var(--lux-gold);
  z-index: -1;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.message-widget-button:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: var(--lux-gold-soft);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.55),
    0 0 25px rgba(241, 215, 141, 0.25);
  color: var(--lux-ivory);
}

.message-widget-button:hover::before {
  border-left-color: var(--lux-gold-soft);
}

.message-widget-badge {
  position: absolute;
  top: -8px;
  left: -8px;
  background: #c93b3b;
  color: #ffffff;
  border-radius: 50%;
  padding: 1px 6px;
  font-size: 0.7rem;
  font-weight: 900;
  border: 1px solid var(--lux-gold);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 19px;
  min-height: 19px;
  line-height: 1;
  animation: badge-pulse 2s infinite ease-in-out;
}

@keyframes badge-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(201, 59, 59, 0.5);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 6px rgba(201, 59, 59, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(201, 59, 59, 0);
  }
}


.message-widget-panel {
  width: min(390px, calc(100vw - 28px));
  max-height: min(72svh, 590px);
  display: grid;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(241, 215, 141, 0.34);
  border-radius: 24px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(189, 232, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(8, 16, 22, 0.96);
  box-shadow:
    0 26px 78px rgba(116, 198, 255, 0.22),
    0 12px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.message-widget-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.message-widget-header h2 {
  margin: 2px 0 0;
  color: var(--lux-ivory);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
}

.message-widget-header button {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border: 1px solid rgba(200, 167, 90, 0.24);
  border-radius: 12px;
  color: var(--lux-ivory);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.message-widget-intro {
  margin: 0;
  color: rgba(248, 241, 231, 0.72);
  line-height: 1.45;
}

.message-widget-thread {
  max-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  border: 1px solid rgba(200, 167, 90, 0.16);
  border-radius: 18px;
  padding: 12px;
  background: rgba(5, 4, 3, 0.34);
}

.message-widget-thread .message-bubble {
  width: min(88%, 300px);
  padding: 12px 13px;
  border-radius: 16px;
}

.message-widget-thread .message-bubble p {
  font-size: 0.92rem;
}

.message-widget-form,
.message-widget-guest-fields {
  display: grid;
  gap: 12px;
}

.message-widget-form label {
  display: grid;
  gap: 7px;
  color: rgba(248, 241, 231, 0.78);
  font-size: 0.9rem;
  font-weight: 850;
}

.message-widget-form input,
.message-widget-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 14px;
  padding: 11px 12px;
  color: var(--lux-ivory);
  background: rgba(255, 255, 255, 0.075);
  font: inherit;
}

.message-widget-form textarea {
  resize: vertical;
}

.message-widget-form input:focus,
.message-widget-form textarea:focus {
  border-color: rgba(241, 215, 141, 0.58);
  outline: none;
}

.message-widget-alert,
.message-widget-status,
.admin-message-notice,
.empty-admin-state {
  margin: 0;
  border: 1px solid rgba(200, 167, 90, 0.18);
  border-radius: 14px;
  padding: 10px 12px;
  color: rgba(248, 241, 231, 0.76);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  line-height: 1.42;
}

.message-widget-status.sent,
.admin-message-notice.sent {
  border-color: rgba(241, 215, 141, 0.34);
  color: var(--lux-gold-soft);
  background: rgba(200, 167, 90, 0.12);
}

.message-widget-status.error,
.admin-message-notice.error,
.message-widget-alert {
  border-color: rgba(255, 183, 133, 0.34);
  color: #ffd9c0;
  background: rgba(120, 42, 26, 0.18);
}

.message-compose {
  display: grid;
  align-content: start;
  gap: 16px;
}

.guest-message-fields {
  display: grid;
  gap: 12px;
}

.admin-foundation-section {
  margin-top: clamp(34px, 5vw, 62px);
  padding: clamp(22px, 2.6vw, 34px);
}

.admin-section-heading {
  margin-bottom: 24px;
}

.admin-messages-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
}

.conversation-list {
  display: grid;
  align-content: start;
  gap: 10px;
}

.conversation-list button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(200, 167, 90, 0.2);
  border-radius: 18px;
  padding: 14px;
  color: var(--lux-ivory);
  background: rgba(255, 255, 255, 0.065);
  cursor: pointer;
  text-align: left;
}

.conversation-list button.active,
.conversation-list button:hover {
  border-color: rgba(241, 215, 141, 0.58);
  background: rgba(200, 167, 90, 0.13);
}

.conversation-list span {
  display: grid;
  gap: 4px;
}

.conversation-list em {
  color: var(--lux-gold-soft);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.admin-thread-panel {
  display: grid;
  gap: 18px;
  padding: 18px;
}

.admin-thread-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.admin-thread-heading h3 {
  margin: 0;
  color: var(--lux-ivory);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.admin-thread-heading p {
  margin: 6px 0 0;
  color: rgba(248, 241, 231, 0.62);
}

.admin-thread {
  min-height: 320px;
}

.availability-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.availability-manager-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
}

.availability-form,
.availability-slot-list,
.style-wizard-fields,
.style-option-editor {
  display: grid;
  gap: 14px;
}

.availability-form {
  align-content: start;
}

.availability-form label,
.style-wizard-fields label {
  display: grid;
  gap: 8px;
  color: rgba(248, 241, 231, 0.78);
  font-weight: 800;
}

.availability-form input,
.availability-form select,
.style-wizard-fields input,
.style-wizard-fields textarea,
.style-option-row input,
.style-option-row textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--lux-ivory);
  background: rgba(255, 255, 255, 0.075);
  font: inherit;
}

.availability-slot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(200, 167, 90, 0.2);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.style-wizard-modal {
  width: min(980px, 100%);
  max-height: min(840px, calc(100svh - 36px));
  overflow: auto;
  border: 1px solid rgba(200, 167, 90, 0.34);
  border-radius: 24px;
  padding: clamp(20px, 3vw, 30px);
  color: var(--lux-ivory);
  background:
    radial-gradient(circle at 82% 10%, rgba(241, 215, 141, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(36, 36, 36, 0.96), rgba(10, 9, 8, 0.98));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.55);
}

.style-wizard-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 22px;
}

.style-upload-frame {
  min-height: 340px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(200, 167, 90, 0.36);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.style-upload-frame input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.style-upload-frame img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.style-option-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 10px;
  border: 1px solid rgba(200, 167, 90, 0.18);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.style-option-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(200, 167, 90, 0.18);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.style-option-heading h3 {
  margin: 4px 0 0;
  color: var(--lux-ivory);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 500;
}

.style-option-heading > span,
.style-option-example {
  color: rgba(248, 241, 231, 0.64);
  font-size: 0.9rem;
  line-height: 1.42;
}

.style-option-heading > span {
  max-width: 340px;
}

.style-option-example {
  margin: 0;
}

.style-option-row textarea {
  grid-column: 1 / 4;
}

.style-preview-card {
  width: min(360px, 100%);
  margin: 0 auto;
}

.style-preview-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 20px;
}

.style-options-preview {
  display: grid;
  align-content: start;
  gap: 12px;
}

.style-options-preview .substyle-card {
  min-height: auto;
  padding: 16px;
}

.style-options-preview .substyle-card h2 {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.create-modal {
  width: min(920px, 100%);
  max-height: min(840px, calc(100svh - 36px));
  overflow: auto;
  border: 1px solid rgba(200, 167, 90, 0.34);
  border-radius: 24px;
  padding: clamp(20px, 3vw, 30px);
  color: var(--lux-ivory);
  background:
    radial-gradient(circle at 82% 10%, rgba(241, 215, 141, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(34, 34, 34, 0.97), rgba(9, 8, 7, 0.98));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.55);
}

.create-modal-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 22px;
}

.create-modal-form {
  display: grid;
  gap: 16px;
}

.create-modal-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.create-modal label,
.create-toggle {
  display: grid;
  gap: 8px;
  color: rgba(248, 241, 231, 0.78);
  font-weight: 800;
}

.create-modal input,
.create-modal select,
.create-modal textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--lux-ivory);
  background: rgba(255, 255, 255, 0.075);
  font: inherit;
}

.create-toggle {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.create-toggle input {
  width: auto;
  min-height: auto;
  accent-color: var(--lux-gold-soft);
}

.create-helper {
  margin: 0;
  color: rgba(248, 241, 231, 0.62);
  font-size: 0.9rem;
  line-height: 1.45;
}

.create-modal-actions {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.create-review-modal {
  width: min(860px, 100%);
}

.create-review-upload {
  min-height: 180px;
}

.create-review-upload img {
  min-height: 180px;
}

.google-review-placeholder {
  border: 1px solid rgba(200, 167, 90, 0.2);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.052);
}

.google-review-placeholder p:not(.eyebrow),
.google-review-placeholder small {
  color: rgba(248, 241, 231, 0.68);
  line-height: 1.45;
}

.google-review-placeholder p:not(.eyebrow) {
  margin: 6px 0 0;
}

.google-review-placeholder small {
  display: block;
  margin-top: 8px;
}

.gallery-upload-modal {
  width: min(680px, calc(100vw - 28px));
  max-height: min(720px, calc(100dvh - 28px));
  padding: clamp(18px, 4vw, 26px);
}

.gallery-upload-modal .image-editor-heading {
  gap: 18px;
  margin-bottom: 10px;
}

.gallery-upload-modal .style-wizard-intro p {
  max-width: 460px;
}

.gallery-upload-dropzone {
  min-height: auto;
  width: min(100%, 340px);
  justify-self: center;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 238, 172, 0.78);
  border-radius: 999px;
  color: #000 !important;
  background:
    linear-gradient(135deg, rgba(255, 239, 174, 1), rgba(241, 215, 141, 0.98) 48%, rgba(200, 167, 90, 0.96)),
    #c8a75a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 14px 34px rgba(5, 19, 28, 0.24),
    0 0 22px rgba(241, 215, 141, 0.2);
  font-weight: 950;
  text-align: center;
}

.gallery-upload-dropzone strong {
  color: #000 !important;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
}

.gallery-upload-plus {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #000 !important;
  background: rgba(0, 0, 0, 0.1);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.gallery-upload-helper {
  margin: -4px 0 0;
  color: rgba(248, 241, 231, 0.62);
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.35;
}

.gallery-upload-dropzone.drag-active,
.gallery-upload-dropzone:hover,
.gallery-upload-dropzone:focus-within {
  border-color: rgba(255, 246, 203, 0.96);
  background:
    linear-gradient(135deg, rgba(255, 244, 190, 1), rgba(241, 215, 141, 1) 48%, rgba(200, 167, 90, 0.98)),
    #c8a75a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 18px 42px rgba(5, 19, 28, 0.3),
    0 0 28px rgba(241, 215, 141, 0.34);
}

.gallery-draft-list,
.review-inbox-list,
.weekly-rule-list {
  display: grid;
  gap: 14px;
}

.gallery-draft-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid rgba(200, 167, 90, 0.2);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.gallery-draft-preview {
  position: relative;
  min-height: 112px;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(200, 167, 90, 0.26);
  border-radius: 14px;
  background: #090807;
}

.gallery-draft-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.gallery-draft-preview span {
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 10px;
  left: 10px;
  color: var(--lux-ivory);
  font-weight: 800;
  line-height: 1.25;
  font-size: 0.78rem;
}

/* Stabilize preview – no transform/position animation on images */
.gallery-draft-preview img,
.gallery-draft-preview video {
  animation: galleryPreviewFadeIn 320ms ease both;
  transform: none !important;
}

@keyframes galleryPreviewFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96) !important;
  }
  to {
    opacity: 1;
    transform: scale(1) !important;
  }
}

/* Upload Modal – Button Hierarchy */
.gallery-upload-actions {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  margin-top: 16px;
}

.gallery-upload-actions > button {
  font: inherit;
  min-height: 48px;
  width: 100%;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 900;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

/* Primary – gold gradient */
.gallery-upload-submit {
  border: 1px solid rgba(255, 238, 172, 0.78);
  color: #111;
  background:
    linear-gradient(135deg, rgba(255, 239, 174, 1), rgba(241, 215, 141, 0.98) 48%, rgba(200, 167, 90, 0.96)),
    #c8a75a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 10px 28px rgba(5, 19, 28, 0.22),
    0 0 18px rgba(241, 215, 141, 0.18);
}

.gallery-upload-submit:hover:not(:disabled) {
  background:
    linear-gradient(135deg, rgba(255, 244, 190, 1), rgba(241, 215, 141, 1) 48%, rgba(200, 167, 90, 0.98)),
    #c8a75a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 14px 36px rgba(5, 19, 28, 0.28),
    0 0 24px rgba(241, 215, 141, 0.3);
}

.gallery-upload-submit:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/* Secondary – dark with gold border */
.gallery-upload-cancel {
  border: 1px solid rgba(200, 167, 90, 0.38);
  color: var(--lux-ivory);
  background: rgba(18, 18, 18, 0.88);
  box-shadow: none;
}

.gallery-upload-cancel:hover:not(:disabled) {
  border-color: rgba(241, 215, 141, 0.62);
  background: rgba(30, 28, 24, 0.92);
}

.gallery-upload-cancel:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.gallery-draft-fields,
.crop-control-grid {
  display: grid;
  gap: 12px;
}

.crop-control-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(200, 167, 90, 0.14);
  border-radius: 18px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.16);
}

.crop-control-grid input[type='range'] {
  min-height: 24px;
  padding: 0;
  accent-color: var(--lux-gold);
}

.create-toggle-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.availability-create-modal {
  width: min(1120px, 100%);
}

.availability-builder {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1fr);
  gap: 22px;
}

.availability-calendar-panel,
.availability-rule-panel,
.review-manager-panel {
  border: 1px solid rgba(200, 167, 90, 0.24);
  border-radius: 24px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(12, 11, 10, 0.66);
}

.availability-calendar-toolbar,
.availability-bulk-actions,
.weekly-rule-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.availability-calendar-toolbar {
  justify-content: space-between;
  margin-bottom: 16px;
}

.availability-calendar-toolbar input,
.weekly-rule-row input {
  min-height: 42px;
}

.availability-calendar-toolbar input {
  color: var(--lux-ivory);
  background: rgba(255, 255, 255, 0.1);
}

.availability-calendar-weekdays,
.availability-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.availability-calendar-weekdays {
  margin-bottom: 8px;
  color: rgba(248, 241, 231, 0.74);
  font-size: 0.74rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.availability-calendar-empty,
.availability-calendar-day {
  min-height: 74px;
  border-radius: 16px;
}

.availability-calendar-day {
  border: 1px solid rgba(200, 167, 90, 0.22);
  color: rgba(255, 250, 240, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07)),
    rgba(28, 26, 23, 0.9);
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.availability-calendar-day:hover,
.availability-calendar-day:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(241, 215, 141, 0.42);
  outline: none;
}

.availability-calendar-day strong,
.availability-calendar-day span {
  display: block;
}

.availability-calendar-day span {
  margin-top: 4px;
  font-size: 0.68rem;
  font-weight: 900;
}

.availability-calendar-day.available {
  border-color: rgba(117, 214, 147, 0.68);
  background:
    linear-gradient(180deg, rgba(117, 214, 147, 0.28), rgba(117, 214, 147, 0.12)),
    rgba(21, 42, 29, 0.9);
}

.availability-calendar-day.blocked {
  border-color: rgba(242, 111, 99, 0.48);
  background:
    linear-gradient(180deg, rgba(242, 111, 99, 0.18), rgba(242, 111, 99, 0.075)),
    rgba(43, 24, 22, 0.88);
}

.availability-calendar-day.neutral {
  border-color: rgba(200, 167, 90, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07)),
    rgba(31, 29, 25, 0.94);
}

.availability-calendar-day.selected {
  box-shadow: inset 0 0 0 2px rgba(241, 215, 141, 0.42);
}

.availability-bulk-actions {
  margin-top: 14px;
}

.availability-rule-panel {
  display: grid;
  gap: 16px;
}

.availability-setup-panel {
  align-content: start;
}

.availability-guided-step {
  display: grid;
  gap: 16px;
}

.availability-guided-step h3 {
  margin: 0;
  color: var(--lux-ivory);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
}

.working-day-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.working-day-pill {
  min-height: 58px;
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 18px;
  color: rgba(248, 241, 231, 0.82);
  background: rgba(255, 255, 255, 0.075);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.working-day-pill:hover,
.working-day-pill:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(241, 215, 141, 0.54);
  color: #fff;
  outline: none;
}

.working-day-pill.selected {
  border-color: rgba(241, 215, 141, 0.62);
  color: #111;
  background: linear-gradient(135deg, #f3dd98, #c8a75a);
}

.single-day-hours-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid rgba(200, 167, 90, 0.2);
  border-radius: 22px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.single-day-hours-card.compact {
  padding: 0;
  border: 0;
  background: transparent;
}

.single-day-hours-card label,
.special-day-card label {
  display: grid;
  gap: 8px;
  color: rgba(248, 241, 231, 0.8);
  font-weight: 900;
}

.single-day-hours-card select,
.special-day-card input,
.special-day-card select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(200, 167, 90, 0.24);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--lux-ivory);
  background: rgba(255, 255, 255, 0.095);
  font: inherit;
}

.day-progress-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.day-progress-list span {
  border: 1px solid rgba(200, 167, 90, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(248, 241, 231, 0.66);
  font-size: 0.82rem;
  font-weight: 900;
}

.day-progress-list span.active {
  border-color: rgba(241, 215, 141, 0.62);
  color: var(--lux-gold-soft);
  background: rgba(241, 215, 141, 0.1);
}

.original-schedule-summary {
  display: grid;
  gap: 10px;
}

.original-schedule-summary article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(200, 167, 90, 0.18);
  border-radius: 16px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.055);
}

.original-schedule-summary span {
  color: rgba(248, 241, 231, 0.76);
  font-weight: 900;
}

.original-schedule-summary strong {
  color: var(--lux-ivory);
  text-align: right;
}

.availability-management-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.special-day-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(200, 167, 90, 0.2);
  border-radius: 20px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.2);
}

.weekly-rule-row {
  justify-content: space-between;
  border-bottom: 1px solid rgba(200, 167, 90, 0.12);
  padding-bottom: 9px;
}

.weekly-rule-row span {
  width: 94px;
  color: rgba(248, 241, 231, 0.78);
  font-weight: 800;
}

.availability-preview-card {
  border: 1px solid rgba(200, 167, 90, 0.18);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.availability-preview-card p:not(.eyebrow) {
  margin: 6px 0 0;
  color: rgba(248, 241, 231, 0.76);
}

.review-manager-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(360px, 1fr);
  gap: 18px;
}

.review-manager-panel {
  display: grid;
  align-content: start;
  gap: 14px;
}

.review-manager-panel h3 {
  margin: 0;
  color: var(--lux-ivory);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 500;
}

.review-inbox-item {
  border: 1px solid rgba(200, 167, 90, 0.17);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.review-inbox-item > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--lux-ivory);
}

.review-inbox-item span {
  color: var(--lux-gold-soft);
  letter-spacing: 0.04em;
}

.review-inbox-item p {
  color: rgba(248, 241, 231, 0.72);
  line-height: 1.48;
}

.service-cover-editor {
  display: grid;
  gap: 12px;
}

.section-light,
.section-dark,
.booking-shell,
.booking-calendar-shell,
.booking-payment-shell,
.admin-dashboard {
  background-color: #061018;
}

.service-card,
.review-card,
.booking-service-card,
.booking-form-panel,
.style-wizard-modal,
.create-modal,
.admin-foundation-section {
  border-color: rgba(200, 167, 90, 0.2);
  background-color: rgba(9, 15, 20, 0.84);
  box-shadow:
    0 22px 60px rgba(116, 198, 255, 0.18),
    0 10px 30px rgba(0, 0, 0, 0.18);
}

.glass-button,
.admin-create-button,
.add-style-button {
  box-shadow:
    0 10px 24px rgba(116, 198, 255, 0.2),
    0 6px 16px rgba(0, 0, 0, 0.12);
}

.map-preview,
.map-card,
.auth-card,
.profile-card,
.admin-card,
.access-state,
.profile-avatar-large,
.substyle-panel,
.substyle-card,
.admin-edit-launcher,
.image-editor-modal,
.booking-calendar-panel,
.checkout-choice-panel,
.stripe-payment-mockup,
.message-widget-panel {
  box-shadow:
    0 24px 70px rgba(116, 198, 255, 0.18),
    0 10px 30px rgba(0, 0, 0, 0.18);
}

.booking-service-card:hover,
.substyle-card:hover,
.profile-photo-action:hover,
.style-card-actions-trigger:hover,
.style-card-actions-trigger:focus-visible {
  box-shadow:
    0 28px 78px rgba(116, 198, 255, 0.26),
    0 12px 32px rgba(0, 0, 0, 0.18);
}

.eyebrow {
  color: rgba(241, 215, 141, 0.8);
}

.create-modal p,
.style-wizard-modal p,
.booking-form-panel p,
.review-card p {
  color: rgba(248, 241, 231, 0.76);
}

.availability-day {
  min-height: 180px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid rgba(200, 167, 90, 0.2);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.065);
}

.availability-day h3 {
  margin: 0 0 4px;
  color: var(--lux-ivory);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.8rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero-section {
    --hero-image-position-x: 28%;
    --hero-image-position-y: center;
  }

  .nav {
    align-items: flex-start;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: center;
  }

  .nav-auth {
    align-self: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: clamp(46px, 8vw, 84px);
  }

  .hero-copy {
    grid-column: 1;
    max-width: 680px;
    margin: auto auto 0;
    padding-block: 24px 26px;
    text-align: center;
  }

  .hero-text {
    margin-inline: auto;
  }

  .button-row {
    justify-content: center;
  }

  .hero-portrait-section {
    background-position: var(--hero-image-position-x) var(--hero-image-position-y);
  }

  .hero-portrait-section::before {
    background:
      linear-gradient(180deg, rgba(4, 13, 20, 0.18) 0%, rgba(4, 13, 20, 0.12) 36%, rgba(4, 13, 20, 0.78) 76%, rgba(4, 13, 20, 0.94) 100%),
      linear-gradient(90deg, rgba(4, 13, 20, 0.06), rgba(4, 13, 20, 0.34));
  }

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

  .service-carousel {
    width: min(760px, calc(100% - 112px));
  }

  .service-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

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

  .reviews-section {
    min-height: auto;
    padding-block: 104px;
  }

  .gallery-section .section-heading {
    width: min(760px, calc(100% - 112px));
  }



  .location-content {
    grid-template-columns: 1fr;
  }

  .style-detail-hero {
    min-height: auto;
    padding-inline: clamp(22px, 7vw, 72px);
  }

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

  .auth-shell {
    grid-template-columns: 1fr;
  }

  .profile-header,
  .admin-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-title-group {
    align-items: center;
  }

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

  .style-detail-content {
    grid-template-columns: 1fr;
  }

  .booking-detail-shell,
  .booking-checkout-grid,
  .booking-calendar-layout,
  .booking-payment-grid,
  .availability-manager-layout,
  .style-wizard-grid,
  .style-preview-layout,
  .create-modal-grid,
  .create-modal-two-column,
  .gallery-draft-card,
  .crop-control-grid,
  .availability-builder,
  .review-manager-grid,
  .client-message-panel,
  .admin-messages-layout {
    grid-template-columns: 1fr;
  }

  .booking-calendar-shell {
    min-height: auto;
  }

  .booking-payment-shell {
    min-height: auto;
  }

  .booking-calendar-layout {
    flex: 0 1 auto;
  }

  .booking-calendar-shell .booking-calendar-panel {
    grid-template-rows: auto;
  }

  .lux-calendar-grid {
    grid-template-rows: none;
  }

  .lux-calendar-grid button {
    min-height: 58px;
  }

  .mini-calendar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .style-option-row {
    grid-template-columns: 1fr;
  }

  .style-option-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .style-option-row textarea {
    grid-column: auto;
  }

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

  .style-detail-copy {
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
  }

  .style-detail-hero .glass-button {
    align-self: center;
  }

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

  .substyle-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .hero-section {
    --hero-image-position-x: 27%;
    --hero-image-position-y: center;
  }

  .section {
    padding: 64px 18px;
  }

  .hero-section {
    padding-top: 0;
  }

  .nav {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 18px;
  }

  .brand {
    gap: 10px;
    width: var(--sb-badge-size);
    height: var(--sb-badge-size);
    padding: 0;
    font-size: 1rem;
  }

  .brand-logo-slot {
    width: 100%;
    height: 100%;
    font-size: 0.95rem;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .nav-links a {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 0.84rem;
  }

  .nav-auth {
    gap: 8px;
  }

  .admin-create-button {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  .admin-create-popover {
    right: 0;
    width: min(240px, calc(100vw - 36px));
  }

  .login-nav-button {
    min-height: 44px;
    padding: 10px 15px;
    font-size: 0.86rem;
  }

  .profile-nav-button {
    width: 46px;
    height: 46px;
  }

  .hero-content {
    gap: 34px;
    width: min(100% - 36px, 520px);
    padding-block: 42px 18px;
  }

  .hero-copy {
    padding: 18px 0 20px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
    line-height: 0.9;
  }

  .hero-copy .hero-text {
    font-size: 1rem;
    margin-top: 18px;
  }

  .hero-copy .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-copy .glass-button {
    width: 100%;
    min-height: 54px;
  }

  .hero-image-card {
    min-height: 360px;
    border-radius: 28px;
  }

  .hair-frame {
    inset: 20px;
    border-radius: 22px;
  }

  .service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .services-section {
    min-height: auto;
    padding-block: 72px 86px;
  }

  .service-carousel {
    width: calc(100% - 56px);
  }

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

  .service-image {
    aspect-ratio: 4 / 5;
    min-height: auto;
  }

  .edge-navigation-zone {
    width: 44px;
    font-size: 2.9rem;
  }

  .gallery-section {
    min-height: auto;
    padding-block: 72px 86px;
  }

  .gallery-section .section-heading {
    width: calc(100% - 56px);
    padding: 14px 16px;
    border-radius: 18px;
  }

  .gallery-section .section-heading h2 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .gallery-media-card,
  .gallery-upload-tile {
    height: clamp(320px, 50vh, 400px);
  }

  .reviews-heading {
    margin-bottom: 36px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: auto;
    padding: 22px;
    border-radius: 20px;
  }

  .reviews-section {
    padding-block: 86px 98px;
  }

  .location-section {
    padding-block: 72px;
  }

  .map-preview {
    min-height: 340px;
    border-radius: 24px;
  }

  .map-card {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .style-detail-hero .glass-button {
    align-self: stretch;
  }

  .booking-menu-hero {
    width: min(100% - 36px, 1280px);
    padding-block: 24px 44px;
  }

  .booking-menu-intro {
    text-align: left;
  }

  .booking-menu-grid {
    grid-template-columns: 1fr;
  }

  .booking-service-card {
    min-height: auto;
    border-radius: 22px;
  }

  .auth-shell,
  .profile-shell,
  .admin-shell,
  .access-state,
  .booking-detail-shell,
  .booking-checkout-shell,
  .messages-shell,
  .confirmation-shell {
    width: min(100% - 36px, 1180px);
    padding-block: 58px 82px;
  }

  .profile-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .profile-title-group {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-avatar-block {
    justify-items: start;
  }

  .auth-card,
  .profile-card,
  .admin-card,
  .access-state,
  .booking-options-panel,
  .booking-calendar-panel,
  .booking-form-panel,
  .client-message-panel,
  .confirmation-card,
  .admin-foundation-section,
  .admin-thread-panel {
    border-radius: 22px;
  }

  .admin-edit-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .image-editor-body {
    grid-template-columns: 1fr;
  }

  .image-editor-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-edit-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-edit-launcher .glass-button {
    width: auto;
  }

  .hero-section > .edit-image-marker {
    top: 148px;
  }

  .booking-detail-copy h1,
  .messages-heading h1,
  .confirmation-card h1 {
    font-size: clamp(2.7rem, 14vw, 4.35rem);
  }

  .booking-option-button {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-choice-panel,
  .checkout-choice-panel .glass-button {
    width: 100%;
  }

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

  .lux-calendar-grid,
  .lux-calendar-weekdays {
    gap: 5px;
  }

  .lux-calendar-grid button {
    min-height: 58px;
    border-radius: 14px;
  }

  .time-slot-grid,
  .availability-preview-grid,
  .guest-payment-row {
    grid-template-columns: 1fr;
  }

  .stripe-amount-grid {
    flex-direction: column;
  }

  .client-message-panel {
    padding: 16px;
  }

  .message-thread {
    min-height: 340px;
  }

  .message-bubble {
    width: 92%;
  }

  .message-widget {
    right: 12px;
    left: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .message-widget-panel {
    width: 100%;
    max-height: calc(100svh - 92px);
    border-radius: 20px;
    padding: 15px;
  }

  .message-widget-thread {
    max-height: 34svh;
  }

  .message-widget-button {
    min-width: 96px;
  }

  .style-detail-hero {
    padding: 52px 18px 82px;
  }

  .style-detail-content {
    gap: 28px;
  }

  .style-detail-copy {
    text-align: left;
  }

  .booking-payment-shell .booking-menu-intro h1 {
    white-space: normal;
  }

  .substyle-panel {
    padding: 14px;
    border-radius: 22px;
  }

  .substyle-heading {
    align-items: center;
  }

  .substyle-grid {
    grid-template-columns: 1fr;
  }

  .substyle-card,
  .substyle-card:last-child:nth-child(odd) {
    min-height: auto;
    grid-column: auto;
  }

  .edge-navigation-zone {
    top: auto;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 46px;
    height: 46px;
    border: 1px solid rgba(241, 215, 141, 0.42);
    border-radius: 50%;
    font-size: 2.15rem;
    opacity: 0.82;
    background:
      linear-gradient(145deg, rgba(241, 215, 141, 0.2), rgba(255, 255, 255, 0.06)),
      rgba(5, 4, 3, 0.78);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
  }

  .edge-navigation-zone-left {
    left: 12px;
  }

  .edge-navigation-zone-right {
    right: 12px;
  }

  .edge-navigation-zone-left:hover,
  .edge-navigation-zone-left:focus-visible,
  .edge-navigation-zone-right:hover,
  .edge-navigation-zone-right:focus-visible {
    background:
      linear-gradient(145deg, rgba(241, 215, 141, 0.28), rgba(255, 255, 255, 0.08)),
      rgba(12, 10, 8, 0.88);
  }
}

/* Developer Impersonation Bar */
.dev-impersonation-bar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: linear-gradient(90deg, #967420, #c8a75a, #967420);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  padding: 9px 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  color: #050403;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.dev-impersonation-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.dev-impersonation-status {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.dev-impersonation-status em {
  font-style: normal;
  font-weight: 700;
  text-decoration: underline;
}

.dev-impersonation-exit-button {
  background: #050403;
  color: var(--lux-gold-soft);
  border: 1px solid rgba(200, 167, 90, 0.4);
  border-radius: 10px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
}

.dev-impersonation-exit-button:hover {
  background: #141414;
  color: var(--lux-ivory);
  border-color: var(--lux-gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
}

.dev-impersonation-exit-button:active {
  transform: translateY(0);
}

/* Developer Console Panel Styling */
.dev-console-panel {
  display: grid;
  gap: 22px;
  background: rgba(20, 20, 20, 0.4);
  border: 1px solid rgba(200, 167, 90, 0.16);
  border-radius: 24px;
  padding: 24px;
  margin-top: 10px;
}

.dev-console-tabs {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid rgba(200, 167, 90, 0.12);
  padding-bottom: 12px;
}

.dev-console-tabs button {
  background: transparent;
  color: var(--lux-muted);
  border: none;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.dev-console-tabs button.active {
  color: var(--lux-gold-soft);
}

.dev-console-tabs button.active::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lux-gold-soft);
}

.dev-console-notice {
  background: rgba(200, 167, 90, 0.1);
  border: 1px solid var(--lux-gold-dim);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--lux-gold-soft);
  font-size: 0.9rem;
}

.dev-console-tab-content h3 {
  font-family: Georgia, serif;
  font-size: 1.45rem;
  color: var(--lux-ivory);
  margin-bottom: 8px;
}

.dev-console-tab-content p {
  color: rgba(248, 241, 231, 0.7);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.dev-impersonate-control {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.dev-impersonate-control select {
  flex: 1 1 300px;
  min-height: 48px;
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 14px;
  padding: 10px 14px;
  color: var(--lux-ivory);
  background: rgba(5, 4, 3, 0.5);
  font: inherit;
}

.dev-analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.analytics-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 167, 90, 0.12);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.analytics-card h4 {
  color: var(--lux-gold-soft);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.analytics-card strong {
  color: var(--lux-ivory);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
}

.analytics-card strong.revenue-text {
  color: #2ea44f;
}

.analytics-card span {
  color: rgba(248, 241, 231, 0.5);
  font-size: 0.78rem;
}

.logs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.logs-header input {
  min-height: 40px;
  border: 1px solid rgba(200, 167, 90, 0.2);
  border-radius: 12px;
  padding: 8px 12px;
  color: var(--lux-ivory);
  background: rgba(5, 4, 3, 0.4);
  font: inherit;
  width: min(340px, 100%);
}

.logs-table-container {
  overflow-x: auto;
  border: 1px solid rgba(200, 167, 90, 0.12);
  border-radius: 16px;
  background: rgba(5, 4, 3, 0.3);
  max-height: 480px;
}

.logs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

.logs-table th, .logs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(200, 167, 90, 0.08);
}

.logs-table th {
  background: rgba(200, 167, 90, 0.06);
  color: var(--lux-gold-soft);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logs-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.log-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.badge-booking_confirmed { background: rgba(46, 164, 79, 0.15); color: #2ea44f; border: 1px solid rgba(46, 164, 79, 0.3); }
.badge-booking_cancelled { background: rgba(220, 53, 69, 0.15); color: #dc3545; border: 1px solid rgba(220, 53, 69, 0.3); }
.badge-booking_refunded { background: rgba(255, 193, 7, 0.15); color: #ffc107; border: 1px solid rgba(255, 193, 7, 0.3); }
.badge-booking_rescheduled { background: rgba(23, 162, 184, 0.15); color: #17a2b8; border: 1px solid rgba(23, 162, 184, 0.3); }

.performer-cell {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Admin Calendar Styling */
.admin-calendar-section {
  display: grid;
  gap: 20px;
  background: rgba(10, 9, 8, 0.35);
  border: 1px solid rgba(200, 167, 90, 0.14);
  border-radius: 26px;
  padding: clamp(14px, 2.5vw, 26px);
  margin-bottom: 30px;
}

.admin-calendar-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  gap: 24px;
}

@media (max-width: 990px) {
  .admin-calendar-workspace {
    grid-template-columns: 1fr;
  }
}

.calendar-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-header-bar h3 {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  color: var(--lux-ivory);
  margin: 0;
}

.calendar-nav-buttons {
  display: flex;
  gap: 10px;
}

.calendar-nav-buttons button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 12px;
  color: var(--lux-ivory);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.calendar-nav-buttons button:hover {
  background: rgba(200, 167, 90, 0.14);
  border-color: var(--lux-gold-soft);
}

.calendar-day-headers {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--lux-gold-soft);
  margin-bottom: 10px;
}

.calendar-grid-cells {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  min-height: 480px;
}

.calendar-cell {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(200, 167, 90, 0.08);
  border-radius: 14px;
  min-height: 90px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cell-empty {
  opacity: 0.15;
  cursor: default;
}

.cell-day:hover {
  background: rgba(200, 167, 90, 0.06);
  border-color: rgba(200, 167, 90, 0.25);
}

.cell-day.selected {
  background: rgba(200, 167, 90, 0.1);
  border-color: var(--lux-gold-soft);
}

.cell-day-number {
  color: rgba(248, 241, 231, 0.45);
  font-size: 0.8rem;
  font-weight: 700;
}

.cell-day.selected .cell-day-number {
  color: var(--lux-gold-soft);
}

.cell-bookings-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}

.cell-booking-pill {
  border: none;
  border-left: 3px solid #555;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 6px;
  text-align: left;
  display: flex;
  flex-direction: column;
  color: var(--lux-ivory);
  font-size: 0.68rem;
  cursor: pointer;
  transition: background 0.15s ease;
  line-height: 1.25;
  width: 100%;
}

.cell-booking-pill:hover {
  background: rgba(255, 255, 255, 0.12);
}

.cell-booking-pill strong {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cell-booking-pill span {
  font-size: 0.6rem;
  color: rgba(248, 241, 231, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.calendar-day-details-panel {
  background: rgba(5, 4, 3, 0.3);
  border: 1px solid rgba(200, 167, 90, 0.1);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-content: start;
}

.calendar-day-details-panel h4 {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  color: var(--lux-ivory);
  border-bottom: 1px solid rgba(200, 167, 90, 0.14);
  padding-bottom: 8px;
  margin: 0;
}

.day-bookings-list {
  display: grid;
  gap: 12px;
  overflow: auto;
  max-height: 480px;
}

.day-booking-row-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 167, 90, 0.12);
  border-radius: 16px;
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.day-booking-row-card:hover {
  background: rgba(200, 167, 90, 0.06);
  border-color: rgba(200, 167, 90, 0.25);
  transform: translateY(-1px);
}

.row-card-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.row-card-heading h5 {
  font-size: 0.95rem;
  color: var(--lux-ivory);
  margin: 0;
}

.status-badge {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 6px;
  color: #fff;
}

.row-card-details {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
}

.row-card-details div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.row-card-details dt {
  color: var(--lux-gold-soft);
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.row-card-details dd {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(248, 241, 231, 0.8);
}

.no-events-prompt {
  color: rgba(248, 241, 231, 0.5);
  font-size: 0.9rem;
  text-align: center;
  padding: 40px 10px;
}

/* Modals & Backdrop */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: rgba(5, 4, 3, 0.78);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 16px;
}

.modal-view {
  background: radial-gradient(circle at 82% 10%, rgba(241, 215, 141, 0.07), transparent 35%), linear-gradient(180deg, rgba(34, 34, 34, 0.98), rgba(9, 8, 7, 0.99));
  border: 1px solid rgba(200, 167, 90, 0.3);
  border-radius: 24px;
  width: min(680px, 100%);
  box-shadow: 0 32px 82px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  animation: modal-enter 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-enter {
  from { transform: scale(0.96) translateY(10px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(200, 167, 90, 0.16);
}

.modal-header h3 {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  color: var(--lux-gold-soft);
  margin: 0;
}

.modal-close-button {
  background: transparent;
  color: var(--lux-ivory);
  border: none;
  font-weight: 700;
  cursor: pointer;
  padding: 6px;
}

.modal-body {
  padding: 22px;
  display: grid;
  gap: 20px;
}

.booking-modal-summary h4 {
  font-family: Georgia, serif;
  font-size: 1.85rem;
  color: var(--lux-ivory);
  margin: 0 0 6px 0;
}

.booking-modal-service {
  color: var(--lux-gold-soft);
  font-size: 1.15rem;
  margin: 0;
}

.booking-modal-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
  border-top: 1.5px solid rgba(200, 167, 90, 0.2);
  border-bottom: 1.5px solid rgba(200, 167, 90, 0.2);
  padding: 24px 0;
}

.detail-column h5 {
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--lux-gold);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.detail-column p {
  font-size: 1.05rem;
  color: rgba(248, 241, 231, 0.95);
  margin: 8px 0;
  line-height: 1.5;
}

.status-label {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.95rem;
}

.booking-modal-notes h5 {
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--lux-gold);
  margin: 0 0 8px 0;
}

.booking-modal-notes p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(248, 241, 231, 0.9);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(200, 167, 90, 0.15);
}

/* Reschedule Box Accessibility styling */
.admin-booking-modal .reschedule-box {
  background: rgba(200, 167, 90, 0.04) !important;
  border: 1.5px solid var(--lux-gold) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  margin-top: 24px !important;
}

.admin-booking-modal .reschedule-box h5 {
  font-size: 1.25rem !important;
  color: var(--lux-gold) !important;
  margin: 0 0 16px 0 !important;
}

.admin-booking-modal .reschedule-inputs {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  gap: 20px !important;
  margin-bottom: 20px !important;
}

.admin-booking-modal .reschedule-inputs label {
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: var(--lux-ivory) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.admin-booking-modal .reschedule-inputs input[type="date"],
.admin-booking-modal .reschedule-inputs input[type="time"] {
  height: 52px !important;
  font-size: 1.15rem !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  background: rgba(22, 22, 22, 0.95) !important;
  border: 2px solid rgba(200, 167, 90, 0.45) !important;
  color: #fff !important;
  width: 100% !important;
}

.admin-booking-modal .reschedule-inputs input[type="date"]:focus,
.admin-booking-modal .reschedule-inputs input[type="time"]:focus {
  border-color: var(--lux-gold) !important;
  box-shadow: 0 0 0 3px rgba(200, 167, 90, 0.3) !important;
}

.modal-actions-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.modal-actions-panel button {
  flex: 1 1 120px;
}

.modal-actions-panel .cancel-btn {
  border-color: rgba(220, 53, 69, 0.4);
  color: #ff9999;
}

.modal-actions-panel .cancel-btn:hover {
  background: rgba(220, 53, 69, 0.15);
  border-color: #dc3545;
}

.modal-inline-action {
  border: 1px dashed rgba(200, 167, 90, 0.25);
  background: rgba(200, 167, 90, 0.03);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 12px;
}

.modal-inline-action h5 {
  font-size: 0.9rem;
  color: var(--lux-gold-soft);
  margin: 0;
}

.reschedule-inputs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.reschedule-inputs label {
  display: grid;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(248, 241, 231, 0.7);
  flex: 1;
}

.reschedule-inputs input {
  min-height: 40px;
  border: 1px solid rgba(200, 167, 90, 0.2);
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--lux-ivory);
  background: rgba(5, 4, 3, 0.4);
  font: inherit;
}

.warning-text {
  color: #ff9999;
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.45;
}

.modal-inline-action label {
  display: grid;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(248, 241, 231, 0.7);
}

.modal-inline-action textarea {
  border: 1px solid rgba(200, 167, 90, 0.2);
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--lux-ivory);
  background: rgba(5, 4, 3, 0.4);
  font: inherit;
  resize: vertical;
}

.action-button-row {
  display: flex;
  gap: 10px;
}

.cancel-confirm {
  border-color: rgba(220, 53, 69, 0.5);
  background: rgba(220, 53, 69, 0.1);
  color: #ffb3b3;
}

.cancel-confirm:hover {
  background: #dc3545;
  color: #fff;
  border-color: #dc3545;
}

.admin-availability-separator {
  margin-top: 40px;
  border-top: 1px solid rgba(200, 167, 90, 0.14);
  padding-top: 30px;
}

.admin-availability-separator h3 {
  font-family: Georgia, serif;
  font-size: 1.55rem;
  color: var(--lux-ivory);
  margin: 0 0 4px 0;
}

.admin-availability-separator p {
  color: rgba(248, 241, 231, 0.55);
  font-size: 0.9rem;
  margin: 0 0 16px 0;
}

/* ==========================================================================
   Admin Communications, Tabs, & Notifications
   ========================================================================== */

.messages-tab-container {
  display: grid;
  gap: 20px;
  background: rgba(18, 14, 11, 0.65);
  border: 1px solid rgba(200, 167, 90, 0.15);
  border-radius: 28px;
  padding: 24px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.messages-tab-selector {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid rgba(200, 167, 90, 0.15);
  padding-bottom: 14px;
}

.messages-tab-selector .tab-btn {
  position: relative;
  background: transparent;
  border: none;
  color: rgba(248, 241, 231, 0.6);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 12px;
}

.messages-tab-selector .tab-btn:hover {
  color: var(--lux-gold-soft);
  background: rgba(200, 167, 90, 0.08);
}

.messages-tab-selector .tab-btn.active {
  color: var(--lux-gold);
  background: rgba(200, 167, 90, 0.15);
  font-weight: 700;
}

.tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d13434;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 12px;
  padding: 2px 7px;
  margin-left: 8px;
  min-width: 18px;
  height: 18px;
  line-height: 1;
}

.messages-search-bar input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(5, 4, 3, 0.5);
  border: 1px solid rgba(200, 167, 90, 0.2);
  border-radius: 16px;
  color: var(--lux-ivory);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.messages-search-bar input:focus {
  outline: none;
  border-color: var(--lux-gold);
  box-shadow: 0 0 0 3px rgba(200, 167, 90, 0.15);
  background: rgba(5, 4, 3, 0.7);
}

.notifications-tab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.notifications-tab-header h3 {
  margin: 0;
  font-family: Georgia, serif;
  color: var(--lux-ivory);
  font-size: 1.35rem;
}

.notifications-list {
  display: grid;
  gap: 16px;
}

.notification-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 167, 90, 0.15);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.notification-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
  border-color: rgba(200, 167, 90, 0.3);
}

.notification-card.unread {
  border-left: 4px solid var(--lux-gold);
  background: rgba(200, 167, 90, 0.05);
}

.notification-card.unread:hover {
  background: rgba(200, 167, 90, 0.08);
}

.unread-dot {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 10px;
  height: 10px;
  background-color: var(--lux-gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--lux-gold);
}

.notif-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 12px;
}

.notif-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--lux-ivory);
}

.notif-badge.badge-new_booking {
  background: rgba(46, 164, 79, 0.15);
  color: #5cf584;
}

.notif-badge.badge-payment_confirmed {
  background: rgba(200, 167, 90, 0.15);
  color: var(--lux-gold-soft);
}

.notif-badge.badge-booking_canceled,
.notif-badge.badge-refund_processed {
  background: rgba(220, 53, 69, 0.15);
  color: #ff8080;
}

.notif-badge.badge-client_inquiry {
  background: rgba(0, 123, 255, 0.15);
  color: #7abaff;
}

.notif-badge.badge-booking_rescheduled {
  background: rgba(253, 126, 20, 0.15);
  color: #ffb066;
}

.notif-time {
  color: rgba(248, 241, 231, 0.45);
  font-size: 0.8rem;
}

.notification-card h4 {
  margin: 0 0 6px 0;
  font-size: 1.15rem;
  color: var(--lux-ivory);
  font-family: inherit;
}

.notif-description {
  margin: 0 0 12px 0;
  color: rgba(248, 241, 231, 0.75);
  font-size: 0.95rem;
  line-height: 1.45;
}

.notif-details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  font-size: 0.85rem;
  color: rgba(248, 241, 231, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
  margin-top: 12px;
}

.notif-details-grid strong {
  color: var(--lux-gold-soft);
}

.notif-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
}

.notif-card-actions button {
  font-size: 0.85rem;
  padding: 8px 16px;
}

.notif-read-btn {
  margin-left: auto;
}

/* Chat view additions */
.conv-summary-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 78%;
}

.conv-summary-info strong {
  font-size: 0.98rem;
  color: var(--lux-ivory);
}

.conv-summary-info small {
  color: rgba(248, 241, 231, 0.45);
  font-size: 0.75rem;
}

.last-msg-snippet {
  font-size: 0.82rem;
  color: rgba(248, 241, 231, 0.65);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 2px;
}

.conv-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.conv-meta em {
  font-size: 0.72rem;
  color: rgba(248, 241, 231, 0.45);
}

.conv-badge {
  background: var(--lux-gold);
  color: #120e0b;
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.message-bubble-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  font-size: 0.72rem;
  color: rgba(248, 241, 231, 0.45);
}

.message-bubble-footer .read-status {
  color: var(--lux-gold-soft);
  font-weight: 700;
}

.quick-replies-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(248, 241, 231, 0.55);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(200, 167, 90, 0.1);
  padding: 10px 14px;
  border-radius: 16px;
}

.quick-reply-pill {
  background: rgba(200, 167, 90, 0.1);
  border: 1px solid rgba(200, 167, 90, 0.2);
  color: var(--lux-gold-soft);
  padding: 6px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.78rem;
  transition: all 0.2s ease;
}

.quick-reply-pill:hover {
  background: rgba(200, 167, 90, 0.2);
  color: var(--lux-gold);
  border-color: rgba(200, 167, 90, 0.4);
}

.empty-thread-detail-state,
.empty-notif-state {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  border: 1px dashed rgba(200, 167, 90, 0.2);
  border-radius: 20px;
  color: rgba(248, 241, 231, 0.45);
  text-align: center;
  padding: 20px;
}

/* ==========================================================================
   Premium UX Refinements & Layout Cleanup
   ========================================================================== */

/* 1. Floating Concierge Chat Button & Badge */
.message-widget-button {
  height: 52px !important;
  width: auto !important;
  min-width: 154px !important;
  border-radius: 26px 26px 4px 26px !important; /* Pointed chat bubble shape */
  padding: 0 18px 0 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  background: linear-gradient(135deg, #181410, #0c0a08) !important;
  border: 1.5px solid var(--lux-gold) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.75), 0 0 18px rgba(200, 167, 90, 0.15) !important; /* Softer premium glow */
  position: relative !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  color: var(--lux-gold) !important;
  cursor: pointer !important;
  text-decoration: none !important;
}

.message-widget-button:hover {
  transform: scale(1.05) translateY(-3px) !important; /* Stronger hover animation */
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.85), 0 0 26px rgba(241, 215, 141, 0.3) !important;
  color: var(--lux-gold-soft) !important;
  border-color: var(--lux-gold-soft) !important;
}

.message-widget-button::after,
.message-widget-button::before {
  display: none !important;
  content: none !important;
}

.message-widget-button-label {
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--lux-gold-soft) !important;
}

.message-widget-button .chat-bubble-svg {
  width: 18px !important;
  height: 18px !important;
  color: var(--lux-gold) !important;
}

/* Unread Badge Glow and Position at Top Right */
.message-widget-badge {
  position: absolute !important;
  top: -8px !important;
  right: -8px !important;
  left: auto !important;
  background: linear-gradient(135deg, #e53e3e, #b82b2b) !important;
  border: 1.5px solid var(--lux-gold) !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  min-width: 22px !important;
  height: 22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  box-shadow: 0 0 14px rgba(229, 62, 62, 0.85) !important;
  z-index: 5 !important;
  animation: badge-pop-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both, badge-pulse 2s infinite ease-in-out !important;
}

/* 2. Client Chat Panel & Spacing Cleanup */
.message-widget-panel {
  position: absolute !important;
  bottom: 68px !important;
  right: 0 !important;
  width: min(92vw, 380px); /* NO !important to allow resizing */
  max-height: min(85vh, 600px); /* NO !important to allow resizing */
  border: 1.5px solid rgba(200, 167, 90, 0.28) !important;
  border-radius: 24px !important;
  padding: 20px !important; /* More breathing room */
  background: linear-gradient(135deg, rgba(16, 12, 10, 0.99), rgba(8, 7, 6, 1)) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important; /* Spacing between segments */
}

.message-widget-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  border-bottom: 1px solid rgba(200, 167, 90, 0.15) !important;
  padding-bottom: 10px !important;
}

.message-widget-header .eyebrow {
  margin: 0 !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--lux-gold) !important;
}

.message-widget-header button {
  background: transparent !important;
  border: none !important;
  color: rgba(255, 255, 255, 0.4) !important;
  cursor: pointer !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  transition: color 0.2s ease !important;
}

.message-widget-header button:hover {
  color: #ffffff !important;
}

.message-widget-thread {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  min-height: 220px !important; /* Extra height */
  max-height: 300px !important;
  border: none !important; /* Remove card-in-card nested borders */
  background: transparent !important; /* Borderless chat canvas */
  padding: 4px 0 !important;
  overflow-y: auto !important;
}

/* Conversational chat bubble layouts */
.message-widget-thread .message-bubble {
  position: relative !important;
  width: fit-content !important;
  max-width: 80% !important;
  padding: 10px 14px !important;
  margin: 2px 0 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  display: flex !important;
  flex-direction: column !important;
  border: none !important; /* No inner borders */
}

/* User (Self) message bubbles */
.message-widget-thread .message-bubble.client,
.message-widget-thread .message-bubble.guest {
  align-self: flex-end !important;
  background: rgba(200, 167, 90, 0.18) !important;
  color: var(--lux-ivory) !important;
  border-radius: 18px 18px 4px 18px !important; /* Pointed tail bottom-right */
}

/* Sabra (Other) welcome/admin bubbles */
.message-widget-thread .message-bubble.admin,
.message-widget-thread .message-bubble.dev {
  align-self: flex-start !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--lux-ivory) !important;
  border-radius: 18px 18px 18px 4px !important; /* Pointed tail bottom-left */
}

.message-widget-thread .message-bubble span {
  display: block !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  color: var(--lux-gold-soft) !important;
  margin-bottom: 4px !important;
}

.message-widget-thread .message-bubble p {
  margin: 0 !important;
  font-size: 0.92rem !important;
  line-height: 1.4 !important;
  color: #ffffff !important;
  word-break: break-word !important;
}

/* Tucked bottom-right timestamps inside bubble */
.message-widget-thread .message-bubble .message-meta {
  display: flex !important;
  align-items: center !important;
  align-self: flex-end !important;
  gap: 6px !important;
  margin-top: 4px !important;
  border-top: none !important;
  padding-top: 0 !important;
}

.message-widget-thread .message-bubble .message-meta small {
  font-size: 0.65rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
}

.message-widget-thread .message-bubble .message-meta .message-status {
  font-size: 0.65rem !important;
  color: var(--lux-gold-soft) !important;
  font-weight: 700 !important;
}

/* 3. Composer UX Cleanup & Minimal Inputs */
.message-widget-composer-wrapper {
  width: 100% !important;
  margin-bottom: 2px !important;
}

.message-widget-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.message-widget-form textarea {
  min-height: 40px !important;
  border-radius: 16px !important;
  padding: 10px 14px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1.5px solid rgba(200, 167, 90, 0.18) !important;
  color: #ffffff !important;
  font-size: 0.88rem !important;
  font-family: inherit !important;
  resize: none !important;
  transition: all 0.2s ease !important;
}

.message-widget-panel.guest-widget-panel {
  resize: both;
  overflow: auto !important;
  min-width: 320px !important;
  min-height: 440px !important;
  max-width: 95vw !important;
  max-height: 90vh !important;
  width: 380px; /* default initial width */
  height: 520px; /* default initial height */
}

.message-widget-panel.guest-widget-panel .message-widget-form {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  max-height: none !important;
  overflow: visible !important;
}

.message-widget-panel.guest-widget-panel .textarea-label {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
}

.message-widget-panel.guest-widget-panel textarea.guest-message-textarea {
  flex: 1 1 auto !important;
  height: 100% !important;
  resize: none !important; /* Disable individual textarea resize handle */
  min-height: 85px !important;
  max-height: none !important;
  min-width: 100% !important;
  max-width: 100% !important;
  overflow: auto !important;
  padding: 10px 12px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(200, 167, 90, 0.22) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--lux-ivory) !important;
}

.message-widget-form textarea:focus {
  border-color: var(--lux-gold) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 0 0 3px rgba(200, 167, 90, 0.12) !important;
}

.message-widget-guest-fields {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  margin-bottom: 2px !important;
}

.message-widget-guest-fields label {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  color: rgba(200, 167, 90, 0.8) !important;
}

.message-widget-guest-fields label:first-child {
  grid-column: span 2 !important;
}

.message-widget-guest-fields input {
  height: 36px !important;
  border-radius: 12px !important;
  padding: 0 12px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1.5px solid rgba(200, 167, 90, 0.18) !important;
  color: #ffffff !important;
  font-size: 0.85rem !important;
  font-family: inherit !important;
  transition: all 0.2s ease !important;
}

.message-widget-guest-fields input:focus {
  border-color: var(--lux-gold) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 0 0 3px rgba(200, 167, 90, 0.12) !important;
}

.message-widget-form button[type="submit"] {
  height: 42px !important;
  border-radius: 14px !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}

/* FAQ Premium Tappable Chips */
.message-widget-faq-suggestions {
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

.faq-suggestion-label {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  margin-bottom: 6px !important;
  color: rgba(200, 167, 90, 0.7) !important;
  display: block !important;
}

.faq-pills-row {
  display: flex !important;
  gap: 8px !important;
  overflow-x: auto !important;
  padding-bottom: 6px !important;
  scrollbar-width: none !important;
}

.faq-pills-row::-webkit-scrollbar {
  display: none !important;
}

.faq-pill-btn {
  flex-shrink: 0 !important;
  padding: 8px 16px !important; /* Increased padding */
  border-radius: 20px !important; /* Premium capsule */
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  background: rgba(200, 167, 90, 0.08) !important;
  border: 1px solid rgba(200, 167, 90, 0.2) !important;
  color: var(--lux-gold-soft) !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
}

.faq-pill-btn:disabled {
  opacity: 0.85 !important;
  cursor: pointer !important;
}

.faq-pill-btn:hover {
  background: rgba(200, 167, 90, 0.16) !important;
  border-color: var(--lux-gold) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

/* ==========================================================================
   Admin Communications Center Overrides
   ========================================================================== */

.messages-admin-shell {
  width: 96% !important;
  max-width: 1680px !important;
  margin: 0 auto !important;
  padding-top: 10px !important; /* Compressed dead space */
  padding-bottom: 10px !important;
}

.messages-admin-shell .admin-heading {
  margin-bottom: 24px !important; /* Tighter rhythm */
}

/* Reduced communications header title size by 30% */
.messages-admin-shell .admin-heading h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem) !important;
  line-height: 1.1 !important;
}

.messages-admin-shell .admin-heading p {
  font-size: 0.95rem !important;
  margin-top: 6px !important;
  color: rgba(248, 241, 231, 0.6) !important;
}

/* iOS Segmented tab selector */
.messages-tab-selector {
  background: rgba(12, 10, 8, 0.9) !important;
  border: 1.5px solid rgba(200, 167, 90, 0.25) !important;
  padding: 3px !important;
  border-radius: 12px !important;
  display: inline-flex !important; /* Smaller width footprint */
  width: fit-content !important;
  align-self: center !important;
  margin: 0 auto 20px auto !important; /* Compressed hero gap */
}

.messages-tab-container {
  display: flex !important;
  flex-direction: column !important;
}

.messages-tab-selector button.tab-btn {
  padding: 8px 20px !important;
  border-radius: 9px !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  background: transparent !important;
  border: none !important;
  color: rgba(248, 241, 231, 0.5) !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.messages-tab-selector button.tab-btn:hover {
  color: #ffffff !important;
}

.messages-tab-selector button.tab-btn.active {
  background: var(--lux-gold) !important;
  color: #120e0b !important;
}

.tab-badge {
  background: rgba(255, 255, 255, 0.2) !important;
  color: inherit !important;
  font-size: 0.7rem !important;
  font-weight: 900 !important;
  padding: 1px 6px !important;
  border-radius: 10px !important;
}

.messages-tab-selector button.tab-btn.active .tab-badge {
  background: rgba(18, 14, 11, 0.2) !important;
  color: #120e0b !important;
}

/* 5. Refined Clickable Admin Notification Cards */
.notifications-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.notification-card {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(200, 167, 90, 0.12) !important;
  border-left: 4px solid rgba(200, 167, 90, 0.15) !important;
  border-radius: 16px !important;
  padding: 16px 20px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
  margin-bottom: 0 !important;
}

.notification-card:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  transform: translateY(-2px) !important;
  border-color: rgba(200, 167, 90, 0.25) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
}

.notification-card.unread {
  background: rgba(200, 167, 90, 0.03) !important;
  border-color: rgba(200, 167, 90, 0.2) !important;
}

/* Color indicator left borders per type */
.notification-card.type-new_booking {
  border-left-color: #2ea44f !important;
}

.notification-card.type-payment_confirmed {
  border-left-color: var(--lux-gold) !important;
}

.notification-card.type-booking_canceled,
.notification-card.type-refund_processed {
  border-left-color: #dc3545 !important;
}

.notification-card.type-client_inquiry {
  border-left-color: #007bff !important;
}

.notification-card.type-booking_rescheduled {
  border-left-color: #fd7e14 !important;
}

.notif-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  padding-bottom: 6px !important;
  margin-bottom: 10px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 12px !important;
}

/* Custom premium colored title badges for TYPE — CLIENT NAME */
.notif-title-badge {
  font-size: 0.74rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  display: inline-block !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--lux-gold-soft) !important;
}

.notif-title-badge.notif-badge-new_booking {
  background: rgba(46, 164, 79, 0.15) !important;
  border: 1px solid rgba(46, 164, 79, 0.3) !important;
  color: #5cf584 !important;
}

.notif-title-badge.notif-badge-payment_confirmed {
  background: rgba(200, 167, 90, 0.15) !important;
  border: 1px solid rgba(200, 167, 90, 0.3) !important;
  color: var(--lux-gold-soft) !important;
}

.notif-title-badge.notif-badge-booking_canceled,
.notif-title-badge.notif-badge-refund_processed {
  background: rgba(220, 53, 69, 0.15) !important;
  border: 1px solid rgba(220, 53, 69, 0.3) !important;
  color: #ff8080 !important;
}

.notif-title-badge.notif-badge-client_inquiry {
  background: rgba(0, 123, 255, 0.15) !important;
  border: 1px solid rgba(0, 123, 255, 0.3) !important;
  color: #7abaff !important;
}

.notif-title-badge.notif-badge-booking_rescheduled {
  background: rgba(253, 126, 20, 0.15) !important;
  border: 1px solid rgba(253, 126, 20, 0.3) !important;
  color: #ffb066 !important;
}

.notif-time {
  color: rgba(248, 241, 231, 0.4) !important;
  font-size: 0.78rem !important;
}

.notif-description {
  font-size: 0.95rem !important;
  line-height: 1.45 !important;
  color: rgba(248, 241, 231, 0.85) !important;
  margin: 4px 0 8px 0 !important;
}

.notif-details-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px 20px !important;
  font-size: 0.82rem !important;
  color: rgba(248, 241, 231, 0.55) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
  padding-top: 10px !important;
  margin-top: 10px !important;
}

.notif-details-grid strong {
  color: var(--lux-gold-soft) !important;
}

/* Card clickable inline text indicator CTA */
.notif-card-footer {
  display: flex !important;
  justify-content: flex-end !important;
  margin-top: 8px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
  padding-top: 8px !important;
}

.notif-action-link {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: var(--lux-gold) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  transition: color 0.2s ease !important;
}

.notification-card:hover .notif-action-link {
  color: var(--lux-gold-soft) !important;
}

/* 6. CRM Inbox Row Spacing & active/unread status */
.conversation-list button {
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid rgba(200, 167, 90, 0.1) !important;
  margin-bottom: 6px !important;
  border-radius: 12px !important;
  transition: all 0.2s ease-in-out !important;
}

.conversation-list button:hover {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(200, 167, 90, 0.25) !important;
}

.conversation-list button.active {
  border-color: var(--lux-gold) !important;
  background: rgba(200, 167, 90, 0.09) !important;
}

/* Unread conversation gets highlighted left border */
.conversation-list button.unread {
  border-left: 3px solid var(--lux-gold) !important;
  background: rgba(200, 167, 90, 0.03) !important;
}

.conversation-list button.unread:hover {
  background: rgba(200, 167, 90, 0.06) !important;
}

/* Conversational Thread Alignments for Admin page */
.admin-thread-panel .message-thread {
  padding: 16px !important;
  background: rgba(5, 4, 3, 0.45) !important;
  border-radius: 18px !important;
  min-height: 380px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  overflow-y: auto !important;
}

.admin-thread-panel .message-bubble {
  width: fit-content !important;
  max-width: 78% !important;
  min-width: 90px !important;
  margin: 2px 0 !important;
  padding: 10px 14px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  display: flex !important;
  flex-direction: column !important;
  border-radius: 14px !important;
  border: none !important;
}

/* Admin/You (Self) aligns to right */
.admin-thread-panel .message-bubble.admin-sent {
  align-self: flex-end !important;
  background: rgba(200, 167, 90, 0.16) !important;
  border-radius: 18px 18px 4px 18px !important; /* Pointed tail bottom-right */
}

/* Client (Other) aligns to left */
.admin-thread-panel .message-bubble.client-sent {
  align-self: flex-start !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-radius: 18px 18px 18px 4px !important; /* Pointed tail bottom-left */
}

.admin-thread-panel .message-bubble p {
  margin: 0 !important;
  font-size: 0.92rem !important;
  line-height: 1.4 !important;
  color: rgba(248, 241, 231, 0.88) !important;
  word-break: break-word !important;
}

/* Remove horizontal lines from thread bubble footers */
.admin-thread-panel .message-bubble .message-bubble-footer {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  gap: 8px !important;
  border-top: none !important;
  padding-top: 0 !important;
  margin-top: 4px !important;
}

.admin-thread-panel .message-bubble .message-bubble-footer small {
  font-size: 0.68rem !important;
  color: rgba(248, 241, 231, 0.4) !important;
}

.admin-thread-panel .message-bubble .message-bubble-footer .read-status {
  font-size: 0.68rem !important;
  color: var(--lux-gold-soft) !important;
  font-weight: 700 !important;
}

/* Custom badge animations */
@keyframes badge-pop-in {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Service Card Admin Badges & Actions */
.service-card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  width: 100%;
}

.admin-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid rgba(241, 215, 141, 0.4);
}

.admin-status-badge.hidden {
  background: rgba(220, 53, 69, 0.22);
  color: #ff8b8b;
  border-color: rgba(220, 53, 69, 0.45);
}

.admin-status-badge.draft {
  background: rgba(200, 167, 90, 0.22);
  color: var(--lux-gold-soft);
  border-color: var(--lux-gold-dim);
}

.admin-hidden-card {
  border-style: dashed !important;
  border-color: rgba(200, 167, 90, 0.26) !important;
  opacity: 0.74;
}

.card-overflow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(241, 215, 141, 0.3);
  background: rgba(6, 18, 27, 0.74);
  color: var(--lux-gold-soft);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 180ms ease;
  line-height: 1;
  padding: 0;
}

.card-overflow-btn:hover {
  border-color: var(--lux-gold);
  background: rgba(200, 167, 90, 0.16);
  transform: scale(1.05);
}

.card-dropdown-menu {
  position: absolute;
  right: 0;
  top: 40px;
  z-index: 10;
  background: rgba(6, 18, 27, 0.94);
  border: 1px solid rgba(241, 215, 141, 0.5);
  border-radius: 12px;
  padding: 6px;
  min-width: 140px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.48), 0 0 20px rgba(241, 215, 141, 0.12);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-dropdown-menu button {
  background: transparent;
  border: none;
  color: var(--lux-ivory);
  text-align: left;
  padding: 8px 12px;
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: background 120ms ease, color 120ms ease;
}

.card-dropdown-menu button:hover {
  background: rgba(241, 215, 141, 0.16);
  color: var(--lux-gold-soft);
}

.card-dropdown-menu button.danger-item {
  color: #ff8b8b;
}

.card-dropdown-menu button.danger-item:hover {
  background: rgba(220, 53, 69, 0.22);
  color: #ffb3b3;
}

/* Notification Toast */
.admin-inline-toast {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: rgba(6, 18, 27, 0.94);
  border: 1px solid var(--lux-gold);
  color: var(--lux-ivory);
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 24px rgba(241, 215, 141, 0.22);
  animation: toast-slide-in 240ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  backdrop-filter: blur(12px);
}

@keyframes toast-slide-in {
  from {
    transform: translate(-50%, -20px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

/* Modals Custom Tweaks */
.confirmation-dialog {
  max-width: 480px !important;
  border-color: rgba(241, 215, 141, 0.5) !important;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 34px rgba(241, 215, 141, 0.2) !important;
}

.danger-btn {
  background: linear-gradient(135deg, #ff6b6b, #c026d3) !important;
  border-color: #ff8b8b !important;
  color: #fff !important;
}

.danger-btn:hover {
  background: linear-gradient(135deg, #ff8b8b, #d946ef) !important;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.4) !important;
}

/* Option-specific actions styles */
.booking-option-card-wrapper {
  transition: all 180ms ease;
}

.option-overflow {
  background: rgba(6, 18, 27, 0.86);
}

.option-dropdown {
  top: 36px;
  right: 14px;
}

/* Promotions & Loyalty System */
.promotions-locked-state {
  max-width: 600px;
  margin: clamp(40px, 8vh, 80px) auto 0;
  padding: 48px;
  text-align: center;
}

.promotions-page .promotions-shell {
  padding-top: calc(var(--public-nav-offset) + clamp(34px, 4vw, 58px));
}

.promotions-page .promotions-locked-state {
  min-height: auto;
  margin-top: clamp(22px, 3vw, 40px);
  padding-top: calc(var(--public-nav-offset) + clamp(34px, 4vw, 58px));
}

.promotions-locked-state h1 {
  margin-top: 12px;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

.promotions-locked-state p {
  margin: 16px auto 0;
  font-size: 1.1rem;
}

.loyalty-progress-card {
  margin: 32px 0 48px 0;
  padding: 32px;
  border: 1px solid rgba(200, 167, 90, 0.3);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(200, 167, 90, 0.08), rgba(255, 255, 255, 0.02));
}

.loyalty-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.loyalty-progress-header h3 {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  color: var(--lux-ivory);
  margin: 0 0 8px 0;
}

.loyalty-progress-header p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(248, 241, 231, 0.7);
}

.loyalty-progress-stats {
  text-align: center;
  background: rgba(200, 167, 90, 0.12);
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid rgba(200, 167, 90, 0.2);
  min-width: 100px;
}

.loyalty-progress-stats strong {
  display: block;
  font-size: 2rem;
  color: var(--lux-gold);
  line-height: 1;
}

.loyalty-progress-stats small {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(248, 241, 231, 0.6);
}

.loyalty-progress-bar-container {
  height: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  margin-bottom: 16px;
}

.loyalty-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lux-gold-soft), var(--lux-gold));
  border-radius: 6px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px rgba(200, 167, 90, 0.4);
}

.loyalty-progress-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(248, 241, 231, 0.6);
}

.promotions-catalog {
  margin-top: 32px;
}

.promotions-tabs-header {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
  padding-bottom: 8px;
}

.promotions-tabs-header .tab-btn {
  background: none;
  border: none;
  color: rgba(248, 241, 231, 0.5);
  font-size: 1.05rem;
  font-family: inherit;
  font-weight: 500;
  padding: 8px 16px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.promotions-tabs-header .tab-btn:hover {
  color: var(--lux-ivory);
}

.promotions-tabs-header .tab-btn.active {
  color: var(--lux-gold);
}

.promotions-tabs-header .tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lux-gold);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--lux-gold);
}

.coupon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.coupon-card {
  display: flex;
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.coupon-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 167, 90, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.coupon-discount-badge {
  background: linear-gradient(135deg, rgba(200, 167, 90, 0.2), rgba(200, 167, 90, 0.05));
  border-right: 1px dashed rgba(200, 167, 90, 0.3);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  text-align: center;
}

.coupon-discount-badge strong {
  font-size: 1.8rem;
  color: var(--lux-gold);
  font-family: Georgia, serif;
  line-height: 1;
}

.coupon-discount-badge small {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(248, 241, 231, 0.5);
  margin-top: 4px;
}

.coupon-details {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.coupon-details h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--lux-ivory);
  font-weight: 600;
}

.coupon-details p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(248, 241, 231, 0.6);
  line-height: 1.4;
}

.coupon-code-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.coupon-code-pill {
  font-family: monospace;
  font-size: 0.95rem;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--lux-gold-soft);
  letter-spacing: 0.05em;
}

.coupon-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(248, 241, 231, 0.4);
}

.status-pill {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.status-pill.used {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.status-pill.expired {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(248, 241, 231, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.coupon-card.used, .coupon-card.expired {
  opacity: 0.65;
  border-color: rgba(255, 255, 255, 0.1);
}

.coupon-card.used:hover, .coupon-card.expired:hover {
  transform: none;
  box-shadow: none;
}

.coupon-card.used .coupon-discount-badge strong,
.coupon-card.expired .coupon-discount-badge strong {
  color: rgba(248, 241, 231, 0.5);
}

/* Admin Promotions Panel */
.admin-promotions-manager label {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(248, 241, 231, 0.7);
  gap: 6px;
}

.admin-promotions-manager input[type="text"],
.admin-promotions-manager input[type="number"],
.admin-promotions-manager input[type="email"],
.admin-promotions-manager input[type="date"],
.admin-promotions-manager textarea,
.admin-promotions-manager select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--lux-ivory);
  padding: 10px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.admin-promotions-manager input:focus,
.admin-promotions-manager textarea:focus,
.admin-promotions-manager select:focus {
  outline: none;
  border-color: var(--lux-gold-soft);
  background-color: rgba(255, 255, 255, 0.08);
}

/* Responsive Navbar & Hamburger Menu System */

/* Default hidden hamburger styled as a premium circular black/gold button */
.nav-hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(241, 215, 141, 0.42);
  background: linear-gradient(135deg, rgba(7, 20, 29, 0.95), rgba(12, 34, 48, 0.85));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 12px rgba(241, 215, 141, 0.16);
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-hamburger:hover {
  transform: scale(1.05);
  border-color: rgba(241, 215, 141, 0.7);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 0 16px rgba(241, 215, 141, 0.28);
}

.hamburger-line {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 2.5px;
  background-color: var(--lux-gold);
  border-radius: 99px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger-line:nth-child(1) {
  top: 17px;
}

.hamburger-line:nth-child(2) {
  top: 23px;
}

.hamburger-line:nth-child(3) {
  top: 29px;
}

/* Open morph into X centered inside the circle */
.nav-hamburger.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg);
  top: 23px;
  background-color: var(--lux-gold);
}

.nav-hamburger.open .hamburger-line:nth-child(2) {
  width: 0%;
  opacity: 0;
  left: 24px;
}

.nav-hamburger.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg);
  top: 23px;
  background-color: var(--lux-gold);
}

/* Mobile Menu Drawer Overlay */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  z-index: 1000;
  background: rgba(3, 3, 3, 0.98);
  border-left: 1px solid rgba(241, 215, 141, 0.28);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 96px 24px calc(32px + env(safe-area-inset-bottom));
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  pointer-events: auto;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-drawer.open {
  right: 0 !important;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: center;
  min-height: max-content;
}

/* General Link Styling inside Mobile Menu (dark/glass pill style matching desktop buttons) */
.mobile-menu-links a:not(.nav-booking-btn):not(.login-nav-button):not(.profile-nav-button):not(.nav-messages-btn) {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border: 1px solid rgba(241, 215, 141, 0.38);
  border-radius: 999px;
  color: #fff8e9;
  background:
    linear-gradient(180deg, rgba(189, 232, 255, 0.16), rgba(255, 255, 255, 0.052)),
    rgba(6, 18, 27, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 14px 34px rgba(5, 19, 28, 0.22),
    0 0 20px rgba(116, 198, 255, 0.16);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  font-size: 0.95rem;
  font-weight: 850;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.34);
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  white-space: nowrap;
}

.mobile-menu-links a:not(.nav-booking-btn):not(.login-nav-button):not(.profile-nav-button):not(.nav-messages-btn):hover,
.mobile-menu-links a:not(.nav-booking-btn):not(.login-nav-button):not(.profile-nav-button):not(.nav-messages-btn):active {
  transform: translateY(-2px);
  border-color: rgba(241, 215, 141, 0.7);
  color: #fffdf8;
  background:
    linear-gradient(180deg, rgba(241, 215, 141, 0.18), rgba(189, 232, 255, 0.12)),
    rgba(8, 24, 35, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 42px rgba(5, 19, 28, 0.24),
    0 0 28px rgba(189, 232, 255, 0.24),
    0 0 16px rgba(241, 215, 141, 0.12);
}

/* Ensure mobile menu links stretch to fit */
.mobile-menu-links a,
.mobile-menu-links .nav-booking-btn,
.mobile-menu-links .nav-messages-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin: 0;
  box-sizing: border-box;
}

.mobile-menu-auth {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-top: 24px;
  border-top: 1px solid rgba(241, 215, 141, 0.16);
  padding-top: 24px;
  align-items: center;
}

/* Make auth items stretch full width in mobile */
.mobile-menu-auth .admin-create-menu,
.mobile-menu-auth .admin-create-button,
.mobile-menu-auth .profile-nav-button,
.mobile-menu-auth .login-nav-button {
  width: 100% !important;
  text-align: center;
  justify-content: center;
}

/* Override profile circular button to stretch into full pill in mobile menu */
.mobile-menu-auth .profile-nav-button {
  width: 100% !important;
  height: 50px !important;
  border-radius: 999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  padding: 10px 24px !important;
  border: 1px solid rgba(241, 215, 141, 0.38) !important;
  background: rgba(6, 18, 27, 0.72) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 14px 34px rgba(5, 19, 28, 0.22),
    0 0 20px rgba(116, 198, 255, 0.16) !important;
}

.mobile-menu-auth .profile-nav-button img {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
}

.mobile-menu-auth .profile-nav-button span:not(.mobile-profile-label) {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--lux-gold-soft) !important;
  color: #1a1205 !important;
  font-size: 0.8rem !important;
}

.mobile-profile-label {
  color: #fff8e9;
  font-weight: 850;
  font-size: 0.95rem;
}

/* Dim overlay when drawer is open */
.nav.mobile-menu-active::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  animation: nav-fade-in 0.3s ease forwards;
}

@keyframes nav-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scale down desktop navigation buttons to fit all 6 links cleanly without overlapping */
@media (min-width: 1201px) and (max-width: 1400px) {
  .nav {
    grid-template-columns: minmax(140px, 1fr) auto minmax(140px, 1fr) !important;
    column-gap: clamp(16px, 2vw, 32px) !important;
    padding: 30px 24px 16px !important;
  }
  .nav-links a {
    min-width: 100px !important;
    min-height: 48px !important;
    padding: 10px clamp(12px, 1.2vw, 20px) !important;
    font-size: 0.84rem !important;
  }
}

/* Breakpoint rules under 1200px (Safe margin collapse before desktop link overlapping) */
@media (max-width: 1200px) {
  .public-marketing-page {
    --public-nav-offset: 78px;
  }

  .nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 12px 24px !important;
  }
  
  .nav-links,
  .nav-right-cluster {
    display: none !important;
  }
  
  .nav-hamburger {
    display: flex !important;
  }
}

/* Mobile brand/logo scaling fixes to keep SB inside gold border */
@media (max-width: 480px) {
  .brand {
    width: var(--sb-badge-size) !important;
    height: var(--sb-badge-size) !important;
    font-size: 1rem !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
  .brand-logo-slot {
    width: 100% !important;
    height: 100% !important;
    font-size: 0.95rem !important;
  }
  .brand-text {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 360px) {
  .brand {
    width: var(--sb-badge-size) !important;
    height: var(--sb-badge-size) !important;
    font-size: 1rem !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
  .brand-logo-slot {
    width: 100% !important;
    height: 100% !important;
    font-size: 0.95rem !important;
  }
  .brand-text {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
}


/* Booking Menu Horizontal Scroll */
.booking-menu-scrollable {
  display: flex !important;
  flex-direction: row !important;
  overflow-x: auto !important;
  gap: 24px;
  padding: 12px 4px 28px;
  scroll-snap-type: x mandatory;
  width: 100%;
}

.booking-menu-scrollable .service-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
}

/* Scrollbar styling for horizontal scroll */
.booking-menu-scrollable::-webkit-scrollbar {
  height: 8px;
}

.booking-menu-scrollable::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 99px;
}

.booking-menu-scrollable::-webkit-scrollbar-thumb {
  background: rgba(200, 167, 90, 0.4);
  border-radius: 99px;
}

.booking-menu-scrollable::-webkit-scrollbar-thumb:hover {
  background: rgba(200, 167, 90, 0.6);
}

/* Booking Length side-by-side Grid */
.booking-length-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

@media (max-width: 768px) {
  .booking-length-grid {
    grid-template-columns: 1fr;
  }
}

/* Braid Length Guide Image Map Selector */
.braid-length-guide-container,
.braid-size-guide-container,
.braid-guide-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 25px rgba(200, 167, 90, 0.1);
  border: 1px solid rgba(200, 167, 90, 0.25);
  background-color: #050403;
}

.braid-length-guide-img,
.braid-size-guide-img,
.braid-guide-img {
  width: 100%;
  height: auto;
  display: block;
}

.length-guide-overlays {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.length-guide-panel {
  position: absolute;
  cursor: pointer;
  pointer-events: auto;
  border-radius: 12px;
  background: rgba(200, 167, 90, 0);
  border: none;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.length-selector-panel {
  top: 10.8%;
  height: 84.8%;
}

.size-selector-panel {
  top: 11.7%;
  height: 79%;
}

.length-guide-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0);
  box-shadow: inset 0 0 0px rgba(212, 175, 55, 0);
  transition: all 0.3s ease;
  pointer-events: none;
}

.length-guide-panel:hover::after {
  background: rgba(212, 175, 55, 0.04);
}

.length-guide-panel.active::after {
  background: rgba(212, 175, 55, 0.08);
  box-shadow: inset 0 0 25px rgba(212, 175, 55, 0.3);
}

.length-guide-panel-border {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.length-guide-panel.active .length-guide-panel-border {
  border-color: #d4af37;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.8));
}

.length-guide-panel.disabled {
  opacity: 0.15;
  cursor: not-allowed;
  pointer-events: none;
}

/* Accessibility screen reader only helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Mobile adjustments for visual guide close (X) and redundant edge back buttons */
@media (max-width: 768px) {
  .edge-navigation-zone-left {
    display: none !important;
  }

  .nav-hamburger {
    width: 38px !important;
    height: 38px !important;
  }
  
  .hamburger-line {
    left: 10px !important;
    width: 16px !important;
    height: 2px !important;
  }
  
  .hamburger-line:nth-child(1) {
    top: 13px !important;
  }
  
  .hamburger-line:nth-child(2) {
    top: 18px !important;
  }
  
  .hamburger-line:nth-child(3) {
    top: 23px !important;
  }
  
  .nav-hamburger.open .hamburger-line:nth-child(1) {
    transform: translateY(5px) rotate(45deg) !important;
  }
  
  .nav-hamburger.open .hamburger-line:nth-child(2) {
    opacity: 0 !important;
  }
  
  .nav-hamburger.open .hamburger-line:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg) !important;
  }

  .image-editor-icon-button {
    width: 32px !important;
    height: 32px !important;
    font-size: 1.15rem !important;
    line-height: 1 !important;
  }
}

/* Policy Pages Styling */
.policy-page {
  padding-bottom: clamp(60px, 8vw, 120px);
}

.policy-intro {
  padding-top: clamp(100px, 10vw, 150px);
}

.policy-content-shell {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
}

.policy-text-block {
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(200, 167, 90, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(22, 22, 22, 0.72);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.policy-text-block .last-updated {
  font-size: 0.85rem;
  color: rgba(241, 215, 141, 0.68);
  font-weight: 700;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.policy-text-block h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--lux-gold-soft);
  margin-top: 36px;
  margin-bottom: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(200, 167, 90, 0.16);
  padding-bottom: 8px;
}

.policy-text-block p {
  color: rgba(248, 241, 231, 0.82);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.68;
  margin-bottom: 20px;
}

.policy-text-block ul {
  margin-bottom: 24px;
  padding-left: 20px;
  list-style-type: square;
}

.policy-text-block li {
  color: rgba(248, 241, 231, 0.82);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.6;
  margin-bottom: 12px;
}

.policy-text-block strong {
  color: var(--lux-ivory);
}

/* Profile Dropdown Menu Styling */
.profile-dropdown-container {
  position: relative;
  display: inline-block;
}

.profile-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 220px;
  padding: 12px 0;
  border: 1px solid rgba(200, 167, 90, 0.32);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(28, 28, 28, 0.96), rgba(16, 16, 16, 0.94)),
    rgba(18, 18, 18, 0.96);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(200, 167, 90, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  transform-origin: top right;
  animation: dropdownFadeIn 180ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(-8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.dropdown-user-info {
  padding: 8px 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-user-name {
  color: var(--lux-ivory);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
}

.dropdown-user-role {
  color: var(--lux-gold-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.dropdown-divider {
  height: 1px;
  background: rgba(200, 167, 90, 0.16);
  margin: 6px 0;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 10px 20px;
  color: rgba(248, 241, 231, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: all 150ms ease;
}

.dropdown-item:hover {
  color: var(--lux-gold-soft);
  background: rgba(200, 167, 90, 0.08);
  padding-left: 24px;
}

.dropdown-item.logout-btn {
  color: #c94a3a;
}

.dropdown-item.logout-btn:hover {
  background: rgba(201, 74, 58, 0.08);
  color: #ff6b57;
}

/* Mobile Submenu Styling */
.mobile-profile-links-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  margin-top: 14px;
}

.mobile-profile-user-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200, 167, 90, 0.14);
  margin-bottom: 6px;
}

.mobile-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(200, 167, 90, 0.34);
}

.mobile-user-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f1d78d, #c8a75a);
  color: #111;
  font-weight: 800;
  font-size: 0.95rem;
}

.mobile-user-name {
  display: block;
  color: var(--lux-ivory);
  font-weight: 700;
  font-size: 0.95rem;
}

.mobile-user-role {
  display: block;
  color: var(--lux-gold-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.mobile-submenu-item {
  display: block;
  width: 100%;
  padding: 10px 14px;
  color: rgba(248, 241, 231, 0.86);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  text-align: left;
  border: 0;
  background: transparent;
  border-radius: 10px;
  transition: all 150ms ease;
}

.mobile-submenu-item:hover {
  background: rgba(200, 167, 90, 0.08);
  color: var(--lux-gold-soft);
  padding-left: 18px;
}

.mobile-submenu-item.mobile-logout-btn {
  color: #ff6b57;
  margin-top: 6px;
  border-top: 1px solid rgba(200, 167, 90, 0.1);
  border-radius: 0;
  padding-top: 14px;
}

/* Calendar and Profile Filter & Tab Styling */
.calendar-filter-bar {
  display: flex;
  gap: 20px;
  width: 100%;
  margin: 0 auto 28px;
  padding: 16px 20px;
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 20px;
  background: rgba(22, 22, 22, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.filter-group label {
  font-size: 0.76rem;
  color: var(--lux-gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.filter-select,
.filter-input {
  min-height: 46px;
  border: 1px solid rgba(200, 167, 90, 0.24);
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--lux-ivory);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  outline: none;
  transition: all 200ms ease;
}

.filter-select:focus,
.filter-input:focus {
  border-color: var(--lux-gold-soft);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(200, 167, 90, 0.12);
}

.filter-search {
  flex: 2;
}

/* Profile Tabs Styling */
.profile-tabs {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid rgba(200, 167, 90, 0.16);
  margin-bottom: 32px;
  padding-bottom: 8px;
  width: 100%;
  overflow-x: auto;
}

.tab-btn {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: rgba(248, 241, 231, 0.64);
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 180ms ease;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--lux-gold-soft);
}

.tab-btn.active {
  color: var(--lux-gold-soft);
  border-bottom-color: var(--lux-gold-soft);
}

.profile-soft-prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: -12px 0 28px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 20px;
  padding: 16px 18px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(10, 10, 10, 0.7);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.profile-soft-prompt p {
  margin: 0;
  color: rgba(248, 241, 231, 0.78);
  font-weight: 700;
  line-height: 1.45;
}

.profile-soft-prompt > div {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.profile-soft-prompt .glass-button {
  min-height: 42px;
  padding: 10px 16px;
}

.profile-prompt-dismiss {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 10px 16px;
  color: rgba(248, 241, 231, 0.76);
  background: rgba(255, 255, 255, 0.035);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.profile-prompt-dismiss:hover,
.profile-prompt-dismiss:focus-visible {
  border-color: rgba(241, 215, 141, 0.6);
  color: var(--lux-gold-soft);
  outline: none;
}

/* Client Appointments List */
.client-bookings-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  width: 100%;
}

.client-booking-card {
  cursor: pointer;
  transition: all 200ms ease;
}

.client-booking-card:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 215, 141, 0.45);
}

.booking-card-option-subtitle {
  font-size: 0.88rem;
  color: rgba(248, 241, 231, 0.6);
  margin-top: -6px;
  margin-bottom: 14px;
}

.complete-payment-btn {
  margin-top: 14px;
  padding: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 1px solid var(--lux-gold-soft);
}

.loading-bookings-text {
  color: rgba(248, 241, 231, 0.72);
  text-align: center;
  font-size: 1.1rem;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .calendar-filter-bar {
    flex-direction: column;
    gap: 14px;
  }
  .filter-search {
    flex: 1;
  }
}

.avatar-unread-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background-color: #ff3b30;
  border-radius: 50%;
  border: 1.5px solid #111;
  box-shadow: 0 0 8px rgba(255, 59, 48, 0.6);
  pointer-events: none;
}

.dropdown-item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.notif-badge {
  background-color: #ff3b30;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 99px;
  line-height: 1;
  box-shadow: 0 0 6px rgba(255, 59, 48, 0.4);
}

/* 3-Column Communications Center Styling */
.admin-messages-page {
  height: 100svh;
  height: 100dvh;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.admin-messages-page > .nav {
  flex: 0 0 auto;
}

.admin-messages-page .messages-admin-shell {
  flex: 1 1 auto;
  min-height: 0;
  height: calc(100svh - 111px);
  height: calc(100dvh - 111px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.admin-messages-layout-3col {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.26fr) minmax(0, 1fr) minmax(300px, 0.28fr);
  gap: 12px;
  min-height: 0;
  height: 100%;
}

.messages-admin-shell > .admin-message-notice {
  flex: 0 0 auto;
  margin: 0 0 8px;
}

.messages-left-sidebar {
  display: flex;
  flex-direction: column;
  background: rgba(22, 22, 22, 0.5);
  border: 1px solid rgba(200, 167, 90, 0.15);
  border-radius: 16px;
  padding: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 0;
}

.messages-center-chat {
  display: flex;
  flex-direction: column;
  background: rgba(22, 22, 22, 0.6);
  border: 1px solid rgba(200, 167, 90, 0.2);
  border-radius: 18px;
  padding: 14px;
  overflow: hidden;
  height: 100%;
  min-height: 0;
}

.messages-right-details {
  display: flex;
  flex-direction: column;
  background: rgba(22, 22, 22, 0.5);
  border: 1px solid rgba(200, 167, 90, 0.15);
  border-radius: 16px;
  padding: 12px;
  overflow-y: auto;
  height: 100%;
  min-height: 0;
  overscroll-behavior: contain;
}

.left-sidebar-header {
  margin-bottom: 8px;
}

.left-sidebar-search-sort {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 10px;
}

.left-sidebar-search-sort input {
  width: 100%;
  padding: 8px 12px;
  background: rgba(18, 18, 18, 0.8);
  border: 1px solid rgba(200, 167, 90, 0.25);
  border-radius: 12px;
  color: #fff;
  font-size: 0.9rem;
}

.left-sidebar-search-sort select {
  padding: 8px 12px;
  background: rgba(18, 18, 18, 0.8);
  border: 1px solid rgba(200, 167, 90, 0.2);
  border-radius: 10px;
  color: var(--lux-gold-soft);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.sidebar-conversations-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 4px;
  overscroll-behavior: contain;
}

.conversation-row-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(200, 167, 90, 0.1);
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.conversation-row-btn:hover,
.conversation-row-btn.active {
  background: rgba(200, 167, 90, 0.08);
  border-color: #d4af37;
}

.conversation-row-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(200, 167, 90, 0.15);
  border: 1px solid rgba(200, 167, 90, 0.3);
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  object-fit: cover;
}

.conversation-row-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.conversation-row-name-time {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px;
}

.conversation-row-name-time strong {
  color: var(--lux-ivory);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.conversation-row-name-time em {
  font-size: 0.72rem;
  color: rgba(248, 241, 231, 0.4);
  font-style: normal;
}

.conversation-row-preview-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.conversation-row-preview {
  font-size: 0.8rem;
  color: rgba(248, 241, 231, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.conversation-row-badge {
  background-color: #ff3b30;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.chat-thread-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(200, 167, 90, 0.15);
  margin-bottom: 8px;
}

.chat-header-client {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-header-info h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--lux-ivory);
}

.chat-header-info p {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: rgba(248, 241, 231, 0.5);
}

.chat-history-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 6px 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
  overscroll-behavior: contain;
}

.messages-center-chat .message-bubble {
  padding: 10px 12px;
}

.messages-center-chat .message-bubble p {
  margin: 4px 0;
}

.messages-center-chat .quick-replies-row {
  flex: 0 0 auto;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 7px 9px;
  margin-bottom: 8px;
  border-radius: 12px;
  scrollbar-width: thin;
}

.messages-center-chat .quick-reply-pill {
  flex: 0 0 auto;
  padding: 5px 10px;
}

.messages-center-chat .message-compose {
  flex: 0 0 auto;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.messages-center-chat .message-compose textarea {
  min-height: 46px;
  max-height: 84px;
  padding: 10px 12px;
  border-radius: 12px;
}

.booking-panel-card {
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  margin-top: 6px;
}

.booking-panel-card h4 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.booking-panel-grid {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  color: rgba(248, 241, 231, 0.8);
  margin-bottom: 10px;
}

.booking-panel-grid span {
  display: flex;
  justify-content: space-between;
}

.booking-panel-grid strong {
  color: var(--lux-ivory);
}

.booking-panel-actions {
  display: grid;
  gap: 8px;
}

.booking-panel-actions button,
.booking-panel-actions a {
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  padding: 10px;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .admin-messages-page .messages-admin-shell {
    height: calc(100svh - 74px);
    height: calc(100dvh - 74px);
    width: min(100% - 24px, 1180px);
    padding: 8px 0 12px !important;
  }

  .admin-messages-layout-3col {
    grid-template-columns: 1fr;
    height: 100%;
  }

  .messages-left-sidebar.mobile-hidden,
  .messages-center-chat.mobile-hidden,
  .messages-right-details.mobile-hidden {
    display: none;
  }
}

@media (max-width: 640px) {
  .styles-page > .services-section-standalone,
  .public-section-page > .reviews-section {
    min-height: auto;
    padding-top: calc(var(--public-nav-offset) + 30px);
    padding-bottom: 72px;
  }

  .public-section-page > .gallery-section {
    min-height: 100svh;
    padding-top: 0;
    padding-bottom: 0;
    background-size: cover;
    background-position: center;
  }

  /* Lookbook: eliminate black space and margins between cards on mobile */
  .gallery-media-grid {
    gap: 0 !important;
    padding: 0 !important;
    margin-top: 12px !important;
  }

  .gallery-media-card {
    border-radius: 0 !important;
    border: none !important;
    height: clamp(300px, 55vw, 400px) !important;
    width: 85vw !important;
  }

  .gallery-media-card .gallery-media-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gallery-upload-tile {
    border-radius: 0 !important;
    height: clamp(300px, 55vw, 400px) !important;
    width: 85vw !important;
  }

  .styles-page > .services-section-standalone .section-heading,
  .public-section-page > .reviews-section .reviews-heading {
    margin-bottom: 24px;
  }

  .promotions-page .promotions-shell {
    padding-top: calc(var(--public-nav-offset) + 30px);
  }

  .promotions-page .promotions-locked-state {
    width: min(100% - 28px, 600px);
    margin-top: 20px;
    padding: calc(var(--public-nav-offset) + 30px) 22px 30px;
  }

  .messages-left-sidebar,
  .messages-center-chat,
  .messages-right-details {
    padding: 10px;
    border-radius: 14px;
  }

  .messages-center-chat .message-compose {
    grid-template-columns: 1fr;
  }

  .messages-center-chat .message-compose button {
    min-height: 42px;
  }
}

/* Footer Styling */
.site-footer {
  background: #0d0d0d;
  border-top: 1px solid rgba(200, 167, 90, 0.15);
  padding: 60px 20px 30px;
  color: #f8f1e7;
  font-family: 'Outfit', sans-serif;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 60px;
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #f8f1e7;
}

.footer-brand .brand-logo-slot {
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.86), transparent 31%),
    linear-gradient(145deg, #fff0ad, #c8a75a 58%, #7b6328);
  color: #111;
  font-weight: 900;
  width: var(--sb-badge-size);
  height: var(--sb-badge-size);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.95rem;
}

.footer-brand .brand-text {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #d4af37;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(248, 241, 231, 0.6);
  line-height: 1.6;
}

.footer-links-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-group h4 {
  color: #d4af37;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
}

.footer-link-group a {
  color: rgba(248, 241, 231, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 150ms ease;
  font-weight: 700;
  display: inline-block;
}

.footer-link-group a:hover {
  color: #d4af37;
  transform: translateX(4px);
}

.footer-address {
  font-style: normal;
  color: rgba(248, 241, 231, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact-link {
  color: #d4af37 !important;
  font-weight: bold;
  text-decoration: none;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(200, 167, 90, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(248, 241, 231, 0.4);
}

/* Minimal Footer Styling */
.site-footer.minimal {
  padding: 30px 20px;
  background: #090909;
  border-top: 1px solid rgba(200, 167, 90, 0.1);
}

.minimal-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.minimal-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.minimal-footer-links a {
  color: rgba(248, 241, 231, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 150ms ease;
}

.minimal-footer-links a:hover {
  color: #d4af37;
}

.minimal-footer-copyright {
  font-size: 0.82rem;
  color: rgba(248, 241, 231, 0.45);
  text-align: center;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-links-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-link-group a:hover {
    transform: none;
  }
}

/* Smooth Scroll Snapping for Public Marketing Pages */
html.snap-scroll-active {
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
  scroll-padding-top: var(--public-nav-offset, 111px);
}

@media (max-width: 768px) {
  html.snap-scroll-active {
    scroll-padding-top: 80px;
  }
}

html.snap-scroll-active .hero-section,
html.snap-scroll-active section.section {
  scroll-snap-align: start;
}

html.snap-scroll-active .location-section {
  scroll-snap-align: none !important;
}

/* Lookbook Horizontal Reel Container & Navigation Elements */
.gallery-reel-container {
  position: relative;
  width: 100%;
}

.gallery-fade-left,
.gallery-fade-right {
  position: absolute;
  top: 10px;
  bottom: 30px;
  width: clamp(20px, 8vw, 80px);
  pointer-events: none;
  z-index: 5;
  transition: opacity 300ms ease;
}

.gallery-fade-left {
  left: 0;
  background: linear-gradient(to right, #050403 20%, transparent);
}

.gallery-fade-right {
  right: 0;
  background: linear-gradient(to left, #050403 20%, transparent);
}

.gallery-arrow-btn {
  position: absolute;
  top: calc(50% - 35px); /* Centers relative to the card container */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--lux-gold);
  background: rgba(8, 16, 22, 0.85);
  color: var(--lux-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 2.2rem;
  line-height: 1;
  transition: all 200ms ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.gallery-arrow-btn:hover {
  background: linear-gradient(135deg, var(--lux-gold-soft), var(--lux-gold));
  color: #121006;
  transform: scale(1.08);
}

.gallery-arrow-btn.left {
  left: clamp(10px, 4vw, 40px);
  padding-right: 3px;
}

.gallery-arrow-btn.right {
  right: clamp(10px, 4vw, 40px);
  padding-left: 3px;
}

.gallery-scroll-hint {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.88rem;
  color: var(--lux-gold-soft);
  opacity: 0.75;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gallery-badges-container {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 9;
  pointer-events: none;
}

.gallery-card-badge {
  z-index: 9;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: fit-content;
}

.gallery-card-badge.hidden-badge {
  background: #782a1a;
  color: #fff;
}

.gallery-card-badge.featured-badge {
  background: linear-gradient(135deg, var(--lux-gold-soft), var(--lux-gold));
  color: #121006;
  border: 1px solid rgba(18, 16, 6, 0.25);
  box-shadow: 0 4px 10px rgba(241, 215, 141, 0.35);
}

/* Newly Uploaded Highlight */
.newly-uploaded-highlight {
  animation: upload-highlight-pulse 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes upload-highlight-pulse {
  0% {
    border-color: #ffd4c6;
    box-shadow: 0 0 25px rgba(241, 215, 141, 0.8);
    transform: scale(1.02);
  }
  30% {
    border-color: var(--lux-gold);
    box-shadow: 0 0 15px rgba(241, 215, 141, 0.4);
    transform: scale(1);
  }
  100% {
    border-color: var(--lux-gold);
    box-shadow: 0 22px 60px rgba(116, 198, 255, 0.16);
    transform: scale(1);
  }
}

/* Fullscreen Viewer Custom Navigation Overlay Controls */
.gallery-viewer-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(241, 215, 141, 0.35);
  background: rgba(8, 16, 22, 0.65);
  color: var(--lux-gold-soft);
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 200ms ease;
  z-index: 130;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gallery-viewer-nav-btn:hover {
  border-color: var(--lux-gold);
  color: #121006;
  background: linear-gradient(135deg, var(--lux-gold-soft), var(--lux-gold));
  transform: translateY(-50%) scale(1.08);
}

.gallery-viewer-nav-btn.prev {
  left: clamp(10px, 4vw, 40px);
  padding-right: 4px;
}

.gallery-viewer-nav-btn.next {
  right: clamp(10px, 4vw, 40px);
  padding-left: 4px;
}

.gallery-viewer-position {
  position: absolute;
  top: 14px;
  left: 20px;
  font-size: 0.9rem;
  color: var(--lux-gold-soft);
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(5, 13, 19, 0.64);
  border: 1px solid rgba(241, 215, 141, 0.28);
  padding: 4px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10;
}

.gallery-viewer-caption {
  margin: 10px auto 0 !important;
}

/* Deletion Overlay Modal styling */
.delete-confirm-overlay {
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  padding: 20px;
  animation: fade-in 250ms ease forwards;
}

.delete-confirm-modal {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 16, 22, 0.98);
  border: 1px solid var(--lux-gold);
  border-radius: 20px;
  padding: clamp(20px, 4vw, 36px);
  max-width: 460px;
  width: 100%;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.5),
    0 0 50px rgba(241, 215, 141, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: slide-up 300ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  text-align: center;
}

.delete-confirm-modal h3 {
  color: var(--lux-gold);
  font-family: var(--font-lux);
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: 0.05em;
}

.delete-warning {
  color: rgba(248, 241, 231, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.delete-confirm-preview {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(241, 215, 141, 0.42);
  background: #020202;
  display: grid;
  place-items: center;
}

.delete-confirm-preview img,
.delete-confirm-preview video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.delete-confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}

.delete-confirm-actions button {
  flex: 1;
}

.danger-btn {
  background: linear-gradient(135deg, #a73c24, #782a1a) !important;
  border: 1px solid #782a1a !important;
  color: #fff !important;
}

.danger-btn:hover {
  background: linear-gradient(135deg, #c44d32, #943422) !important;
  box-shadow: 0 4px 15px rgba(167, 60, 36, 0.4);
}

/* Shivering Skeleton Loader placeholders */
.gallery-skeleton-card {
  flex: 0 0 auto;
  height: clamp(380px, 60vh, 500px);
  width: clamp(240px, 30vw, 300px);
  border-radius: 24px;
  border: 1px solid rgba(241, 215, 141, 0.24);
  background: linear-gradient(
    90deg,
    rgba(8, 16, 22, 0.8) 25%,
    rgba(241, 215, 141, 0.08) 50%,
    rgba(8, 16, 22, 0.8) 75%
  );
  background-size: 200% 100%;
  animation: gallery-shimmer 1.8s infinite linear;
  scroll-snap-align: center;
}

@keyframes gallery-shimmer {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

/* Success Toast Feedback overlay */
.gallery-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  background: rgba(8, 16, 22, 0.94);
  border: 1px solid var(--lux-gold);
  border-radius: 12px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--lux-ivory);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(241, 215, 141, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: toast-slide-in 350ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast-icon {
  color: #4cd964;
  font-weight: bold;
  font-size: 1.1rem;
}

.toast-text {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@keyframes toast-slide-in {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Signature-style Gallery carousel */
.gallery-carousel-section {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(54px, 7vh, 86px) 0 clamp(18px, 3vh, 34px);
  justify-content: center;
  background-color: #050403;
  background-image:
    linear-gradient(180deg, rgba(3, 5, 7, 0.68), rgba(3, 5, 7, 0.7)),
    url('/images/lookbook-salon.png');
  background-position: center;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gallery-carousel-section::before {
  background:
    linear-gradient(180deg, rgba(3, 5, 7, 0.28), rgba(3, 5, 7, 0.5)),
    radial-gradient(circle at 50% 46%, rgba(200, 167, 90, 0.12), transparent 38%);
}

.gallery-header-container {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}

.gallery-header-container h2.services-title {
  margin-bottom: 6px;
  color: #ffe7a0;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.68),
    0 0 22px rgba(241, 215, 141, 0.24);
}

.gallery-active-info {
  min-height: 52px;
}

.gallery-admin-upload-wrapper {
  position: relative;
  z-index: 4;
  margin: 0 auto 6px;
}

.gallery-carousel-wrapper {
  position: relative;
  z-index: 2;
  margin-top: 6px;
}

.gallery-carousel-track-3d {
  height: var(--gallery-card-height);
  max-height: none;
  touch-action: pan-y;
  --gallery-card-width: min(430px, 72vw);
  --gallery-card-height: min(560px, 58vh);
  --card-width: var(--gallery-card-width);
  --card-height: var(--gallery-card-height);
  --card-spacing: calc(var(--gallery-card-width) * 1.14);
}

.gallery-bundle-card {
  width: var(--gallery-card-width);
  height: var(--gallery-card-height);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.gallery-bundle-card:not(.active) {
  filter: brightness(0.96) saturate(0.99);
}

.gallery-bundle-card.is-hidden {
  opacity: 0.5 !important;
}

.gallery-bundle-button {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  border-radius: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.gallery-bundle-card.active .gallery-bundle-button {
  border-color: transparent;
}

.gallery-bundle-card:not(.active) .gallery-bundle-button {
  border-color: transparent;
  background: transparent;
}

.gallery-bundle-layout {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  gap: clamp(8px, 1.8vw, 12px);
}

.gallery-bundle-layout-single {
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
}

.gallery-bundle-layout-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-bundle-layout-three,
.gallery-bundle-layout-collage {
  grid-template-columns: minmax(0, 1fr) minmax(72px, 24%);
}

.gallery-bundle-primary,
.gallery-bundle-thumb {
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: visible;
  border-radius: 16px;
  background: transparent;
}

.gallery-bundle-primary {
  position: relative;
  height: 100%;
}

.gallery-bundle-layout-three .gallery-bundle-primary,
.gallery-bundle-layout-collage .gallery-bundle-primary {
  grid-column: 1;
  grid-row: 1;
}

.gallery-bundle-primary img,
.gallery-bundle-primary video,
.gallery-bundle-thumb img,
.gallery-bundle-thumb video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.gallery-media-frame {
  --media-ratio: 1;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1.5px solid rgba(241, 215, 141, 0.72);
  border-radius: 14px;
  background: #050403;
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 239, 188, 0.14);
}

.gallery-media-frame img,
.gallery-media-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #050403;
}

.gallery-bundle-layout-single .gallery-media-frame {
  aspect-ratio: var(--media-ratio);
  max-width: 100%;
  max-height: 100%;
}

.gallery-bundle-layout-single .gallery-media-frame[data-orientation="portrait"] {
  width: auto;
  height: 100%;
}

.gallery-bundle-layout-single .gallery-media-frame[data-orientation="landscape"],
.gallery-bundle-layout-single .gallery-media-frame[data-orientation="square"],
.gallery-bundle-layout-single .gallery-media-frame[data-orientation="unknown"] {
  width: 100%;
  height: auto;
}

.gallery-bundle-layout-single .gallery-media-frame img,
.gallery-bundle-layout-single .gallery-media-frame video {
  object-fit: cover;
}

.gallery-bundle-stack {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: clamp(7px, 1.5vw, 10px);
  min-height: 0;
}

.gallery-bundle-layout-three .gallery-bundle-stack {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.gallery-bundle-layout-collage .gallery-bundle-stack {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.gallery-bundle-thumb {
  position: relative;
}

.gallery-bundle-more::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.gallery-bundle-more span {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: var(--lux-gold-soft);
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
}

.gallery-bundle-overlay {
  position: absolute;
  left: clamp(18px, 3vw, 26px);
  right: clamp(88px, 28%, 132px);
  bottom: clamp(16px, 2.8vw, 24px);
  z-index: 2;
  display: grid;
  gap: 7px;
  pointer-events: none;
}

.gallery-bundle-overlay::before {
  content: '';
  position: absolute;
  inset: -80px -16px -18px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.gallery-bundle-overlay small {
  width: fit-content;
  border: 1px solid rgba(241, 215, 141, 0.42);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--lux-gold-soft);
  background: rgba(5, 13, 19, 0.68);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-bundle-overlay strong {
  color: var(--lux-ivory);
  font-family: Georgia, serif;
  font-size: clamp(1.3rem, 3.1vw, 2.1rem);
  line-height: 1.05;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

.gallery-counter-container {
  position: relative;
  z-index: 2;
  margin-top: clamp(8px, 2vh, 16px);
}

.gallery-counter-container .carousel-counter-arrow {
  border: 0;
  background: transparent;
  font: inherit;
  line-height: 1;
}

.gallery-view-all-link {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: 6px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 16px;
  border: 1px solid rgba(241, 215, 141, 0.5);
  border-radius: 999px;
  color: #ffe7a0;
  background: rgba(16, 18, 18, 0.66);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.gallery-view-all-section {
  min-height: auto;
  padding-bottom: clamp(48px, 7vw, 86px);
}

.gallery-view-all-section .gallery-active-info {
  display: none;
}

.gallery-view-all-grid {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - clamp(32px, 7vw, 96px)));
  margin: clamp(18px, 3vw, 34px) auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: clamp(16px, 2.4vw, 24px);
}

.gallery-view-all-card {
  min-width: 0;
}

.gallery-view-all-button {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  box-shadow: none;
}

.gallery-view-all-button .gallery-bundle-layout {
  height: 100%;
}

.gallery-swipe-hint {
  position: relative;
  z-index: 2;
  margin-top: 8px;
}

.gallery-empty-state {
  position: relative;
  z-index: 2;
}

.gallery-loading-track {
  position: relative;
  z-index: 2;
  margin: 14px auto 0;
}

.gallery-skeleton-bundle {
  position: absolute;
  left: 50%;
  width: var(--gallery-card-width);
  height: var(--gallery-card-height);
  transform: translateX(-50%);
}

/* Performance & Containment */
.gallery-media-card {
  content-visibility: auto;
  contain-intrinsic-size: 300px 500px;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slide-up {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.admin-prices-manager {
  display: grid;
  gap: 22px;
}

.admin-prices-intro {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  padding: 18px 20px;
  border: 1px solid rgba(200, 167, 90, 0.2);
  border-radius: 14px;
  background: rgba(22, 22, 22, 0.56);
}

.admin-prices-intro h3,
.admin-price-detail-hero h3,
.admin-price-options-heading h3 {
  margin: 0;
  color: var(--lux-ivory);
  font-family: Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.admin-prices-intro p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(248, 241, 231, 0.62);
  line-height: 1.5;
}

.admin-price-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.admin-price-service-card {
  overflow: hidden;
  display: grid;
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(31, 29, 24, 0.86), rgba(17, 16, 14, 0.94));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.admin-price-service-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.04);
}

.admin-price-service-image img,
.admin-price-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admin-price-service-body {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.admin-price-service-body h3 {
  margin: 4px 0 0;
  color: var(--lux-ivory);
  font-size: 1.25rem;
}

.admin-price-service-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-price-service-meta span {
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 999px;
  padding: 6px 10px;
  color: rgba(248, 241, 231, 0.68);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-price-detail {
  display: grid;
  gap: 18px;
}

.admin-price-back {
  justify-self: start;
}

.admin-price-detail-hero {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(200, 167, 90, 0.24);
  border-radius: 8px;
  background: rgba(22, 22, 22, 0.62);
}

.admin-price-detail-hero img {
  min-height: 220px;
  border-radius: 6px;
}

.admin-price-detail-hero > div {
  display: grid;
  align-content: center;
  gap: 12px;
}

.admin-price-detail-hero p:not(.eyebrow) {
  margin: 0;
  color: rgba(248, 241, 231, 0.64);
  line-height: 1.55;
}

.admin-price-editor-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 220px) auto;
  gap: 16px;
  align-items: end;
  padding: 18px;
  border: 1px solid rgba(200, 167, 90, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(43, 39, 31, 0.72), rgba(18, 17, 15, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.admin-price-starting-card {
  border-color: rgba(241, 215, 141, 0.36);
}

.admin-price-editor-card h4 {
  margin: 0 0 6px;
  color: var(--lux-ivory);
  font-size: 1.08rem;
}

.admin-price-editor-card span,
.admin-price-editor-card p {
  margin: 0;
  color: rgba(248, 241, 231, 0.58);
  font-size: 0.9rem;
  line-height: 1.45;
}

.admin-price-editor-card label {
  display: grid;
  gap: 7px;
  color: rgba(248, 241, 231, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-price-editor-card input {
  min-height: 44px;
  border: 1px solid rgba(241, 215, 141, 0.34);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--lux-ivory);
  background: rgba(255, 255, 255, 0.075);
  font: inherit;
  font-weight: 800;
}

.admin-price-editor-card input:focus {
  outline: none;
  border-color: rgba(255, 229, 155, 0.85);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.14);
}

.admin-price-options-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
}

.admin-price-option-grid {
  display: grid;
  gap: 12px;
}

@media (max-width: 768px) {
  .gallery-arrow-btn {
    display: none;
  }
  .gallery-viewer-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }
  .gallery-skeleton-card {
    height: clamp(320px, 50vh, 400px);
  }
  .admin-prices-intro,
  .admin-price-detail-hero,
  .admin-price-editor-card {
    grid-template-columns: 1fr;
  }
  .admin-prices-intro {
    align-items: start;
  }
  .admin-price-detail-hero img {
    min-height: 180px;
  }
}

/* Redesigned Calendar Layout & Styles */
.calendar-shell-tight {
  padding-top: clamp(30px, 4vw, 50px) !important;
}

.calendar-panel-tight {
  margin-top: 10px;
}

.calendar-panel-tight .active-section-header {
  margin-bottom: 16px;
  align-items: flex-start;
}

.back-to-dash-small {
  padding: 6px 14px !important;
  font-size: 0.78rem !important;
  min-height: auto !important;
  border-radius: 8px !important;
}

.calendar-section-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calendar-section-title-wrap h2 {
  margin: 0;
  font-size: 2.2rem;
  color: var(--lux-ivory);
  font-family: Georgia, serif;
  line-height: 1.1;
}

.calendar-section-subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(248, 241, 231, 0.65);
}

.calendar-cell.cell-day.today {
  border: 2px solid var(--lux-gold) !important;
  box-shadow: 0 0 14px rgba(241, 215, 141, 0.25);
  background: rgba(200, 167, 90, 0.08);
}

.calendar-cell.cell-day.today.selected {
  border-color: var(--lux-gold) !important;
  box-shadow: 0 0 20px rgba(241, 215, 141, 0.45);
  background: rgba(200, 167, 90, 0.15);
}

/* Day booking cards custom styling */
.day-booking-row-card {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 167, 90, 0.12);
  transition: all 0.2s ease;
}

.day-booking-row-card:hover {
  background: rgba(200, 167, 90, 0.05);
  border-color: rgba(200, 167, 90, 0.22);
}

/* Redesign manual appointment flow modal & block time styling */
.admin-add-booking-modal,
.admin-block-modal,
.admin-booking-modal {
  max-width: 850px !important;
  width: 92% !important;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(45, 41, 37, 0.98), rgba(28, 26, 24, 0.99)) !important; /* Lighter modal background */
  border: 1px solid rgba(200, 167, 90, 0.45) !important;
  box-shadow: 0 32px 82px rgba(0, 0, 0, 0.7) !important;
}

.admin-block-modal {
  max-width: 600px !important;
}

.admin-add-booking-modal .modal-header h3,
.admin-block-modal .modal-header h3,
.admin-booking-modal .modal-header h3 {
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  color: var(--lux-gold-soft);
}

.admin-add-booking-modal form.modal-body,
.admin-block-modal form.modal-body {
  gap: 24px !important;
  padding: 36px !important;
}

.admin-add-booking-modal label,
.admin-block-modal label {
  font-size: 1.05rem !important;
  font-weight: 500;
  color: var(--lux-ivory) !important;
  gap: 8px !important;
}

.admin-add-booking-modal input[type="text"],
.admin-add-booking-modal input[type="tel"],
.admin-add-booking-modal input[type="email"],
.admin-add-booking-modal input[type="date"],
.admin-add-booking-modal input[type="time"],
.admin-add-booking-modal select,
.admin-add-booking-modal textarea,
.admin-block-modal input[type="text"],
.admin-block-modal input[type="date"],
.admin-block-modal input[type="time"] {
  height: 52px;
  padding: 12px 18px !important;
  font-size: 1.1rem !important;
  border-radius: 10px !important;
  background: rgba(35, 30, 25, 0.9) !important; /* Slightly lighter inputs for contrast */
  border: 1px solid rgba(200, 167, 90, 0.35) !important; /* Higher contrast border */
  color: var(--lux-ivory) !important;
  transition: all 0.2s ease-in-out;
}

.admin-add-booking-modal textarea {
  height: auto !important;
  min-height: 100px;
}

/* Make date and time picker icons visible (gold) */
.admin-add-booking-modal input[type="date"]::-webkit-calendar-picker-indicator,
.admin-add-booking-modal input[type="time"]::-webkit-calendar-picker-indicator,
.admin-block-modal input[type="date"]::-webkit-calendar-picker-indicator,
.admin-block-modal input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8) sepia(1) saturate(5) hue-rotate(15deg) !important;
  cursor: pointer;
  opacity: 1 !important;
  padding: 4px;
}

.admin-add-booking-modal input:focus,
.admin-add-booking-modal select:focus,
.admin-add-booking-modal textarea:focus,
.admin-block-modal input:focus {
  outline: none;
  border-color: var(--lux-gold) !important;
  box-shadow: 0 0 10px rgba(241, 215, 141, 0.25);
  background: rgba(45, 40, 35, 0.95) !important;
}

.admin-add-booking-modal .glass-button {
  height: 52px;
  font-size: 1.1rem !important;
  border-radius: 10px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

/* Lighter theme for calendar container & cells */
.admin-calendar-section {
  background: rgba(35, 31, 28, 0.65) !important; /* Lighter background than the deep black/dark grey */
  border: 1px solid rgba(200, 167, 90, 0.25) !important; /* Higher contrast border */
}

.calendar-cell {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(200, 167, 90, 0.12) !important;
}

.calendar-day-details-panel {
  background: rgba(45, 40, 36, 0.45) !important; /* Lighter background */
  border: 1px solid rgba(200, 167, 90, 0.2) !important;
}

/* Today vs Selected day highlights */
.calendar-cell.cell-day.today {
  border: 2px solid rgba(248, 241, 231, 0.65) !important; /* Warm ivory ring */
  box-shadow: 0 0 12px rgba(248, 241, 231, 0.18);
  background: rgba(255, 255, 255, 0.07) !important;
}

.calendar-cell.cell-day.today:hover {
  background: rgba(255, 255, 255, 0.12) !important;
}

.calendar-cell.cell-day.selected {
  border: 2px solid var(--lux-gold) !important; /* Gold highlight */
  box-shadow: 0 0 16px rgba(241, 215, 141, 0.35);
  background: rgba(200, 167, 90, 0.15) !important;
}

.calendar-cell.cell-day.today.selected {
  border: 2px solid var(--lux-gold) !important;
  box-shadow: 0 0 20px rgba(241, 215, 141, 0.45), inset 0 0 0 2px rgba(248, 241, 231, 0.5); /* Combines both cleanly */
  background: rgba(200, 167, 90, 0.22) !important;
}

/* Header layout polish */
.calendar-header-polish {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center !important;
  width: 100%;
  margin-bottom: 24px;
  min-height: 70px;
}

.calendar-header-polish .back-to-dash {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 !important;
}

.calendar-header-polish .calendar-section-title-wrap {
  text-align: center;
  margin: 0 auto;
}

/* Blocked calendar states styling */
.cell-booking-pill.is-blocked {
  background: rgba(120, 42, 26, 0.25) !important;
  border-left: 3px solid #b23b25 !important;
  opacity: 0.8;
}

.cell-booking-pill.is-blocked strong {
  text-decoration: line-through;
  color: #f1a99b;
}

.cell-booking-pill.is-blocked span {
  color: rgba(241, 169, 155, 0.7);
}

.day-booking-row-card.is-blocked {
  opacity: 0.75;
  background: rgba(120, 42, 26, 0.08) !important;
  border: 1px solid rgba(180, 59, 37, 0.25) !important;
  border-left: 4px solid #b23b25 !important;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.day-booking-row-card.is-blocked:hover {
  opacity: 0.9;
  background: rgba(120, 42, 26, 0.12) !important;
  border-color: rgba(180, 59, 37, 0.35) !important;
}

.day-booking-row-card.is-blocked h5,
.day-booking-row-card.is-blocked p {
  color: #f1a99b !important;
}

.day-booking-row-card.is-blocked .status-badge {
  background: rgba(180, 59, 37, 0.2) !important;
  color: #f1a99b !important;
  border: 1px solid rgba(180, 59, 37, 0.3) !important;
}

/* Wide layout utility classes for Dashboard and Booking Payments */
.admin-shell-wide {
  width: 96% !important;
  max-width: 1680px !important;
  margin: 0 auto !important;
  padding-top: 20px !important;
}

.booking-payment-shell-wide {
  width: 96% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
}

.booking-payment-grid-wide {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr) !important;
}

/* Remove boxed blue background from manual booking payment page for full-page unity */
.booking-payment-page .booking-payment-shell,
.booking-payment-page .booking-payment-shell-wide {
  background-color: transparent !important;
}

/* Mobile homepage hero and floating Ask polish */
@media (max-width: 768px) {
  html.snap-scroll-active {
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
    scroll-padding-top: 0 !important;
  }

  html.snap-scroll-active .hero-section,
  html.snap-scroll-active section.section,
  html.snap-scroll-active .location-section {
    scroll-snap-align: none !important;
  }

  .landing-hero.hero-section {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #24496e;
    background-image: url('/images/homepage-hero-web1.png');
    background-size: auto 112svh;
    background-position: 24% top;
    background-repeat: no-repeat;
  }

  .landing-hero.hero-portrait-section::before {
    background: transparent;
  }

  .landing-hero > .nav {
    padding: 20px clamp(20px, 6vw, 34px) 0 !important;
  }

  .landing-hero .brand {
    width: var(--sb-badge-size) !important;
    height: var(--sb-badge-size) !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .landing-hero .brand-logo-slot {
    width: var(--sb-badge-size) !important;
    height: var(--sb-badge-size) !important;
    border-color: rgba(241, 215, 141, 0.66);
    font-size: 1rem !important;
  }

  .landing-hero .nav-hamburger {
    width: 48px !important;
    height: 48px !important;
  }

  .landing-hero .hamburger-line {
    left: 14px !important;
    width: 20px !important;
  }

  .landing-hero .hamburger-line:nth-child(1) {
    top: 17px !important;
  }

  .landing-hero .hamburger-line:nth-child(2) {
    top: 23px !important;
  }

  .landing-hero .hamburger-line:nth-child(3) {
    top: 29px !important;
  }

  .landing-hero-content.hero-content {
    width: min(100% - 40px, 590px);
    flex: 0 0 auto;
    display: block;
    margin: 0 auto;
    padding: clamp(16px, 4vw, 24px) 0 0;
  }

  .landing-hero-copy.hero-copy {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    text-align: center;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .landing-hero-copy.hero-copy .eyebrow {
    margin: 10px auto 0;
    font-size: clamp(0.74rem, 2.4vw, 0.95rem);
    line-height: 1.15;
    letter-spacing: 0.17em;
  }

  .landing-hero-copy.hero-copy .hero-title-desktop {
    display: inline;
  }

  .landing-hero-copy.hero-copy .hero-title-mobile {
    display: none;
  }

  .landing-hero-copy.hero-copy h1 {
    max-width: 36rem;
    margin-inline: auto;
    font-size: clamp(2rem, 8.5vw, 2.8rem);
    line-height: 0.92;
  }

  .landing-hero-copy.hero-copy .button-row {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 300px);
    gap: clamp(10px, 2.8vw, 14px);
    margin: clamp(12px, 3vw, 16px) auto 0;
  }

  .landing-hero-copy.hero-copy .glass-button {
    width: 100%;
    min-height: clamp(46px, 10vw, 52px);
    padding: 12px 18px;
    font-size: clamp(0.88rem, 2.6vw, 0.98rem);
    font-weight: 900;
  }

  .message-widget {
    right: 14px !important;
    left: auto !important;
    bottom: max(18px, env(safe-area-inset-bottom)) !important;
    gap: 6px;
    justify-items: end;
  }

  .message-widget-panel {
    right: 0 !important;
    bottom: 58px !important;
    width: min(380px, calc(100vw - 28px)) !important;
    max-height: calc(100svh - 92px) !important;
  }

  .message-widget-actions {
    position: relative;
    gap: 0;
  }

  .message-widget-button {
    width: 48px !important;
    min-width: 48px !important;
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    gap: 0 !important;
  }

  .message-widget-button:hover {
    transform: translateY(-2px) !important;
  }

  .message-widget-button-label {
    display: none !important;
  }

  .message-widget-button .chat-bubble-svg {
    width: 19px !important;
    height: 19px !important;
  }

  .message-widget-dismiss {
    display: block;
    position: absolute;
    top: -18px;
    right: 0;
    z-index: 2;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    color: rgba(255, 240, 173, 0.92);
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    font: inherit;
    font-size: 0.74rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
  }
}

@media (max-width: 480px) {
  .landing-hero.hero-section {
    min-height: 100svh;
  }

  .landing-hero-content.hero-content {
    width: min(100% - 30px, 520px);
    padding-top: clamp(16px, 4vw, 24px);
  }

  .landing-hero-copy.hero-copy {
    padding: 0;
  }

  .landing-hero-copy.hero-copy h1 {
    max-width: 24rem;
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
}

@media (max-width: 370px) {

  .landing-hero-content.hero-content {
    width: min(100% - 24px, 520px);
    padding-top: 20px;
  }

  .landing-hero-copy.hero-copy .eyebrow {
    font-size: 0.68rem;
  }

  .landing-hero-copy.hero-copy h1 {
    font-size: 2.1rem;
  }

  .landing-hero-copy.hero-copy .glass-button {
    min-height: 46px;
    font-size: 0.88rem;
  }
}

@media (max-width: 620px) {
  .gallery-upload-modal {
    width: min(calc(100vw - 24px), 420px);
    padding: 18px;
  }

  .gallery-upload-modal .image-editor-heading {
    align-items: flex-start;
  }

  .gallery-upload-dropzone {
    width: 100%;
    padding: 14px 16px;
  }

  .gallery-upload-modal .gallery-draft-card {
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: start;
  }

  .gallery-upload-modal .gallery-draft-preview {
    min-height: 88px;
  }
}

/* ==========================================================================
   3D HORIZONTAL SWIPE CAROUSEL & GENDER SELECTOR & FAVORITES (REDESIGNED)
   ========================================================================== */

/* Gender Selector Control */
.gender-selector-container {
  display: flex;
  justify-content: center;
  margin: 0 auto 8px; /* reduced space */
}

.gender-selector-pill {
  position: relative;
  display: flex;
  gap: 4px;
  padding: 3px; /* tighter padding */
  background: rgba(18, 18, 18, 0.76);
  border: 1px solid rgba(200, 167, 90, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.gender-tab {
  position: relative;
  z-index: 2;
  min-width: 90px; /* smaller width */
  min-height: 32px; /* smaller height */
  border: none;
  background: transparent;
  color: rgba(255, 250, 241, 0.65);
  font-family: inherit;
  font-size: 0.82rem; /* smaller font */
  font-weight: 700;
  cursor: pointer;
  border-radius: 999px;
  transition: color 250ms ease;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gender-tab.active {
  color: #111 !important;
}

.gender-selector-slider {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: 90px; /* matches smaller width */
  border-radius: 999px;
  background: linear-gradient(135deg, #f1d78d, #c8a75a);
  box-shadow: 0 4px 14px rgba(200, 167, 90, 0.3);
  z-index: 1;
  transition: transform 280ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gender-selector-slider.male {
  transform: translateX(94px); /* matches offset */
}

/* Header Container */
.services-header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 12px; /* reduced space */
  width: 100%;
}

/* Title Row – heading + Add Style button side by side */
.services-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.services-title-row .services-title {
  margin: 0;
  line-height: 1;
}

.add-style-inline {
  font-size: 0.78rem;
  padding: 6px 16px;
  min-height: 34px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  transform: translateY(-2px);
}

.services-header-container .eyebrow {
  margin-bottom: 2px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--lux-gold-soft);
}

.services-header-container h2.services-title {
  font-size: clamp(2rem, 5.2vw, 3.8rem);
  margin-bottom: 10px;
  font-family: Georgia, serif;
  line-height: 1.05;
}

/* Active Style Info (Header) */
.active-style-info-header {
  text-align: center;
  margin-top: 8px;
  animation: fadeIn 200ms ease;
}

.active-style-number {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  color: var(--lux-gold-soft);
  margin-right: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-block;
}

.active-style-title {
  margin: 0 0 3px 0;
  color: var(--lux-ivory);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.active-style-price {
  margin: 0;
  color: rgba(248, 241, 231, 0.55);
  font-size: 0.92rem;
  font-weight: 400;
}

/* Star Button for Favorites */
.favorite-star-button {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 15;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(18, 18, 18, 0.66);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: 
    transform 150ms ease,
    border-color 150ms ease,
    background-color 150ms ease;
  padding: 0;
}

.favorite-star-button:hover {
  transform: scale(1.1);
  border-color: rgba(241, 215, 141, 0.6);
  background: rgba(18, 18, 18, 0.82);
}

.favorite-star-button.is-favorite {
  border-color: var(--lux-gold-soft);
  background: rgba(200, 167, 90, 0.2);
}

.star-icon {
  width: 18px;
  height: 18px;
  fill: transparent;
  stroke: rgba(255, 250, 241, 0.72);
  stroke-width: 2px;
  transition: 
    fill 200ms ease,
    stroke 200ms ease,
    transform 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.favorite-star-button.is-favorite .star-icon {
  fill: var(--lux-gold-soft);
  stroke: var(--lux-gold-soft);
  transform: scale(1.15) rotate(360deg);
}

/* 3D Carousel Layout */
.service-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
  padding-block: 8px;
  margin-top: 10px;
}

.service-carousel-track-3d {
  position: relative;
  width: 100%;
  height: 640px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: grab;
  user-select: none;
  
  /* CSS Variables for Responsive Sizing (Desktop Default) */
  --card-aspect: 0.8003;
  --card-height: min(640px, 60vh);
  --card-width: calc(var(--card-height) * var(--card-aspect));
  --card-spacing: calc(var(--card-width) * 0.75);
}

.service-carousel-track-3d:active {
  cursor: grabbing;
}

/* Card Outer Container */
.service-card-3d {
  position: absolute;
  left: 50%;
  width: var(--card-width);
  height: var(--card-height);
  transform-origin: center center;
  will-change: transform, opacity;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

/* Gold Border Box */
.service-card-border-box {
  flex: 1;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: 2px solid rgba(200, 167, 90, 0.28);
  background: #0a0a0a;
  overflow: hidden;
  box-shadow: 
    0 24px 54px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
}

.service-card-3d.active .service-card-border-box {
  border-color: rgba(241, 215, 141, 0.65);
  background:
    linear-gradient(180deg, rgba(200, 167, 90, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(20, 20, 20, 0.88);
}

/* Inactive Card (Simple) */
.card-simple-content {
  width: 100%;
  height: 100%;
}

.card-image-full {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 300ms ease;
  display: block;
}

.service-card-3d:not(.active):hover .card-image-full img {
  transform: scale(1.04);
}

/* Navigation Arrows (Hides on Mobile) */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(241, 215, 141, 0.3);
  background: rgba(18, 18, 18, 0.7);
  color: var(--lux-gold-soft);
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 15;
  transition: 
    background-color 200ms ease,
    border-color 200ms ease,
    transform 200ms ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.carousel-arrow:hover {
  background: rgba(18, 18, 18, 0.9);
  border-color: var(--lux-gold-soft);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

.carousel-arrow.prev { left: 20px; }
.carousel-arrow.next { right: 20px; }

/* Counter Indicator (3 / 18) */
.carousel-counter-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 14px;
}

.carousel-counter-text {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  color: var(--lux-gold-soft);
  font-weight: 500;
  letter-spacing: 0.08em;
  user-select: none;
}

.carousel-counter-arrow {
  color: rgba(241, 215, 141, 0.5);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 150ms ease, transform 150ms ease;
  padding: 8px 16px; /* large hit target */
}

.carousel-counter-arrow:hover {
  color: var(--lux-gold-soft);
  transform: scale(1.15);
}

.carousel-swipe-hint {
  text-align: center;
  margin-top: 10px;
  opacity: 0.65;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(248, 241, 231, 0.6);
}

/* Empty State Coming Soon Container */
.coming-soon-container {
  width: min(440px, 90%);
  margin: 60px auto;
  padding: 40px 24px;
  border-radius: 20px;
  border: 1px solid rgba(200, 167, 90, 0.22);
  background: rgba(18, 18, 18, 0.66);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.coming-soon-title {
  font-family: Georgia, serif;
  font-size: 1.45rem;
  color: var(--lux-gold-soft);
  margin: 0 0 8px 0;
  font-weight: 500;
}

.coming-soon-subtitle {
  font-size: 0.9rem;
  color: rgba(248, 241, 231, 0.6);
  margin: 0;
}

/* ==========================================================================
   MOBILE & VIEWPORT SPECIFIC OVERRIDES
   ========================================================================== */

@media (max-width: 900px) {
  .carousel-arrow {
    display: none !important; /* hide on touch devices */
  }
}

/* Tablet Overrides */
@media (min-width: 441px) and (max-width: 768px) {
  .service-carousel-track-3d {
    height: 640px;
    --card-height: min(600px, 60vh);
    --card-width: calc(var(--card-height) * var(--card-aspect));
    --card-spacing: calc(var(--card-width) * 0.74);
  }
}

/* Mobile Overrides (iPhone 12/13/14, 390px, 430px) */
@media (max-width: 440px) {
  /* Fix header floating on mobile */
  .nav {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent !important; /* NO black bar! */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 12px 18px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-bottom: none !important; /* NO bottom border! */
    box-shadow: none !important; /* NO box shadow! */
    pointer-events: none; /* let clicks pass through to content behind nav */
  }
  .nav-links {
    display: none !important;
  }
  .nav-right-cluster {
    display: none !important; /* hide booking button and login in mobile header */
  }
  .nav-booking-btn {
    display: none !important;
  }
  .mobile-menu-links .mobile-booking-btn,
  .mobile-menu-auth .mobile-login-btn {
    display: inline-flex !important;
    pointer-events: auto;
  }
  .brand {
    border: none !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    pointer-events: auto; /* keep logo clickable */
  }
  .brand-logo-slot {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.72rem !important;
  }
  .nav-hamburger {
    pointer-events: auto; /* keep hamburger clickable */
  }
  
  /* Body and section offset to clear fixed nav */
  body {
    padding-top: 0 !important;
  }
  .landing-hero {
    padding-top: 0 !important;
  }

  /* Make styles section fill screen, centering carousel and reducing margins */
  .services-section {
    padding-top: 48px; /* offset to clear floating navbar buttons */
    padding-bottom: 10px;
    height: 100vh;
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* center vertically for elegant layout */
    align-items: center;
    overflow: hidden;
  }

  .services-header-container {
    margin-bottom: 4px;
    margin-top: 0;
  }
  
  .services-header-container .eyebrow {
    margin-top: 0;
    margin-bottom: 1px;
    font-size: 0.72rem;
    line-height: 1;
    display: none; /* Hide SERVICES eyebrow */
  }

  .services-header-container h2.services-title {
    margin-top: 2px;
    margin-bottom: 6px;
    font-size: 1.55rem;
    line-height: 1.0;
  }

  .services-title-row {
    gap: 10px;
  }

  .add-style-inline {
    font-size: 0.68rem;
    padding: 4px 12px;
    min-height: 28px;
  }

  .gender-selector-container {
    margin: 4px auto 6px;
  }

  .gender-tab {
    min-height: 28px;
    min-width: 80px;
    font-size: 0.78rem;
  }

  .gender-selector-slider {
    width: 80px;
    top: 2px;
    bottom: 2px;
    left: 2px;
  }

  .gender-selector-slider.male {
    transform: translateX(84px);
  }

  .active-style-info-header {
    margin-top: 4px;
    margin-bottom: 0px;
  }

  .active-style-title {
    font-size: 1.1rem;
    margin-bottom: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .active-style-number {
    font-size: 1.1rem;
    margin-bottom: 0;
    margin-right: 6px;
    display: inline-block;
  }

  .active-style-price {
    font-size: 0.8rem;
    margin-top: 1px;
  }

  .service-carousel-wrapper {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px !important; /* Space card away from starting price */
    padding: 0;
    width: 100%;
  }

  .service-carousel-track-3d {
    height: var(--card-height); /* exactly fit card height to remove vertical gap */
    max-height: 520px; /* fit perfectly inside viewport */
    --card-width: min(330px, 84vw);
    --card-height: calc(var(--card-width) / var(--card-aspect));
    --card-spacing: calc(var(--card-width) * 0.73);
  }

  /* Prevent card corners from clipping the flyer image */
  .service-card-border-box {
    border-radius: 16px !important;
    border-width: 2px !important;
  }

  /* Keep Signature Style media filling the gold frame without side bars. */
  .card-image-full img {
    transform: none !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .carousel-counter-container {
    margin-top: 12px !important; /* space counter cleanly below card */
  }
  
  .carousel-swipe-hint {
    margin-top: 4px;
    margin-bottom: 2px;
  }
}

/* Small Device Overrides */
@media (max-width: 370px) {
  .service-carousel-track-3d {
    max-height: 440px;
    --card-width: min(280px, 80vw);
    --card-height: calc(var(--card-width) / var(--card-aspect));
    --card-spacing: calc(var(--card-width) * 0.73);
  }
  .services-section {
    padding-top: 44px;
  }
}

/* Final Gallery overrides live after the Signature Styles carousel rules. */
.gallery-carousel-section {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: clamp(54px, 7vh, 86px);
  padding-bottom: clamp(18px, 3vh, 34px);
}

.gallery-carousel-wrapper.service-carousel-wrapper {
  margin-top: 6px !important;
}

.gallery-carousel-track-3d.service-carousel-track-3d,
.gallery-carousel-track-3d {
  height: var(--gallery-card-height);
  max-height: none;
  --gallery-card-width: min(430px, 72vw);
  --gallery-card-height: min(560px, 58vh);
  --card-width: var(--gallery-card-width);
  --card-height: var(--gallery-card-height);
  --card-spacing: calc(var(--gallery-card-width) * 1.14);
}

.gallery-bundle-card.service-card-3d {
  width: var(--gallery-card-width);
  height: var(--gallery-card-height);
}

@media (max-width: 640px) {
  .public-section-page > .gallery-section,
  .gallery-carousel-section {
    min-height: 100svh;
    padding-top: 48px;
    padding-bottom: 12px;
    background-size: cover !important;
    background-position: 58% center !important;
    background-repeat: no-repeat;
  }

  .gallery-header-container {
    margin-bottom: 2px;
  }

  .gallery-header-container h2.services-title {
    font-size: 1.55rem;
    line-height: 1;
    margin-bottom: 4px;
  }

  .gallery-active-info {
    min-height: 44px;
  }

  .gallery-carousel-track-3d.service-carousel-track-3d,
  .gallery-carousel-track-3d {
    height: var(--gallery-card-height);
    max-height: none;
    --gallery-card-width: min(340px, 86vw);
    --gallery-card-height: min(450px, 55svh);
    --card-width: var(--gallery-card-width);
    --card-height: var(--gallery-card-height);
    --card-spacing: calc(var(--gallery-card-width) * 0.98);
  }

  .gallery-bundle-button {
    border-radius: 0;
    padding: 0;
  }

  .gallery-bundle-layout {
    gap: 8px;
  }

  .gallery-bundle-layout-three,
  .gallery-bundle-layout-collage {
    grid-template-columns: minmax(0, 1fr) minmax(58px, 22%);
  }

  .gallery-bundle-primary,
  .gallery-bundle-thumb {
    border-radius: 11px;
  }

  .gallery-bundle-overlay {
    left: 18px;
    right: 86px;
    bottom: 16px;
  }

  .gallery-bundle-overlay strong {
    font-size: 1.25rem;
  }

  .gallery-counter-container.carousel-counter-container {
    margin-top: 10px !important;
  }

  .gallery-view-all-link {
    margin-top: 4px;
    min-height: 30px;
    padding: 6px 14px;
    font-size: 0.7rem;
  }

  .gallery-view-all-grid {
    width: min(100% - 28px, 620px);
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
    gap: 12px;
    margin-top: 14px;
  }

  .gallery-view-all-button {
    border-radius: 0;
    padding: 0;
  }
}

@media (max-width: 370px) {
  .gallery-carousel-track-3d.service-carousel-track-3d,
  .gallery-carousel-track-3d {
    --gallery-card-width: min(296px, 84vw);
    --gallery-card-height: min(390px, 52svh);
  }
}

/* Focused screenshot fixes */
.style-card-actions {
  --card-action-size: 30px;
  --card-action-dot-size: 3px;
  --card-action-dot-offset: 5.5px;
  width: var(--card-action-size);
  height: var(--card-action-size);
  top: 16px;
  right: 16px;
  z-index: 12;
}

.style-card-actions-trigger {
  min-width: 0;
  width: var(--card-action-size);
  height: var(--card-action-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
}

.ellipsis-dots {
  width: calc(var(--card-action-dot-offset, 5.5px) * 2 + var(--card-action-dot-size, 3px));
  height: var(--card-action-dot-size, 3px);
  display: inline-grid;
  place-items: center;
  font-size: 0;
  letter-spacing: 0;
  transform: none;
}

.ellipsis-dots::before {
  content: '';
  width: var(--card-action-dot-size, 3px);
  height: var(--card-action-dot-size, 3px);
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    calc(var(--card-action-dot-offset, 5.5px) * -1) 0 0 currentColor,
    var(--card-action-dot-offset, 5.5px) 0 0 currentColor;
}

.gallery-bundle-card .style-card-actions {
  top: 16px;
  right: 16px;
  z-index: 12;
}

.gallery-media-frame > .style-card-actions {
  top: 12px;
  right: 12px;
  z-index: 6;
}

.gallery-bundle-card:not(.active) .style-card-actions {
  opacity: 0;
  pointer-events: none;
}

.gallery-viewer-backdrop {
  padding: clamp(16px, 3vw, 34px);
}

.gallery-viewer {
  width: fit-content;
  max-width: calc(100vw - clamp(32px, 6vw, 72px));
  max-height: calc(100svh - clamp(32px, 6vw, 72px));
  gap: 10px;
}

.gallery-viewer-media {
  min-height: 0;
  overflow: visible;
}

.gallery-viewer-media .gallery-media-frame {
  width: fit-content;
  height: fit-content;
  max-width: calc(100vw - clamp(32px, 6vw, 72px));
  max-height: calc(100svh - clamp(76px, 12vw, 128px));
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
}

.gallery-viewer-media .gallery-media-frame img,
.gallery-viewer-media .gallery-media-frame video {
  width: auto;
  height: auto;
  max-width: calc(100vw - clamp(32px, 6vw, 72px));
  max-height: calc(100svh - clamp(76px, 12vw, 128px));
  object-fit: contain;
}

@media (max-width: 768px) {
  .landing-hero-content.hero-content {
    padding-top: clamp(54px, 10svh, 86px);
  }

  .landing-hero-copy.hero-copy h1 {
    margin-bottom: clamp(14px, 3.5vw, 22px);
  }

  .landing-hero-copy.hero-copy .eyebrow {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .landing-hero-content.hero-content {
    padding-top: clamp(60px, 11svh, 92px);
  }
}

@media (max-width: 640px) {
  .notifications-page.admin-messages-page {
    height: auto;
    min-height: 100svh;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .notifications-page.admin-messages-page .messages-admin-shell {
    width: min(calc(100% - 32px), 640px) !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    padding: 18px 0 56px !important;
  }

  .notifications-page .admin-heading {
    margin-bottom: 18px !important;
  }

  .notifications-page .admin-heading .eyebrow {
    max-width: 100%;
    font-size: 0.7rem !important;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .notifications-page .back-to-dash {
    width: 100%;
    min-height: 52px;
    justify-content: center;
    padding: 13px 18px !important;
  }

  .notifications-page .notifications-layout {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px !important;
    overflow: visible !important;
  }

  .notifications-page .notifications-summary-card,
  .notifications-page .notifications-events-panel {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    padding: 18px !important;
    border-radius: 16px !important;
  }

  .notifications-page .notifications-list {
    width: 100% !important;
    max-height: none !important;
    overflow: visible !important;
    padding-right: 0 !important;
  }

  .notifications-page .notifications-tab-header {
    display: block !important;
    margin-bottom: 16px !important;
  }

  .notifications-page .notifications-tab-header h3 {
    line-height: 1.15;
  }

  .notifications-page .notification-card {
    width: 100% !important;
    min-width: 0 !important;
    padding: 16px !important;
    overflow-wrap: anywhere;
  }

  .notifications-page .notif-card-main {
    min-width: 0;
    padding-left: 10px !important;
  }

  .notifications-page .notif-header {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 7px !important;
  }

  .notifications-page .notif-title-badge {
    max-width: 100%;
    white-space: normal !important;
    line-height: 1.25 !important;
  }

  .notifications-page .notif-description {
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  .notifications-page .notif-card-footer {
    display: flex !important;
    flex-direction: column;
    align-items: stretch !important;
    gap: 10px;
  }

  .notifications-page .notif-action-link {
    line-height: 1.3;
  }

  .notifications-page .mark-read-btn {
    min-height: 44px;
    padding: 10px 14px !important;
    border: 1px solid rgba(200, 167, 90, 0.28) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    text-decoration: none !important;
  }

  .notifications-page .notifications-summary-card .glass-button {
    min-height: 48px;
    padding: 12px 16px !important;
  }
}

/* Profile numeric badges */
.profile-badge {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #ff3b30;
  color: #ffffff;
  border-radius: 50%;
  border: 1.5px solid #111;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 6px rgba(255, 59, 48, 0.7);
  pointer-events: none;
  z-index: 15;
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1;
}

.badge-saved {
  top: -3px;
  left: -3px;
}

.badge-notifications {
  top: -3px;
  right: -3px;
}

/* Hide mobile top nav avatar button in desktop */
.mobile-top-nav-avatar {
  display: none;
}

@media (max-width: 1200px) {
  .mobile-top-nav-avatar {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px !important;
    height: 44px !important;
    margin-right: 12px;
    margin-left: auto;
    position: relative;
    padding: 0 !important;
    min-height: 0 !important;
  }
}

/* Saved Styles Page */
.saved-styles-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 100px;
}

.saved-heading {
  text-align: center;
  margin-bottom: 48px;
}

.saved-heading .eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--lux-gold-soft);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.saved-heading h1 {
  font-family: Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: #f8f1e7;
  margin: 0 0 16px;
}

.saved-heading .description {
  color: rgba(248, 241, 231, 0.7);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.empty-saved-state {
  text-align: center;
  padding: 80px 24px;
  border: 1px dashed rgba(200, 167, 90, 0.25);
  border-radius: 20px;
  background: rgba(22, 22, 22, 0.4);
  max-width: 500px;
  margin: 0 auto;
}

.empty-saved-state p {
  color: rgba(248, 241, 231, 0.8);
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.saved-grid {
  --saved-card-height: min(480px, 50vh);
  --saved-card-aspect: 0.8003;
  --saved-card-width: calc(var(--saved-card-height) * var(--saved-card-aspect));
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.saved-card-override {
  position: relative !important;
  left: auto !important;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  width: var(--saved-card-width) !important;
  height: var(--saved-card-height) !important;
  flex: 0 0 auto;
  transition: transform 300ms cubic-bezier(0.25, 0.8, 0.25, 1), border-color 200ms ease, box-shadow 200ms ease !important;
}

.saved-card-override:hover {
  transform: translateY(-8px) scale(1.02) !important;
}

@media (max-width: 620px) {
  .saved-grid {
    --saved-card-width: min(280px, 80vw);
    --saved-card-height: calc(var(--saved-card-width) / var(--saved-card-aspect));
    gap: 24px;
  }
}

/* Admin user management */
.stats-card-clickable {
  font: inherit;
  color: inherit;
}

.stats-card-clickable:hover {
  border-color: rgba(212, 175, 55, 0.55) !important;
  background: rgba(34, 27, 18, 0.72) !important;
  transform: translateY(-2px);
}

.admin-user-management {
  display: grid;
  gap: 18px;
}

.admin-user-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(180px, 240px);
  gap: 14px;
  align-items: end;
}

.admin-user-search,
.admin-user-sort {
  color: rgba(248, 241, 231, 0.66);
  display: grid;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-user-search input,
.admin-user-sort select {
  background: rgba(8, 8, 8, 0.48);
  border: 1px solid rgba(200, 167, 90, 0.24);
  border-radius: 12px;
  color: #f8f1e7;
  min-height: 46px;
  padding: 0 14px;
  width: 100%;
}

.admin-user-role-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-user-role-filters button {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(200, 167, 90, 0.18);
  border-radius: 999px;
  color: rgba(248, 241, 231, 0.7);
  cursor: pointer;
  font-weight: 800;
  min-height: 38px;
  padding: 0 14px;
}

.admin-user-role-filters button.active,
.admin-user-role-filters button:hover {
  background: rgba(212, 175, 55, 0.13);
  border-color: rgba(212, 175, 55, 0.52);
  color: #ffe59b;
}

.admin-user-empty {
  background: rgba(22, 22, 22, 0.52);
  border: 1px dashed rgba(200, 167, 90, 0.26);
  border-radius: 16px;
  color: rgba(248, 241, 231, 0.72);
  padding: 30px;
  text-align: center;
}

.admin-user-empty strong {
  color: #f8f1e7;
  display: block;
  margin-bottom: 8px;
}

.admin-user-table-wrap {
  background: rgba(14, 14, 14, 0.58);
  border: 1px solid rgba(200, 167, 90, 0.16);
  border-radius: 18px;
  overflow: auto;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.admin-user-table {
  border-collapse: collapse;
  min-width: 920px;
  width: 100%;
}

.admin-user-table th,
.admin-user-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px;
  text-align: left;
}

.admin-user-table th {
  color: rgba(248, 241, 231, 0.48);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-user-table tbody tr {
  cursor: pointer;
  transition: background 180ms ease;
}

.admin-user-table tbody tr:hover {
  background: rgba(212, 175, 55, 0.075);
}

.admin-user-table td {
  color: rgba(248, 241, 231, 0.78);
  font-size: 0.9rem;
}

.admin-user-table td small,
.admin-user-account-cell span {
  color: rgba(248, 241, 231, 0.48);
  display: block;
  margin-top: 4px;
}

.admin-user-account-cell {
  align-items: center;
  display: flex;
  gap: 12px;
}

.admin-user-account-cell strong {
  color: #f8f1e7;
  display: block;
}

.admin-user-avatar {
  align-items: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.34), rgba(83, 130, 132, 0.26));
  border: 1px solid rgba(255, 229, 155, 0.34);
  border-radius: 50%;
  color: #fff4c7;
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 900;
  justify-content: center;
  overflow: hidden;
}

.admin-user-avatar-lg {
  height: 74px;
  width: 74px;
}

.admin-user-avatar-sm {
  height: 42px;
  width: 42px;
}

.admin-user-avatar img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.admin-user-role {
  border: 1px solid rgba(200, 167, 90, 0.22);
  border-radius: 999px;
  color: #ffe59b;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  padding: 5px 10px;
}

.admin-user-role.role-client {
  background: rgba(83, 130, 132, 0.16);
  color: #b7ece9;
}

.admin-user-role.role-admin {
  background: rgba(212, 175, 55, 0.14);
}

.admin-user-role.role-dev {
  background: rgba(147, 112, 219, 0.18);
  color: #d8c7ff;
}

.admin-user-drawer-backdrop {
  background: rgba(0, 0, 0, 0.54);
  inset: 0;
  position: fixed;
  z-index: 80;
}

.admin-user-drawer {
  background:
    linear-gradient(145deg, rgba(22, 22, 22, 0.94), rgba(32, 27, 20, 0.96)),
    rgba(22, 22, 22, 0.94);
  border-left: 1px solid rgba(255, 229, 155, 0.2);
  box-shadow: -28px 0 70px rgba(0, 0, 0, 0.42);
  color: #f8f1e7;
  height: 100%;
  margin-left: auto;
  max-width: 560px;
  overflow-y: auto;
  padding: 28px;
  position: relative;
  width: min(560px, 100%);
}

.admin-user-drawer-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #f8f1e7;
  cursor: pointer;
  display: flex;
  font-size: 1.5rem;
  height: 40px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 40px;
}

.admin-user-drawer-hero {
  align-items: center;
  display: flex;
  gap: 16px;
  padding-right: 44px;
}

.admin-user-drawer-hero h3 {
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  line-height: 1.05;
  margin: 10px 0 6px;
}

.admin-user-drawer-hero p {
  color: rgba(248, 241, 231, 0.58);
  margin: 0;
  overflow-wrap: anywhere;
}

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

.admin-user-detail-grid div {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 13px;
}

.admin-user-detail-grid span,
.admin-user-history-list span,
.admin-user-muted {
  color: rgba(248, 241, 231, 0.52);
}

.admin-user-detail-grid strong,
.admin-user-history-list strong {
  color: #f8f1e7;
  display: block;
  margin-top: 5px;
}

.admin-user-drawer-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.admin-user-drawer-section + .admin-user-drawer-section {
  margin-top: 22px;
}

.admin-user-section-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.admin-user-section-heading h4 {
  color: #ffe59b;
  margin: 0;
}

.admin-user-section-heading span {
  color: rgba(248, 241, 231, 0.56);
  font-weight: 900;
}

.admin-user-history-list {
  display: grid;
  gap: 10px;
}

.admin-user-history-list article {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(200, 167, 90, 0.14);
  border-radius: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.72fr);
  padding: 14px;
}

@media (max-width: 720px) {
  .admin-user-toolbar {
    grid-template-columns: 1fr;
  }

  .admin-user-table {
    min-width: 760px;
  }

  .admin-user-drawer {
    border-left: 0;
    max-width: none;
    padding: 22px;
    width: 100%;
  }

  .admin-user-detail-grid,
  .admin-user-history-list article {
    grid-template-columns: 1fr;
  }
}

.auth-page .unified-auth-shell {
  width: min(100% - 40px, 680px);
  min-height: 100svh;
  display: flex;
  grid-template-columns: none;
  align-items: center;
  justify-content: center;
}

.auth-page .unified-auth-card {
  width: 100%;
  max-width: 680px;
}

@media (min-width: 641px) {
  .auth-page .unified-auth-card {
    gap: 18px;
    padding: 32px 42px;
  }

  .auth-panel-heading {
    gap: 9px;
  }

  .auth-panel-heading h1 {
    font-size: 3.45rem;
  }

  .auth-flow-panel {
    gap: 12px;
  }

  .unified-auth-card input,
  .auth-primary-button,
  .auth-provider-button {
    min-height: 56px;
  }

  .auth-provider-stack {
    gap: 12px;
  }

  .auth-divider {
    padding: 4px 0 0;
  }

  .auth-cancel-link {
    margin-top: 10px;
  }
}

@media (max-width: 640px) {
  .auth-page .unified-auth-shell {
    width: min(100% - 18px, 560px);
    min-height: 100svh;
    padding-block: max(10px, env(safe-area-inset-top)) max(14px, env(safe-area-inset-bottom));
  }

  .auth-page .unified-auth-card {
    gap: 14px;
    border-radius: 22px;
    padding: 16px 16px 14px;
  }

  .auth-panel-heading {
    gap: 7px;
  }

  .auth-panel-heading .eyebrow {
    font-size: 0.72rem;
  }

  .auth-panel-heading h1 {
    font-size: clamp(2.02rem, 8.8vw, 2.65rem);
    line-height: 1.02;
  }

  .auth-panel-heading p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.34;
  }

  .auth-flow-panel {
    gap: 9px;
  }

  .unified-auth-card .auth-field,
  .unified-auth-card label:has(.password-input-wrap) {
    gap: 6px;
    font-size: 0.78rem;
  }

  .unified-auth-card input,
  .auth-primary-button,
  .auth-provider-button {
    min-height: 52px;
  }

  .unified-auth-card input {
    border-radius: 18px;
    padding: 13px 18px;
    font-size: 0.98rem;
  }

  .unified-auth-card .password-input-wrap input {
    padding-right: 82px;
  }

  .unified-auth-card .password-toggle {
    right: 8px;
    min-width: 58px;
    min-height: 36px;
    font-size: 0.86rem;
  }

  .unified-auth-card .auth-inline-link {
    margin-top: -4px;
    font-size: 0.9rem;
  }

  .auth-primary-button,
  .auth-provider-button,
  .auth-back-button {
    padding: 12px 18px;
    font-size: 0.96rem;
  }

  .auth-divider {
    gap: 12px;
    padding: 2px 0 0;
  }

  .auth-provider-stack {
    gap: 9px;
  }

  .auth-provider-button {
    gap: 10px;
  }

  .auth-provider-icon {
    width: 22px;
    height: 22px;
  }

  .auth-cancel-link {
    margin-top: 8px;
    font-size: 0.92rem;
  }

  .auth-terms-row {
    gap: 10px;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .auth-alert,
  .auth-success {
    padding: 11px 14px;
    font-size: 0.9rem;
  }

  .profile-soft-prompt {
    align-items: stretch;
    flex-direction: column;
    margin: -10px 0 22px;
  }

  .profile-soft-prompt > div {
    width: 100%;
    flex-wrap: wrap;
  }

  .profile-soft-prompt .glass-button,
  .profile-prompt-dismiss {
    flex: 1 1 130px;
  }
}

@media (max-width: 640px) and (max-height: 760px) {
  .auth-panel-heading p:not(.eyebrow) {
    display: none;
  }
}

/* ==========================================================================
   Booking Review Page & Collapsible Summary Styles
   ========================================================================== */

.booking-review-page .booking-payment-shell {
  background-color: transparent !important;
}

.booking-review-container {
  width: 100%;
  margin-top: 15px;
}

.booking-review-card-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}

/* Service header inside Review Card */
.review-service-header {
  display: flex;
  gap: 20px;
  align-items: center;
}

.review-service-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(200, 167, 90, 0.3);
  flex-shrink: 0;
}

.review-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-service-info h2 {
  font-size: 1.6rem;
  margin: 4px 0;
  color: var(--lux-ivory);
}

.service-option-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(200, 167, 90, 0.12);
  border: 1px solid rgba(200, 167, 90, 0.3);
  border-radius: 20px;
  color: var(--lux-gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-divider {
  height: 1px;
  background: radial-gradient(circle, rgba(200, 167, 90, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  margin: 18px 0;
  width: 100%;
}

/* Details list styling */
.review-details-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.review-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.96rem;
}

.review-detail-item dt {
  color: rgba(248, 241, 231, 0.6);
  font-weight: 500;
}

.review-detail-item dd {
  color: var(--lux-ivory);
  font-weight: 700;
  margin: 0;
  text-align: right;
  max-width: 60%;
}

/* Pricing summary styling */
.pricing-title {
  font-size: 1.5rem !important;
  color: var(--lux-gold-soft) !important;
  margin: 0 0 10px 0 !important;
}

.review-pricing-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
}

.pricing-item dt {
  color: rgba(248, 241, 231, 0.7);
}

.pricing-item dd {
  font-weight: 800;
  margin: 0;
}

.pricing-item.gold-highlight dt {
  color: var(--lux-gold);
  font-weight: bold;
}

.pricing-item.gold-highlight dd {
  color: var(--lux-gold);
  font-size: 1.2rem;
}

.review-payment-notice {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.review-payment-notice p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(248, 241, 231, 0.75);
}

.review-actions-stacked {
  display: grid;
  gap: 12px;
}

.continue-to-pay-btn {
  width: 100%;
  font-weight: bold;
  background: #d4af37 !important;
  color: #111 !important;
}

.review-back-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  border-radius: 16px;
  padding: 12px;
  font-weight: 600;
}

/* Responsive booking review page styling */
@media (max-width: 992px) {
  .booking-review-card-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ==========================================================================
   Collapsible Summary Panel in Payment Screen
   ========================================================================== */

.summary-toggle-btn {
  display: none; /* Hidden on desktop */
}

@media (max-width: 992px) {
  .collapsible-summary {
    padding: 14px 18px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(200, 167, 90, 0.15) !important;
    margin-bottom: 12px !important;
    gap: 0 !important;
  }
  
  .summary-toggle-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    color: var(--lux-gold-soft);
    font-weight: bold;
    font-size: 1.05rem;
    padding: 0;
    cursor: pointer;
  }
  
  .collapsible-summary.collapsed .summary-collapsible-content {
    display: none;
  }
  
  .collapsible-summary.expanded .summary-collapsible-content {
    display: block;
    margin-top: 14px;
    border-top: 1px dashed rgba(200, 167, 90, 0.2);
    padding-top: 14px;
    width: 100%;
  }

  .collapsible-summary.collapsed {
    box-shadow: none !important;
  }
}

/* ==========================================================================
   Admin Availability Tabs Style tweaks
   ========================================================================== */
.admin-tab-button {
  transition: all 0.2s ease;
}

.admin-tab-button:hover {
  color: var(--lux-gold) !important;
}

.admin-tab-button.active {
  color: var(--lux-gold) !important;
  border-bottom-color: var(--lux-gold) !important;
}

/* ==========================================================================
   Mobile Booking & Payment Layout / Drawer Auth Customizations
   ========================================================================== */

@media (max-width: 992px) {
  /* Push payment page header lower to clear SB logo / hamburger menu */
  .booking-payment-page .booking-payment-shell,
  .booking-payment-page .booking-payment-shell-wide {
    padding-top: 90px !important;
  }
  
  .booking-payment-page .checkout-intro {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    text-align: center;
  }
  
  .booking-payment-page .checkout-intro h1 {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
  }

  /* Force single-column layout for checkout grid on mobile */
  .booking-payment-grid,
  .booking-payment-grid-wide {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 16px !important;
  }
  
  .booking-payment-grid > *,
  .booking-payment-grid-wide > * {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Booking summary dropdown accordion full width styling */
  .collapsible-summary {
    width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    box-sizing: border-box;
    display: block !important;
    transition: all 0.3s ease-in-out !important;
    background: #0d0d0d !important; /* solid luxury black background */
    border: 1px solid rgba(200, 167, 90, 0.3) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .collapsible-summary.collapsed {
    min-height: 0 !important;
    height: 56px !important; /* exactly 56px tall */
    padding: 0 18px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .collapsible-summary.collapsed .summary-toggle-btn {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin: 0 !important;
    width: 100% !important;
  }

  .collapsible-summary.collapsed .summary-collapsible-content {
    display: none !important;
  }

  .collapsible-summary.expanded {
    height: auto !important;
    min-height: 0 !important;
    padding: 18px !important;
    overflow: visible !important;
  }

  .collapsible-summary.expanded .summary-toggle-btn {
    margin-bottom: 14px !important;
    width: 100% !important;
  }
  
  /* Client Contact Info full width styling */
  .payment-checkout-panel {
    width: 100% !important;
    box-sizing: border-box;
  }

  /* Prevent overlapping profile elements / floating avatar */
  .mobile-top-nav-avatar {
    display: none !important;
  }
}

/* Remove Transparency Artifacts: solid backgrounds for all checkout cards on Book for Client */
.booking-payment-page .booking-form-panel {
  background: #0d0d0d !important;
  border: 1px solid rgba(200, 167, 90, 0.28) !important;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Hide double borders and nested transparent background bleeds in manual payments mockup */
.booking-payment-page .stripe-payment-mockup {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-top: 20px !important;
}

/* Payment selection cards layout for mobile widths */
@media (max-width: 600px) {
  .manual-payment-cards {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  /* Payment buttons - row layout on mobile for neatness */
  .booking-payment-page .payment-card-btn {
    min-height: 86px !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    padding: 14px 18px !important;
    gap: 14px !important;
    background: #111111 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-sizing: border-box !important;
  }

  .booking-payment-page .payment-card-btn.active {
    background: #191610 !important;
    border: 1px solid #d4af37 !important;
  }

  .booking-payment-page .payment-card-btn span {
    font-size: 2rem !important;
    margin-bottom: 0 !important;
    margin-right: 2px !important;
  }

  .booking-payment-page .payment-card-btn strong {
    font-size: 1.05rem !important;
    margin-bottom: 0 !important;
  }

  .booking-payment-page .payment-card-btn small {
    margin-top: 2px !important;
    display: block !important;
    font-size: 0.78rem !important;
  }

  /* Align Cash App / Zelle sub-buttons nicely on the right */
  .booking-payment-page .payment-card-btn div {
    margin-top: 0 !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
    display: flex !important;
    gap: 8px !important;
  }

  /* Deposit Amount & Remaining Balance grids stacking vertically */
  .stripe-amount-grid {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .stripe-amount-grid > div {
    width: 100% !important;
    background: #121212 !important;
    border: 1px solid rgba(200, 167, 90, 0.15) !important;
    padding: 14px 18px !important;
    border-radius: 14px !important;
    box-sizing: border-box !important;
  }

  .stripe-amount-grid > div > div {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: 6px !important;
  }

  .stripe-amount-grid strong {
    font-size: 1.6rem !important;
  }

  .adjust-amount-btn {
    padding: 6px 14px !important;
    font-size: 0.8rem !important;
    height: 36px !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* Button scaling, centering and alignment corrections */
.booking-payment-page button,
.booking-payment-page .glass-button,
.booking-payment-page .toolbar-button {
  box-sizing: border-box !important;
  text-align: center !important;
  justify-content: center !important;
  align-items: center !important;
}

@media (max-width: 992px) {
  .booking-payment-page .glass-button {
    width: 100% !important;
    padding: 12px !important;
    border-radius: 16px !important;
  }
}

/* Mobile Drawer Auth Header styling */
.mobile-menu-auth-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-profile-links-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.mobile-profile-user-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--lux-gold);
}

.mobile-user-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200, 167, 90, 0.15);
  color: var(--lux-gold);
  font-weight: bold;
  font-size: 1.1rem;
  border: 2px solid var(--lux-gold);
}

.mobile-user-name {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.mobile-submenu-item {
  display: block;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.01);
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  text-align: left;
}

.mobile-submenu-item:hover,
.mobile-submenu-item:active {
  color: var(--lux-gold) !important;
  background: rgba(200, 167, 90, 0.05);
  border-left-color: var(--lux-gold);
}

.mobile-logout-btn {
  background: rgba(255, 77, 77, 0.08) !important;
  border: 1px solid rgba(255, 77, 77, 0.25) !important;
  border-radius: 20px !important; /* matches nav drawer list border radius */
  color: #ff6b57 !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  text-align: center !important;
  justify-content: center !important;
  padding: 12px 16px !important;
  margin-top: 14px !important;
  cursor: pointer;
  width: 100% !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  transition: all 0.2s ease !important;
}

.mobile-logout-btn:hover,
.mobile-logout-btn:active {
  background: #ff4d4d !important;
  color: #111 !important;
  border-color: #ff4d4d !important;
}

/* Promo Code Space layout overrides */
.booking-payment-page .promo-code-btn {
  width: auto !important;
  flex: 0 0 auto !important;
  min-width: 100px !important;
  padding: 8px 16px !important;
  height: 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 12px !important;
  box-sizing: border-box !important;
}

.booking-payment-page #promo-code-input {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  height: 42px !important;
  box-sizing: border-box !important;
}
