@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=DM+Sans:wght@300;400;500;700&display=swap");

:root {
  --bg: #f2e8e6;
  --bg-soft: #f8f1ef;
  --surface: #fffaf8;
  --surface-soft: #f7efec;
  --surface-tint: #f3e4e4;
  --wine-950: #1f0b11;
  --wine-900: #311017;
  --wine-850: #471722;
  --wine-800: #5b1f2d;
  --wine-700: #7c3041;
  --wine-600: #9a475b;
  --wine-500: #b86074;
  --gold: #d9b174;
  --gold-soft: #ecd1a0;
  --ink: #2f1a20;
  --ink-soft: #6d4a53;
  --muted: #8d6a72;
  --line: rgba(124, 48, 65, 0.12);
  --line-strong: rgba(124, 48, 65, 0.24);
  --shadow-soft: 0 18px 44px rgba(49, 16, 23, 0.08);
  --shadow-card: 0 28px 80px rgba(49, 16, 23, 0.12);
  --shadow-deep: 0 38px 100px rgba(31, 11, 17, 0.2);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(154, 71, 91, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(217, 177, 116, 0.12), transparent 22%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 18px 30px;
  margin: 18px 0 0;
  position: sticky;
  top: 16px;
  z-index: 20;
  border-radius: 999px;
  border: 1px solid rgba(236, 209, 160, 0.18);
  background: linear-gradient(135deg, rgba(31, 11, 17, 0.98), rgba(91, 31, 45, 0.96));
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff7f4;
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(236, 209, 160, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.site-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 247, 244, 0.68);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--gold-soft);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #fff7f4;
}

.hero,
.booking-copy,
.payment-card,
.admin-hero,
.split-banner {
  position: relative;
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  min-height: 84vh;
  margin: 24px 0 84px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(236, 209, 160, 0.18), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(184, 96, 116, 0.18), transparent 22%),
    linear-gradient(145deg, var(--wine-950), var(--wine-800));
  box-shadow: var(--shadow-deep);
}

.hero-copy,
.booking-copy {
  padding: 72px 64px;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.build-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--wine-700);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-head h2,
.section-intro h2,
.page-hero h1,
.booking-copy h2,
.payment-card h2,
.admin-section-head h2,
.admin-lock-card h2,
.split-banner h2,
.calendar-shell h3,
.slot-shell h3,
.selected-day-panel h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.hero-copy h1 {
  max-width: 660px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 5.6vw, 5.9rem);
  color: #fff7f4;
}

.hero-text,
.page-hero p,
.booking-copy p,
.payment-card p,
.service-card p,
.product-card p,
.contact-card p,
.portfolio-copy p,
.highlight-grid article p,
.site-footer p,
.form-note,
.empty-state {
  line-height: 1.85;
  color: var(--muted);
}

.hero-text {
  max-width: 520px;
  margin-bottom: 38px;
  color: rgba(255, 247, 244, 0.76);
}

.hero-actions,
.admin-actions,
.calendar-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--wine-950);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  box-shadow: 0 16px 34px rgba(217, 177, 116, 0.2);
}

.button-secondary {
  color: #fff7f4;
  border-color: rgba(255, 247, 244, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.button-outline {
  color: var(--wine-700);
  border-color: var(--line-strong);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--wine-600);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  padding: 40px;
}

.portrait-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(236, 209, 160, 0.12);
}

.portrait-main {
  inset: 44px 48px 38px 0;
}

.portrait-accent {
  width: 200px;
  height: 240px;
  right: 0;
  bottom: 40px;
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 24%, rgba(31, 11, 17, 0.54)),
    radial-gradient(circle at 34% 18%, rgba(255, 233, 226, 0.9), transparent 16%),
    linear-gradient(150deg, #ebd9d1 0%, #c98e82 34%, #7c3041 70%, #241015 100%);
}

.portrait-card span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  color: rgba(255, 247, 244, 0.9);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.divider-line {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 76px;
}

.divider-line::before,
.divider-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 48, 65, 0.24), transparent);
}

.divider-ornament {
  color: var(--wine-600);
}

.highlight-grid,
.portfolio-card,
.booking-board,
.service-card,
.product-card,
.contact-card,
.booking-panel,
.admin-card,
.selected-day-panel,
.calendar-shell,
.slot-shell,
.admin-lock-card {
  border: 1px solid var(--line);
  background: rgba(255, 250, 248, 0.84);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin-bottom: 84px;
}

.highlight-grid article {
  padding: 42px 34px;
  background: rgba(255, 250, 248, 0.92);
}

.highlight-number {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 3.1rem;
  color: var(--wine-600);
}

.highlight-grid h2 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.48rem;
  line-height: 1.2;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-head h2,
.section-intro h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
}

.portfolio-preview,
.portfolio-grid {
  display: grid;
  gap: 18px;
}

.portfolio-preview {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 82px;
}

.portfolio-grid-full {
  grid-template-columns: repeat(2, 1fr);
}

.portfolio-grid-all {
  grid-template-columns: repeat(2, 1fr);
}

.portfolio-card {
  overflow: hidden;
  border-radius: 24px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.portfolio-card:hover,
.service-card:hover,
.product-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.portfolio-media {
  position: relative;
  aspect-ratio: 4 / 5;
  padding: 12px 12px 0;
}

.portfolio-slider,
.portfolio-slides,
.portfolio-slide {
  height: 100%;
}

.portfolio-slider {
  position: relative;
}

.portfolio-slides {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface-tint);
}

.portfolio-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.portfolio-slide.is-active {
  opacity: 1;
}

.portfolio-image-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.82);
  color: var(--wine-800);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.portfolio-nav.prev {
  left: 18px;
}

.portfolio-nav.next {
  right: 18px;
}

.portfolio-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.portfolio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
}

.portfolio-dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: #fff7f4;
}

.portfolio-copy {
  padding: 18px 24px 28px;
}

