:root {
  --hx-primary: #c84d6f;
  --hx-primary-rgb: 200, 77, 111;
  --hx-primary-dark: #9f3655;
  --hx-primary-dark-rgb: 159, 54, 85;
  --hx-primary-soft: #f8dfe6;
  --hx-accent: #8d725a;
  --hx-bg: #fffaf8;
  --hx-surface: #ffffff;
  --hx-surface-soft: #fff4f6;
  --hx-ink: #211c1d;
  --hx-muted: #72696b;
  --hx-border: #eadfe1;
  --hx-dark: #171516;
  --hx-success: #257a4f;
  --hx-error: #a82f46;
  --hx-shadow: 0 18px 55px rgba(var(--hx-primary-rgb), 0.11);
  --hx-shadow-soft: 0 10px 28px rgba(var(--hx-primary-rgb), 0.08);
  --hx-radius-sm: 10px;
  --hx-radius: 18px;
  --hx-radius-lg: 28px;
  --hx-container: 1180px;
  --hx-transition: 180ms ease;
  --hx-font-body: Tahoma, Arial, sans-serif;
  --hx-font-heading: Tahoma, Arial, sans-serif;
  --hx-blush: var(--hx-primary-soft);
  --hx-soft: var(--hx-surface-soft);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--hx-bg);
  color: var(--hx-ink);
  font-family: var(--hx-font-body);
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
  top: 32px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

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

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

a {
  color: var(--hx-primary-dark);
  text-decoration: none;
  transition: color var(--hx-transition), background-color var(--hx-transition), border-color var(--hx-transition), transform var(--hx-transition), box-shadow var(--hx-transition);
}

a:hover {
  color: var(--hx-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.75rem;
  color: var(--hx-ink);
  font-weight: 800;
  line-height: 1.35;
}

h1 {
  font-size: clamp(2.4rem, 5.2vw, 5rem);
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  padding-inline-start: 1.2rem;
}

.container {
  width: min(calc(100% - 32px), var(--hx-container));
  margin-inline: auto;
}

.container--narrow {
  max-width: 800px;
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section--soft {
  background: var(--hx-surface-soft);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.eyebrow {
  margin-bottom: 0.4rem;
  color: var(--hx-primary);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow--light {
  color: #ffdce5;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  background: var(--hx-surface);
  color: #111;
  border-radius: 8px;
  box-shadow: var(--hx-shadow-soft);
}

:focus-visible {
  outline: 3px solid rgba(var(--hx-primary-rgb), 0.35);
  outline-offset: 3px;
}

.button,
.wp-element-button,
button[type="submit"],
input[type="submit"] {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.45rem;
  border: 1px solid transparent;
  border-radius: var(--hx-radius-sm);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.button:hover,
.wp-element-button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  transform: translateY(-2px);
}

.button--primary,
.wp-element-button,
button[type="submit"],
input[type="submit"] {
  background: var(--hx-primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(var(--hx-primary-rgb), 0.22);
}

.button--primary:hover,
.wp-element-button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  background: var(--hx-primary-dark);
  color: #fff;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.82);
  color: var(--hx-primary-dark);
  border-color: rgba(var(--hx-primary-rgb), 0.25);
  backdrop-filter: blur(10px);
}

.button--ghost:hover {
  background: var(--hx-surface);
  color: var(--hx-primary);
}

.button--outline {
  background: transparent;
  color: var(--hx-primary-dark);
  border-color: var(--hx-primary-soft);
}

.button--outline:hover {
  background: var(--hx-primary);
  color: #fff;
  border-color: var(--hx-primary);
}

.button--light {
  background: var(--hx-surface);
  color: var(--hx-primary-dark);
}

.button--light:hover {
  background: #fff5f7;
  color: var(--hx-primary-dark);
}

.button--small {
  min-height: 40px;
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
}

.text-link:hover span {
  transform: translateX(-3px);
}

.text-link span {
  transition: transform var(--hx-transition);
}

.promo-bar {
  background: linear-gradient(90deg, var(--hx-primary-dark), var(--hx-primary));
  color: #fff;
  font-size: 0.88rem;
}

.promo-bar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.promo-bar p {
  margin: 0;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(234, 223, 225, 0.8);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.site-branding {
  min-width: 150px;
}

.custom-logo-link {
  display: inline-flex;
}

.custom-logo {
  max-height: 62px;
  width: auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--hx-ink);
}

.brand-mark:hover {
  color: var(--hx-primary-dark);
}

.brand-mark__symbol {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--hx-accent);
  font-size: 2.1rem;
  transform: rotate(-12deg);
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.brand-mark strong {
  font-size: 1.25rem;
}

.brand-mark small {
  color: var(--hx-muted);
  font-size: 0.78rem;
}

.primary-navigation {
  justify-self: center;
}

.primary-menu,
.primary-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.primary-menu > li {
  position: relative;
}

.primary-menu a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0.5rem 0.85rem;
  color: #3f3638;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 700;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
  background: var(--hx-surface-soft);
  color: var(--hx-primary-dark);
}

.primary-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-start: 0;
  width: 220px;
  padding: 0.55rem;
  visibility: hidden;
  opacity: 0;
  background: var(--hx-surface);
  border: 1px solid var(--hx-border);
  border-radius: 12px;
  box-shadow: var(--hx-shadow-soft);
  transform: translateY(8px);
  transition: opacity var(--hx-transition), transform var(--hx-transition), visibility var(--hx-transition);
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-button {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--hx-surface-soft);
  color: var(--hx-primary-dark);
  border-radius: 50%;
}

.icon-button__badge {
  position: absolute;
  top: -4px;
  inset-inline-end: -4px;
  display: grid;
  min-width: 20px;
  height: 20px;
  padding-inline: 4px;
  place-items: center;
  background: var(--hx-primary);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  font-size: 0.68rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--hx-surface-soft);
  border: 0;
  border-radius: 10px;
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--hx-ink);
  content: "";
  transition: transform var(--hx-transition), opacity var(--hx-transition);
}

.menu-toggle__bars {
  position: relative;
}

.menu-toggle__bars::before {
  position: absolute;
  top: -7px;
}

.menu-toggle__bars::after {
  position: absolute;
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(540px, 62vw, 720px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 249, 248, 0.05) 0%, rgba(255, 249, 248, 0.26) 45%, rgba(255, 249, 248, 0.98) 74%, #fff9f8 100%),
    var(--hero-image) left center / 58% 100% no-repeat,
    linear-gradient(135deg, #f6ddd9, #fff8f7);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hx-primary-soft), transparent);
  content: "";
}

.hero__inner {
  display: flex;
  min-height: inherit;
  align-items: center;
  justify-content: flex-end;
}

[dir="rtl"] .hero__inner {
  justify-content: flex-start;
}

.hero__content {
  width: min(48%, 560px);
  padding-block: 5rem;
}

.hero__content h1 {
  max-width: 10ch;
  margin-bottom: 1.25rem;
}

.hero__content h1::first-line {
  color: var(--hx-primary);
}

.hero__content > p:not(.eyebrow) {
  max-width: 48ch;
  color: #554b4d;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.benefits {
  position: relative;
  z-index: 4;
  margin-top: -54px;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(234, 223, 225, 0.95);
  border-radius: var(--hx-radius);
  box-shadow: var(--hx-shadow);
  backdrop-filter: blur(14px);
}

.benefit-item {
  position: relative;
  display: flex;
  min-height: 138px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.4rem 1rem;
  text-align: center;
}

.benefit-item:not(:last-child)::after {
  position: absolute;
  top: 28px;
  bottom: 28px;
  inset-inline-end: 0;
  width: 1px;
  background: var(--hx-border);
  content: "";
}

.benefit-item__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--hx-primary);
  border: 1px solid var(--hx-primary-soft);
  border-radius: 50%;
  font-size: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 1.8rem;
  background: var(--hx-surface);
  border: 1px solid var(--hx-border);
  border-radius: var(--hx-radius);
  box-shadow: 0 8px 24px rgba(84, 42, 53, 0.05);
  transition: transform var(--hx-transition), box-shadow var(--hx-transition), border-color var(--hx-transition);
}

.service-card::before {
  position: absolute;
  top: -60px;
  inset-inline-end: -60px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(var(--hx-primary-rgb), 0.12), transparent 68%);
  content: "";
}

.service-card:hover {
  border-color: #e7c3cd;
  box-shadow: var(--hx-shadow-soft);
  transform: translateY(-5px);
}

.service-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 1.15rem;
  place-items: center;
  background: var(--hx-surface-soft);
  color: var(--hx-primary);
  border-radius: 14px;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--hx-muted);
}

.service-card > a:not(.button) {
  font-size: 0.9rem;
  font-weight: 800;
}

.service-card--large {
  min-height: 270px;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.card-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.media-card,
.post-card,
.product-card {
  overflow: hidden;
  background: var(--hx-surface);
  border: 1px solid var(--hx-border);
  border-radius: var(--hx-radius);
  box-shadow: 0 8px 24px rgba(84, 42, 53, 0.05);
  transition: transform var(--hx-transition), box-shadow var(--hx-transition);
}

.media-card:hover,
.post-card:hover,
.product-card:hover {
  box-shadow: var(--hx-shadow-soft);
  transform: translateY(-5px);
}

.media-card__image,
.post-card__image,
.product-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f7eded;
}

.media-card__image {
  aspect-ratio: 16 / 10;
}

