/*
 * Zubair Bookings — Zubair.Works V2 visual sync
 * Keeps booking/WooCommerce functionality intact while matching the editorial
 * visual system of the main Zubair.Works V2 theme.
 */

:root {
  --zw-paper: #fff7e8;
  --zw-paper-deep: #f6e7cb;
  --zw-forest: #1e2a26;
  --zw-navy: #273248;
  --zw-plum: #2e1a27;
  --zw-gold: #ffd17b;
  --zw-ink: var(--zw-forest);
  --zw-muted: #716f65;
  --zw-line: rgba(30,42,38,.16);
  --zw-pad: clamp(18px,2.2vw,38px);
  --zw-section: clamp(78px,9vw,145px);
  --zw-radius: 3px;

  /* Remap legacy theme variables so plugin/theme components inherit the new system. */
  --black: var(--zw-forest);
  --white: var(--zw-paper);
  --cream: var(--zw-paper);
  --muted: var(--zw-muted);
  --gold: var(--zw-gold);
  --blue: var(--zw-navy);
  --green: var(--zw-forest);
  --purple: var(--zw-plum);
  --line: var(--zw-line);
  --glass: transparent;
  --radius: var(--zw-radius);
  --shadow: none;
}

html {
  background: var(--zw-paper) !important;
}

body.zbn-theme,
body.zbn-theme.woocommerce-page,
body.zbn-theme.woocommerce-checkout,
body.zbn-theme.woocommerce-cart,
body.zbn-theme.woocommerce-account {
  margin: 0 !important;
  min-height: 100vh;
  padding-bottom: 68px;
  background: var(--zw-paper) !important;
  background-image: none !important;
  color: var(--zw-ink) !important;
  font-family: 'Darker Grotesque', Arial, Helvetica, sans-serif !important;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.zbn-theme::before,
body.zbn-theme::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

::selection {
  background: var(--zw-ink);
  color: var(--zw-paper);
}

a {
  color: inherit;
}

img,
video {
  max-width: 100%;
  height: auto;
}

.zbn-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1100;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

/* Header ----------------------------------------------------- */
.site-header {
  position: fixed !important;
  z-index: 1200;
  top: 0;
  left: 0;
  right: 0;
  width: 100% !important;
  margin: 0 !important;
  padding: 17px var(--zw-pad) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--zw-ink) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: background-color .25s ease, border-color .25s ease !important;
}

.site-header.is-scrolled {
  background: rgba(255,247,232,.88) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(30,42,38,.08) !important;
}

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

.brand {
  display: inline-flex !important;
  align-items: center;
  width: auto !important;
  max-width: 150px;
  line-height: 0;
  filter: none !important;
  transform: none !important;
}

.brand:hover {
  transform: none !important;
  filter: none !important;
}

.brand-logo {
  display: block;
  width: auto !important;
  height: 28px !important;
  max-width: 145px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) !important;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  line-height: 1;
}

.site-nav a {
  position: relative;
  opacity: .75;
  text-decoration: none;
  transition: opacity .2s ease !important;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.site-nav a::after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  right: 100%;
  bottom: -5px;
  background: currentColor;
  transition: right .25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

/* Shared type + buttons -------------------------------------- */
.eyebrow,
.package-label {
  margin: 0 0 12px !important;
  color: var(--zw-muted) !important;
  font-size: 10px !important;
  line-height: 1.2;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: .12em !important;
  text-shadow: none !important;
}

body.zbn-theme h1,
body.zbn-theme h2,
body.zbn-theme h3,
.woocommerce div.product .product_title,
.woocommerce-products-header__title {
  color: var(--zw-ink) !important;
  font-family: 'Darker Grotesque', Arial, Helvetica, sans-serif !important;
  font-weight: 700 !important;
  text-shadow: none !important;
}

.btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce button.button.alt,
.woocommerce a.checkout-button,
.wc-block-components-button,
.wp-element-button,
.zbn-submit,
.zbn-booking-form .button,
.zbn-signature-wrap .button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 50px !important;
  padding: 13px 17px !important;
  border: 1px solid var(--zw-ink) !important;
  border-radius: var(--zw-radius) !important;
  background: var(--zw-ink) !important;
  background-image: none !important;
  color: var(--zw-paper) !important;
  box-shadow: none !important;
  font-family: 'Darker Grotesque', Arial, Helvetica, sans-serif !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 650 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  text-shadow: none !important;
  transform: none !important;
  filter: none !important;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, transform .2s ease !important;
}

.btn:hover,
.btn:focus-visible,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.checkout-button:hover,
.wc-block-components-button:hover,
.wp-element-button:hover,
.zbn-submit:hover,
.zbn-booking-form .button:hover,
.zbn-signature-wrap .button:hover {
  background: var(--zw-gold) !important;
  border-color: var(--zw-gold) !important;
  color: var(--zw-ink) !important;
  box-shadow: none !important;
  transform: translateY(-2px) !important;
  filter: none !important;
}

.btn-primary {
  background: var(--zw-ink) !important;
  border-color: var(--zw-ink) !important;
  color: var(--zw-paper) !important;
}

.btn-secondary {
  background: transparent !important;
  border-color: var(--zw-line) !important;
  color: var(--zw-ink) !important;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--zw-ink) !important;
  border-color: var(--zw-ink) !important;
  color: var(--zw-paper) !important;
}

.btn-mini {
  min-height: 44px !important;
  padding: 11px 14px !important;
}

/* Homepage hero ---------------------------------------------- */
.hero-section,
.bookings-section,
.steps-section,
.zbn-shop-frame {
  width: 100% !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-section {
  min-height: 92svh !important;
  padding: 122px var(--zw-pad) 42px !important;
  display: grid !important;
  grid-template-columns: minmax(0,1.04fr) minmax(360px,.96fr) !important;
  gap: clamp(36px,6vw,96px) !important;
  align-items: center !important;
  border-bottom: 1px solid var(--zw-line);
  background: var(--zw-paper) !important;
}

.orbit {
  display: none !important;
}

.hero-copy {
  align-self: center;
  max-width: 900px;
}

.hero-section h1 {
  max-width: 7.4ch !important;
  margin: 0 !important;
  font-size: clamp(72px,10.3vw,164px) !important;
  line-height: .79 !important;
  letter-spacing: -.072em !important;
  white-space: normal;
}

.hero-lede {
  max-width: 29ch !important;
  margin: 28px 0 30px !important;
  color: var(--zw-muted) !important;
  font-size: clamp(20px,2vw,30px) !important;
  line-height: 1.03 !important;
  letter-spacing: -.035em !important;
  font-weight: 500 !important;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px !important;
}

.hero-visual {
  min-height: clamp(480px,58vw,700px) !important;
  position: relative;
  perspective: none !important;
}

.neon-frame {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--zw-line) !important;
  border-radius: 0 !important;
  background: var(--zw-paper-deep) !important;
  box-shadow: none !important;
  transform: none !important;
  isolation: auto !important;
}