.portfolio-copy .eyebrow,
.service-card .eyebrow,
.product-card .eyebrow,
.contact-card .eyebrow {
  margin-bottom: 8px;
  color: var(--wine-600);
}

.portfolio-copy h3,
.service-card h3,
.product-card h3,
.contact-card h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.66rem;
}

.booking-preview,
.booking-layout,
.split-banner,
.admin-metrics {
  display: grid;
  gap: 24px;
}

.booking-preview {
  grid-template-columns: 0.94fr 1.06fr;
  margin-bottom: 84px;
}

.booking-copy,
.payment-card,
.admin-hero {
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 84% 10%, rgba(217, 177, 116, 0.14), transparent 24%),
    linear-gradient(150deg, var(--wine-900), var(--wine-700));
  box-shadow: var(--shadow-deep);
}

.booking-copy h2,
.payment-card h2,
.admin-hero h1 {
  margin-bottom: 16px;
  color: #fff7f4;
}

.booking-copy p,
.payment-card p,
.admin-hero p {
  color: rgba(255, 247, 244, 0.74);
}

.booking-board,
.booking-panel,
.admin-card {
  border-radius: var(--radius-xl);
  padding: 32px;
}

.booking-board-scroll .booking-board-list {
  max-height: 420px;
  overflow: auto;
  padding-right: 4px;
  min-height: 260px;
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
}

.admin-sidebar {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px;
  position: sticky;
  top: 110px;
}

.admin-content {
  display: grid;
  gap: 20px;
}

.admin-tab {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--wine-800);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.admin-tab.is-active {
  border-color: var(--wine-600);
  background: rgba(154, 71, 91, 0.08);
}

.booking-board h3,
.booking-panel h2,
.admin-lock-card h2 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.booking-board-list,
.booking-form,
.proof-preview,
.admin-form,
.admin-list,
.payment-meta,
.selected-day-bookings,
.admin-upload-preview {
  display: grid;
  gap: 14px;
}

.upload-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--wine-700);
  font-size: 0.76rem;
}

.booking-entry,
.admin-list-item,
.day-booking-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 15px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.day-booking-item {
  grid-template-columns: auto 1fr;
}

.booking-badge,
.metric-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(154, 71, 91, 0.1);
  color: var(--wine-700);
  font-size: 0.78rem;
}

.booking-status {
  color: var(--wine-700);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero {
  padding: 68px 0 40px;
  margin-bottom: 46px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
}

.service-layout,
.product-layout,
.contact-layout,
.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card,
.product-card,
.contact-card {
  padding: 32px;
  border-radius: var(--radius-xl);
}

.service-meta,
.product-chips,
.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.service-meta span,
.product-chips span,
.contact-pills span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.booking-layout {
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  align-items: start;
  padding-bottom: 60px;
}

.booking-layout-simple {
  align-items: start;
}

.booking-page-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 20px;
  align-items: start;
  padding-bottom: 60px;
}

.booking-page-simple {
  align-items: start;
}

.booking-main-card,
.booking-side-card {
  display: grid;
  gap: 18px;
}

.booking-info-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
}

.booking-calendar-card {
  padding: 24px;
}

.booking-calendar-inline {
  margin-bottom: 0;
  padding: 18px;
}

.payment-card-compact {
  padding: 28px;
}

.booking-form-card {
  margin-bottom: 0;
}

.inline-booking-hints {
  max-height: 160px;
  overflow: auto;
  padding-right: 4px;
}

.booking-picker-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.picker-trigger {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.86);
  text-align: left;
  cursor: pointer;
}

.picker-label {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.picker-trigger strong {
  font-size: 1rem;
  color: var(--wine-800);
}

.picker-popover {
  margin-top: -4px;
}

.booking-form label,
.admin-form label {
  display: grid;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.admin-form input,
.admin-form select,
.admin-form textarea,
.admin-booking-status {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.admin-form input:focus,
.admin-form textarea:focus,
.admin-booking-status:focus {
  outline: none;
  border-color: var(--wine-600);
  box-shadow: 0 0 0 4px rgba(154, 71, 91, 0.08);
}

.booking-form .button,
.admin-form .button {
  width: 100%;
}

.booking-hidden-inputs {
  display: none;
}

.calendar-shell,
.slot-shell,
.selected-day-panel {
  padding: 22px;
  border-radius: var(--radius-lg);
  margin-bottom: 18px;
}

.simple-calendar-shell {
  background: linear-gradient(180deg, rgba(255, 250, 248, 0.95), rgba(246, 236, 234, 0.88));
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.calendar-grid-month {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-day,
.slot-chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.calendar-day {
  display: grid;
  gap: 6px;
  min-height: 74px;
  padding: 10px;
  border-radius: 14px;
  text-align: left;
  cursor: pointer;
}

.calendar-day span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--wine-800);
}

.calendar-day small,
.slot-chip small {
  color: var(--muted);
  line-height: 1.4;
}

.calendar-day.is-selected,
.slot-chip.is-selected {
  border-color: var(--wine-600);
  background: rgba(154, 71, 91, 0.08);
}

.calendar-day.is-muted {
  opacity: 0.48;
}

.calendar-day.is-past {
  visibility: hidden;
  pointer-events: none;
}

.calendar-day.is-past small {
  color: var(--muted);
}

/* Location autocomplete */
.location-search-wrap {
  position: relative;
}

.location-search-wrap input {
  width: 100%;
}

.location-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 100;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.location-suggestion-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  padding: 12px 16px;
  text-align: left;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  transition: background 0.15s;
}

.location-suggestion-item:last-child {
  border-bottom: none;
}

.location-suggestion-item:hover {
  background: var(--surface-tint);
}

.suggestion-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.suggestion-detail {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.3;
}

.location-map-preview {
  margin-top: 10px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}

.location-map-preview iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: none;
}

.location-map-clear {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--wine-700);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  letter-spacing: 0.04em;
}

.location-map-clear:hover {
  background: #fff;
}