.media-card__image img,
.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.media-card:hover img,
.post-card:hover img {
  transform: scale(1.04);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  color: var(--hx-primary);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(20, 10, 12, 0.2);
  transform: translate(-50%, -50%);
}

.media-card__body,
.post-card__body,
.product-card__body {
  padding: 1.25rem;
}

.media-card__body h3,
.product-card__body h3,
.post-card__title {
  margin-bottom: 0.5rem;
}

.media-card__body p,
.post-card__body p {
  color: var(--hx-muted);
  font-size: 0.92rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-card__image {
  aspect-ratio: 1 / 1.08;
  padding: 0.9rem;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-card__price {
  min-height: 32px;
  margin: 0.5rem 0 1rem;
  color: var(--hx-primary-dark);
  font-weight: 800;
}

.booking-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 6rem);
  background:
    linear-gradient(90deg, rgba(var(--hx-primary-dark-rgb), 0.94), rgba(var(--hx-primary-rgb), 0.84)),
    url('../images/salon-booking.jpg') center / cover no-repeat;
  color: #fff;
}

.booking-cta::before,
.booking-cta::after {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.booking-cta::before {
  top: -160px;
  inset-inline-start: -70px;
}

.booking-cta::after {
  bottom: -190px;
  inset-inline-end: 6%;
}

.booking-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.booking-cta h2 {
  color: #fff;
}

.booking-cta p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
}

.page-hero {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  background: linear-gradient(135deg, #fff0f3, #fffaf8 58%, #f6e8e3);
  text-align: center;
}

.page-hero--dark {
  background: linear-gradient(135deg, #141112, #2e2527 60%, var(--hx-primary-dark));
  color: #fff;
}

.page-hero--dark h1 {
  color: #fff;
}

.page-hero p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: var(--hx-muted);
}

.page-hero--dark p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumbs {
  padding-block: 1rem;
  color: var(--hx-muted);
  font-size: 0.85rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-inline-start: 0.45rem;
  color: #c7b9bc;
  content: "/";
}

.archive-header {
  margin-bottom: 2rem;
  text-align: center;
}

.archive-description {
  max-width: 680px;
  margin-inline: auto;
  color: var(--hx-muted);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.post-card__image {
  aspect-ratio: 16 / 10;
}

.post-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--hx-primary);
  font-weight: 800;
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
  color: var(--hx-muted);
  font-size: 0.8rem;
}

.entry-header {
  margin-bottom: 2rem;
}

.entry--single .entry-header,
.entry--page .entry-header {
  text-align: center;
}

.entry-featured {
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: var(--hx-radius-lg);
  box-shadow: var(--hx-shadow-soft);
}

.entry-content {
  font-size: 1.05rem;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 1.8em;
}

.entry-content img {
  border-radius: 14px;
}

.entry-content blockquote {
  padding: 1.3rem 1.5rem;
  margin: 2rem 0;
  background: var(--hx-surface-soft);
  border-inline-start: 4px solid var(--hx-primary);
  border-radius: 12px;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: 0.8rem;
  border: 1px solid var(--hx-border);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 2rem;
}

.tag-list a {
  padding: 0.35rem 0.7rem;
  background: var(--hx-surface-soft);
  border-radius: 30px;
  font-size: 0.82rem;
}

.navigation.pagination,
.post-navigation {
  grid-column: 1 / -1;
  margin-top: 2rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.page-numbers {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  padding-inline: 0.5rem;
  background: var(--hx-surface);
  border: 1px solid var(--hx-border);
  border-radius: 9px;
}

.page-numbers.current,
.page-numbers:hover {
  background: var(--hx-primary);
  color: #fff;
  border-color: var(--hx-primary);
}

.appointment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.appointment-info,
.appointment-card {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background: var(--hx-surface);
  border: 1px solid var(--hx-border);
  border-radius: var(--hx-radius-lg);
  box-shadow: var(--hx-shadow-soft);
}

.contact-list {
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.contact-list li {
  padding-block: 0.65rem;
  border-bottom: 1px solid var(--hx-border);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-grid__full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 0.45rem;
  color: #433a3c;
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.85rem;
  background: var(--hx-surface);
  color: var(--hx-ink);
  border: 1px solid #ddcfd2;
  border-radius: 10px;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--hx-primary);
  outline: 3px solid rgba(var(--hx-primary-rgb), 0.12);
}

.appointment-form > .button {
  margin-top: 1.2rem;
}

.form-honeypot {
  position: absolute;
  inset-inline-start: -9999px;
}

.notice {
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
}

.notice--success {
  background: #e9f7ef;
  color: var(--hx-success);
}

.notice--error {
  background: #fff0f2;
  color: var(--hx-error);
}

.empty-state {
  padding: 3rem;
  background: var(--hx-surface);
  border: 1px solid var(--hx-border);
  border-radius: var(--hx-radius-lg);
  text-align: center;
}

.empty-state form {
  display: flex;
  max-width: 520px;
  margin: 1.5rem auto;
}

.empty-state input[type="search"] {
  border-radius: 10px 0 0 10px;
}

.empty-state input[type="submit"] {
  border-radius: 0 10px 10px 0;
}

.comments-area {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hx-border);
}

.comment-list {
  padding: 0;
  list-style: none;
}

.comment-body {
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: var(--hx-surface);
  border: 1px solid var(--hx-border);
  border-radius: 14px;
}

.site-footer {
  background: var(--hx-dark);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.8fr);
  gap: 2.5rem;
  padding-block: 4rem;
}

.site-footer h2,
.site-footer strong,
.site-footer a {
  color: #fff;
}