.neon-frame::before,
.neon-frame::after {
  display: none !important;
  content: none !important;
}

.neon-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-large {
  width: 72% !important;
  height: 76% !important;
  right: 0 !important;
  top: 2% !important;
}

.frame-small {
  width: 45% !important;
  height: 45% !important;
  left: 0 !important;
  bottom: 3% !important;
  border: 10px solid var(--zw-paper) !important;
  outline: 1px solid var(--zw-line);
}

.status-pill {
  position: absolute !important;
  right: 0 !important;
  bottom: 3% !important;
  display: inline-flex !important;
  align-items: center;
  gap: 9px !important;
  padding: 11px 12px !important;
  border: 1px solid var(--zw-line) !important;
  border-radius: 0 !important;
  background: var(--zw-paper) !important;
  color: var(--zw-ink) !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  font-size: 10px !important;
  line-height: 1;
  font-weight: 650 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase;
}

.status-pill span,
.sticky-dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50%;
  background: var(--zw-gold) !important;
  box-shadow: none !important;
  animation: none !important;
}

/* Homepage booking list -------------------------------------- */
.bookings-section,
.steps-section {
  margin-top: 0 !important;
  padding: var(--zw-section) var(--zw-pad) !important;
  background: var(--zw-paper) !important;
}

.compact-heading {
  display: grid !important;
  grid-template-columns: .42fr 1.58fr !important;
  gap: clamp(26px,6vw,92px) !important;
  align-items: end !important;
  margin: 0 0 24px !important;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--zw-line);
}

.compact-heading .eyebrow {
  margin-bottom: 5px !important;
}

.compact-heading h2 {
  margin: 0 !important;
  font-size: clamp(48px,6.6vw,102px) !important;
  line-height: .87 !important;
  letter-spacing: -.065em !important;
  max-width: 11ch;
}

.booking-list {
  display: grid !important;
  gap: 0 !important;
}

.booking-row {
  position: relative;
  overflow: visible !important;
  display: grid !important;
  grid-template-columns: minmax(150px,220px) minmax(0,1fr) minmax(150px,auto) !important;
  gap: clamp(22px,3.5vw,54px) !important;
  align-items: center !important;
  min-height: 230px !important;
  padding: 20px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--zw-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.booking-row:first-child {
  border-top: 0 !important;
}

.booking-row::before,
.booking-row::after {
  display: none !important;
  content: none !important;
}

.booking-row:hover {
  border-color: var(--zw-line) !important;
  box-shadow: none !important;
  transform: none !important;
}

.booking-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--zw-paper-deep) !important;
  transform: none !important;
}

.booking-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none !important;
  filter: none !important;
  transition: transform .5s cubic-bezier(.2,.7,.15,1) !important;
}

.booking-row:hover .booking-image img {
  transform: scale(1.025) !important;
  filter: none !important;
}

.booking-content {
  position: relative;
  z-index: 1;
}

.booking-content h3 {
  margin: 0 !important;
  font-size: clamp(38px,5vw,76px) !important;
  line-height: .88 !important;
  letter-spacing: -.06em !important;
  transition: transform .3s ease !important;
}

.booking-row:hover .booking-content h3 {
  transform: translateX(7px);
}

.booking-content p:not(.package-label) {
  max-width: 46ch;
  margin: 13px 0 0 !important;
  color: var(--zw-muted) !important;
  font-size: 16px !important;
  line-height: 1.38 !important;
  font-weight: 500 !important;
}

.booking-action {
  position: relative;
  z-index: 1;
  display: grid !important;
  gap: 14px !important;
  justify-items: end !important;
  min-width: 150px;
}

.booking-action span {
  color: var(--zw-ink) !important;
  font-size: clamp(27px,2.4vw,39px) !important;
  line-height: .9 !important;
  font-weight: 650 !important;
  letter-spacing: -.045em !important;
}

/* Steps ------------------------------------------------------ */
.steps-section {
  padding-top: 0 !important;
}

.steps-line {
  position: relative;
  display: grid !important;
  grid-template-columns: repeat(3,1fr) !important;
  gap: 0 !important;
  border-top: 1px solid var(--zw-line);
  border-bottom: 1px solid var(--zw-line);
}

.steps-line::before {
  display: none !important;
  content: none !important;
}