.slot-grid-simple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* Time Grid Slot - clean grid instead of clock dial */
.time-dial-card {
  position: relative;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 250, 248, 0.95), rgba(246, 236, 234, 0.88));
}

.time-dial {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.time-grid-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px 6px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  text-align: center;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
  min-height: 64px;
}

.time-grid-slot:hover:not(:disabled) {
  border-color: var(--wine-500);
  background: rgba(154, 71, 91, 0.07);
  transform: translateY(-1px);
}

.slot-time {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--wine-800);
  letter-spacing: 0.01em;
}

.slot-time em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--wine-600);
  font-weight: 500;
}

.slot-period {
  font-size: 0.67rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.slot-status {
  font-size: 0.62rem;
  color: var(--muted);
}

.time-grid-slot.is-booked {
  cursor: not-allowed;
  opacity: 0.5;
  background: rgba(115, 83, 92, 0.1);
}

.time-grid-slot.is-booked .slot-status {
  color: var(--wine-600);
  font-weight: 600;
}

.time-grid-slot.is-selected {
  border-color: var(--wine-600);
  background: rgba(154, 71, 91, 0.12);
}

.time-grid-slot.is-selected .slot-time {
  color: var(--wine-700);
}

.selected-slot-label {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px dashed var(--line-strong);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.66);
  margin-bottom: 12px;
  font-size: 0.88rem;
}

/* Payment QR simplified */
.payment-panel {
  position: sticky;
  top: 104px;
}

.payment-card {
  padding: 34px;
  margin-bottom: 16px;
}

.payment-qr {
  display: block;
  margin: 16px auto;
  max-width: 180px;
  width: 100%;
  border-radius: var(--radius-md);
  border: 4px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.proof-image {
  max-width: 220px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

.proof-meta {
  display: inline-grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
}

.split-banner {
  grid-template-columns: repeat(2, 1fr);
  padding: 52px;
  margin-bottom: 84px;
}

.split-banner h2 {
  color: #fff7f4;
  font-size: clamp(2rem, 4vw, 3rem);
}

.visitor-mini-stats {
  display: grid;
  gap: 12px;
}

.visitor-mini-stats article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(236, 209, 160, 0.12);
  color: rgba(255, 247, 244, 0.84);
  background: rgba(255, 255, 255, 0.03);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 42px;
  margin: 0 0 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--wine-950), var(--wine-800));
}

.site-footer .brand-mark,
.site-footer a {
  color: #fff7f4;
}

.site-footer p {
  color: rgba(255, 247, 244, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inner-page {
  padding-bottom: 56px;
}

.admin-hero {
  padding: 48px;
  margin: 24px 0 28px;
  border-radius: var(--radius-xl);
}

.admin-hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 4rem);
}

.admin-metrics {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px;
}

.metric-card {
  display: grid;
  gap: 10px;
}

.metric-card strong {
  font-size: 2.4rem;
  color: var(--wine-700);
}

.admin-grid {
  margin-bottom: 24px;
  align-items: start;
}

.admin-section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-table-wrap {
  overflow: auto;
}

.visitor-scroll {
  max-height: 440px;
  overflow: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.selected-day-bookings {
  max-height: 220px;
  overflow: auto;
  padding-right: 4px;
}

.booking-board-list::-webkit-scrollbar,
.selected-day-bookings::-webkit-scrollbar,
.visitor-scroll::-webkit-scrollbar {
  width: 8px;
}

.booking-board-list::-webkit-scrollbar-thumb,
.selected-day-bookings::-webkit-scrollbar-thumb,
.visitor-scroll::-webkit-scrollbar-thumb {
  background: rgba(124, 48, 65, 0.35);
  border-radius: 999px;
}

.booking-board-list::-webkit-scrollbar-track,
.selected-day-bookings::-webkit-scrollbar-track,
.visitor-scroll::-webkit-scrollbar-track {
  background: rgba(124, 48, 65, 0.08);
  border-radius: 999px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.72);
}

.admin-table th,
.admin-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.92rem;
}

.admin-table th {
  position: sticky;
  top: 0;
  background: var(--surface);
  color: var(--wine-700);
}

.admin-lock {
  display: flex;
  justify-content: center;
}

.admin-lock-card {
  width: min(520px, 100%);
  padding: 36px;
  border-radius: var(--radius-xl);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: none;
  letter-spacing: normal;
}

.checkbox-row input {
  width: auto;
}

.empty-state {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
}

.pricelist-page {
  display: grid;
  gap: 42px;
}

.pricelist-hero,
.regular-pricelist,
.product-used {
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 16% 12%, rgba(236, 209, 160, 0.16), transparent 24%),
    linear-gradient(155deg, var(--wine-900), #7f2323 72%, var(--wine-950));
  color: #fff7f4;
  box-shadow: var(--shadow-deep);
}

.pricelist-hero {
  margin-top: 24px;
  padding: 58px;
}

.pricelist-hero h1,
.price-section-title h2 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.94;
  text-transform: uppercase;
  color: #ffe6bd;
}

.pricelist-hero h1 {
  font-size: clamp(3.2rem, 9vw, 7rem);
}

.pricelist-hero p:last-child {
  max-width: 620px;
  margin-top: 16px;
  color: rgba(255, 247, 244, 0.78);
  line-height: 1.75;
}

.price-portfolio {
  display: grid;
  gap: 24px;
}

.price-look-group {
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(236, 209, 160, 0.2);
  background: linear-gradient(145deg, #7e2424, var(--wine-900));
  box-shadow: var(--shadow-card);
}

.price-look-group h2 {
  margin-bottom: 22px;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: #ffe6bd;
}

.price-look-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-look-card {
  display: grid;
  gap: 10px;
}

.price-look-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 247, 244, 0.12);
}

.price-look-card figcaption {
  min-height: 2.6em;
  color: rgba(255, 247, 244, 0.78);
  font-size: 0.78rem;
  line-height: 1.35;
  text-align: center;
}