.brand-mark--light small {
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__about > p {
  max-width: 420px;
  margin-top: 1rem;
}

.footer-contact-list {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
}

.footer-widget__title {
  font-size: 1rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.footer-socials > a:not(.button) {
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  font-size: 0.82rem;
}

.footer-menu,
.footer-widget ul {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  list-style: none;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.newsletter-form input {
  min-width: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

.newsletter-form button {
  min-height: 46px;
  padding-inline: 1rem;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.site-footer__bottom .container {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__bottom p {
  margin: 0;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  padding: 1rem;
  background: var(--hx-surface);
  border: 1px solid var(--hx-border);
  border-radius: var(--hx-radius);
  box-shadow: 0 8px 24px rgba(84, 42, 53, 0.05);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--hx-ink);
  font-size: 1rem;
}

.woocommerce ul.products li.product .price {
  color: var(--hx-primary-dark);
  font-weight: 800;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--hx-primary);
  color: #fff;
  border-radius: 9px;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--hx-primary-dark);
  color: #fff;
}

@media (max-width: 1080px) {
  .site-header__inner {
    grid-template-columns: auto auto 1fr;
    gap: 1rem;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .primary-navigation {
    position: absolute;
    top: 100%;
    inset-inline: 16px;
    display: none;
    padding: 0.8rem;
    background: var(--hx-surface);
    border: 1px solid var(--hx-border);
    border-radius: 14px;
    box-shadow: var(--hx-shadow);
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-menu {
    display: grid;
  }

  .primary-menu a {
    width: 100%;
  }

  .primary-menu .sub-menu {
    position: static;
    width: auto;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    transform: none;
  }

  .site-header__actions {
    justify-self: end;
  }

  .hero {
    min-height: 620px;
    background:
      linear-gradient(90deg, rgba(255, 249, 248, 0.08), rgba(255, 249, 248, 0.42) 48%, #fff9f8 80%),
      var(--hero-image) left center / 64% 100% no-repeat,
      #fff9f8;
  }

  .hero__content {
    width: 52%;
  }

  .card-grid--four,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 1.2fr repeat(2, 1fr);
  }

  .site-footer__column:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 820px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .site-header__actions .button {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding-top: 360px;
    background:
      linear-gradient(180deg, rgba(255, 249, 248, 0.04), rgba(255, 249, 248, 0.38) 38%, #fff9f8 57%),
      var(--hero-image) center top / 100% 470px no-repeat,
      #fff9f8;
  }

  .hero__inner {
    align-items: flex-start;
    justify-content: center;
  }

  [dir="rtl"] .hero__inner {
    justify-content: center;
  }

  .hero__content {
    width: 100%;
    padding-block: 2rem 4.5rem;
    text-align: center;
  }

  .hero__content h1,
  .hero__content > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .benefits {
    margin-top: -38px;
  }

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

  .benefit-item:last-child {
    grid-column: 1 / -1;
  }

  .benefit-item::after {
    display: none;
  }

  .services-grid,
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .appointment-layout {
    grid-template-columns: 1fr;
  }

  .booking-cta__inner,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__about {
    grid-column: 1 / -1;
  }

  .site-footer__column:last-child {
    grid-column: auto;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 24px), var(--hx-container));
  }

  .promo-bar {
    font-size: 0.76rem;
  }

  .brand-mark strong {
    font-size: 1rem;
  }

  .brand-mark small {
    display: none;
  }

  .brand-mark__symbol {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 690px;
    padding-top: 320px;
    background-size: 100% 400px, auto;
  }

  .hero__content h1 {
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .hero__actions {
    display: grid;
  }

  .benefits__grid,
  .services-grid,
  .content-grid,
  .card-grid--four,
  .product-grid,
  .form-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .benefit-item:last-child,
  .form-grid__full,
  .site-footer__about {
    grid-column: auto;
  }

  .benefit-item {
    min-height: 110px;
    flex-direction: row;
    justify-content: flex-start;
    text-align: start;
  }

  .site-footer__bottom .container {
    padding-block: 1rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .empty-state {
    padding: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Content-page components */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-layout__media {
  position: relative;
}

.about-layout__media::before {
  position: absolute;
  z-index: -1;
  inset: -18px 18px 18px -18px;
  background: var(--hx-primary-soft);
  border-radius: var(--hx-radius-lg);
  content: "";
}

.about-layout__media img {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
  border-radius: var(--hx-radius-lg);
  box-shadow: var(--hx-shadow);
}

.about-layout__content > .button {
  margin-top: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  display: grid;
  min-height: 150px;
  place-items: center;
  align-content: center;
  padding: 1.2rem;
  background: var(--hx-surface);
  border: 1px solid var(--hx-border);
  border-radius: var(--hx-radius);
  box-shadow: var(--hx-shadow-soft);
  text-align: center;
}

.stat-card strong {
  color: var(--hx-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.stat-card span {
  color: var(--hx-muted);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 260px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  overflow: hidden;
  border-radius: var(--hx-radius);
  box-shadow: var(--hx-shadow-soft);
}

.gallery-card--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-content .wp-block-gallery {
  gap: 1rem;
}

.gallery-content .wp-block-image img {
  border-radius: var(--hx-radius);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 2rem;
  align-items: start;
}

.contact-panel,
.contact-form-card {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background: var(--hx-surface);
  border: 1px solid var(--hx-border);
  border-radius: var(--hx-radius-lg);
  box-shadow: var(--hx-shadow-soft);
}

.contact-panel {
  position: sticky;
  top: 120px;
}

.contact-detail {
  display: grid;
  gap: 0.2rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--hx-border);
}

.contact-detail:last-child {
  border-bottom: 0;
}

.contact-detail span {
  color: var(--hx-muted);
  font-size: 0.82rem;
}

.contact-detail strong {
  font-size: 0.96rem;
}

.contact-form-card form > .button {
  margin-top: 1.2rem;
}

@media (max-width: 820px) {
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

  .contact-panel {
    position: static;
  }
}

@media (max-width: 580px) {
  .stats-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card--wide {
    grid-column: auto;
    grid-row: auto;
  }
}

/* --------------------------------------------------------------------------
   Hair Xzed 1.1 — supplied UI redesign
   -------------------------------------------------------------------------- */

:root {
  --hx-container: 1320px;
}

.hx-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

.hx-topbar {
  min-height: 36px;
  background: linear-gradient(90deg, var(--hx-bg), var(--hx-surface-soft), var(--hx-bg));
  color: var(--hx-muted);
  border-bottom: 1px solid rgba(var(--hx-primary-rgb), 0.12);
  font-size: 0.78rem;
}

.hx-topbar__inner,
.hx-topbar__business,
.hx-topbar__contact,
.hx-topbar__promo,
.hx-topbar a,
.hx-topbar span {
  display: flex;
  align-items: center;
}

.hx-topbar__inner {
  min-height: 36px;
  justify-content: space-between;
  gap: 1rem;
}

.hx-topbar__promo {
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  margin: 0;
}

.hx-topbar__business,
.hx-topbar__contact {
  gap: 1.2rem;
}

.hx-topbar__business span,
.hx-topbar__contact a {
  gap: 0.35rem;
  color: var(--hx-muted);
}

.hx-topbar .hx-icon {
  width: 1rem;
  height: 1rem;
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--hx-border);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  min-height: 86px;
  grid-template-columns: minmax(180px, auto) minmax(0, 1fr) auto;
  gap: clamp(1rem, 2.4vw, 2.5rem);
}

.brand-mark__symbol {
  width: 54px;
  height: 54px;
  background: linear-gradient(145deg, var(--hx-surface-soft), var(--hx-surface));
  color: var(--hx-primary);
  border: 1px solid var(--hx-primary-soft);
  border-radius: 50% 45% 52% 45%;
  font-size: 2rem;
  font-weight: 800;
  transform: none;
}

.brand-mark strong {
  font-size: 1.7rem;
  line-height: 1.15;
}

.brand-mark small {
  margin-top: 0.15rem;
  color: var(--hx-muted);
  font-size: 0.68rem;
}

.primary-menu {
  gap: 0.12rem;
}

.primary-menu a {
  min-height: 50px;
  padding-inline: 0.8rem;
  background: transparent;
  color: var(--hx-ink);
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.primary-menu > li > a::after {
  position: absolute;
  inset-inline: 25%;
  bottom: -1px;
  height: 2px;
  background: var(--hx-primary);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity var(--hx-transition), transform var(--hx-transition);
}

.primary-menu > li {
  position: relative;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
  background: transparent;
  color: var(--hx-primary);
}

.primary-menu > li:hover > a::after,
.primary-menu > .current-menu-item > a::after,
.primary-menu > .current_page_item > a::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header__actions {
  gap: 0.45rem;
  direction: ltr;
}

.site-header__actions > * {
  direction: rtl;
}

.icon-button,
.hx-header-search > summary {
  width: 40px;
  height: 40px;
  background: transparent;
  color: var(--hx-ink);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.icon-button:hover,
.hx-header-search > summary:hover {
  background: var(--hx-blush);
  color: var(--hx-primary);
}

.icon-button__badge {
  top: -2px;
  inset-inline-end: -2px;
  min-width: 18px;
  height: 18px;
  background: var(--hx-primary);
  font-size: 0.62rem;
}

.icon-button__badge.is-empty {
  display: none;
}

.hx-header-booking {
  min-height: 46px;
  margin-inline-start: 0.55rem;
  padding-inline: 1.25rem;
}

.hx-header-search {
  position: relative;
}

.hx-header-search > summary {
  display: grid;
  place-items: center;
  list-style: none;
}

.hx-header-search > summary::-webkit-details-marker {
  display: none;
}

.hx-header-search__panel {
  position: absolute;
  z-index: 20;
  top: calc(100% + 16px);
  inset-inline-start: 0;
  width: min(360px, calc(100vw - 32px));
  padding: 0.75rem;
  background: var(--hx-surface);
  border: 1px solid var(--hx-border);
  border-radius: 14px;
  box-shadow: var(--hx-shadow);
}

.hx-header-search__panel form {
  display: flex;
  gap: 0.45rem;
}

.hx-header-search__panel input[type="search"] {
  min-width: 0;
}

.hx-home-hero {
  display: grid;
  min-height: clamp(480px, 42vw, 650px);
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  grid-template-areas: "media content";
  overflow: hidden;
  direction: ltr;
  background: var(--hx-surface-soft);
  border-bottom: 1px solid var(--hx-border);
}

.hx-home-hero__media {
  grid-area: media;
  min-width: 0;
  background: var(--hx-home-hero-image) center center / cover no-repeat;
}

.hx-home-hero__content {
  position: relative;
  display: flex;
  grid-area: content;
  align-items: center;
  justify-content: center;
  direction: rtl;
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.9), transparent 35%),
    linear-gradient(120deg, var(--hx-surface), var(--hx-surface-soft) 70%, var(--hx-primary-soft));
}

.hx-home-hero__content::before,
.hx-home-hero__content::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  filter: blur(2px);
}

.hx-home-hero__content::before {
  top: 15%;
  inset-inline-end: 10%;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: -80px 90px 0 4px rgba(255, 255, 255, 0.45), -170px -20px 0 2px rgba(255, 255, 255, 0.55);
}

.hx-home-hero__copy {
  width: min(80%, 590px);
  text-align: center;
}

.hx-home-hero__copy .eyebrow {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
}

.hx-home-hero__copy h1 {
  max-width: 11ch;
  margin: 0 auto 1rem;
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  line-height: 1.2;
}

.hx-home-hero__copy > p:not(.eyebrow) {
  max-width: 46ch;
  margin-inline: auto;
  color: var(--hx-muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.hx-home-hero .hero__actions {
  justify-content: center;
}

.hx-home-hero .button {
  min-width: 150px;
}

.hx-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.8rem;
}

.hx-slider-dots span {
  width: 9px;
  height: 9px;
  background: var(--hx-primary-soft);
  border-radius: 99px;
}

.hx-slider-dots .is-active {
  width: 26px;
  background: var(--hx-surface);
  box-shadow: inset 0 0 0 1px var(--hx-border);
}

.hx-quick-booking {
  position: relative;
  z-index: 10;
  margin-top: -48px;
}

.hx-quick-booking__shell {
  padding: 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--hx-border);
  border-radius: 17px;
  box-shadow: 0 14px 35px rgba(var(--hx-primary-rgb), 0.14);
}

.hx-quick-booking__form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(250px, 1.1fr);
  align-items: stretch;
}

.hx-booking-field {
  padding: 1.35rem 1rem;
  border-inline-end: 1px solid var(--hx-border);
}

.hx-booking-field label {
  margin-bottom: 0.45rem;
  color: var(--hx-ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.hx-control-wrap {
  position: relative;
}

.hx-control-wrap .hx-icon {
  position: absolute;
  z-index: 1;
  top: 50%;
  inset-inline-start: 0.75rem;
  color: var(--hx-primary);
  pointer-events: none;
  transform: translateY(-50%);
}

.hx-control-wrap select,
.hx-control-wrap input {
  min-height: 44px;
  padding-inline-start: 2.5rem;
  background: var(--hx-surface);
  border-color: var(--hx-border);
  font-size: 0.8rem;
}

.hx-quick-booking__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
}

.hx-quick-booking__summary div {
  display: grid;
}

.hx-quick-booking__summary strong {
  color: var(--hx-ink);
}

.hx-quick-booking__summary span {
  color: var(--hx-muted);
  font-size: 0.76rem;
}

.hx-quick-booking__summary .button {
  white-space: nowrap;
}

.hx-trust-strip {
  padding-block: 1.25rem 0;
}

.hx-trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hx-trust-item {
  position: relative;
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 1rem;
}

.hx-trust-item:not(:last-child)::after {
  position: absolute;
  top: 24%;
  bottom: 24%;
  inset-inline-end: 0;
  width: 1px;
  background: var(--hx-border);
  content: "";
}

.hx-trust-item__icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  color: var(--hx-primary);
}

.hx-trust-item__icon .hx-icon {
  width: 2.1rem;
  height: 2.1rem;
}

.hx-trust-item span:last-child {
  display: grid;
}

.hx-trust-item strong {
  color: var(--hx-ink);
  font-size: 0.95rem;
}

.hx-trust-item small {
  color: var(--hx-muted);
  font-size: 0.78rem;
}

.hx-showcase {
  padding-top: 1.8rem;
  padding-bottom: 3.2rem;
}

.hx-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.hx-showcase-card {
  position: relative;
  display: grid;
  min-height: 180px;
  grid-template-columns: minmax(0, 0.9fr) minmax(110px, 1.1fr);
  overflow: hidden;
  background: linear-gradient(135deg, var(--hx-surface-soft), var(--hx-surface-soft));
  border: 1px solid var(--hx-border);
  border-radius: 12px;
}

.hx-showcase-card__content {
  position: relative;
  z-index: 2;
  padding: 1.15rem 1rem;
}

.hx-showcase-card__content p {
  margin: 0 0 0.35rem;
  color: #5e73b5;
  font-size: 0.72rem;
}

.hx-showcase-card__content h2 {
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
}

.hx-showcase-card__content span {
  display: block;
  color: var(--hx-muted);
  font-size: 0.75rem;
}

.hx-showcase-card__content a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.38rem 0.7rem;
  margin-top: 0.85rem;
  color: var(--hx-primary);
  border: 1px solid var(--hx-primary-soft);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
}

.hx-showcase-card__content a .hx-icon {
  width: 0.9rem;
  height: 0.9rem;
}

.hx-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hx-offers {
  padding-top: 2.5rem;
  background: var(--hx-surface);
}

.hx-section-heading--compact {
  margin-bottom: 1.3rem;
}

.hx-section-heading--compact h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
}

.hx-offers__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.hx-offer-card {
  overflow: hidden;
  background: var(--hx-surface);
  border: 1px solid var(--hx-border);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(var(--hx-primary-rgb), 0.05);
  transition: transform var(--hx-transition), box-shadow var(--hx-transition);
}

.hx-offer-card:hover {
  box-shadow: 0 16px 32px rgba(var(--hx-primary-rgb), 0.11);
  transform: translateY(-4px);
}

.hx-offer-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 0.95;
  padding: 1rem;
  overflow: hidden;
  background: linear-gradient(145deg, var(--hx-surface-soft), var(--hx-surface-soft));
}

.hx-offer-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.hx-sale-badge {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  inset-inline-start: 0.75rem;
  padding: 0.25rem 0.6rem;
  background: var(--hx-primary);
  color: #fff;
  border-radius: 5px;
  font-size: 0.67rem;
  font-weight: 700;
}

.hx-card-heart {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  inset-inline-end: 0.75rem;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--hx-muted);
  border: 1px solid var(--hx-border);
  border-radius: 50%;
}

.hx-card-heart .hx-icon {
  width: 1.05rem;
  height: 1.05rem;
}

.hx-offer-card__body {
  padding: 1rem;
}

.hx-offer-card__body h3 {
  margin-bottom: 0.55rem;
  font-size: 1rem;
}

.hx-offer-card__rating,
.hx-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  color: var(--hx-accent);
  font-size: 0.78rem;
}

.hx-offer-card__rating .hx-icon,
.hx-rating .hx-icon {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
}

.hx-offer-card__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.hx-offer-card__price {
  display: grid;
  color: var(--hx-primary-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.hx-offer-card__price del {
  color: var(--hx-muted);
  font-size: 0.7rem;
  font-weight: 500;
}

/* Catalog */
.hx-catalog {
  background: var(--hx-surface);
}

.hx-catalog-hero {
  overflow: hidden;
  background: linear-gradient(100deg, var(--hx-surface), var(--hx-surface-soft));
  border-bottom: 1px solid var(--hx-border);
}

.hx-catalog-hero__inner {
  display: grid;
  min-height: 250px;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
  grid-template-areas: "copy media";
  align-items: stretch;
}

.hx-catalog-hero__copy {
  display: flex;
  grid-area: copy;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2.5rem 2rem;
  text-align: center;
}

.hx-catalog-hero__copy h1 {
  margin-bottom: 0.35rem;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.hx-catalog-hero__description {
  max-width: 650px;
  color: var(--hx-muted);
}

.hx-catalog-hero__description p {
  margin: 0;
}

.hx-heading-ornament {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
  color: var(--hx-primary);
}

.hx-heading-ornament::before,
.hx-heading-ornament::after {
  width: 18px;
  height: 1px;
  background: var(--hx-primary);
  content: "";
}

.hx-catalog-hero__media {
  grid-area: media;
  background: url('../images/shop-banner.jpg') center / cover no-repeat;
  clip-path: ellipse(72% 90% at 40% 50%);
}

.hx-wc-breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-self: flex-end;
  margin-bottom: 0.8rem;
  color: var(--hx-muted);
  font-size: 0.77rem;
}

.hx-wc-breadcrumb a {
  color: var(--hx-muted);
}

.hx-category-strip {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(0.55rem, 1.3vw, 1.5rem);
  padding-block: 1.45rem 1rem;
  overflow-x: auto;
  border-bottom: 1px solid var(--hx-border);
  scrollbar-width: thin;
}

.hx-category-chip {
  display: grid;
  min-width: 82px;
  place-items: center;
  gap: 0.45rem;
  color: var(--hx-ink);
  text-align: center;
  white-space: nowrap;
}

.hx-category-chip > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  background: var(--hx-surface);
  color: var(--hx-ink);
  border: 1px solid var(--hx-border);
  border-radius: 50%;
}

.hx-category-chip strong {
  font-size: 0.75rem;
}

.hx-category-chip:hover,
.hx-category-chip.is-active {
  color: var(--hx-primary);
}

.hx-category-chip.is-active > span {
  background: var(--hx-primary);
  color: #fff;
  border-color: var(--hx-primary);
  box-shadow: 0 8px 18px rgba(var(--hx-primary-rgb), 0.2);
}

.hx-catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  grid-template-areas: "results filters";
  gap: 1.8rem;
  align-items: start;
  padding-block: 1.5rem 3rem;
}

.hx-shop-filters {
  position: sticky;
  top: 115px;
  grid-area: filters;
  padding: 1.1rem;
  background: var(--hx-surface);
  border: 1px solid var(--hx-border);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(var(--hx-primary-rgb), 0.06);
}

.hx-shop-filters__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.8rem;
  margin-bottom: 0.5rem;
  color: var(--hx-primary);
  border-bottom: 1px solid var(--hx-border);
}