.step-item {
  position: relative;
  min-height: 260px !important;
  padding: 22px 24px 26px !important;
  border: 0 !important;
  border-right: 1px solid var(--zw-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

.step-item:last-child {
  border-right: 0 !important;
}

.step-item::before,
.step-item::after {
  display: none !important;
  content: none !important;
}

.step-item span {
  display: block;
  margin-bottom: clamp(60px,7vw,100px);
  color: var(--zw-muted) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: .1em !important;
}

.step-item h3 {
  margin: 0 0 10px !important;
  font-size: clamp(34px,4vw,58px) !important;
  line-height: .9 !important;
  letter-spacing: -.05em !important;
}

.step-item p {
  max-width: 28ch;
  margin: 0 !important;
  color: var(--zw-muted) !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
}

/* Generic / shop pages --------------------------------------- */
.zbn-shop-shell,
.zbn-product-shell {
  min-height: 70vh;
  background: var(--zw-paper) !important;
  color: var(--zw-ink) !important;
}

.zbn-shop-frame {
  position: relative;
  margin: 0 !important;
  padding: 118px var(--zw-pad) var(--zw-section) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--zw-paper) !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.zbn-shop-frame::before,
.zbn-shop-frame::after {
  display: none !important;
  content: none !important;
}

.zbn-page-content {
  width: min(900px,100%);
  margin: 0 auto;
}

.zbn-page-content > h1,
.woocommerce-products-header__title,
body.woocommerce-cart .entry-title,
body.woocommerce-checkout .entry-title,
body.woocommerce-account .entry-title,
body.woocommerce-cart .wp-block-post-title,
body.woocommerce-checkout .wp-block-post-title {
  margin: 0 0 50px !important;
  font-size: clamp(58px,9vw,142px) !important;
  line-height: .82 !important;
  letter-spacing: -.055em !important;
  font-weight: 700 !important;
  color: var(--zw-ink) !important;
  text-shadow: none !important;
}

.zbn-page-content p,
.zbn-page-content li {
  color: var(--zw-ink);
  line-height: 1.6;
}

/* Product archive -------------------------------------------- */
.woocommerce ul.products {
  margin: 20px 0 0 !important;
}

.woocommerce ul.products li.product {
  padding: 0 0 28px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.woocommerce ul.products li.product a img {
  margin: 0 0 14px !important;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0 !important;
  background: var(--zw-paper-deep);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0 !important;
  color: var(--zw-ink) !important;
  font-size: clamp(30px,3.3vw,52px) !important;
  line-height: .92 !important;
  letter-spacing: -.04em !important;
  font-weight: 700 !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
  color: var(--zw-ink) !important;
  font-weight: 650 !important;
}

/* Single product --------------------------------------------- */
.zbn-product-shell {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.zbn-product-hero {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 122px var(--zw-pad) clamp(70px,8vw,116px) !important;
  display: grid !important;
  grid-template-columns: minmax(320px,.9fr) minmax(0,1.1fr) !important;
  gap: clamp(38px,7vw,110px) !important;
  align-items: center !important;
  border: 0 !important;
  border-bottom: 1px solid var(--zw-line) !important;
  border-radius: 0 !important;
  background: var(--zw-paper) !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.zbn-product-hero::before,
.zbn-product-hero::after {
  display: none !important;
  content: none !important;
}

.product-main-image {
  aspect-ratio: 4 / 5 !important;
  overflow: hidden;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--zw-paper-deep) !important;
  box-shadow: none !important;
}

.product-main-image img,
.product-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none !important;
  filter: none !important;
}

.product-hero-copy {
  padding: 0 !important;
}

.product-hero-copy h1 {
  max-width: 8ch !important;
  margin: 0 !important;
  font-size: clamp(58px,8.7vw,132px) !important;
  line-height: .82 !important;
  letter-spacing: -.06em !important;
}

.product-price {
  margin: 24px 0 0 !important;
  color: var(--zw-ink) !important;
  font-size: clamp(32px,3vw,48px) !important;
  line-height: .9 !important;
  font-weight: 650 !important;
  letter-spacing: -.045em !important;
}

.product-summary,
.product-long-description {
  max-width: 46ch;
  margin-top: 22px !important;
  color: var(--zw-muted) !important;
  font-size: 17px !important;
  line-height: 1.5 !important;
}

.product-add-to-cart {
  margin-top: 24px !important;
}

.product-add-to-cart form.cart {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px !important;
}

.woocommerce .quantity .qty,
.zbn-product-shell .quantity .qty {
  width: 76px !important;
  min-height: 50px !important;
  padding: 10px !important;
  border: 1px solid var(--zw-line) !important;
  border-radius: var(--zw-radius) !important;
  background: transparent !important;
  color: var(--zw-ink) !important;
  box-shadow: none !important;
}

.product-booking-cta {
  position: relative;
  margin-top: 30px !important;
  padding: 20px 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0,1fr) minmax(220px,.8fr) !important;
  gap: 26px !important;
  border: 0 !important;
  border-top: 1px solid var(--zw-line) !important;
  border-bottom: 1px solid var(--zw-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  color: var(--zw-ink) !important;
  transform: none !important;
}

.product-booking-cta::before,
.product-booking-cta::after {
  display: none !important;
  content: none !important;
}

.product-booking-cta h2 {
  margin: 0 !important;
  font-size: clamp(32px,3.5vw,52px) !important;
  line-height: .9 !important;
  letter-spacing: -.045em !important;
}

.product-booking-cta .cta-note {
  max-width: 36ch;
  margin: 10px 0 0 !important;
  color: var(--zw-muted) !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
}

.product-booking-cta .cta-details {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  border-top: 1px solid var(--zw-line);
}

.product-booking-cta .cta-details li {
  padding: 10px 0 !important;
  border-bottom: 1px solid var(--zw-line);
  color: var(--zw-ink) !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

.product-story-section {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 var(--zw-pad) !important;
  display: grid !important;
  gap: 0 !important;
  background: var(--zw-paper) !important;
}

.product-story-row {
  position: relative;
  width: 100% !important;
  margin: 0 !important;
  padding: clamp(62px,7vw,108px) 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr) !important;
  gap: clamp(38px,7vw,110px) !important;
  align-items: center !important;
  border: 0 !important;
  border-bottom: 1px solid var(--zw-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  transform: none !important;
}

.product-story-row::before,
.product-story-row::after {
  display: none !important;
  content: none !important;
}

.product-story-image {
  aspect-ratio: 4 / 3 !important;
  overflow: hidden;
  border-radius: 0 !important;
  background: var(--zw-paper-deep) !important;
}

.product-story-copy {
  padding: 0 !important;
}

.product-story-copy h2 {
  margin: 0 0 18px !important;
  font-size: clamp(44px,5.7vw,88px) !important;
  line-height: .84 !important;
  letter-spacing: -.055em !important;
}

.product-story-copy p:not(.package-label) {
  max-width: 43ch;
  margin: 0 !important;
  color: var(--zw-muted) !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
}

.product-booking-cta-bottom {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(60px,7vw,100px) var(--zw-pad) !important;
  grid-template-columns: minmax(0,1.25fr) minmax(260px,.75fr) !important;
  border: 0 !important;
  background: var(--zw-ink) !important;
  color: var(--zw-paper) !important;
}

.product-booking-cta-bottom h2,
.product-booking-cta-bottom .cta-details li {
  color: var(--zw-paper) !important;
}

.product-booking-cta-bottom .cta-note {
  color: rgba(255,247,232,.68) !important;
}

.product-booking-cta-bottom .cta-details {
  border-top-color: rgba(255,247,232,.25) !important;
}

.product-booking-cta-bottom .cta-details li {
  border-bottom-color: rgba(255,247,232,.25) !important;
}

/* WooCommerce forms, cart + checkout ------------------------ */
body.woocommerce-checkout,
body.woocommerce-cart,
body.woocommerce-account,
body.woocommerce-checkout .wp-site-blocks,
body.woocommerce-cart .wp-site-blocks,
body.woocommerce-account .wp-site-blocks,
body.woocommerce-checkout .entry-content,
body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content,
.wp-block-woocommerce-checkout,
.wp-block-woocommerce-cart,
.wc-block-checkout,
.wc-block-cart,
.woocommerce-checkout .woocommerce,
.woocommerce-cart .woocommerce,
.woocommerce-account .woocommerce {
  --zbn-checkout-bg: var(--zw-paper) !important;
  --zbn-checkout-panel: var(--zw-paper) !important;
  --zbn-checkout-panel-2: var(--zw-paper-deep) !important;
  --zbn-checkout-text: var(--zw-ink) !important;
  --zbn-checkout-muted: var(--zw-muted) !important;
  --zbn-checkout-line: var(--zw-line) !important;
  --zbn-checkout-gold: var(--zw-gold) !important;
  --zbn-checkout-purple: var(--zw-plum) !important;
  background: var(--zw-paper) !important;
  color: var(--zw-ink) !important;
  font-family: 'Darker Grotesque', Arial, Helvetica, sans-serif !important;
}

body.woocommerce-checkout .zbn-shop-frame,
body.woocommerce-cart .zbn-shop-frame,
body.woocommerce-account .zbn-shop-frame,
body.woocommerce-checkout .entry-content,
body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content {
  background: var(--zw-paper) !important;
  border: 0 !important;
  box-shadow: none !important;
}

.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout,
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout,
.wc-block-checkout__main,
.wc-block-checkout__sidebar,
.wc-block-cart-items,
.wc-block-cart__sidebar,
.wc-block-components-sidebar,
.wc-block-components-main,
.woocommerce-checkout form.checkout,
.woocommerce-cart .cart_totals,
.woocommerce-cart table.shop_table,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce-checkout #payment {
  color: var(--zw-ink) !important;
}

.wc-block-checkout__main,
.wc-block-checkout__sidebar,
.wc-block-cart-items,
.wc-block-cart__sidebar,
.wc-block-components-sidebar-layout .wc-block-components-main,
.wc-block-components-sidebar-layout .wc-block-components-sidebar,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce-checkout #payment,
.woocommerce-cart .cart_totals,
.woocommerce-cart table.shop_table,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce-EditAccountForm,
.woocommerce-address-fields,
.woocommerce-order,
.woocommerce-order-details,
.woocommerce-customer-details {
  border: 1px solid var(--zw-line) !important;
  border-radius: var(--zw-radius) !important;
  background: rgba(246,231,203,.35) !important;
  background-image: none !important;
  box-shadow: none !important;
  color: var(--zw-ink) !important;
}

.wc-block-components-title,
.wc-block-components-checkout-step__title,
.wc-block-components-order-summary__title,
.wc-block-components-panel__button,
.wc-block-cart__totals-title,
.woocommerce-checkout h3,
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3,
.woocommerce-account h2,
.woocommerce-order-details__title,
.woocommerce-column__title {
  color: var(--zw-ink) !important;
  font-family: 'Darker Grotesque', Arial, Helvetica, sans-serif !important;
  font-weight: 700 !important;
  text-shadow: none !important;
}

.wp-block-woocommerce-checkout input,
.wp-block-woocommerce-checkout select,
.wp-block-woocommerce-checkout textarea,
.wp-block-woocommerce-cart input,
.wp-block-woocommerce-cart select,
.wp-block-woocommerce-cart textarea,
.wc-block-checkout input,
.wc-block-checkout select,
.wc-block-checkout textarea,
.wc-block-cart input,
.wc-block-cart select,
.wc-block-cart textarea,
.wc-block-components-form input,
.wc-block-components-form select,
.wc-block-components-form textarea,
.wc-block-components-text-input input,
.wc-block-components-combobox input,
.wc-block-components-select select,
.wc-block-components-select .wc-block-components-select__select,
.wc-block-components-combobox .components-combobox-control__input,
.wc-block-components-address-form input,
.wc-block-components-address-form select,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.woocommerce-page input.input-text,
.woocommerce-page textarea,
.woocommerce-page select {
  box-sizing: border-box !important;
  min-height: 54px !important;
  border: 1px solid var(--zw-line) !important;
  border-radius: var(--zw-radius) !important;
  background: rgba(255,255,255,.42) !important;
  background-image: none !important;
  color: var(--zw-ink) !important;
  -webkit-text-fill-color: var(--zw-ink) !important;
  caret-color: var(--zw-ink) !important;
  font-family: 'Darker Grotesque', Arial, Helvetica, sans-serif !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
  font-weight: 550 !important;
  letter-spacing: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

.woocommerce textarea,
.woocommerce-page textarea,
.wp-block-woocommerce-checkout textarea,
.wc-block-checkout textarea {
  min-height: 130px !important;
}

.wp-block-woocommerce-checkout input:focus,
.wp-block-woocommerce-checkout select:focus,
.wp-block-woocommerce-checkout textarea:focus,
.wc-block-checkout input:focus,
.wc-block-checkout select:focus,
.wc-block-checkout textarea:focus,
.woocommerce input.input-text:focus,
.woocommerce textarea:focus,
.woocommerce select:focus {
  border-color: var(--zw-ink) !important;
  background: rgba(255,255,255,.68) !important;
  box-shadow: 0 0 0 2px rgba(30,42,38,.07) !important;
}

.wp-block-woocommerce-checkout label,
.wp-block-woocommerce-cart label,
.wc-block-components-text-input label,
.wc-block-components-combobox label,
.wc-block-components-select label,
.wc-block-components-form label,
.woocommerce form .form-row label,
.woocommerce-page form .form-row label,
.woocommerce form label,
.woocommerce .woocommerce-form__label span,
.zbn-booking-form label {
  color: var(--zw-muted) !important;
  font-family: 'Darker Grotesque', Arial, Helvetica, sans-serif !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
  font-weight: 650 !important;
  letter-spacing: .09em !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
  opacity: 1 !important;
}

.wc-block-components-text-input.is-active label,
.wc-block-components-text-input.has-value label,
.wc-block-components-combobox.is-active label,
.wc-block-components-combobox.has-value label,
.wc-block-components-select label {
  color: var(--zw-muted) !important;
}

.wp-block-woocommerce-checkout ::placeholder,
.wp-block-woocommerce-cart ::placeholder,
.wc-block-checkout ::placeholder,
.wc-block-cart ::placeholder,
.woocommerce-checkout ::placeholder,
.woocommerce-cart ::placeholder,
.woocommerce-account ::placeholder,
.zbn-booking-form ::placeholder {
  color: rgba(113,111,101,.64) !important;
  -webkit-text-fill-color: rgba(113,111,101,.64) !important;
  opacity: 1 !important;
}

.wp-block-woocommerce-checkout input:-webkit-autofill,
.wp-block-woocommerce-cart input:-webkit-autofill,
.wc-block-checkout input:-webkit-autofill,
.wc-block-cart input:-webkit-autofill,
.woocommerce-checkout input:-webkit-autofill,
.woocommerce-cart input:-webkit-autofill,
.woocommerce-account input:-webkit-autofill {
  -webkit-text-fill-color: var(--zw-ink) !important;
  caret-color: var(--zw-ink) !important;
  box-shadow: 0 0 0 1000px #fffaf0 inset !important;
  border-color: var(--zw-line) !important;
}

.components-popover__content,
.components-form-token-field__suggestions-list,
.components-combobox-control__suggestions-container,
.wc-block-components-combobox .components-form-token-field__suggestions-list,
.wc-block-components-combobox .components-combobox-control__suggestions-container,
.wc-block-components-dropdown-selector,
.select2-dropdown,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-results__option {
  background: #fffaf0 !important;
  color: var(--zw-ink) !important;
  border-color: var(--zw-line) !important;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message,
.woocommerce-noreviews,
.wc-block-components-notice-banner {
  border: 1px solid var(--zw-line) !important;
  border-left: 3px solid var(--zw-ink) !important;
  border-radius: var(--zw-radius) !important;
  background: rgba(246,231,203,.4) !important;
  color: var(--zw-ink) !important;
  box-shadow: none !important;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
  color: var(--zw-ink) !important;
}

.woocommerce table.shop_table,
.woocommerce-checkout-review-order-table,
.woocommerce-cart-form__contents,
.woocommerce-table {
  border-color: var(--zw-line) !important;
  border-radius: var(--zw-radius) !important;
  color: var(--zw-ink) !important;
  background: transparent !important;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td,
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  border-color: var(--zw-line) !important;
  color: var(--zw-ink) !important;
}

.woocommerce-checkout-payment,
.woocommerce-checkout-payment ul.payment_methods,
.woocommerce-checkout-payment div.payment_box,
#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background: transparent !important;
  color: var(--zw-ink) !important;
}

.woocommerce-checkout-payment div.payment_box::before {
  border-bottom-color: rgba(246,231,203,.7) !important;
}

.woocommerce a.remove {
  color: var(--zw-ink) !important;
}

.woocommerce a.remove:hover {
  background: var(--zw-ink) !important;
  color: var(--zw-paper) !important;
}

/* Booking plugin/form surfaces ------------------------------- */
body:has(.zbn-booking-form) .zbn-shop-frame {
  background: var(--zw-paper) !important;
}

.zbn-booking-card,
.zbn-booking-form,
.zbn-fsa-frame,
.zbn-checkout-demo,
.zbn-order-review,
.zbn-booking-status {
  border: 1px solid var(--zw-line) !important;
  border-radius: var(--zw-radius) !important;
  background: rgba(246,231,203,.35) !important;
  background-image: none !important;
  color: var(--zw-ink) !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.zbn-booking-card h1,
.zbn-booking-card h2,
.zbn-booking-card h3,
.zbn-booking-form h1,
.zbn-booking-form h2,
.zbn-booking-form h3,
.zbn-fsa-frame h1,
.zbn-fsa-frame h2,
.zbn-fsa-frame h3 {
  color: var(--zw-ink) !important;
  text-shadow: none !important;
}

.zbn-booking-form input[type='text'],
.zbn-booking-form input[type='email'],
.zbn-booking-form input[type='tel'],
.zbn-booking-form input[type='number'],
.zbn-booking-form input[type='date'],
.zbn-booking-form input[type='time'],
.zbn-booking-form input[type='datetime-local'],
.zbn-booking-form select,
.zbn-booking-form textarea {
  min-height: 54px !important;
  border: 1px solid var(--zw-line) !important;
  border-radius: var(--zw-radius) !important;
  background: rgba(255,255,255,.46) !important;
  color: var(--zw-ink) !important;
  -webkit-text-fill-color: var(--zw-ink) !important;
  box-shadow: none !important;
  font-family: 'Darker Grotesque', Arial, Helvetica, sans-serif !important;
  font-size: 18px !important;
  font-weight: 550 !important;
}

.zbn-checkline,
.zbn-booking-form label.zbn-checkline {
  color: var(--zw-ink) !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.zbn-fsa-frame {
  background: rgba(255,255,255,.42) !important;
}

.zbn-fsa-frame .fsa-page {
  background: transparent !important;
  color: var(--zw-ink) !important;
}

.zbn-signature-wrap canvas {
  border: 1px solid var(--zw-line) !important;
  border-radius: var(--zw-radius) !important;
  background: #fffdf8 !important;
  box-shadow: none !important;
}

/* Footer ----------------------------------------------------- */
.site-footer {
  min-height: clamp(210px,22vw,340px) !important;
  margin: 0 !important;
  padding: clamp(42px,5vw,78px) var(--zw-pad) !important;
  border: 0 !important;
  border-top: 1px solid var(--zw-line) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-end !important;
  gap: clamp(48px,8vw,140px) !important;
  background: var(--zw-paper) !important;
  color: var(--zw-ink) !important;
  text-align: left !important;
}

.site-footer__mark {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
}

.site-footer__mark img {
  display: block;
  width: clamp(72px,8vw,132px);
  height: auto;
  max-height: 165px;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
}

.site-footer__signature {
  margin-left: auto;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.site-footer__motto {
  color: #aea798;
  font-size: clamp(22px,2.2vw,36px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .20em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-footer__copyright,
.footer-portfolio-link {
  color: var(--zw-muted) !important;
  font-size: 10px !important;
  line-height: 1.2;
  font-weight: 500 !important;
  text-transform: uppercase;
  letter-spacing: .12em !important;
  text-shadow: none !important;
}

.footer-portfolio-link {
  position: relative;
  display: inline-block;
  margin-top: 2px;
  transition: color .2s ease !important;
}

.footer-portfolio-link:hover {
  color: var(--zw-ink) !important;
  text-shadow: none !important;
}

/* Sticky booking bar ----------------------------------------- */
.sticky-booking-bar {
  position: fixed !important;
  z-index: 1300 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  min-height: 64px !important;
  padding: 10px var(--zw-pad) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  border: 0 !important;
  border-top: 1px solid rgba(255,247,232,.14) !important;
  border-radius: 0 !important;
  background: var(--zw-ink) !important;
  color: var(--zw-paper) !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.sticky-booking-copy,
.sticky-booking-actions {
  display: flex;
  align-items: center;
  gap: 12px !important;
}

.sticky-title {
  font-size: 14px !important;
  line-height: 1;
  font-weight: 600 !important;
}

.sticky-meta,
.sticky-total {
  color: rgba(255,247,232,.62) !important;
  font-size: 10px !important;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .1em !important;
}

.sticky-booking-actions a {
  min-height: 38px !important;
  padding: 9px 12px !important;
  border: 1px solid rgba(255,247,232,.22) !important;
  border-radius: var(--zw-radius) !important;
  background: transparent !important;
  color: var(--zw-paper) !important;
  font-size: 10px !important;
  line-height: 1;
  font-weight: 650 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase;
}

.sticky-booking-actions a:hover {
  border-color: var(--zw-paper) !important;
}

.sticky-booking-actions .checkout-link {
  border-color: var(--zw-gold) !important;
  background: var(--zw-gold) !important;
  color: var(--zw-ink) !important;
}

/* Motion ----------------------------------------------------- */
.reveal,
.image-reveal {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.magnetic,
.magnetic:hover,
.booking-row,
.neon-frame,
.step-item,
.zbn-shop-frame,
.zbn-product-hero,
.product-story-row,
.interactive-image {
  translate: none !important;
  rotate: none !important;
}

/* Responsive ------------------------------------------------- */
@media (max-width: 900px) {
  .hero-section {
    min-height: auto !important;
    grid-template-columns: 1fr !important;
    gap: 54px !important;
    padding-top: 112px !important;
    padding-bottom: 70px !important;
  }

  .hero-section h1 {
    max-width: 8ch !important;
    font-size: clamp(68px,17vw,126px) !important;
  }

  .hero-visual {
    min-height: min(88vw,650px) !important;
  }

  .compact-heading {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .booking-row {
    grid-template-columns: minmax(130px,190px) minmax(0,1fr) !important;
  }

  .booking-action {
    grid-column: 2;
    justify-items: start !important;
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
  }

  .steps-line {
    grid-template-columns: 1fr !important;
  }

  .step-item {
    min-height: 220px !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--zw-line) !important;
  }

  .step-item:last-child {
    border-bottom: 0 !important;
  }

  .step-item span {
    margin-bottom: 58px;
  }

  .zbn-product-hero,
  .product-story-row,
  .product-booking-cta,
  .product-booking-cta-bottom {
    grid-template-columns: 1fr !important;
  }

  .product-story-row.is-flipped .product-story-image,
  .product-story-row.is-flipped .product-story-copy {
    order: initial !important;
  }
}

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

@media (max-width: 620px) {
  body.zbn-theme {
    padding-bottom: 62px;
  }

  .site-header {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    gap: 14px !important;
  }

  .brand-logo {
    height: 24px !important;
  }

  .site-nav {
    gap: 14px !important;
    font-size: 10px !important;
  }

  .site-nav a:nth-child(2) {
    display: none;
  }

  .hero-section {
    padding-top: 96px !important;
    gap: 42px !important;
  }

  .hero-section h1 {
    font-size: clamp(62px,19vw,104px) !important;
  }

  .hero-lede {
    font-size: 20px !important;
  }

  .hero-visual {
    min-height: 112vw !important;
  }

  .frame-large {
    width: 78% !important;
    height: 72% !important;
  }

  .frame-small {
    width: 50% !important;
    height: 43% !important;
  }

  .bookings-section,
  .steps-section {
    padding-top: 82px !important;
    padding-bottom: 82px !important;
  }

  .compact-heading h2 {
    font-size: clamp(48px,14vw,76px) !important;
  }

  .booking-row {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 24px 0 30px !important;
  }

  .booking-image {
    width: 100%;
    aspect-ratio: 16 / 10 !important;
  }

  .booking-action {
    grid-column: 1;
  }

  .booking-content h3 {
    font-size: clamp(40px,13vw,66px) !important;
  }

  .zbn-shop-frame {
    padding-top: 94px !important;
  }

  .zbn-page-content > h1,
  .woocommerce-products-header__title,
  body.woocommerce-cart .entry-title,
  body.woocommerce-checkout .entry-title,
  body.woocommerce-account .entry-title,
  body.woocommerce-cart .wp-block-post-title,
  body.woocommerce-checkout .wp-block-post-title {
    font-size: clamp(54px,17vw,98px) !important;
  }

  .zbn-product-hero {
    padding-top: 96px !important;
    gap: 30px !important;
  }

  .product-hero-copy h1 {
    font-size: clamp(58px,17vw,96px) !important;
  }

  .product-story-section {
    padding-left: var(--zw-pad) !important;
    padding-right: var(--zw-pad) !important;
  }

  .product-story-row {
    gap: 28px !important;
  }

  .product-story-copy h2 {
    font-size: clamp(44px,13vw,72px) !important;
  }

  .site-footer {
    min-height: 0 !important;
    padding-top: 52px !important;
    padding-bottom: 42px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 48px !important;
  }

  .site-footer__mark img {
    width: 82px;
    max-height: 110px;
  }

  .site-footer__signature {
    margin-left: 0;
    align-items: flex-start;
    text-align: left;
    gap: 9px;
  }

  .site-footer__motto {
    font-size: clamp(19px,5.4vw,25px);
    line-height: 1.1;
    letter-spacing: .18em;
    white-space: normal;
  }

  .site-footer__copyright,
  .footer-portfolio-link {
    font-size: 9px !important;
    line-height: 1.35;
  }

  .sticky-booking-bar {
    min-height: 58px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .sticky-meta,
  .sticky-total,
  .sticky-booking-actions > a:first-of-type {
    display: none !important;
  }

  .sticky-title {
    font-size: 12px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Specificity guard: latest booking-plugin and Woo overrides in legacy CSS use !important. */
.product-add-to-cart .single_add_to_cart_button,
.product-add-to-cart button.single_add_to_cart_button,
.zbn-product-shell form.cart .button.single_add_to_cart_button,
.zbn-product-shell form.cart button.single_add_to_cart_button.button.alt,
.wc-block-components-button:not(.is-link),
.wc-block-components-checkout-place-order-button,
.wc-block-cart__submit-button,
.woocommerce-checkout #place_order,
.woocommerce-page #payment #place_order,
.woocommerce #payment #place_order,
.woocommerce-cart .checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart button,
.woocommerce-checkout button {
  min-height: 50px !important;
  padding: 13px 17px !important;
  border: 1px solid var(--zw-ink) !important;
  border-radius: var(--zw-radius) !important;
  background: var(--zw-ink) !important;
  background-image: none !important;
  color: var(--zw-paper) !important;
  -webkit-text-fill-color: var(--zw-paper) !important;
  box-shadow: none !important;
  font-family: 'Darker Grotesque', Arial, Helvetica, sans-serif !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 650 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
}

.product-add-to-cart .single_add_to_cart_button:hover,
.product-add-to-cart button.single_add_to_cart_button:hover,
.zbn-product-shell form.cart .button.single_add_to_cart_button:hover,
.zbn-product-shell form.cart button.single_add_to_cart_button.button.alt:hover,
.wc-block-components-checkout-place-order-button:hover,
.wc-block-cart__submit-button:hover,
.woocommerce-checkout #place_order:hover,
.woocommerce #payment #place_order:hover,
.woocommerce-cart .checkout-button:hover {
  background: var(--zw-gold) !important;
  border-color: var(--zw-gold) !important;
  color: var(--zw-ink) !important;
  -webkit-text-fill-color: var(--zw-ink) !important;
  box-shadow: none !important;
  transform: translateY(-2px) !important;
}

.woocommerce-checkout .order-total th,
.woocommerce-checkout .order-total td,
.woocommerce-cart .order-total th,
.woocommerce-cart .order-total td {
  color: var(--zw-ink) !important;
  font-weight: 700 !important;
}

body:has(.zbn-booking-form) .zbn-shop-shell,
body:has(.zbn-booking-card) .zbn-shop-shell {
  padding-top: 0 !important;
  background: var(--zw-paper) !important;
}

body:has(.zbn-booking-form) .zbn-shop-frame,
body:has(.zbn-booking-card) .zbn-shop-frame {
  max-width: none !important;
  padding: 118px var(--zw-pad) var(--zw-section) !important;
  border: 0 !important;
  background: var(--zw-paper) !important;
  background-image: none !important;
  box-shadow: none !important;
}

body:has(.zbn-booking-form) .zbn-page-content > h1 {
  max-width: 920px !important;
  margin: 0 auto clamp(32px,5vw,62px) !important;
  color: var(--zw-ink) !important;
  font-size: clamp(58px,9vw,120px) !important;
  line-height: .82 !important;
  letter-spacing: -.055em !important;
  text-shadow: none !important;
}

.zbn-booking-form {
  color: var(--zw-ink) !important;
}

.zbn-booking-card {
  overflow: visible !important;
  border-radius: var(--zw-radius) !important;
  border-color: var(--zw-line) !important;
  background: rgba(246,231,203,.35) !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.zbn-booking-card::before,
.zbn-booking-card::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.zbn-kicker {
  display: inline-block !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--zw-muted) !important;
  font-size: 10px !important;
  line-height: 1.2 !important;
  font-weight: 650 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

.zbn-booking-card h1,
.zbn-booking-card h2 {
  color: var(--zw-ink) !important;
  text-shadow: none !important;
}

.zbn-booking-card p {
  color: var(--zw-muted) !important;
  font-size: clamp(17px,1.5vw,21px) !important;
  line-height: 1.4 !important;
}

.zbn-booking-form select {
  color-scheme: light !important;
}

.zbn-booking-form input:focus,
.zbn-booking-form select:focus,
.zbn-booking-form textarea:focus {
  border-color: var(--zw-ink) !important;
  background: rgba(255,255,255,.68) !important;
  box-shadow: 0 0 0 2px rgba(30,42,38,.07) !important;
  transform: none !important;
}

.zbn-checkline,
.zbn-booking-form label.zbn-checkline {
  padding: 13px 0 !important;
  border: 0 !important;
  border-top: 1px solid var(--zw-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--zw-ink) !important;
  font-size: 16px !important;
  line-height: 1.35 !important;
  font-weight: 550 !important;
}

.zbn-checkline input[type='checkbox'] {
  accent-color: var(--zw-ink) !important;
}

.zbn-note {
  margin: 14px 0 0 !important;
  padding: 13px 0 !important;
  border: 0 !important;
  border-top: 1px solid var(--zw-line) !important;
  border-bottom: 1px solid var(--zw-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--zw-muted) !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
}

.zbn-fsa-frame {
  border-color: var(--zw-line) !important;
  border-radius: var(--zw-radius) !important;
  background: rgba(255,255,255,.5) !important;
  color: var(--zw-ink) !important;
  box-shadow: none !important;
}

.zbn-fsa-frame *,
.zbn-fsa-frame h1,
.zbn-fsa-frame h2,
.zbn-fsa-frame h3 {
  color: var(--zw-ink) !important;
  text-shadow: none !important;
}

.zbn-signature-wrap canvas {
  border-color: var(--zw-line) !important;
  border-radius: var(--zw-radius) !important;
  background: #fffdf8 !important;
  box-shadow: none !important;
}

@media (max-width: 720px) {
  body:has(.zbn-booking-form) .zbn-shop-frame,
  body:has(.zbn-booking-card) .zbn-shop-frame {
    padding: 94px var(--zw-pad) 80px !important;
  }

  .zbn-booking-card {
    padding: 24px 16px !important;
    border-radius: var(--zw-radius) !important;
  }

  .zbn-booking-form input[type='text'],
  .zbn-booking-form input[type='email'],
  .zbn-booking-form input[type='tel'],
  .zbn-booking-form input[type='datetime-local'],
  .zbn-booking-form select,
  .zbn-booking-form textarea {
    font-size: 18px !important;
    border-radius: var(--zw-radius) !important;
  }

  .zbn-checkline,
  .zbn-booking-form label.zbn-checkline {
    font-size: 16px !important;
  }
}


/* ============================================================
 * 2.3 — Boxed layout, icon-only header and larger readable type
 * ============================================================ */
:root {
  --zw-box: 1320px;
  --zw-box-gap: clamp(12px, 2vw, 28px);
}

/* Box the public-facing canvas so the site reads as one deliberate panel. */
html {
  background: #eee2cf !important;
}

body.zbn-theme,
body.zbn-theme.woocommerce-page,
body.zbn-theme.woocommerce-checkout,
body.zbn-theme.woocommerce-cart,
body.zbn-theme.woocommerce-account {
  background: #eee2cf !important;
  font-size: 21px !important;
}

body.zbn-theme > main,
body.zbn-theme > .zbn-shop-shell,
body.zbn-theme > .zbn-product-shell {
  width: min(calc(100% - (var(--zw-box-gap) * 2)), var(--zw-box)) !important;
  max-width: var(--zw-box) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  background: var(--zw-paper) !important;
  border-left: 1px solid var(--zw-line);
  border-right: 1px solid var(--zw-line);
}

/* Sections now fill the boxed canvas rather than the viewport. */
.hero-section,
.bookings-section,
.steps-section,
.zbn-shop-frame,
.zbn-product-hero,
.product-story-section,
.product-story-row,
.product-booking-cta-bottom {
  max-width: 100% !important;
}

/* Header: logo + cart icon only, aligned to the same box. */
.site-header {
  left: 50% !important;
  right: auto !important;
  width: min(calc(100% - (var(--zw-box-gap) * 2)), var(--zw-box)) !important;
  max-width: var(--zw-box) !important;
  transform: translateX(-50%) !important;
  padding-left: var(--zw-pad) !important;
  padding-right: var(--zw-pad) !important;
  border-left: 1px solid transparent !important;
  border-right: 1px solid transparent !important;
}

.site-header.is-scrolled {
  border-left-color: var(--zw-line) !important;
  border-right-color: var(--zw-line) !important;
}

.site-nav {
  display: none !important;
}

.header-cart {
  position: relative;
  width: 45px;
  height: 45px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--zw-ink) !important;
  border: 1px solid var(--zw-line);
  border-radius: 50%;
  background: rgba(255,247,232,.72);
  text-decoration: none !important;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease !important;
}

.header-cart:hover,
.header-cart:focus-visible {
  background: var(--zw-gold);
  border-color: var(--zw-gold);
  transform: translateY(-2px);
}

.header-cart__icon {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cart__count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--zw-paper);
  border-radius: 999px;
  background: var(--zw-ink);
  color: var(--zw-paper);
  font-size: 12px;
  line-height: 1;
  font-weight: 750;
}

/* Readability pass: keep the editorial hierarchy, but remove the tiny UI type. */
.eyebrow,
.package-label {
  font-size: 13px !important;
  line-height: 1.25 !important;
  letter-spacing: .11em !important;
}

.btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce button.button.alt,
.woocommerce a.checkout-button,
.wc-block-components-button,
.wp-element-button,
.zbn-submit,
.zbn-booking-form .button,
.zbn-signature-wrap .button {
  min-height: 54px !important;
  padding: 14px 20px !important;
  font-size: 14px !important;
  letter-spacing: .085em !important;
}

.btn-mini {
  min-height: 49px !important;
  padding: 12px 17px !important;
  font-size: 13px !important;
}

.status-pill {
  font-size: 13px !important;
}

.booking-content p:not(.package-label) {
  max-width: 48ch;
  font-size: 20px !important;
  line-height: 1.42 !important;
}

.booking-action span {
  font-size: clamp(30px,2.6vw,42px) !important;
}

.step-item span {
  font-size: 13px !important;
}

.step-item p {
  max-width: 30ch;
  font-size: 19px !important;
  line-height: 1.45 !important;
}

.zbn-page-content {
  width: min(980px,100%);
}

.zbn-page-content p,
.zbn-page-content li {
  font-size: 20px !important;
  line-height: 1.58 !important;
}

.woocommerce ul.products li.product .price {
  font-size: 19px !important;
}

.product-summary,
.product-long-description {
  max-width: 48ch;
  font-size: 21px !important;
  line-height: 1.5 !important;
}

.product-booking-cta .cta-note {
  font-size: 18px !important;
  line-height: 1.45 !important;
}

.product-booking-cta .cta-details li {
  padding: 13px 0 !important;
  font-size: 17px !important;
  line-height: 1.4 !important;
}

.product-story-copy p:not(.package-label) {
  max-width: 45ch;
  font-size: 20px !important;
  line-height: 1.5 !important;
}

/* Checkout/cart/account text should be practical, not micro-typography. */
.wp-block-woocommerce-checkout input,
.wp-block-woocommerce-checkout select,
.wp-block-woocommerce-checkout textarea,
.wp-block-woocommerce-cart input,
.wp-block-woocommerce-cart select,
.wp-block-woocommerce-cart textarea,
.wc-block-checkout input,
.wc-block-checkout select,
.wc-block-checkout textarea,
.wc-block-cart input,
.wc-block-cart select,
.wc-block-cart textarea,
.wc-block-components-form input,
.wc-block-components-form select,
.wc-block-components-form textarea,
.wc-block-components-text-input input,
.wc-block-components-combobox input,
.wc-block-components-select select,
.wc-block-components-select .wc-block-components-select__select,
.wc-block-components-combobox .components-combobox-control__input,
.wc-block-components-address-form input,
.wc-block-components-address-form select,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.woocommerce-page input.input-text,
.woocommerce-page textarea,
.woocommerce-page select,
.zbn-booking-form input[type='text'],
.zbn-booking-form input[type='email'],
.zbn-booking-form input[type='tel'],
.zbn-booking-form input[type='number'],
.zbn-booking-form input[type='date'],
.zbn-booking-form input[type='time'],
.zbn-booking-form input[type='datetime-local'],
.zbn-booking-form select,
.zbn-booking-form textarea {
  min-height: 58px !important;
  font-size: 20px !important;
}

.wp-block-woocommerce-checkout label,
.wp-block-woocommerce-cart label,
.wc-block-components-text-input label,
.wc-block-components-combobox label,
.wc-block-components-select label,
.wc-block-components-form label,
.woocommerce form .form-row label,
.woocommerce-page form .form-row label,
.woocommerce form label,
.woocommerce .woocommerce-form__label span,
.zbn-booking-form label {
  font-size: 14px !important;
  line-height: 1.25 !important;
  letter-spacing: .075em !important;
}

.wc-block-components-title,
.wc-block-components-checkout-step__title,
.wc-block-components-order-summary__title,
.wc-block-components-panel__button,
.wc-block-cart__totals-title,
.woocommerce-checkout h3,
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3,
.woocommerce-account h2,
.woocommerce-order-details__title,
.woocommerce-column__title {
  font-size: clamp(25px, 2.1vw, 34px) !important;
  line-height: 1.05 !important;
}

.woocommerce table.shop_table,
.woocommerce-checkout-review-order-table,
.woocommerce-cart-form__contents,
.woocommerce-table,
.wc-block-components-order-summary,
.wc-block-cart-items,
.wc-block-components-totals-wrapper,
.wc-block-components-product-name,
.wc-block-components-product-price,
.wc-block-components-totals-item,
.wc-block-components-checkout-step__description,
.wc-block-components-address-card,
.woocommerce-checkout,
.woocommerce-cart,
.woocommerce-account {
  font-size: 18px !important;
}

.zbn-checkline,
.zbn-booking-form label.zbn-checkline {
  font-size: 18px !important;
}

.site-footer {
  width: min(calc(100% - (var(--zw-box-gap) * 2)), var(--zw-box)) !important;
  max-width: var(--zw-box) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-left: 1px solid var(--zw-line) !important;
  border-right: 1px solid var(--zw-line) !important;
}

.site-footer__copyright,
.footer-portfolio-link {
  font-size: 12px !important;
}

.sticky-booking-bar {
  left: 50% !important;
  right: auto !important;
  width: min(calc(100% - (var(--zw-box-gap) * 2)), var(--zw-box)) !important;
  max-width: var(--zw-box) !important;
  transform: translateX(-50%) !important;
  border-left: 1px solid rgba(255,247,232,.14) !important;
  border-right: 1px solid rgba(255,247,232,.14) !important;
}

.sticky-title {
  font-size: 16px !important;
}

.sticky-meta,
.sticky-total,
.sticky-booking-actions a {
  font-size: 12px !important;
}

/* Buttons with late legacy specificity also get the larger readable size. */
.product-add-to-cart .single_add_to_cart_button,
.product-add-to-cart button.single_add_to_cart_button,
.zbn-product-shell form.cart .button.single_add_to_cart_button,
.zbn-product-shell form.cart button.single_add_to_cart_button.button.alt,
.wc-block-components-button:not(.is-link),
.wc-block-components-checkout-place-order-button,
.wc-block-cart__submit-button,
.woocommerce-checkout #place_order,
.woocommerce-page #payment #place_order,
.woocommerce #payment #place_order,
.woocommerce-cart .checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart button,
.woocommerce-checkout button {
  min-height: 54px !important;
  padding: 14px 20px !important;
  font-size: 14px !important;
}

@media (max-width: 620px) {
  :root {
    --zw-box-gap: 0px;
  }

  body.zbn-theme > main,
  body.zbn-theme > .zbn-shop-shell,
  body.zbn-theme > .zbn-product-shell,
  .site-footer {
    border-left: 0 !important;
    border-right: 0 !important;
  }

  .site-header {
    border-left: 0 !important;
    border-right: 0 !important;
  }

  .header-cart {
    width: 42px;
    height: 42px;
  }

  .header-cart__icon {
    width: 22px;
    height: 22px;
  }

  .booking-content p:not(.package-label),
  .step-item p,
  .product-story-copy p:not(.package-label),
  .zbn-page-content p,
  .zbn-page-content li {
    font-size: 18px !important;
  }

  .product-summary,
  .product-long-description {
    font-size: 19px !important;
  }

  .product-booking-cta .cta-note {
    font-size: 17px !important;
  }

  .product-booking-cta .cta-details li {
    font-size: 16px !important;
  }

  .site-footer__copyright,
  .footer-portfolio-link {
    font-size: 11px !important;
  }
}