.regular-pricelist,
.product-used {
  padding: clamp(34px, 6vw, 68px);
}

.price-section-title {
  margin-bottom: 34px;
  text-align: center;
}

.price-section-title .eyebrow {
  justify-content: center;
  color: var(--gold-soft);
}

.price-section-title h2 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.price-menu {
  width: min(760px, 100%);
  margin: 0 auto;
}

.price-item {
  padding: 28px 0 34px;
  border-bottom: 2px solid rgba(255, 247, 244, 0.82);
}

.price-item + .price-item {
  margin-top: 10px;
}

.price-item-head {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-bottom: 26px;
  text-align: center;
}

.price-item-head h3 {
  max-width: 560px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  line-height: 1.12;
}

.price-item-head strong {
  color: #ffe6bd;
  font-family: var(--serif);
  font-size: 1.85rem;
}

.price-item dl {
  display: grid;
  gap: 8px;
}

.price-item dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  color: rgba(255, 247, 244, 0.88);
}

.price-item dt,
.price-item dd {
  font-size: 1rem;
}

.price-item dd {
  font-variant-numeric: tabular-nums;
}

.price-notes {
  display: grid;
  gap: 8px;
  padding-top: 28px;
  color: rgba(255, 247, 244, 0.86);
}

.product-used-list {
  display: grid;
  gap: 34px;
}

.product-used-card {
  display: grid;
  gap: 18px;
}

.product-used-card h3 {
  text-align: center;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: #fff7f4;
}

.brand-board {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  padding: 26px;
  border-radius: 8px;
  background: #fffaf8;
  box-shadow: 0 20px 60px rgba(31, 11, 17, 0.18);
}

.brand-board span {
  color: var(--wine-950);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricelist-page {
  gap: clamp(28px, 5vw, 58px);
}

.pricelist-hero {
  min-height: 38vh;
  display: grid;
  align-content: center;
  padding: clamp(54px, 9vw, 110px) clamp(26px, 8vw, 92px);
  margin-bottom: 0;
  border: 1px solid rgba(236, 209, 160, 0.18);
  background:
    linear-gradient(145deg, rgba(31, 11, 17, 0.1), rgba(31, 11, 17, 0.52)),
    linear-gradient(150deg, var(--wine-950), #842323 64%, var(--wine-900));
}

.pricelist-hero .eyebrow {
  color: #f5d89a;
}

.pricelist-hero h1 {
  max-width: 820px;
  font-size: clamp(4.4rem, 14vw, 10rem);
  letter-spacing: 0;
  text-transform: none;
}

.price-portfolio {
  gap: clamp(22px, 4vw, 38px);
}

.price-look-group {
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(124, 48, 65, 0.14);
  background: rgba(255, 250, 248, 0.82);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.price-look-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--wine-600);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.price-look-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.price-look-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  padding: 2px 2px 18px;
}

.price-look-track::-webkit-scrollbar {
  height: 8px;
}

.price-look-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(124, 48, 65, 0.32);
}

.price-look-card {
  min-width: 0;
  scroll-snap-align: start;
}

.price-look-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(124, 48, 65, 0.1);
  box-shadow: 0 18px 40px rgba(49, 16, 23, 0.1);
}

.price-look-card figcaption {
  margin-top: 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.15;
  text-align: left;
}

.regular-pricelist,
.product-used {
  border: 1px solid rgba(236, 209, 160, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 22%),
    linear-gradient(150deg, #54141b, #842323 58%, #3a1016);
}

.price-section-title {
  margin-bottom: clamp(30px, 5vw, 52px);
}

.price-section-title .eyebrow {
  margin-bottom: 12px;
  justify-content: center;
  color: #f5d89a;
  font-size: 0.7rem;
  font-weight: 700;
}

.price-section-title h2 {
  color: #ffe5b4;
  letter-spacing: 0;
  text-shadow: 0 12px 34px rgba(31, 11, 17, 0.28);
}

.price-item {
  padding: clamp(26px, 4vw, 38px) 0;
  border-bottom: 1px solid rgba(255, 247, 244, 0.66);
}

.price-item-head h3 {
  color: #fffaf8;
  font-weight: 700;
  text-wrap: balance;
}

.price-item-head strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 6px 18px;
  border-radius: 999px;
  color: #ffe5b4;
  background: rgba(255, 247, 244, 0.06);
  box-shadow: inset 0 0 0 1px rgba(236, 209, 160, 0.2);
}

.price-item dl {
  width: min(660px, 100%);
  margin: 0 auto;
}

.price-item dl div {
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 247, 244, 0.09);
}

.price-item dl div:last-child {
  border-bottom: none;
}

.price-item dt {
  color: rgba(255, 247, 244, 0.9);
}

.price-item dd {
  color: #fff8eb;
  font-weight: 700;
}

.price-notes {
  width: min(660px, 100%);
  margin: 0 auto;
  padding-top: 30px;
}

.price-notes p {
  position: relative;
  padding-left: 18px;
  line-height: 1.55;
}

.price-notes p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f5d89a;
}

.product-used-list {
  width: min(860px, 100%);
  margin: 0 auto;
}

.product-used-card {
  gap: 14px;
}

.product-used-card h3 {
  color: #fffaf8;
  font-weight: 700;
}

.brand-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  justify-content: stretch;
  padding: clamp(16px, 3vw, 26px);
  border-radius: 8px;
  background: rgba(255, 250, 248, 0.96);
}

.brand-logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(124, 48, 65, 0.08);
  background: #fff;
}

.brand-logo-tile img {
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
}