.hx-shop-filters__header h2 {
  margin: 0;
  color: var(--hx-ink);
  font-size: 1rem;
}

.hx-filter-close {
  display: none;
  padding: 0;
  background: transparent;
  color: var(--hx-muted);
  border: 0;
}

.hx-filter-widget {
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--hx-border);
}

.hx-filter-widget:last-of-type {
  margin-bottom: 1rem;
}

.hx-filter-widget__title,
.hx-filter-widget .widget-title {
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
}

.hx-filter-widget ul {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.8rem;
}

.hx-filter-widget li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hx-filter-widget .count {
  color: var(--hx-muted);
}

.hx-filter-widget .price_slider_wrapper .ui-widget-content {
  background: var(--hx-border);
}

.hx-filter-widget .ui-slider .ui-slider-range,
.hx-filter-widget .ui-slider .ui-slider-handle {
  background: var(--hx-primary);
}

.hx-catalog-results {
  min-width: 0;
  grid-area: results;
}

.hx-catalog-toolbar {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hx-catalog-toolbar .woocommerce-result-count,
.hx-catalog-toolbar .woocommerce-ordering,
.hx-catalog-toolbar p {
  float: none;
  margin: 0;
}

.hx-catalog-toolbar .woocommerce-result-count {
  color: var(--hx-ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.hx-catalog-toolbar select {
  min-width: 180px;
  min-height: 42px;
  font-size: 0.8rem;
}

.hx-filter-toggle {
  display: none;
}

.woocommerce .hx-catalog-results ul.products,
.woocommerce-page .hx-catalog-results ul.products,
.hx-catalog-results .products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
}

.woocommerce .hx-catalog-results ul.products::before,
.woocommerce .hx-catalog-results ul.products::after {
  display: none;
}

.woocommerce .hx-catalog-results ul.products li.product,
.woocommerce-page .hx-catalog-results ul.products li.product,
.hx-catalog-results .hx-catalog-card {
  float: none;
  width: auto;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hx-catalog-card__inner {
  display: grid;
  min-height: 225px;
  grid-template-columns: minmax(112px, 0.82fr) minmax(0, 1.18fr);
  grid-template-areas: "media body";
  overflow: hidden;
  background: var(--hx-surface);
  border: 1px solid var(--hx-border);
  border-radius: 13px;
  box-shadow: 0 5px 18px rgba(var(--hx-primary-rgb), 0.055);
  transition: transform var(--hx-transition), box-shadow var(--hx-transition), border-color var(--hx-transition);
}

.hx-catalog-card__inner:hover {
  border-color: var(--hx-border);
  box-shadow: 0 15px 28px rgba(var(--hx-primary-rgb), 0.11);
  transform: translateY(-3px);
}

.hx-catalog-card__media {
  position: relative;
  display: block;
  min-width: 0;
  grid-area: media;
  padding: 0.65rem;
  overflow: hidden;
  background: linear-gradient(145deg, var(--hx-surface-soft), var(--hx-surface-soft));
}

.hx-catalog-card__media img,
.woocommerce ul.products li.product .hx-catalog-card__media img {
  width: 100%;
  height: 100%;
  min-height: 205px;
  margin: 0;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.hx-catalog-card__body {
  display: flex;
  min-width: 0;
  grid-area: body;
  justify-content: center;
  flex-direction: column;
  padding: 0.9rem;
}

.hx-catalog-card__category,
.hx-catalog-card__category a {
  color: var(--hx-primary);
  font-size: 0.67rem;
}

.woocommerce ul.products li.product .hx-catalog-card__body .woocommerce-loop-product__title,
.hx-catalog-card__body h2 {
  padding: 0;
  margin: 0.2rem 0 0.35rem;
  color: var(--hx-ink);
  font-size: 1rem;
  line-height: 1.5;
}

.hx-catalog-card__body p {
  display: -webkit-box;
  margin-bottom: 0.5rem;
  overflow: hidden;
  color: var(--hx-muted);
  font-size: 0.72rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hx-catalog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.hx-rating small {
  color: var(--hx-muted);
}

.hx-stock {
  color: var(--hx-muted);
  font-size: 0.67rem;
}

.hx-stock.is-in-stock {
  color: var(--hx-success);
}

.woocommerce ul.products li.product .hx-catalog-card__price,
.hx-catalog-card__price {
  display: flex;
  min-height: 30px;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.55rem;
  color: var(--hx-ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.hx-catalog-card__price del {
  color: var(--hx-muted);
  font-size: 0.65rem;
  font-weight: 500;
}

.hx-catalog-card__price ins {
  text-decoration: none;
}

.woocommerce ul.products li.product .hx-product-action,
.hx-product-action {
  min-height: 34px;
  padding: 0.42rem 0.65rem;
  margin: 0;
  background: var(--hx-surface);
  color: var(--hx-primary);
  border: 1px solid var(--hx-primary-soft);
  border-radius: 6px;
  font-size: 0.68rem;
}

.woocommerce ul.products li.product .hx-product-action:hover {
  background: var(--hx-primary);
  color: #fff;
}

.hx-catalog-results .woocommerce-pagination {
  margin-top: 2rem;
}

.hx-catalog-benefits {
  padding-block: 1.2rem;
  background: linear-gradient(90deg, var(--hx-surface-soft), var(--hx-primary-soft), var(--hx-surface-soft));
}

.hx-catalog-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hx-catalog-benefits__grid > div {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--hx-primary);
}

.hx-catalog-benefits__grid > div:not(:last-child) {
  border-inline-end: 1px solid var(--hx-border);
}

.hx-catalog-benefits__grid > div > .hx-icon {
  width: 2rem;
  height: 2rem;
}

.hx-catalog-benefits__grid span {
  display: grid;
}

.hx-catalog-benefits__grid strong {
  color: var(--hx-ink);
  font-size: 0.85rem;
}

.hx-catalog-benefits__grid small {
  color: var(--hx-muted);
  font-size: 0.7rem;
}

.hx-catalog--fallback .breadcrumbs {
  width: auto;
  padding: 0;
}

.hx-catalog--fallback .hx-category-chip {
  cursor: default;
}

@media (max-width: 1200px) {
  .site-header__inner {
    grid-template-columns: auto auto 1fr;
  }

  .hx-header-account,
  .hx-header-wishlist {
    display: none;
  }

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

  .hx-quick-booking__summary {
    grid-column: 1 / -1;
    border-top: 1px solid var(--hx-border);
  }

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

  .woocommerce .hx-catalog-results ul.products,
  .woocommerce-page .hx-catalog-results ul.products,
  .hx-catalog-results .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hx-topbar__business span:last-child {
    display: none;
  }

  .hx-home-hero {
    min-height: 720px;
    grid-template-columns: 1fr;
    grid-template-rows: 360px 1fr;
    grid-template-areas: "media" "content";
  }

  .hx-home-hero__copy {
    width: min(92%, 650px);
    padding-block: 2rem 4.5rem;
  }

  .hx-home-hero__copy h1 {
    max-width: none;
    font-size: clamp(2.7rem, 8vw, 4.5rem);
  }

  .hx-quick-booking {
    margin-top: -34px;
  }

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

  .hx-booking-field:nth-child(2) {
    border-inline-end: 0;
  }

  .hx-trust-strip__grid,
  .hx-catalog-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hx-trust-item:nth-child(2)::after,
  .hx-catalog-benefits__grid > div:nth-child(2) {
    border-inline-end: 0;
  }

  .hx-catalog-hero__inner {
    min-height: 220px;
    grid-template-columns: 1fr 0.8fr;
  }

  .hx-catalog-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "results";
  }

  .hx-filter-toggle {
    display: inline-flex;
  }

  .hx-shop-filters {
    position: fixed;
    z-index: 1200;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: min(360px, 88vw);
    max-height: 100vh;
    overflow-y: auto;
    border-radius: 0;
    box-shadow: -15px 0 40px rgba(37, 20, 24, 0.2);
    transform: translateX(110%);
    transition: transform 220ms ease;
  }

  .hx-shop-filters.is-open {
    transform: translateX(0);
  }

  .hx-filter-close {
    display: inline-grid;
    place-items: center;
  }

  body.has-open-shop-filters::after {
    position: fixed;
    z-index: 1190;
    inset: 0;
    background: rgba(26, 17, 20, 0.42);
    content: "";
  }
}

@media (max-width: 720px) {
  .hx-topbar__inner {
    justify-content: center;
  }

  .hx-topbar__business,
  .hx-topbar__contact {
    gap: 0.7rem;
  }

  .hx-topbar__business {
    display: none;
  }

  .hx-header-search,
  .hx-header-wishlist,
  .hx-header-account {
    display: none;
  }

  .hx-header-booking {
    min-width: 42px;
    width: 42px;
    padding: 0;
    font-size: 0;
  }

  .hx-header-booking .hx-icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  .hx-home-hero {
    min-height: 660px;
    grid-template-rows: 310px 1fr;
  }

  .hx-home-hero__copy {
    padding-bottom: 4rem;
  }

  .hx-home-hero__copy h1 {
    font-size: clamp(2.3rem, 11vw, 3.6rem);
  }

  .hx-quick-booking__form {
    grid-template-columns: 1fr;
  }

  .hx-booking-field {
    border-inline-end: 0;
    border-bottom: 1px solid var(--hx-border);
  }

  .hx-quick-booking__summary {
    align-items: stretch;
    flex-direction: column;
  }

  .hx-trust-strip__grid,
  .hx-showcase__grid,
  .hx-offers__grid,
  .hx-catalog-benefits__grid {
    grid-template-columns: 1fr;
  }

  .hx-trust-item::after,
  .hx-catalog-benefits__grid > div {
    border-inline-end: 0 !important;
  }

  .hx-trust-item:not(:last-child),
  .hx-catalog-benefits__grid > div:not(:last-child) {
    border-bottom: 1px solid var(--hx-border);
  }

  .hx-showcase-card {
    min-height: 170px;
  }

  .hx-catalog-hero__inner {
    min-height: 420px;
    grid-template-columns: 1fr;
    grid-template-rows: 190px 230px;
    grid-template-areas: "media" "copy";
  }

  .hx-catalog-hero__media {
    clip-path: ellipse(82% 95% at 50% 5%);
  }

  .hx-catalog-hero__copy {
    padding: 1.4rem 1rem;
  }

  .hx-wc-breadcrumb {
    align-self: center;
  }

  .hx-category-strip {
    justify-content: flex-start;
  }

  .hx-catalog-toolbar {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .hx-catalog-toolbar > div {
    width: 100%;
  }

  .hx-catalog-toolbar .woocommerce-ordering {
    flex: 1;
  }

  .hx-catalog-toolbar select {
    width: 100%;
  }

  .woocommerce .hx-catalog-results ul.products,
  .woocommerce-page .hx-catalog-results ul.products,
  .hx-catalog-results .products {
    grid-template-columns: 1fr;
  }

  .hx-catalog-card__inner {
    min-height: 210px;
    grid-template-columns: 135px minmax(0, 1fr);
  }
}

@media (max-width: 430px) {
  .site-header__actions {
    gap: 0.15rem;
  }

  .hx-home-hero {
    grid-template-rows: 270px 1fr;
  }

  .hx-home-hero .hero__actions {
    display: grid;
  }

  .hx-home-hero .button {
    width: 100%;
  }

  .hx-showcase-card {
    grid-template-columns: minmax(0, 1fr) 125px;
  }

  .hx-catalog-card__inner {
    grid-template-columns: 120px minmax(0, 1fr);
  }
}

.site-header__actions {
  direction: rtl;
}

.site-header__actions > * {
  direction: rtl;
}

/* Hair Xzed Core integration */
.hxz-archive-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.4rem}.hxz-entity-card,.hxz-person-card{overflow:hidden;border:1px solid var(--hx-border);border-radius:18px;background:var(--hx-surface);box-shadow:0 12px 30px rgba(var(--hx-primary-rgb),.06)}.hxz-entity-card img,.hxz-person-card img{width:100%;aspect-ratio:4/3;object-fit:cover}.hxz-entity-card>div,.hxz-person-card{padding:1.2rem}.hxz-person-card img{margin:-1.2rem -1.2rem 1rem;width:calc(100% + 2.4rem);aspect-ratio:4/5}.hxz-entity-card__meta{display:flex;justify-content:space-between;gap:1rem;margin:1rem 0;color:var(--hx-muted)}.hxz-people-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.4rem}.hxz-single-layout{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:2.5rem;align-items:start}.hxz-single-content>img{width:100%;max-height:600px;object-fit:cover;border-radius:24px;margin-bottom:1.5rem}.hxz-booking-sidebar{position:sticky;top:110px;display:grid;gap:1rem}.hxz-booking-sidebar__card,.hxz-related-list{padding:1.35rem;border:1px solid var(--hx-border);border-radius:18px;background:var(--hx-surface);box-shadow:0 12px 30px rgba(var(--hx-primary-rgb),.06)}.hxz-booking-sidebar__card>span{display:block;color:var(--hx-muted)}.hxz-booking-sidebar__card>strong{display:block;margin:.4rem 0;font-size:1.8rem}.hxz-related-list{display:grid;gap:.65rem}.hxz-related-list h2{font-size:1.1rem}.hxz-related-list a{padding:.65rem;border-radius:9px;background:var(--hx-surface-soft)}.hxz-profile{display:grid;grid-template-columns:minmax(280px,420px) minmax(0,1fr);gap:2.5rem;align-items:center}.hxz-profile__media img{width:100%;aspect-ratio:4/5;object-fit:cover;border-radius:24px}.hxz-link-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}.hxz-link-grid a{padding:1rem;border-radius:12px;background:var(--hx-surface);border:1px solid var(--hx-border);font-weight:700}.hxz-portfolio-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}.hxz-portfolio-grid article{overflow:hidden;border-radius:16px;background:var(--hx-surface)}.hxz-portfolio-grid img{width:100%;aspect-ratio:1/1;object-fit:cover}.hxz-portfolio-grid h2{padding:0 1rem 1rem;font-size:1.1rem}.hxz-before-after{display:grid;grid-template-columns:1fr 1fr;gap:1rem}.hxz-before-after figure{margin:0}.hxz-before-after img{width:100%;aspect-ratio:4/5;object-fit:cover;border-radius:16px}.hxz-before-after figcaption{text-align:center;margin-top:.5rem;font-weight:700}.hxz-faq{margin-top:2rem}.hxz-faq details{border-bottom:1px solid var(--hx-border);padding:1rem 0}.hxz-faq summary{cursor:pointer;font-weight:700}.service-card__image{display:block;margin:-1.4rem -1.4rem 1rem;width:calc(100% + 2.8rem)}.service-card__image img{width:100%;aspect-ratio:4/3;object-fit:cover}.service-card__meta{display:flex;justify-content:space-between;gap:1rem;margin:1rem 0;color:var(--hx-muted)}
@media(max-width:900px){.hxz-archive-grid,.hxz-people-grid,.hxz-portfolio-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.hxz-single-layout,.hxz-profile{grid-template-columns:1fr}.hxz-booking-sidebar{position:static}.hxz-link-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:620px){.hxz-archive-grid,.hxz-people-grid,.hxz-portfolio-grid,.hxz-link-grid,.hxz-before-after{grid-template-columns:1fr}}

/* Staff portraits. */
.hxz-person-card{padding:0;display:flex;flex-direction:column}
.hxz-person-card__media{display:block;overflow:hidden;background:var(--hx-surface-soft)}
.hxz-person-card__media img{display:block;width:100%;margin:0;aspect-ratio:4/5;object-fit:cover;transition:transform .35s ease}
.hxz-person-card:hover .hxz-person-card__media img{transform:scale(1.025)}
.hxz-person-card__body{display:flex;flex:1;flex-direction:column;align-items:flex-start;padding:1.2rem}
.hxz-person-card__body .button{margin-top:auto}
.hxz-person-card__placeholder,.hxz-profile__placeholder{display:grid;place-items:center;width:100%;aspect-ratio:4/5;background:linear-gradient(145deg,var(--hx-surface-soft),var(--hx-primary-soft));color:var(--hx-primary);font-size:clamp(4rem,10vw,8rem);font-weight:800}
.hxz-profile__placeholder{border-radius:24px}

/* 2.0.4 - mobile header placement, compact staff cards and homepage layout polish. */
.hxz-people-grid{
  grid-template-columns:repeat(auto-fit,minmax(230px,280px));
  justify-content:center;
  gap:1.25rem;
}
.hxz-person-card{
  width:100%;
  max-width:280px;
  border-radius:16px;
}
.hxz-person-card__media{
  aspect-ratio:1/1;
}
.hxz-person-card__media img,
.hxz-person-card__placeholder{
  width:100%;
  height:100%;
  aspect-ratio:1/1;
  object-fit:cover;
}
.hxz-person-card__placeholder{
  font-size:clamp(3.2rem,8vw,5.5rem);
}
.hxz-person-card__body{
  gap:.25rem;
  padding:1rem;
}
.hxz-person-card__body h2{
  margin:0;
  font-size:1.15rem;
  line-height:1.55;
}
.hxz-person-card__body .eyebrow{
  margin:.15rem 0;
  font-size:.76rem;
}
.hxz-person-card__body>p:not(.eyebrow){
  margin:.25rem 0 .8rem;
  color:var(--hx-muted);
  font-size:.86rem;
  line-height:1.75;
}
.hxz-person-card__body .button{
  width:100%;
  min-height:40px;
  padding:.55rem .75rem;
  font-size:.84rem;
}
.hx-quick-booking__form{
  grid-template-columns:repeat(4,minmax(0,1fr));
}
.hx-quick-booking__summary{
  grid-column:1/-1;
  min-width:0;
  border-top:1px solid var(--hx-border);
  text-align:start;
}
.hx-quick-booking__summary>div{
  min-width:0;
  gap:.2rem;
}
.hx-quick-booking__summary strong{
  font-size:1.05rem;
  line-height:1.6;
}
.hx-quick-booking__summary span{
  line-height:1.7;
}
.hx-offer-card__footer{
  align-items:flex-end;
  gap:.75rem;
}
.hx-offer-card__actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:.5rem;
}
.hx-offer-card__actions .button{
  min-height:38px;
  padding:.5rem .75rem;
  font-size:.78rem;
}

@media(max-width:1080px){
  .site-header__inner{
    display:flex;
    gap:.55rem;
  }
  .site-branding{
    order:1;
    min-width:0;
    margin-inline-end:auto;
  }
  .site-header__actions{
    order:2;
    justify-self:auto;
    gap:.4rem;
  }
  .menu-toggle{
    order:3;
    flex:0 0 44px;
  }
  .primary-navigation{
    order:4;
  }
}

@media(max-width:600px){
  .site-header__inner{gap:.4rem}
  .brand-mark{gap:.45rem}
  .brand-mark__symbol{width:38px;height:38px;font-size:1.75rem}
  .brand-mark strong{font-size:1.05rem}
  .brand-mark small{display:none}
  .site-header__actions .icon-button:not(.hx-cart-link){display:none}
  .menu-toggle{width:42px;height:42px;flex-basis:42px}
  .hxz-people-grid{grid-template-columns:minmax(0,300px);gap:1rem}
  .hxz-person-card{max-width:300px}
  .hxz-person-card__body h2{font-size:1.08rem}
  .hx-quick-booking__summary{
    align-items:stretch;
    gap:1rem;
    padding:1rem;
    text-align:right;
  }
  .hx-quick-booking__summary .button{width:100%}
  .hx-offer-card__footer{align-items:stretch;flex-direction:column}
  .hx-offer-card__actions{justify-content:stretch}
  .hx-offer-card__actions .button{flex:1;text-align:center}
}


/* --------------------------------------------------------------------------
   Hair Xzed 2.5 — native content management
   -------------------------------------------------------------------------- */

.hx-home-hero__media {
  background-image: var(--hx-home-hero-image);
}

.hx-showcase-card > picture {
  display: block;
  min-width: 0;
  height: 100%;
}

.hx-showcase-card > picture img {
  display: block;
}

.booking-cta--with-image {
  background:
    linear-gradient(90deg, rgba(var(--hx-primary-dark-rgb), 0.94), rgba(var(--hx-primary-rgb), 0.84)),
    var(--hx-booking-cta-image) center / cover no-repeat;
}

.page-hero--managed {
  position: relative;
  display: grid;
  min-height: clamp(300px, 35vw, 520px);
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.page-hero--managed .page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero--managed .page-hero__content > p {
  max-width: 680px;
  margin-inline: auto;
}

.page-hero--managed .page-hero__content > .button {
  margin-top: 1rem;
}

.page-hero__media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.page-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 17, 18, 0.78), rgba(46, 37, 39, 0.62));
  content: "";
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--with-media,
.page-hero--with-media h1,
.page-hero--with-media .eyebrow,
.page-hero--with-media .page-hero__content > p {
  color: #fff;
}