.brand-logo-tile b {
  display: none;
  color: var(--wine-950);
  font-family: var(--serif);
  font-size: clamp(0.94rem, 2.2vw, 1.35rem);
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.brand-logo-tile.logo-fallback b {
  display: block;
}

/* Final pricelist polish */
.pricelist-hero {
  min-height: 292px;
  padding: 64px;
  border-radius: 22px;
}

.pricelist-hero h1 {
  font-size: clamp(4rem, 9vw, 6.2rem);
}

.price-portfolio {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.price-look-group {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.price-look-eyebrow {
  margin: 0 0 14px;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
}

.price-look-slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-tint);
  box-shadow: 0 12px 34px rgba(49, 16, 23, 0.1);
}

.price-look-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0;
  overflow-x: auto;
  padding: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.price-look-track::-webkit-scrollbar {
  display: none;
}

.price-look-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  scroll-snap-align: start;
}

.price-swipe-hint {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0;
  color: var(--wine-800);
  background: rgba(255, 250, 248, 0.8);
  transform: translateY(-50%);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.1rem;
  box-shadow: 0 8px 18px rgba(49, 16, 23, 0.12);
}

.price-swipe-left {
  left: 10px;
}

.price-swipe-right {
  right: 10px;
}

.price-look-group h3 {
  margin-top: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 2.4vw, 1.38rem);
  font-weight: 500;
  line-height: 1.2;
}

.regular-pricelist {
  padding-top: clamp(42px, 7vw, 74px);
}

.regular-pricelist .price-section-title {
  margin-bottom: 22px;
}

.regular-pricelist .price-section-title h2 {
  font-size: clamp(3.4rem, 8vw, 6.4rem);
}

.price-menu {
  width: min(820px, 100%);
}

.price-item {
  padding: 34px 0;
}

.price-item-head {
  gap: 14px;
  margin-bottom: 22px;
}

.price-item-head h3 {
  max-width: 560px;
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
}

.price-item dl {
  gap: 0;
}

.price-item dl div {
  min-height: 40px;
}

.price-item dt,
.price-item dd,
.price-notes p {
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 700;
}

.product-used {
  padding-top: clamp(48px, 8vw, 86px);
}

.product-used .price-section-title h2 {
  font-size: clamp(2.9rem, 7vw, 5.8rem);
}

.brand-board {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
}

.brand-logo-tile {
  min-height: 70px;
  background: #fff;
}

.brand-logo-tile img {
  max-height: 48px;
}

/* Compact hero + glass product area */
.pricelist-hero {
  min-height: 190px;
  padding: 42px 48px;
}

.pricelist-hero h1 {
  font-size: clamp(3.1rem, 7vw, 4.7rem);
}

.product-used {
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  box-shadow: 0 22px 70px rgba(49, 16, 23, 0.1);
}

.product-used .price-section-title .eyebrow {
  color: var(--wine-600);
}

.product-used .price-section-title h2,
.product-used-card h3 {
  color: var(--wine-900);
  text-shadow: none;
}

.product-used .price-section-title .eyebrow::before {
  background: currentColor;
}

.product-used-card h3 {
  margin-bottom: 2px;
}

.brand-board {
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 16px 50px rgba(49, 16, 23, 0.08);
}

.brand-logo-tile {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(12px);
}

/* Glassmorphism product-used, livelier and clearer */
.product-used {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.16)),
    linear-gradient(145deg, rgba(255, 248, 238, 0.52), rgba(141, 106, 114, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(28px) saturate(1.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(124, 48, 65, 0.06),
    0 30px 90px rgba(49, 16, 23, 0.14);
}

.product-used::before {
  content: "";
  position: absolute;
  inset: -28% -8% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 177, 116, 0.36), transparent 68%);
  z-index: -1;
}

.product-used::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 71, 91, 0.2), transparent 70%);
  z-index: -1;
}

.product-used .price-section-title {
  margin-bottom: 28px;
}

.product-used .price-section-title h2 {
  color: var(--wine-900);
  background: linear-gradient(135deg, var(--wine-950), var(--wine-700) 56%, #b77b50);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-used-list {
  gap: 24px;
}

.product-used-card {
  padding: clamp(16px, 2.5vw, 24px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.16));
  backdrop-filter: blur(22px) saturate(1.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 18px 52px rgba(49, 16, 23, 0.09);
}

.product-used-card h3 {
  color: var(--wine-850);
}

.brand-board {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 18px 42px rgba(49, 16, 23, 0.08);
}

.brand-logo-tile {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 248, 0.48));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 24px rgba(49, 16, 23, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.brand-logo-tile:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 18px 36px rgba(49, 16, 23, 0.12);
}

/* Pricelist-only glassmorphism layer */
body[data-page="pricelist"] {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.75), transparent 26%),
    radial-gradient(circle at 88% 20%, rgba(217, 177, 116, 0.22), transparent 25%),
    radial-gradient(circle at 45% 88%, rgba(154, 71, 91, 0.22), transparent 30%),
    linear-gradient(180deg, #f7efec 0%, #eadbd8 100%);
}

body[data-page="pricelist"] .site-header,
body[data-page="pricelist"] .site-footer,
body[data-page="pricelist"] .pricelist-hero,
body[data-page="pricelist"] .regular-pricelist,
body[data-page="pricelist"] .product-used,
body[data-page="pricelist"] .price-look-group,
body[data-page="pricelist"] .price-look-slider,
body[data-page="pricelist"] .price-item-head strong,
body[data-page="pricelist"] .brand-board,
body[data-page="pricelist"] .brand-logo-tile,
body[data-page="pricelist"] .product-used-card {
  backdrop-filter: blur(24px) saturate(1.25);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
}

body[data-page="pricelist"] .site-header {
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, rgba(31, 11, 17, 0.86), rgba(91, 31, 45, 0.76));
}