.page-hero--with-media.page-hero--light .page-hero__media::after {
  background: linear-gradient(90deg, rgba(255, 250, 248, 0.92), rgba(255, 240, 243, 0.76));
}

.page-hero--with-media.page-hero--light,
.page-hero--with-media.page-hero--light h1,
.page-hero--with-media.page-hero--light .eyebrow {
  color: var(--hx-ink);
}

.page-hero--with-media.page-hero--light .page-hero__content > p {
  color: var(--hx-muted);
}

.footer-contact-list a,
.footer-legal-links a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-legal-links {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  font-size: 0.86rem;
}

.hx-mobile-booking {
  position: fixed;
  z-index: 950;
  inset-inline: 16px;
  bottom: 14px;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  background: var(--hx-primary);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(var(--hx-primary-dark-rgb), 0.34);
  font-weight: 800;
}

.hx-mobile-booking:hover,
.hx-mobile-booking:focus-visible {
  background: var(--hx-primary-dark);
  color: #fff;
}

@media (max-width: 720px) {
  .hx-home-hero__media {
    background-image: var(--hx-home-hero-mobile-image, var(--hx-home-hero-image));
  }

  .booking-cta--with-image {
    background:
      linear-gradient(90deg, rgba(var(--hx-primary-dark-rgb), 0.94), rgba(var(--hx-primary-rgb), 0.84)),
      var(--hx-booking-cta-mobile-image, var(--hx-booking-cta-image)) center / cover no-repeat;
  }

  .hx-mobile-booking {
    display: flex;
  }

  body.has-hx-mobile-booking {
    padding-bottom: 82px;
  }
}