body[data-page="pricelist"] .pricelist-hero,
body[data-page="pricelist"] .regular-pricelist {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(150deg, rgba(49, 16, 23, 0.94), rgba(132, 35, 35, 0.86) 62%, rgba(58, 16, 22, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 28px 86px rgba(49, 16, 23, 0.18);
}

body[data-page="pricelist"] .price-look-group {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(255, 250, 248, 0.18));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 50px rgba(49, 16, 23, 0.1);
}

body[data-page="pricelist"] .price-look-slider {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 14px 36px rgba(49, 16, 23, 0.1);
}

body[data-page="pricelist"] .price-swipe-hint {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body[data-page="pricelist"] .price-item {
  border-bottom-color: rgba(255, 255, 255, 0.34);
}

body[data-page="pricelist"] .price-item dl div {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

body[data-page="pricelist"] .price-item-head strong {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

body[data-page="pricelist"] .site-footer {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(31, 11, 17, 0.88), rgba(91, 31, 45, 0.78));
}

@media (max-width: 760px) {
  body[data-page="pricelist"] .price-look-group {
    padding: 10px;
    border-radius: 14px;
  }
}

/* Mobile-first final tuning for the pricelist page */
body[data-page="pricelist"] {
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 247, 244, 0.64), transparent 24%),
    linear-gradient(180deg, #f2e8e6 0%, #eadbd8 100%);
}

body[data-page="pricelist"] .pricelist-hero,
body[data-page="pricelist"] .regular-pricelist {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    linear-gradient(145deg, #4b1119 0%, #8a2a31 54%, #4a1119 100%);
}

body[data-page="pricelist"] .pricelist-hero {
  min-height: 142px;
  padding: 30px 38px;
  border-radius: 16px;
}

body[data-page="pricelist"] .pricelist-hero h1 {
  font-size: clamp(2.9rem, 6.5vw, 4.6rem);
  line-height: 0.92;
}

body[data-page="pricelist"] .pricelist-hero .eyebrow {
  margin-bottom: 10px;
}

body[data-page="pricelist"] .price-portfolio {
  align-items: start;
}

body[data-page="pricelist"] .price-look-group {
  padding: 14px;
  border-radius: 16px;
}

body[data-page="pricelist"] .price-look-slider {
  width: 92%;
  margin: 0 auto;
  border-radius: 7px;
}

body[data-page="pricelist"] .price-look-photo {
  aspect-ratio: 1 / 1;
}

body[data-page="pricelist"] .price-look-group h3 {
  width: 92%;
  margin: 10px auto 0;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
}

body[data-page="pricelist"] .regular-pricelist {
  padding: clamp(34px, 5.4vw, 54px) clamp(24px, 5vw, 56px);
  border-radius: 18px;
}

body[data-page="pricelist"] .regular-pricelist .price-section-title h2 {
  font-size: clamp(2.9rem, 6.2vw, 4.8rem);
}

body[data-page="pricelist"] .price-item {
  padding: 26px 0;
}

body[data-page="pricelist"] .price-item-head h3 {
  font-size: clamp(1.28rem, 2.4vw, 1.78rem);
}

body[data-page="pricelist"] .price-item-head strong {
  min-width: 112px;
  padding: 5px 15px;
  font-size: 1.3rem;
}

body[data-page="pricelist"] .price-menu {
  width: min(720px, 100%);
}

body[data-page="pricelist"] .product-used {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.16)),
    linear-gradient(145deg, rgba(138, 42, 49, 0.1), rgba(75, 17, 25, 0.05));
}

body[data-page="pricelist"] .product-used .price-section-title h2 {
  background: linear-gradient(135deg, #4b1119, #8a2a31 62%, #d6a86c);
  -webkit-background-clip: text;
  background-clip: text;
}

@media (max-width: 760px) {
  body[data-page="pricelist"] .site-shell {
    width: calc(100% - 22px);
  }

  body[data-page="pricelist"] .pricelist-page {
    gap: 26px;
  }

  body[data-page="pricelist"] .pricelist-hero {
    min-height: 118px;
    padding: 24px 22px;
    border-radius: 14px;
  }

  body[data-page="pricelist"] .pricelist-hero h1 {
    font-size: clamp(2.7rem, 13vw, 3.5rem);
  }

  body[data-page="pricelist"] .price-portfolio {
    gap: 18px 10px;
  }

  body[data-page="pricelist"] .price-look-group {
    padding: 8px;
    border-radius: 12px;
  }

  body[data-page="pricelist"] .price-look-slider,
  body[data-page="pricelist"] .price-look-group h3 {
    width: 88%;
  }

  body[data-page="pricelist"] .price-look-eyebrow {
    margin-bottom: 9px;
    font-size: 0.56rem;
    letter-spacing: 0.2em;
  }

  body[data-page="pricelist"] .price-look-group h3 {
    font-size: 0.86rem;
  }

  body[data-page="pricelist"] .regular-pricelist {
    padding: 30px 20px;
    border-radius: 14px;
  }

  body[data-page="pricelist"] .regular-pricelist .price-section-title h2,
  body[data-page="pricelist"] .product-used .price-section-title h2 {
    font-size: clamp(2.55rem, 13vw, 3.45rem);
  }

  body[data-page="pricelist"] .price-item {
    padding: 22px 0;
  }

  body[data-page="pricelist"] .price-item-head {
    gap: 10px;
    margin-bottom: 16px;
  }

  body[data-page="pricelist"] .price-item-head h3 {
    font-size: 1.18rem;
  }

  body[data-page="pricelist"] .price-item-head strong {
    min-width: 96px;
    font-size: 1.08rem;
  }

  body[data-page="pricelist"] .price-item dt,
body[data-page="pricelist"] .price-item dd,
body[data-page="pricelist"] .price-notes p {
    font-size: 0.72rem;
  }
}

/* Pricelist photo slider should switch images like the portfolio slider */
body[data-page="pricelist"] .price-look-track {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  touch-action: pan-y;
}

body[data-page="pricelist"] .price-look-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.26s ease;
}

body[data-page="pricelist"] .price-look-photo.is-active {
  opacity: 1;
}

@media (max-width: 760px) {
  .pricelist-hero {
    min-height: 152px;
    padding: 30px 24px;
  }

  .pricelist-hero h1 {
    font-size: clamp(2.9rem, 15vw, 4rem);
  }

  .price-portfolio {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px;
  }

  .price-look-eyebrow {
    gap: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
  }

  .price-look-eyebrow::before {
    width: 20px;
  }

  .price-swipe-hint {
    width: 20px;
    height: 20px;
    font-size: 0.95rem;
  }

  .price-look-group h3 {
    font-size: 1rem;
  }

  .regular-pricelist,
  .product-used {
    padding: 34px 24px;
  }

  .regular-pricelist .price-section-title h2,
  .product-used .price-section-title h2 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

  .price-item-head h3 {
    font-size: 1.38rem;
  }

  .price-item dl div {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .price-item dt,
  .price-item dd,
  .price-notes p {
    font-size: 0.78rem;
  }

  .brand-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 14px;
  }

  .brand-logo-tile {
    min-height: 58px;
    padding: 8px;
  }

  .brand-logo-tile img {
    max-height: 38px;
  }
}

@media (max-width: 1080px) {
  .hero,
  .booking-preview,
  .booking-layout,
  .booking-page-v2,
  .split-banner,
  .admin-metrics,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .portfolio-preview,
  .portfolio-grid-full,
  .portfolio-grid-all,
  .service-layout,
  .product-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .price-look-track {
    grid-auto-columns: calc((100% - 36px) / 3);
  }

  .brand-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .payment-panel {
    position: static;
  }

  .admin-sidebar {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .booking-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: calc(100% - 24px);
  }

  .site-header {
    margin-top: 12px;
    padding: 14px 18px;
    border-radius: 28px;
    align-items: center;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 247, 244, 0.12);
    margin-left: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 10px 0;
  }

  .hero-copy,
  .booking-copy,
  .payment-card,
  .booking-board,
  .booking-panel,
  .admin-card,
  .split-banner,
  .admin-hero,
  .admin-lock-card {
    padding: 26px;
  }

  .pricelist-hero,
  .regular-pricelist,
  .product-used,
  .price-look-group {
    padding: 26px;
  }

  .pricelist-hero {
    min-height: 210px;
    padding: 42px 26px;
  }

  .pricelist-hero h1 {
    font-size: clamp(3.6rem, 18vw, 5rem);
  }

  .price-portfolio {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
  }

  .price-look-group {
    padding: 0;
  }

  .price-look-eyebrow {
    gap: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
  }

  .price-look-eyebrow::before {
    width: 20px;
  }

  .price-look-group h3 {
    font-size: 1rem;
  }

  .price-look-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .price-look-track {
    grid-auto-columns: calc((100% - 12px) / 2);
    gap: 12px;
  }

  .price-item dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .price-item dd {
    color: var(--gold-soft);
  }

  .brand-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 20px 14px;
    gap: 12px 16px;
  }

  .brand-logo-tile {
    min-height: 64px;
    padding: 10px;
  }

  .hero {
    min-height: auto;
    margin-bottom: 60px;
  }

  .hero-visual {
    display: none;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
    margin-bottom: 52px;
  }

  .highlight-grid article {
    padding: 28px 24px;
  }

  .highlight-number {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }

  .highlight-grid h2 {
    font-size: 1.22rem;
  }

  .divider-line {
    margin-bottom: 48px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .calendar-header {
    flex-direction: column;
    align-items: stretch;
  }

  .calendar-nav {
    width: 100%;
    justify-content: space-between;
  }

  .calendar-grid-month {
    gap: 6px;
  }

  .calendar-weekdays {
    gap: 6px;
    display: grid;
  }

  .calendar-weekdays span {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .calendar-day {
    min-height: 64px;
    padding: 8px 6px;
    border-radius: 12px;
  }

  .calendar-day span {
    font-size: 0.88rem;
  }

  .calendar-day small {
    font-size: 0.6rem;
    line-height: 1.2;
  }

  .slot-grid-simple {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-picker-row {
    grid-template-columns: 1fr;
  }

  .time-dial-card {
    padding: 14px;
  }

  .time-dial {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .time-grid-slot {
    min-height: 56px;
    padding: 8px 4px;
  }

  .slot-time {
    font-size: 0.78rem;
  }

  .booking-board-scroll .booking-board-list,
  .selected-day-bookings {
    max-height: 260px;
  }

  .booking-page-v2 {
    gap: 16px;
  }

  .booking-calendar-card,
  .payment-card-compact {
    padding: 20px;
  }

  .booking-calendar-inline {
    padding: 14px;
  }

  .admin-sidebar {
    grid-template-columns: 1fr;
  }

  .booking-entry,
  .admin-list-item {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    padding: 28px;
  }

  .admin-item-thumb {
    display: none;
  }

  .admin-portfolio-item {
    grid-template-columns: 1fr auto;
  }
}

/* Admin portfolio list improvements */
.admin-portfolio-item {
  grid-template-columns: 52px 1fr auto;
}

.admin-item-thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  flex-shrink: 0;
}

.admin-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admin-item-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ink);
}

.admin-item-info p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 2px 0 0;
}

.admin-photo-section {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-photo-label {
  margin: 0 0 4px;
  font-size: 0.82rem;
}

.admin-existing-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 32px;
}

.existing-photo-chip {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 72px;
}

.existing-photo-chip img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.photo-chip-label {
  font-size: 0.65rem;
  color: var(--muted);
}

.photo-chip-remove {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
  background: var(--wine-700);
  color: #fff;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
}

.photo-chip-remove:hover {
  background: var(--wine-900);
}

/* Booking time display clean */
.booking-badge {
  font-family: var(--font-mono, monospace);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  font-size: 0.82rem !important;
}

/* Pricelist gold refresh */
body[data-page="pricelist"] {
  --price-dark-gold: #6f521c;
  --price-gold: #b88a32;
  --price-soft-gold: #e8c77d;
  --price-ink: #3a2a14;
  background:
    radial-gradient(circle at 14% 9%, rgba(255, 250, 238, 0.9), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(184, 138, 50, 0.18), transparent 25%),
    linear-gradient(180deg, #f7efe4 0%, #ead9bd 100%);
  color: var(--price-ink);
}

body[data-page="pricelist"] .site-header,
body[data-page="pricelist"] .site-footer {
  background:
    linear-gradient(135deg, rgba(52, 38, 18, 0.94), rgba(111, 82, 28, 0.84));
  border-color: rgba(232, 199, 125, 0.38);
}

body[data-page="pricelist"] .pricelist-hero,
body[data-page="pricelist"] .regular-pricelist {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184, 138, 50, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 252, 245, 0.9), rgba(239, 222, 184, 0.72)),
    linear-gradient(145deg, #f8efdd, #e9d2a5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 28px 82px rgba(85, 61, 20, 0.14);
}