/* Phase 06: service catalog and before/after portfolio. */
.hxz-catalog-hero{position:relative;overflow:hidden}.hxz-catalog-hero::after{content:"";position:absolute;inset:auto -10% -70% auto;width:420px;aspect-ratio:1;border-radius:50%;background:rgba(255,255,255,.06);pointer-events:none}.section--compact{padding-block:clamp(2.5rem,6vw,5rem)}
.hxz-catalog-tabs{display:flex;gap:.65rem;overflow:auto;margin:0 0 1.6rem;padding:.25rem;scrollbar-width:thin}.hxz-catalog-tabs a{flex:0 0 auto;padding:.7rem 1rem;border:1px solid var(--hx-border);border-radius:999px;background:var(--hx-surface);color:var(--hx-text);font-weight:750}.hxz-catalog-tabs a:hover,.hxz-catalog-tabs a.is-active{border-color:var(--hx-primary);background:var(--hx-primary);color:#fff}
.hxz-service-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.35rem}.hxz-service-card{display:flex;min-width:0;flex-direction:column;overflow:hidden;border:1px solid var(--hx-border);border-radius:22px;background:var(--hx-surface);box-shadow:0 16px 38px rgba(var(--hx-primary-rgb),.07);transition:transform .2s ease,box-shadow .2s ease}.hxz-service-card:hover{transform:translateY(-4px);box-shadow:0 22px 46px rgba(var(--hx-primary-rgb),.12)}.hxz-service-card__media{position:relative;display:block;overflow:hidden;background:var(--hx-surface-soft);aspect-ratio:4/3}.hxz-service-card__media img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}.hxz-service-card:hover .hxz-service-card__media img{transform:scale(1.035)}.hxz-service-card__placeholder{display:grid;width:100%;height:100%;place-items:center;color:var(--hx-primary);font-size:3rem}.hxz-service-card__badge{position:absolute;top:1rem;right:1rem;padding:.4rem .7rem;border-radius:999px;background:rgba(255,255,255,.92);color:var(--hx-primary);font-size:.78rem;font-weight:850;backdrop-filter:blur(8px)}.hxz-service-card__body{display:flex;flex:1;flex-direction:column;padding:1.25rem}.hxz-service-card__heading{display:flex;align-items:flex-start;justify-content:space-between;gap:1rem}.hxz-service-card__heading h2{margin:0;font-size:1.18rem}.hxz-service-card__heading strong{flex:0 0 auto;color:var(--hx-primary);font-size:.95rem}.hxz-service-card__body>p{margin:.75rem 0;color:var(--hx-muted);line-height:1.8}.hxz-service-card__facts{display:flex;flex-wrap:wrap;gap:.45rem .85rem;margin:auto 0 1rem;padding:0;list-style:none;color:var(--hx-muted);font-size:.85rem}.hxz-service-card__facts li{display:inline-flex;align-items:center;gap:.35rem}.hxz-service-card__actions{display:flex;align-items:center;gap:.65rem}.hxz-service-card__actions .button{flex:1}.hxz-service-card__unavailable{display:block;padding:.7rem;border-radius:10px;background:var(--hx-surface-soft);color:var(--hx-muted);font-size:.82rem;text-align:center}
.hxz-empty-catalog{padding:3rem 1.5rem;border:1px dashed var(--hx-border);border-radius:22px;background:var(--hx-surface-soft);text-align:center}.hxz-empty-catalog h2{margin-top:0}
.hxz-service-hero{padding:clamp(2.5rem,7vw,6rem) 0;background:linear-gradient(135deg,var(--hx-surface-soft),var(--hx-surface))}.hxz-service-hero__grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,520px);gap:clamp(2rem,5vw,5rem);align-items:center}.hxz-service-hero__labels{display:flex;align-items:center;gap:.65rem}.hxz-pill{display:inline-flex;padding:.38rem .72rem;border-radius:999px;background:rgba(var(--hx-primary-rgb),.1);color:var(--hx-primary);font-size:.8rem;font-weight:800}.hxz-service-hero h1{max-width:14ch;margin:.7rem 0;font-size:clamp(2.25rem,6vw,4.5rem);line-height:1.15}.hxz-service-hero__summary{max-width:62ch;color:var(--hx-muted);font-size:1.08rem;line-height:2}.hxz-service-key-facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.75rem;margin:1.5rem 0;padding:0;list-style:none}.hxz-service-key-facts li{padding:1rem;border:1px solid var(--hx-border);border-radius:14px;background:rgba(255,255,255,.55)}.hxz-service-key-facts span,.hxz-service-key-facts strong{display:block}.hxz-service-key-facts span{margin-bottom:.35rem;color:var(--hx-muted);font-size:.82rem}.hxz-service-hero__actions{display:flex;flex-wrap:wrap;gap:.75rem}.hxz-service-hero__media{overflow:hidden;border-radius:30px;box-shadow:0 30px 70px rgba(var(--hx-primary-rgb),.18);aspect-ratio:4/3}.hxz-service-hero__media img{width:100%;height:100%;object-fit:cover}.hxz-service-hero__placeholder{display:grid;width:100%;height:100%;place-items:center;background:var(--hx-surface-soft);color:var(--hx-primary);font-size:5rem}.hxz-single-layout--service{grid-template-columns:minmax(0,1fr) 350px}.hxz-single-layout--service .hxz-single-content>img{display:none}.hxz-service-note{margin:2rem 0;padding:1.25rem;border-right:4px solid var(--hx-primary);border-radius:14px;background:var(--hx-surface-soft)}.hxz-service-note strong{display:block;margin-bottom:.35rem}.hxz-service-note p{margin:0;color:var(--hx-muted);line-height:1.9}.hxz-related-section{margin-top:3.5rem}.hxz-section-heading{display:flex;align-items:end;justify-content:space-between;gap:1.5rem;margin-bottom:1.25rem}.hxz-section-heading h2,.hxz-section-heading p{margin-block:.2rem}.hxz-section-heading>p{max-width:38ch;color:var(--hx-muted)}.hxz-specialist-mini-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}.hxz-specialist-mini-card{display:grid;grid-template-columns:100px minmax(0,1fr);gap:1rem;align-items:center;padding:1rem;border:1px solid var(--hx-border);border-radius:18px;background:var(--hx-surface)}.hxz-specialist-mini-card img,.hxz-avatar-placeholder{width:100px;aspect-ratio:4/5;border-radius:14px;object-fit:cover}.hxz-avatar-placeholder{display:grid;place-items:center;background:var(--hx-surface-soft);font-size:2rem}.hxz-specialist-mini-card h3{margin:0}.hxz-specialist-mini-card p{margin:.3rem 0 .75rem;color:var(--hx-muted)}.hxz-booking-sidebar__card--service dl{display:grid;gap:.55rem;margin:1rem 0}.hxz-booking-sidebar__card--service dl div{display:flex;justify-content:space-between;gap:1rem;padding-top:.55rem;border-top:1px solid var(--hx-border)}.hxz-booking-sidebar__card--service dt{color:var(--hx-muted)}.hxz-booking-sidebar__card--service dd{margin:0;font-weight:750}.hxz-related-chips{display:flex;flex-wrap:wrap;gap:.5rem}.hxz-related-chips a{display:inline-flex;padding:.45rem .7rem;border:1px solid var(--hx-border);border-radius:999px;background:var(--hx-surface-soft);font-size:.82rem;font-weight:700}.hxz-related-list .hxz-related-chips a{padding:.5rem .7rem;background:var(--hx-surface-soft)}
.hxz-portfolio-filters{display:grid;grid-template-columns:repeat(3,minmax(0,1fr)) auto;gap:.9rem;align-items:end;margin-bottom:1.75rem;padding:1rem;border:1px solid var(--hx-border);border-radius:18px;background:var(--hx-surface)}.hxz-portfolio-filters label{display:grid;gap:.4rem}.hxz-portfolio-filters label span{font-size:.82rem;font-weight:750}.hxz-portfolio-filters select{min-height:46px;border:1px solid var(--hx-border);border-radius:10px;background:var(--hx-surface);padding:.65rem}.hxz-portfolio-filters__actions{display:flex;gap:.5rem}.hxz-portfolio-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.1rem}.hxz-portfolio-card{overflow:hidden;border:1px solid var(--hx-border);border-radius:18px;background:var(--hx-surface);box-shadow:0 14px 34px rgba(var(--hx-primary-rgb),.06)}.hxz-portfolio-card>a,.hxz-portfolio-card__media{position:relative;display:block;overflow:hidden;aspect-ratio:1;background:var(--hx-surface-soft)}.hxz-portfolio-card img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}.hxz-portfolio-card:hover img{transform:scale(1.035)}.hxz-portfolio-card>a>span,.hxz-portfolio-card__media>span{position:absolute;right:.8rem;bottom:.8rem;padding:.42rem .68rem;border-radius:999px;background:rgba(28,22,20,.78);color:#fff;font-size:.76rem;font-weight:750}.hxz-portfolio-card h3{margin:0;padding:1rem;font-size:1rem}.hxz-portfolio-card__body{padding:1rem}.hxz-portfolio-card__body h2{margin:0;font-size:1.1rem}.hxz-portfolio-card__body>p{color:var(--hx-muted);line-height:1.75}.hxz-portfolio-card__author{font-size:.85rem}.hxz-portfolio-card--large .hxz-portfolio-card__media{aspect-ratio:4/5}
.hxz-portfolio-detail-hero{padding:clamp(2.5rem,7vw,5rem) 0 1.5rem;text-align:center;background:linear-gradient(180deg,var(--hx-surface-soft),transparent)}.hxz-portfolio-detail-hero h1{margin:.5rem auto;max-width:18ch;font-size:clamp(2rem,5vw,3.8rem)}.hxz-portfolio-detail-hero__summary{max-width:62ch;margin-inline:auto;color:var(--hx-muted);line-height:1.9}.hxz-portfolio-detail__chips{display:flex;justify-content:center;flex-wrap:wrap;gap:.5rem;margin-top:1rem}.hxz-compare{position:relative;max-width:900px;margin-inline:auto}.hxz-compare__canvas{position:relative;overflow:hidden;border-radius:24px;background:var(--hx-surface-soft);box-shadow:0 24px 60px rgba(var(--hx-primary-rgb),.15);aspect-ratio:4/5}.hxz-compare__image{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.hxz-compare__before{position:absolute;inset:0;clip-path:polygon(0 0,var(--hxz-compare-position) 0,var(--hxz-compare-position) 100%,0 100%)}.hxz-compare__divider{position:absolute;top:0;bottom:0;left:var(--hxz-compare-position);width:3px;transform:translateX(-50%);background:#fff;box-shadow:0 0 0 1px rgba(0,0,0,.15)}.hxz-compare__divider span{position:absolute;top:50%;left:50%;display:grid;width:44px;height:44px;transform:translate(-50%,-50%);place-items:center;border:2px solid #fff;border-radius:50%;background:var(--hx-primary);color:#fff;font-size:1.2rem}.hxz-compare__label{position:absolute;top:1rem;padding:.45rem .7rem;border-radius:999px;background:rgba(0,0,0,.55);color:#fff;font-size:.8rem;font-weight:800}.hxz-compare__label--before{left:1rem}.hxz-compare__label--after{right:1rem}.hxz-compare__range{width:100%;margin-top:1rem;accent-color:var(--hx-primary)}.hxz-portfolio-detail__content{max-width:820px;margin:2.5rem auto}.hxz-portfolio-detail__notes{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;margin-top:2rem}.hxz-portfolio-detail__notes article{padding:1.2rem;border:1px solid var(--hx-border);border-radius:16px;background:var(--hx-surface-soft)}.hxz-portfolio-detail__notes span{display:block;margin-bottom:.45rem;color:var(--hx-primary);font-size:.82rem;font-weight:850}.hxz-portfolio-detail__notes p{margin:0;line-height:1.9}.hxz-portfolio-gallery{margin-top:3rem}.hxz-portfolio-gallery__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.8rem}.hxz-portfolio-gallery__grid a{overflow:hidden;border-radius:16px;aspect-ratio:1}.hxz-portfolio-gallery__grid img{width:100%;height:100%;object-fit:cover;transition:transform .25s ease}.hxz-portfolio-gallery__grid a:hover img{transform:scale(1.04)}.hxz-portfolio-cta{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;margin-top:3rem;padding:clamp(1.5rem,4vw,2.5rem);border-radius:22px;background:var(--hx-primary);color:#fff}.hxz-portfolio-cta h2,.hxz-portfolio-cta p{margin:.25rem 0}.hxz-portfolio-cta .eyebrow{color:rgba(255,255,255,.75)}.hxz-portfolio-cta .button--primary{background:#fff;color:var(--hx-primary)}
@media(max-width:1020px){.hxz-service-grid,.hxz-portfolio-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.hxz-service-hero__grid,.hxz-single-layout--service{grid-template-columns:1fr}.hxz-service-hero__media{max-width:700px}.hxz-portfolio-filters{grid-template-columns:repeat(2,minmax(0,1fr))}.hxz-portfolio-filters__actions{grid-column:1/-1}.hxz-booking-sidebar{position:static}}
@media(max-width:680px){.hxz-service-grid,.hxz-portfolio-card-grid,.hxz-specialist-mini-grid,.hxz-portfolio-detail__notes,.hxz-portfolio-gallery__grid{grid-template-columns:1fr}.hxz-service-key-facts{grid-template-columns:1fr}.hxz-service-card__heading{display:block}.hxz-service-card__heading strong{display:block;margin-top:.4rem}.hxz-service-card__actions{align-items:stretch;flex-direction:column}.hxz-service-hero__actions{align-items:stretch;flex-direction:column}.hxz-service-hero__actions .button{width:100%}.hxz-specialist-mini-card{grid-template-columns:82px minmax(0,1fr)}.hxz-specialist-mini-card img,.hxz-avatar-placeholder{width:82px}.hxz-portfolio-filters{grid-template-columns:1fr}.hxz-portfolio-filters__actions{grid-column:auto;flex-direction:column}.hxz-portfolio-cta{align-items:stretch;flex-direction:column}.hxz-compare__canvas{border-radius:16px}}
.hxz-service-grid--home{margin-top:1rem}.hxz-service-grid--home .hxz-service-card__body{padding:1.1rem}.hxz-service-grid--home .hxz-service-card__heading h3{margin:0;font-size:1.12rem}
.hxz-service-card__heading :is(h2,h3,h4){margin:0;font-size:1.18rem}
.hxz-gallery-more{margin-top:1.5rem;text-align:center}.hxz-portfolio-card__body :is(h2,h3,h4){margin:0;font-size:1.1rem}

/* Phase 09: final shell, favorites and mobile actions. */
.hxz-single-title-row{display:flex;align-items:center;gap:1rem}.hxz-single-title-row h1{margin-inline-end:auto}.hxz-single-title-row--center{justify-content:center}.hxz-single-title-row--center h1{margin-inline-end:0}
.site-footer__trust{display:flex;align-items:flex-start;gap:.45rem;padding:.7rem .8rem;border:1px solid rgba(255,255,255,.1);border-radius:12px;background:rgba(255,255,255,.05);font-size:.82rem;line-height:1.7}.site-footer__trust .hx-icon{flex:0 0 auto;margin-top:.2rem;color:#fff}
.footer-contact-list{font-style:normal}.footer-contact-list>*{display:flex;align-items:flex-start;gap:.45rem}.footer-contact-list .hx-icon,.site-footer__hours .hx-icon{flex:0 0 auto;width:17px;height:17px;margin-top:.15rem}
.footer-menu{font-size:.9rem}.footer-menu a{width:max-content;max-width:100%;color:rgba(255,255,255,.76)}.footer-menu a:hover{color:#fff;text-decoration:underline;text-underline-offset:4px}
.site-footer__hours{margin-top:1.25rem;padding-top:1rem;border-top:1px solid rgba(255,255,255,.1)}.site-footer__hours strong{display:flex;align-items:center;gap:.45rem}.site-footer__hours p{margin:.4rem 0 0}
.hx-mobile-actions{display:none}
@media(max-width:720px){
  .hx-mobile-actions{position:fixed;z-index:950;inset-inline:12px;bottom:10px;display:grid;grid-template-columns:auto auto minmax(0,1fr);gap:.5rem;padding:.45rem;border:1px solid rgba(255,255,255,.75);border-radius:999px;background:rgba(255,255,255,.94);box-shadow:0 14px 36px rgba(var(--hx-primary-dark-rgb),.24);backdrop-filter:blur(14px)}
  .hx-mobile-actions__icon{position:relative;display:grid;width:44px;height:44px;place-items:center;border-radius:50%;background:var(--hx-surface-soft);color:var(--hx-primary-dark)}
  .hx-mobile-actions__icon>span{position:absolute;top:-3px;inset-inline-end:-3px;display:grid;min-width:18px;height:18px;padding-inline:3px;place-items:center;border:2px solid #fff;border-radius:99px;background:var(--hx-primary);color:#fff;font-size:.62rem}
  .hx-mobile-actions .hx-mobile-booking{position:static;inset:auto;bottom:auto;display:flex;min-height:44px;padding:.65rem .9rem;box-shadow:none}
  body.has-hx-mobile-booking{padding-bottom:78px}
}