body[data-page="pricelist"] .pricelist-hero::before,
body[data-page="pricelist"] .regular-pricelist::before,
body[data-page="pricelist"] .regular-pricelist::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 190px;
  background: var(--price-dark-gold);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='120' height='150' viewBox='0 0 120 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='black'%3E%3Cpath d='M55 145c-2-38 3-80 18-124l5 1c-16 45-21 85-18 123z'/%3E%3Cpath d='M76 21c22 10 32 28 28 51-20-3-32-21-28-51z'/%3E%3Cpath d='M63 48c-25 1-43 14-55 39 25 5 44-8 55-39z'/%3E%3Cpath d='M71 76c24 6 38 23 41 51-26-2-41-19-41-51z'/%3E%3Cpath d='M57 97c-24 2-41 15-51 39 24 5 42-8 51-39z'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='120' height='150' viewBox='0 0 120 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='black'%3E%3Cpath d='M55 145c-2-38 3-80 18-124l5 1c-16 45-21 85-18 123z'/%3E%3Cpath d='M76 21c22 10 32 28 28 51-20-3-32-21-28-51z'/%3E%3Cpath d='M63 48c-25 1-43 14-55 39 25 5 44-8 55-39z'/%3E%3Cpath d='M71 76c24 6 38 23 41 51-26-2-41-19-41-51z'/%3E%3Cpath d='M57 97c-24 2-41 15-51 39 24 5 42-8 51-39z'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

body[data-page="pricelist"] .pricelist-hero::before {
  left: -26px;
  bottom: -48px;
  transform: rotate(-18deg);
}

body[data-page="pricelist"] .regular-pricelist::before {
  top: -58px;
  right: -30px;
  transform: rotate(26deg);
}

body[data-page="pricelist"] .regular-pricelist::after {
  left: -46px;
  bottom: -54px;
  transform: rotate(-24deg) scaleX(-1);
}

body[data-page="pricelist"] .pricelist-hero > *,
body[data-page="pricelist"] .regular-pricelist > * {
  position: relative;
  z-index: 1;
}

body[data-page="pricelist"] .pricelist-hero h1,
body[data-page="pricelist"] .price-section-title h2,
body[data-page="pricelist"] .price-item-head h3,
body[data-page="pricelist"] .price-item-head strong,
body[data-page="pricelist"] .price-item dt,
body[data-page="pricelist"] .price-item dd,
body[data-page="pricelist"] .price-notes p,
body[data-page="pricelist"] .price-look-group h3 {
  color: var(--price-dark-gold);
  text-transform: none;
  letter-spacing: 0;
}

body[data-page="pricelist"] .pricelist-hero .eyebrow,
body[data-page="pricelist"] .price-section-title .eyebrow,
body[data-page="pricelist"] .price-look-eyebrow {
  color: var(--price-gold);
  text-transform: none;
  letter-spacing: 0.08em;
}

body[data-page="pricelist"] .price-item,
body[data-page="pricelist"] .price-item dl div {
  border-color: rgba(111, 82, 28, 0.18);
}

body[data-page="pricelist"] .price-item-head strong {
  border-color: rgba(184, 138, 50, 0.42);
  background: rgba(255, 250, 238, 0.52);
}

body[data-page="pricelist"] .product-used {
  background:
    linear-gradient(135deg, rgba(255, 252, 245, 0.76), rgba(239, 222, 184, 0.48));
}

body[data-page="pricelist"] .product-used .price-section-title h2 {
  color: var(--price-dark-gold);
  background: none;
  -webkit-text-fill-color: currentColor;
}

body[data-page="pricelist"] .site-footer p {
  color: rgba(255, 247, 226, 0.78);
}

body[data-page="pricelist"] .price-item dl div {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) 82px;
  align-items: center;
  gap: 18px;
  width: min(430px, 100%);
  padding-right: 0;
}

body[data-page="pricelist"] .price-item dt {
  min-width: 0;
  white-space: nowrap;
}

body[data-page="pricelist"] .price-item dd {
  min-width: 0;
  white-space: nowrap;
  text-align: right;
}

body[data-page="pricelist"] .price-notes {
  width: fit-content;
  max-width: 100%;
  padding-right: 16px;
}

body[data-page="pricelist"] .pricelist-hero {
  min-height: 110px;
  padding: 22px 32px;
}

body[data-page="pricelist"] .pricelist-hero h1 {
  font-size: clamp(2.15rem, 4.5vw, 3.45rem);
  line-height: 0.95;
}

@media (max-width: 760px) {
  body[data-page="pricelist"] .pricelist-hero {
    min-height: 92px;
    padding: 18px 20px;
  }

  body[data-page="pricelist"] .pricelist-hero h1 {
    font-size: clamp(2.05rem, 10.5vw, 2.9rem);
  }

  body[data-page="pricelist"] .pricelist-hero::before {
    width: 118px;
    height: 150px;
    left: -30px;
    bottom: -50px;
  }

  body[data-page="pricelist"] .price-item dl div {
    grid-template-columns: minmax(0, 1fr) 74px;
    width: 100%;
  }

  body[data-page="pricelist"] .price-item dt {
    white-space: normal;
  }
}
