@import url('https://fonts.googleapis.com/css2?family=Darker+Grotesque:wght@300..900&display=swap');
:root {
  --black: #020307;
  --white: #f6f2e9;
  --muted: rgba(246,242,233,.68);
  --gold: #e5bd55;
  --blue: #071c35;
  --green: #032f28;
  --purple: #7c3cff;
  --line: rgba(246,242,233,.14);
  --glass: rgba(246,242,233,.045);
  --radius: 34px;
  --shadow: 0 0 28px rgba(124,60,255,.26), 0 0 72px rgba(3,47,40,.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.zbn-theme {
  margin: 0;
  min-height: 100vh;
  padding-bottom: 92px;
  background:
    radial-gradient(circle at 18% 8%, rgba(124,60,255,.26), transparent 26rem),
    radial-gradient(circle at 90% 18%, rgba(3,47,40,.55), transparent 30rem),
    radial-gradient(circle at 40% 100%, rgba(7,28,53,.85), transparent 38rem),
    linear-gradient(135deg, #020307, #050914 48%, #020307);
  color: var(--white);
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.015em;
  overflow-x: hidden;
}
body.zbn-theme::before,
body.zbn-theme::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}
body.zbn-theme::before {
  background-image:
    linear-gradient(rgba(246,242,233,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246,242,233,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  animation: grid-drift 18s linear infinite;
}
body.zbn-theme::after {
  display: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 50px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 20;
}
.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(132px, 18vw, 210px);
  filter: drop-shadow(0 0 14px rgba(229,189,85,.34)) drop-shadow(0 0 34px rgba(124,60,255,.22));
  transition: transform .35s ease, filter .35s ease;
}
.brand:hover {
  transform: translateY(-2px) scale(1.025);
  filter: drop-shadow(0 0 18px rgba(229,189,85,.52)) drop-shadow(0 0 42px rgba(124,60,255,.34));
}
.brand-logo {
  width: 100%;
  height: auto;
  display: block;
}
.header-note {
  color: var(--cream);
  font-size: 18px;
  text-transform: lowercase;
  letter-spacing: .02em;
}
.portfolio-link,
.footer-portfolio-link {
  color: var(--cream);
  transition: color .25s ease, text-shadow .25s ease, transform .25s ease;
}
.portfolio-link:hover,
.footer-portfolio-link:hover {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(229,189,85,.45), 0 0 30px rgba(124,60,255,.25);
}
.portfolio-link:hover { transform: translateX(-3px); }

.hero-section,
.bookings-section,
.steps-section,
.zbn-shop-frame {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.hero-section {
  min-height: 700px;
  padding: 54px 0 36px;
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 52px;
  align-items: center;
}
.orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(246,242,233,.08);
  pointer-events: none;
  z-index: -1;
}
.orbit-one {
  width: 470px;
  height: 470px;
  left: -190px;
  top: 120px;
  box-shadow: 0 0 80px rgba(124,60,255,.18);
  animation: float-orbit 10s ease-in-out infinite;
}
.orbit-two {
  width: 360px;
  height: 360px;
  right: -90px;
  bottom: 92px;
  box-shadow: 0 0 80px rgba(3,47,40,.28);
  animation: float-orbit 12s ease-in-out infinite reverse;
}
.eyebrow,
.package-label {
  color: var(--gold);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 900;
}
h1,
h2,
h3 {
  margin: 0;
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif;
  font-weight: 900;
  line-height: .82;
  letter-spacing: .028em;
}
h1 {
  max-width: 740px;
  font-size: clamp(76px, 11vw, 150px);
  text-shadow: 0 0 30px rgba(124,60,255,.28), 0 0 4px rgba(246,242,233,.22);
}
h2 { font-size: clamp(48px, 7vw, 96px); }
h3 { font-size: clamp(34px, 4vw, 52px); }
.hero-lede {
  max-width: 640px;
  color: var(--muted);
  margin: 28px 0;
  font-size: clamp(24px, 3vw, 31px);
  line-height: 1.05;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px) scale(1.015); }
.btn-primary {
  color: #061019 !important;
  background: linear-gradient(135deg, var(--white), var(--gold)) !important;
  box-shadow: 0 0 34px rgba(229,189,85,.28);
}
.btn-secondary {
  color: var(--white);
  background: rgba(246,242,233,.055);
  backdrop-filter: blur(12px);
}
.btn-mini { min-height: 48px; padding: 0 18px; }

.hero-visual {
  min-height: 590px;
  position: relative;
  perspective: 900px;
}
.neon-frame {
  position: absolute;
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid rgba(246,242,233,.15);
  background: linear-gradient(135deg, rgba(246,242,233,.08), rgba(246,242,233,.018));
  box-shadow: var(--shadow);
  isolation: isolate;
}
.neon-frame::before,
.booking-row::before,
.step-item::before,
.zbn-shop-frame::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(229,189,85,.22), transparent 42%);
  opacity: .9;
  pointer-events: none;
  z-index: 2;
}
.frame-large {
  width: 70%;
  right: 2%;
  top: 8px;
  transform: rotate(3deg) translateZ(0);
  animation: portrait-float 7s ease-in-out infinite;
}
.frame-small {
  width: 45%;
  left: 1%;
  bottom: 80px;
  transform: rotate(-8deg) translateZ(0);
  animation: portrait-float 8s ease-in-out infinite reverse;
}
.status-pill {
  position: absolute;
  right: 4%;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  border-radius: 999px;
  border: 1px solid rgba(229,189,85,.32);
  color: var(--gold);
  background: rgba(2,3,7,.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 44px rgba(3,47,40,.3);
  font-weight: 900;
}
.status-pill span,
.sticky-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(229,189,85,.8);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

.bookings-section,
.steps-section { margin-top: 82px; }
.compact-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 24px;
}
.booking-list { display: grid; gap: 18px; }
.booking-row {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 220px;
  padding: 16px;
  border: 1px solid rgba(246,242,233,.15);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(7,28,53,.72), rgba(2,3,7,.86) 50%, rgba(3,47,40,.56));
  box-shadow: 0 0 32px rgba(3,47,40,.16);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.booking-row:hover {
  transform: translateY(-4px);
  border-color: rgba(229,189,85,.34);
  box-shadow: var(--shadow);
}
.booking-row-purple { background: linear-gradient(120deg, rgba(124,60,255,.34), rgba(2,3,7,.88) 48%, rgba(7,28,53,.58)); }
.booking-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 1 / 1;
  background: rgba(246,242,233,.05);
}
.booking-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.booking-row:hover .booking-image img { transform: scale(1.06) rotate(.8deg); }
.booking-content { position: relative; z-index: 4; }
.booking-content p:not(.package-label),
.step-item p,
.site-footer p { color: var(--muted); line-height: 1.12; }
.booking-action {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 14px;
  justify-items: end;
  min-width: 150px;
}
.booking-action span {
  color: var(--gold);
  font-size: 30px;
  font-weight: 900;
}

.steps-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.steps-line::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229,189,85,.48), rgba(124,60,255,.38), transparent);
}
.step-item {
  position: relative;
  overflow: hidden;
  padding: 18px 6px 18px 0;
  background: transparent;
}
.step-item span {
  position: relative;
  z-index: 3;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(229,189,85,.44);
  color: var(--gold);
  background: rgba(2,3,7,.86);
  box-shadow: 0 0 24px rgba(229,189,85,.12);
  font-weight: 900;
}
.step-item h3 { margin-bottom: 10px; }

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 90px auto 28px;
  color: rgba(246,242,233,.46);
  font-size: 17px;
}
.sticky-booking-bar {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 80;
  width: min(900px, calc(100% - 28px));
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 12px 12px 12px 18px;
  border: 1px solid rgba(229,189,85,.28);
  border-radius: 999px;
  background: rgba(2,3,7,.78);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 42px rgba(124,60,255,.26), 0 0 60px rgba(3,47,40,.26);
}
.sticky-booking-copy,
.sticky-booking-actions { display: flex; align-items: center; gap: 12px; }
.sticky-title { font-weight: 900; }
.sticky-meta { color: var(--muted); font-size: 17px; }
.sticky-total { color: var(--gold); font-weight: 900; }
.sticky-booking-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(246,242,233,.07);
  font-weight: 900;
}
.sticky-booking-actions .checkout-link {
  color: #061019 !important;
  background: linear-gradient(135deg, var(--white), var(--gold)) !important;
}

.zbn-shop-shell { min-height: 65vh; }
.zbn-shop-frame {
  position: relative;
  overflow: hidden;
  margin-top: 54px;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 34px;
  background: rgba(246,242,233,.045);
  box-shadow: var(--shadow);
}
.zbn-page-content { color: var(--muted); line-height: 1.45; }
.zbn-page-content h1 { color: var(--white); margin-bottom: 22px; font-size: clamp(58px, 8vw, 110px); }
.woocommerce div.product .product_title,
.woocommerce-products-header__title { color: var(--white); font-family: 'Darker Grotesque', sans-serif; letter-spacing: -.05em; font-weight: 900; }
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price { color: var(--gold); font-weight: 900; }
.woocommerce ul.products li.product {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px !important;
  background: rgba(246,242,233,.05);
}
.woocommerce ul.products li.product a img { border-radius: 18px; }
.woocommerce .quantity .qty { border-radius: 999px; border: 1px solid var(--line); background: #07111b; color: var(--white); padding: 10px; }
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border-radius: 999px !important;
  background: var(--white) !important;
  color: #061019 !important;
  font-weight: 900 !important;
  padding: 13px 18px !important;
}

.reveal { opacity: 0; transform: translateY(18px); animation: reveal .8s ease forwards; }
.bookings-section.reveal { animation-delay: .1s; }
.steps-section.reveal { animation-delay: .2s; }

@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes grid-drift { to { background-position: 54px 54px; } }
@keyframes float-orbit { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-18px) rotate(9deg); } }
@keyframes portrait-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -16px; } }
@keyframes pulse-dot { 0%, 100% { opacity: .55; transform: scale(.92); } 50% { opacity: 1; transform: scale(1.15); } }

@media (max-width: 900px) {
  body.zbn-theme { padding-bottom: 136px; }
  .site-header { align-items: flex-start; flex-direction: column; }
  .hero-section,
  .booking-row,
  .steps-line { grid-template-columns: 1fr; }
  .hero-section { min-height: auto; padding-top: 38px; }
  .hero-visual { min-height: 500px; }
  .frame-large { width: 74%; }
  .frame-small { width: 50%; bottom: 90px; }
  .compact-heading { display: block; }
  .booking-action { justify-items: start; }
  .booking-image { max-width: 260px; }
  .steps-line::before { display: none; }
  .sticky-booking-bar { align-items: stretch; flex-direction: column; border-radius: 28px; }
  .sticky-booking-actions { width: 100%; }
  .sticky-booking-actions a { flex: 1; justify-content: center; }
}
/* Update 1.2: smaller logo, editable homepage/product storytelling */
.brand { width: clamp(66px, 9vw, 105px); }

.zbn-product-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 54px auto 0;
}
.zbn-product-hero {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 44px;
  align-items: center;
  min-height: 560px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background: linear-gradient(120deg, rgba(7,28,53,.72), rgba(2,3,7,.9) 50%, rgba(3,47,40,.56));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.zbn-product-hero::before,
.product-story-row::before,
.interactive-image::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(520px circle at var(--mx, 50%) var(--my, 50%), rgba(229,189,85,.2), transparent 44%);
  opacity: .85;
  pointer-events: none;
  z-index: 2;
}
.product-main-image,
.product-story-image {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(246,242,233,.16);
  background: rgba(246,242,233,.05);
  box-shadow: 0 0 38px rgba(124,60,255,.18), 0 0 48px rgba(3,47,40,.24);
  isolation: isolate;
  transform-style: preserve-3d;
}
.product-main-image { aspect-ratio: 4 / 5; }
.product-story-image { aspect-ratio: 1.18 / 1; }
.product-main-image img,
.product-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s cubic-bezier(.2,.8,.2,1), filter .75s ease;
}
.interactive-image:hover img { transform: scale(1.065) rotate(.7deg); filter: contrast(1.04) saturate(1.08); }
.product-hero-copy { position: relative; z-index: 4; padding: 22px 14px 22px 0; }
.product-hero-copy h1 { font-size: clamp(56px, 10vw, 100px); letter-spacing: -.05em; line-height: .9; max-width: 820px; }
.product-price {
  margin: 22px 0 12px;
  color: var(--gold);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: -.05em;
}
.product-summary,
.product-long-description {
  color: var(--muted);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.08;
}
.product-add-to-cart { margin-top: 24px; }
.product-add-to-cart form.cart { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.product-add-to-cart .single_add_to_cart_button { min-height: 54px; }
.product-story-section { margin-top: 48px; display: grid; gap: 18px; }
.product-story-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  min-height: 420px;
  padding: 18px;
  border: 1px solid rgba(246,242,233,.14);
  border-radius: 38px;
  background: rgba(246,242,233,.04);
  overflow: hidden;
  box-shadow: 0 0 32px rgba(3,47,40,.16);
}
.product-story-row.is-flipped .product-story-image { order: 2; }
.product-story-row.is-flipped .product-story-copy { order: 1; }
.product-story-copy { position: relative; z-index: 4; padding: 18px; }
.product-story-copy h2 { margin-bottom: 18px; }
.product-story-copy p:not(.package-label) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.28;
}
.product-long-description { margin-top: 48px; }
.product-long-description:empty { display: none; }
.image-reveal { opacity: 0; transform: translateY(22px) scale(.985); }
.image-reveal.in-view { animation: image-pop .85s cubic-bezier(.18,.9,.22,1) forwards; }

@keyframes image-pop {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 900px) {
  .brand { width: clamp(60px, 22vw, 92px); }
  .zbn-product-hero,
  .product-story-row { grid-template-columns: 1fr; }
  .zbn-product-hero { min-height: auto; }
  .product-story-row.is-flipped .product-story-image,
  .product-story-row.is-flipped .product-story-copy { order: initial; }
}

/* Update 1.3: product booking CTA */
.product-booking-cta {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(229,189,85,.24);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(229,189,85,.12), rgba(124,60,255,.1) 50%, rgba(3,47,40,.18));
  box-shadow: 0 0 28px rgba(229,189,85,.08), inset 0 0 26px rgba(246,242,233,.035);
  overflow: hidden;
}
.product-booking-cta h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
  line-height: .92;
  letter-spacing: .035em;
}
.product-booking-cta .cta-note {
  margin: 0;
  color: rgba(246,242,233,.72);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.05;
}
.cta-details {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cta-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(246,242,233,.07);
  color: var(--white);
  font-weight: 800;
  font-size: 20px;
}
.cta-details li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(229,189,85,.8);
  flex: 0 0 auto;
}

/* Update 1.4: book CTA at top and bottom of product page */
.product-booking-cta {
  align-items: center;
}
.product-booking-cta-bottom {
  margin: 52px auto 0;
  max-width: 1120px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr) auto;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 34px;
}
.product-booking-cta-bottom h2 {
  font-size: clamp(34px, 4.5vw, 62px);
}
.product-booking-cta-bottom .cta-details li {
  background: rgba(246,242,233,.09);
}
@media (max-width: 980px) {
  .product-booking-cta-bottom {
    grid-template-columns: 1fr;
  }
}

/* Update 1.5: product booking action */
.zbn-product-shell .quantity {
  display: none !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 {
  border: 0;
  border-radius: 999px;
  min-height: 58px;
  padding: 0 28px;
  color: #061019 !important;
  background: linear-gradient(135deg, var(--white), var(--gold)) !important;
  box-shadow: 0 0 34px rgba(229,189,85,.28);
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.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 {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 0 44px rgba(229,189,85,.36);
}

/* Update 1.6: WooCommerce forms + checkout redesign */
.woocommerce form,
.woocommerce-checkout form.checkout,
.woocommerce-cart form,
.woocommerce-account form,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  color: var(--white);
}

.woocommerce-checkout .zbn-shop-frame,
.woocommerce-cart .zbn-shop-frame,
.woocommerce-account .zbn-shop-frame {
  overflow: visible;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce-EditAccountForm,
.woocommerce-address-fields,
.woocommerce-checkout #customer_details,
.woocommerce-checkout-review-order,
.woocommerce-cart-form,
.cart-collaterals .cart_totals,
.woocommerce-order,
.woocommerce-order-details,
.woocommerce-customer-details,
.zbn-checkout-demo {
  position: relative;
  border: 1px solid rgba(246,242,233,.14);
  border-radius: 34px;
  background:
    radial-gradient(580px circle at var(--mx, 50%) var(--my, 10%), rgba(229,189,85,.11), transparent 42%),
    linear-gradient(135deg, rgba(7,28,53,.66), rgba(2,3,7,.9) 50%, rgba(3,47,40,.48));
  box-shadow: 0 0 34px rgba(124,60,255,.14), 0 0 52px rgba(3,47,40,.14);
  padding: clamp(20px, 3vw, 34px);
  overflow: hidden;
}

.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .85fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  min-width: 0;
}

.woocommerce-checkout #customer_details {
  display: grid;
  gap: 24px;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
  float: none !important;
  width: 100% !important;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3,
.cart-collaterals .cart_totals h2,
.woocommerce-account h2,
.woocommerce-order-details__title,
.woocommerce-column__title,
.zbn-checkout-demo h2 {
  color: var(--white);
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .9;
  letter-spacing: .015em;
  font-weight: 900;
  margin: 0 0 20px;
  text-shadow: 0 0 22px rgba(124,60,255,.18);
}

.woocommerce-checkout #order_review_heading {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: -14px;
  padding-left: 4px;
}

.woocommerce-checkout #order_review {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-top: 72px;
}

.woocommerce form .form-row {
  margin: 0 0 16px;
  padding: 0;
}

.woocommerce form .form-row label,
.woocommerce-page form .form-row label,
.woocommerce form label,
.woocommerce .woocommerce-form__label span,
.zbn-field label {
  display: block;
  margin: 0 0 7px;
  color: rgba(246,242,233,.72);
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.woocommerce form .form-row .required {
  color: var(--gold);
  text-decoration: none;
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.woocommerce-page input.input-text,
.woocommerce-page textarea,
.woocommerce-page select,
.input-text,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple,
.zbn-field input,
.zbn-field textarea,
.zbn-field select {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(246,242,233,.16) !important;
  border-radius: 22px !important;
  outline: none;
  background: rgba(2,3,7,.72) !important;
  color: var(--white) !important;
  box-shadow: inset 0 0 24px rgba(124,60,255,.08), 0 0 0 rgba(229,189,85,0);
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -.01em;
  padding: 13px 17px !important;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease, background .22s ease;
}

.woocommerce textarea,
.woocommerce-page textarea,
.zbn-field textarea {
  min-height: 132px;
  resize: vertical;
  line-height: 1.15;
}

.woocommerce input.input-text:focus,
.woocommerce textarea:focus,
.woocommerce select:focus,
.woocommerce-page input.input-text:focus,
.woocommerce-page textarea:focus,
.woocommerce-page select:focus,
.select2-container--open .select2-selection--single,
.zbn-field input:focus,
.zbn-field textarea:focus,
.zbn-field select:focus {
  border-color: rgba(229,189,85,.56) !important;
  background: rgba(7,28,53,.64) !important;
  box-shadow: 0 0 0 4px rgba(229,189,85,.08), 0 0 30px rgba(124,60,255,.18);
  transform: translateY(-1px);
}

.woocommerce input::placeholder,
.woocommerce textarea::placeholder,
.zbn-field input::placeholder,
.zbn-field textarea::placeholder {
  color: rgba(246,242,233,.38);
}

.select2-container .select2-selection--single {
  height: 58px !important;
  display: flex !important;
  align-items: center;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--white) !important;
  padding-left: 0 !important;
  line-height: 1 !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 15px !important;
  right: 14px !important;
}
.select2-dropdown {
  border: 1px solid rgba(229,189,85,.28) !important;
  border-radius: 18px !important;
  background: #050914 !important;
  color: var(--white) !important;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.select2-results__option {
  padding: 11px 14px !important;
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif;
  font-size: 19px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
  background: rgba(229,189,85,.22) !important;
  color: var(--white) !important;
}

.woocommerce-invalid input.input-text,
.woocommerce-invalid select,
.woocommerce-invalid .select2-selection {
  border-color: rgba(255,105,105,.62) !important;
  box-shadow: 0 0 0 4px rgba(255,105,105,.08) !important;
}
.woocommerce-validated input.input-text,
.woocommerce-validated select,
.woocommerce-validated .select2-selection {
  border-color: rgba(229,189,85,.36) !important;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message,
.woocommerce-noreviews,
p.no-comments {
  border: 1px solid rgba(229,189,85,.24) !important;
  border-top: 1px solid rgba(229,189,85,.42) !important;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(229,189,85,.12), rgba(124,60,255,.08), rgba(3,47,40,.14)) !important;
  color: var(--white) !important;
  box-shadow: 0 0 30px rgba(124,60,255,.12);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.12;
  padding: 18px 22px 18px 54px !important;
}
.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
  color: var(--gold) !important;
  top: 18px !important;
}
.woocommerce-error a,
.woocommerce-info a,
.woocommerce-message a {
  color: var(--gold);
  font-weight: 900;
}

.woocommerce table.shop_table,
.woocommerce-checkout-review-order-table,
.woocommerce-cart-form__contents,
.woocommerce-table {
  border: 1px solid rgba(246,242,233,.14) !important;
  border-radius: 28px !important;
  background: rgba(2,3,7,.42);
  border-collapse: separate !important;
  border-spacing: 0;
  overflow: hidden;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td,
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  border-color: rgba(246,242,233,.11) !important;
  color: var(--white);
  font-size: 20px;
  line-height: 1.1;
  padding: 16px !important;
}
.woocommerce table.shop_table th,
.woocommerce-checkout-review-order-table th {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 15px;
}
.woocommerce table.shop_table tfoot th,
.woocommerce table.shop_table tfoot td,
.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout-review-order-table tfoot td {
  background: rgba(246,242,233,.035);
}
.woocommerce table.shop_table .order-total th,
.woocommerce table.shop_table .order-total td,
.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
  color: var(--gold);
  font-size: 24px;
  font-weight: 900;
}

.woocommerce-checkout-payment,
#payment {
  border: 1px solid rgba(229,189,85,.2) !important;
  border-radius: 28px !important;
  background: rgba(246,242,233,.045) !important;
  overflow: hidden;
}
.woocommerce-checkout-payment ul.payment_methods,
#payment ul.payment_methods {
  border-bottom: 1px solid rgba(246,242,233,.12) !important;
  padding: 18px !important;
}
.woocommerce-checkout-payment div.payment_box,
#payment div.payment_box {
  border-radius: 20px;
  background: rgba(7,28,53,.58) !important;
  color: rgba(246,242,233,.76) !important;
  font-size: 18px;
  line-height: 1.15;
}
.woocommerce-checkout-payment div.payment_box::before,
#payment div.payment_box::before {
  border-bottom-color: rgba(7,28,53,.58) !important;
}
.woocommerce-privacy-policy-text {
  color: rgba(246,242,233,.62);
  font-size: 18px;
  line-height: 1.18;
}
.woocommerce-privacy-policy-text a {
  color: var(--gold);
  font-weight: 900;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order,
.woocommerce button.button.alt,
.woocommerce a.checkout-button,
.woocommerce button[name="apply_coupon"],
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.zbn-checkout-demo .button {
  width: auto;
  min-height: 60px;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--white), var(--gold)) !important;
  color: #061019 !important;
  box-shadow: 0 0 34px rgba(229,189,85,.26) !important;
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  letter-spacing: .045em;
  text-transform: uppercase;
  padding: 0 28px !important;
  transition: transform .22s ease, box-shadow .22s ease !important;
}
.woocommerce #payment #place_order:hover,
.woocommerce-page #payment #place_order:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.checkout-button:hover,
.woocommerce button[name="apply_coupon"]:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.zbn-checkout-demo .button:hover {
  transform: translateY(-3px) scale(1.012);
  box-shadow: 0 0 44px rgba(229,189,85,.36) !important;
}

.woocommerce form.checkout_coupon {
  display: flex !important;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
}
.woocommerce form.checkout_coupon p {
  margin: 0;
  color: var(--muted);
}
.woocommerce form.checkout_coupon .form-row-first {
  flex: 1 1 260px;
  float: none;
  width: auto;
}
.woocommerce form.checkout_coupon .form-row-last {
  flex: 0 0 auto;
  float: none;
  width: auto;
}

.woocommerce-cart table.cart img {
  width: 82px;
  border-radius: 18px;
  border: 1px solid rgba(246,242,233,.14);
}
.woocommerce-cart table.cart td.actions .coupon {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.woocommerce-cart table.cart td.actions .coupon .input-text {
  min-width: 260px;
}
.woocommerce a.remove {
  color: var(--gold) !important;
  border: 1px solid rgba(229,189,85,.28);
  background: rgba(229,189,85,.08);
}
.woocommerce a.remove:hover {
  color: #061019 !important;
  background: var(--gold) !important;
}

.zbn-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.zbn-form-grid .zbn-field-wide { grid-column: 1 / -1; }
.zbn-checkout-demo {
  width: min(1180px, calc(100% - 32px));
  margin: 72px auto 0;
}
.zbn-checkout-demo-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
}
.zbn-demo-order {
  border: 1px solid rgba(246,242,233,.12);
  border-radius: 26px;
  padding: 18px;
  background: rgba(2,3,7,.42);
}
.zbn-demo-order-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(246,242,233,.1);
  color: var(--muted);
  line-height: 1.08;
}
.zbn-demo-order-row:last-child { border-bottom: 0; }
.zbn-demo-order-row strong { color: var(--gold); font-size: 24px; }

@media (max-width: 980px) {
  .woocommerce-checkout form.checkout,
  .zbn-checkout-demo-layout,
  .zbn-form-grid {
    grid-template-columns: 1fr;
  }
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }
  .woocommerce form.checkout_coupon .form-row-last,
  .woocommerce button[name="apply_coupon"],
  .woocommerce #payment #place_order,
  .woocommerce-page #payment #place_order,
  .woocommerce a.checkout-button {
    width: 100%;
  }
}

/* Update 1.7: WooCommerce Blocks checkout/readability fix */
body.woocommerce-checkout,
body.woocommerce-cart {
  color: var(--white);
}

body.woocommerce-checkout .site-main,
body.woocommerce-cart .site-main,
.woocommerce-checkout main,
.woocommerce-cart main {
  max-width: 1180px;
  margin-inline: auto;
}

.woocommerce-checkout .entry-title,
.woocommerce-checkout .wp-block-post-title,
.woocommerce-cart .entry-title,
.woocommerce-cart .wp-block-post-title {
  color: var(--white);
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif;
  font-size: clamp(70px, 13vw, 148px);
  line-height: .78;
  letter-spacing: -.05em;
  font-weight: 900;
  margin: clamp(34px, 7vw, 78px) 0 clamp(26px, 4vw, 46px);
  text-shadow: 0 0 34px rgba(124,60,255,.42);
}

/* Classic + Block checkout shell */
.wc-block-checkout,
.wc-block-cart,
.wp-block-woocommerce-checkout,
.wp-block-woocommerce-cart {
  color: var(--white);
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif;
}

.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 {
  border: 1px solid rgba(246,242,233,.14);
  border-radius: 34px;
  background:
    radial-gradient(620px circle at 18% 0%, rgba(124,60,255,.18), transparent 48%),
    radial-gradient(520px circle at 100% 20%, rgba(3,47,40,.32), transparent 42%),
    linear-gradient(135deg, rgba(7,28,53,.55), rgba(2,3,7,.88));
  box-shadow: 0 0 34px rgba(124,60,255,.14), 0 0 60px rgba(3,47,40,.13);
  padding: clamp(18px, 3vw, 34px) !important;
}

.wc-block-components-title,
.wc-block-components-checkout-step__title,
.wc-block-components-order-summary__title,
.wc-block-cart__totals-title,
.wc-block-components-totals-wrapper h2,
.wc-block-components-sidebar .wc-block-components-panel__button {
  color: var(--white) !important;
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif !important;
  font-size: clamp(28px, 3vw, 44px) !important;
  line-height: .92 !important;
  letter-spacing: -.025em !important;
  font-weight: 900 !important;
  text-shadow: 0 0 20px rgba(124,60,255,.18);
}

.wc-block-components-checkout-step,
.wc-block-components-totals-wrapper,
.wc-block-components-panel,
.wc-block-components-order-summary,
.wc-block-components-order-summary-item,
.wc-block-components-payment-methods,
.wc-block-components-payment-methods__wrapper {
  border-color: rgba(246,242,233,.13) !important;
  color: var(--white) !important;
}

.wc-block-components-checkout-step__description,
.wc-block-components-checkout-step__content,
.wc-block-components-formatted-money-amount,
.wc-block-components-product-name,
.wc-block-components-product-metadata,
.wc-block-components-totals-item__label,
.wc-block-components-totals-item__value,
.wc-block-components-radio-control__label,
.wc-block-components-radio-control__description,
.wc-block-components-checkbox__label,
.wc-block-components-payment-method-label,
.wc-block-components-payment-methods__save-card-info,
.wc-block-components-order-summary-item__description,
.wc-block-components-order-summary-item__quantity,
.wc-block-components-validation-error,
.wc-block-components-address-card,
.wc-block-components-address-card address {
  color: rgba(246,242,233,.78) !important;
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif !important;
  font-size: 19px !important;
  line-height: 1.14 !important;
  font-weight: 700 !important;
}

.wc-block-components-product-name,
.wc-block-components-totals-item__value,
.wc-block-components-formatted-money-amount {
  color: var(--white) !important;
  font-weight: 900 !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  color: var(--gold) !important;
  font-size: 25px !important;
  font-weight: 900 !important;
}

/* Woo Blocks inputs: fix white boxes + invisible floating labels */
.wc-block-components-text-input,
.wc-block-components-combobox,
.wc-block-components-select,
.wc-block-components-address-form__country,
.wc-block-components-address-form__state {
  margin-bottom: 16px !important;
}

.wc-block-components-text-input input[type="text"],
.wc-block-components-text-input input[type="email"],
.wc-block-components-text-input input[type="tel"],
.wc-block-components-text-input input[type="url"],
.wc-block-components-text-input input[type="number"],
.wc-block-components-text-input input[type="password"],
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-combobox input,
.wc-block-components-select .wc-block-components-select__select,
.wc-block-components-textarea,
.wc-block-components-form .wc-block-components-text-input input,
.wc-block-components-form .wc-block-components-select select,
.wc-block-components-form input[type="text"],
.wc-block-components-form input[type="email"],
.wc-block-components-form input[type="tel"],
.wc-block-components-form select,
.wc-block-components-form textarea {
  width: 100% !important;
  min-height: 62px !important;
  border: 1px solid rgba(246,242,233,.18) !important;
  border-radius: 22px !important;
  background:
    linear-gradient(135deg, rgba(7,28,53,.72), rgba(2,3,7,.82)) !important;
  color: var(--white) !important;
  box-shadow: inset 0 0 24px rgba(124,60,255,.09), 0 0 0 rgba(229,189,85,0) !important;
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif !important;
  font-size: 23px !important;
  font-weight: 800 !important;
  letter-spacing: -.01em !important;
  padding: 20px 17px 8px !important;
  caret-color: var(--gold) !important;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease, transform .22s ease !important;
}

.wc-block-components-text-input input:focus,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input:focus,
.wc-block-components-combobox input:focus,
.wc-block-components-select .wc-block-components-select__select:focus,
.wc-block-components-form input:focus,
.wc-block-components-form select:focus,
.wc-block-components-form textarea:focus {
  border-color: rgba(229,189,85,.62) !important;
  background: linear-gradient(135deg, rgba(7,28,53,.88), rgba(2,3,7,.92)) !important;
  box-shadow: 0 0 0 4px rgba(229,189,85,.08), 0 0 32px rgba(124,60,255,.2) !important;
  transform: translateY(-1px);
  outline: none !important;
}

.wc-block-components-text-input label,
.wc-block-components-combobox label,
.wc-block-components-select label,
.wc-block-components-form .wc-block-components-text-input label,
.wc-block-components-form .wc-block-components-select label {
  color: rgba(246,242,233,.62) !important;
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  letter-spacing: .045em !important;
  text-transform: uppercase;
  opacity: 1 !important;
}

.wc-block-components-text-input input:focus + label,
.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(--gold) !important;
}

.wc-block-components-form ::placeholder,
.wc-block-components-text-input ::placeholder {
  color: rgba(246,242,233,.42) !important;
  opacity: 1 !important;
}

.wc-block-components-combobox .components-form-token-field__suggestions-list,
.wc-block-components-combobox .components-combobox-control__suggestions-container,
.components-popover .components-popover__content,
.wc-block-components-dropdown-selector,
.wc-block-components-select .wc-block-components-select__select option {
  background: #050914 !important;
  color: var(--white) !important;
  border-color: rgba(229,189,85,.28) !important;
}

.wc-block-components-address-form__address_2-toggle,
.wc-block-components-address-form__address_2-toggle:hover,
.wc-block-components-button.wc-block-components-checkout-place-order-button,
.wc-block-cart__submit-button,
.wc-block-components-button:not(.is-link) {
  border-radius: 999px !important;
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: .045em !important;
  text-transform: uppercase;
}

.wc-block-components-address-form__address_2-toggle {
  color: var(--gold) !important;
  font-size: 17px !important;
  padding: 0 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  background: transparent !important;
}

.wc-block-components-radio-control,
.wc-block-components-radio-control__option,
.wc-block-components-radio-control-accordion-option,
.wc-block-components-radio-control-accordion-content,
.wc-block-components-payment-methods__payment-method,
.wc-block-components-checkout-step__container {
  background: rgba(2,3,7,.42) !important;
  color: var(--white) !important;
  border-color: rgba(246,242,233,.16) !important;
  border-radius: 24px !important;
}

.wc-block-components-radio-control__option {
  padding: 18px 20px !important;
}

.wc-block-components-radio-control__input,
.wc-block-components-checkbox__input[type="checkbox"] {
  accent-color: var(--gold);
}

.wc-block-components-payment-methods__payment-method-content,
.wc-block-components-radio-control-accordion-content {
  padding: 4px 20px 20px !important;
}

.wc-block-components-button.wc-block-components-checkout-place-order-button,
.wc-block-cart__submit-button,
.wc-block-components-button:not(.is-link) {
  min-height: 62px !important;
  border: 0 !important;
  background: linear-gradient(135deg, var(--white), var(--gold)) !important;
  color: #061019 !important;
  box-shadow: 0 0 34px rgba(229,189,85,.26) !important;
  font-size: 22px !important;
  padding: 0 30px !important;
  transition: transform .22s ease, box-shadow .22s ease !important;
}

.wc-block-components-button.wc-block-components-checkout-place-order-button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-button:not(.is-link):hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 0 46px rgba(229,189,85,.38) !important;
}

.wc-block-components-notice-banner,
.wc-block-components-validation-error,
.woocommerce .wc-block-components-notice-banner {
  border: 1px solid rgba(229,189,85,.28) !important;
  border-radius: 22px !important;
  background: linear-gradient(135deg, rgba(229,189,85,.12), rgba(124,60,255,.08)) !important;
  color: var(--white) !important;
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif !important;
  font-size: 18px !important;
  font-weight: 800 !important;
}

.wc-block-components-notice-banner a,
.wc-block-components-validation-error a,
.wc-block-components-totals-coupon-link,
.wc-block-components-checkout-return-to-cart-button {
  color: var(--gold) !important;
  font-weight: 900 !important;
}

.wc-block-components-order-summary-item__image img,
.wc-block-cart-item__image img {
  border-radius: 18px !important;
  border: 1px solid rgba(246,242,233,.14) !important;
}

.wc-block-components-quantity-selector {
  border-color: rgba(246,242,233,.18) !important;
  background: rgba(2,3,7,.7) !important;
  border-radius: 999px !important;
}
.wc-block-components-quantity-selector input,
.wc-block-components-quantity-selector button {
  color: var(--white) !important;
}

/* Browser autofill fix */
.woocommerce input:-webkit-autofill,
.wc-block-components-form input:-webkit-autofill,
.wc-block-components-text-input input:-webkit-autofill {
  -webkit-text-fill-color: var(--white) !important;
  box-shadow: 0 0 0 1000px rgba(7,28,53,.95) inset, 0 0 0 4px rgba(229,189,85,.08) !important;
  caret-color: var(--gold) !important;
}

@media (max-width: 900px) {
  .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 {
    border-radius: 24px;
    padding: 18px !important;
  }
  .woocommerce-checkout .entry-title,
  .woocommerce-checkout .wp-block-post-title,
  .woocommerce-cart .entry-title,
  .woocommerce-cart .wp-block-post-title {
    font-size: clamp(64px, 20vw, 108px);
  }
}

/* Update 1.8: hard checkout/cart override for WooCommerce Blocks + Classic checkout
   Loaded inline after theme stylesheet so it beats Woo Blocks' own white form styles. */
body.woocommerce-checkout,
body.woocommerce-cart,
body.woocommerce-checkout .wp-site-blocks,
body.woocommerce-cart .wp-site-blocks,
body.woocommerce-checkout .entry-content,
body.woocommerce-cart .entry-content,
.wp-block-woocommerce-checkout,
.wp-block-woocommerce-cart,
.wc-block-checkout,
.wc-block-cart,
.woocommerce-checkout .woocommerce,
.woocommerce-cart .woocommerce {
  --zbn-checkout-bg: #03050c;
  --zbn-checkout-panel: rgba(6, 13, 25, .82);
  --zbn-checkout-panel-2: rgba(7, 28, 53, .64);
  --zbn-checkout-text: #fffaf0;
  --zbn-checkout-muted: rgba(255,250,240,.72);
  --zbn-checkout-line: rgba(255,250,240,.18);
  --zbn-checkout-gold: #e5bd55;
  --zbn-checkout-purple: #7c3cff;
  color: var(--zbn-checkout-text) !important;
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif !important;
}

body.woocommerce-checkout .zbn-shop-frame,
body.woocommerce-cart .zbn-shop-frame,
body.woocommerce-checkout .entry-content,
body.woocommerce-cart .entry-content {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.woocommerce-checkout h1,
body.woocommerce-cart h1,
body.woocommerce-checkout .entry-title,
body.woocommerce-cart .entry-title,
body.woocommerce-checkout .wp-block-post-title,
body.woocommerce-cart .wp-block-post-title {
  color: var(--zbn-checkout-text) !important;
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif !important;
  font-size: clamp(66px, 13vw, 132px) !important;
  line-height: .78 !important;
  letter-spacing: -.05em !important;
  font-weight: 900 !important;
  margin-bottom: clamp(22px, 4vw, 44px) !important;
  text-shadow: 0 0 34px rgba(124,60,255,.42) !important;
}

/* Main checkout panels */
.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 {
  color: var(--zbn-checkout-text) !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 {
  border: 1px solid var(--zbn-checkout-line) !important;
  border-radius: 32px !important;
  background:
    radial-gradient(620px circle at 12% 0%, rgba(124,60,255,.20), transparent 44%),
    radial-gradient(520px circle at 100% 18%, rgba(3,47,40,.36), transparent 44%),
    linear-gradient(135deg, var(--zbn-checkout-panel-2), rgba(2,3,7,.92)) !important;
  box-shadow: 0 0 36px rgba(124,60,255,.13), 0 0 62px rgba(3,47,40,.12) !important;
  padding: clamp(18px, 3vw, 34px) !important;
}

/* Section headings */
.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-additional-fields h3,
.woocommerce-order-details__title {
  color: var(--zbn-checkout-text) !important;
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif !important;
  font-size: clamp(28px, 3vw, 44px) !important;
  font-weight: 900 !important;
  line-height: .92 !important;
  letter-spacing: -.025em !important;
  text-shadow: 0 0 18px rgba(124,60,255,.18) !important;
}

/* Kill the white input boxes everywhere on block checkout. */
.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-checkout .input-text,
.woocommerce-checkout input[type='text'],
.woocommerce-checkout input[type='email'],
.woocommerce-checkout input[type='tel'],
.woocommerce-checkout input[type='number'],
.woocommerce-checkout input[type='password'],
.woocommerce-checkout select,
.woocommerce-checkout textarea,
.woocommerce-cart .input-text,
.woocommerce-cart input[type='text'] {
  box-sizing: border-box !important;
  width: 100% !important;
  min-height: 64px !important;
  border: 1px solid rgba(255,250,240,.22) !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, rgba(7,28,53,.86), rgba(2,3,7,.94)) !important;
  background-color: #071525 !important;
  color: var(--zbn-checkout-text) !important;
  -webkit-text-fill-color: var(--zbn-checkout-text) !important;
  caret-color: var(--zbn-checkout-gold) !important;
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif !important;
  font-size: 22px !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  letter-spacing: -.01em !important;
  padding: 22px 16px 9px !important;
  box-shadow: inset 0 0 24px rgba(124,60,255,.10) !important;
  outline: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

/* Specific field wrappers also need dark backgrounds in Woo Blocks. */
.wc-block-components-text-input,
.wc-block-components-combobox,
.wc-block-components-combobox-control,
.wc-block-components-combobox .components-base-control__field,
.wc-block-components-select,
.wc-block-components-select__container,
.wc-block-components-address-form__country,
.wc-block-components-address-form__state,
.components-combobox-control__suggestions-container {
  background: transparent !important;
  color: var(--zbn-checkout-text) !important;
  border-color: transparent !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-checkout .input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
  border-color: rgba(229,189,85,.75) !important;
  background: linear-gradient(135deg, rgba(10,36,62,.96), rgba(2,3,7,.98)) !important;
  background-color: #071525 !important;
  box-shadow: 0 0 0 4px rgba(229,189,85,.10), 0 0 34px rgba(124,60,255,.22), inset 0 0 20px rgba(124,60,255,.10) !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-checkout label,
.woocommerce-cart label {
  color: rgba(255,250,240,.70) !important;
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif !important;
  font-size: 16px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: .045em !important;
  text-transform: uppercase !important;
  opacity: 1 !important;
  text-shadow: none !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,
.wp-block-woocommerce-checkout input:focus + label,
.wc-block-checkout input:focus + label {
  color: var(--zbn-checkout-gold) !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 {
  color: rgba(255,250,240,.46) !important;
  -webkit-text-fill-color: rgba(255,250,240,.46) !important;
  opacity: 1 !important;
}

/* Browser autofill is commonly what keeps fields white in Chrome. */
.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 {
  -webkit-text-fill-color: var(--zbn-checkout-text) !important;
  caret-color: var(--zbn-checkout-gold) !important;
  box-shadow: 0 0 0 1000px #071525 inset, 0 0 0 4px rgba(229,189,85,.08) !important;
  border-color: rgba(229,189,85,.42) !important;
}

/* Dropdown menus/popovers */
.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: #050914 !important;
  color: var(--zbn-checkout-text) !important;
  border-color: rgba(229,189,85,.30) !important;
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif !important;
  font-size: 19px !important;
  font-weight: 800 !important;
}

/* Payment options/order review */
.wc-block-components-radio-control,
.wc-block-components-radio-control__option,
.wc-block-components-radio-control-accordion-option,
.wc-block-components-radio-control-accordion-content,
.wc-block-components-payment-methods,
.wc-block-components-payment-methods__payment-method,
.wc-block-components-payment-methods__payment-method-content,
.wc-block-components-checkout-step__container,
.woocommerce-checkout #payment ul.payment_methods li,
.woocommerce-checkout #payment div.payment_box {
  background: rgba(2,3,7,.50) !important;
  border: 1px solid rgba(255,250,240,.18) !important;
  border-radius: 22px !important;
  color: var(--zbn-checkout-text) !important;
}

.wc-block-components-checkout-step__description,
.wc-block-components-checkout-step__content,
.wc-block-components-radio-control__label,
.wc-block-components-radio-control__description,
.wc-block-components-checkbox__label,
.wc-block-components-payment-method-label,
.wc-block-components-totals-item__label,
.wc-block-components-totals-item__value,
.wc-block-components-product-name,
.wc-block-components-product-metadata,
.wc-block-components-formatted-money-amount,
.wc-block-components-order-summary-item__description,
.wc-block-components-order-summary-item__quantity,
.woocommerce-checkout table,
.woocommerce-checkout th,
.woocommerce-checkout td,
.woocommerce-cart table,
.woocommerce-cart th,
.woocommerce-cart td,
.woocommerce-checkout #payment div.payment_box,
.woocommerce-checkout #payment ul.payment_methods li label {
  color: var(--zbn-checkout-muted) !important;
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif !important;
  font-size: 19px !important;
  font-weight: 750 !important;
  line-height: 1.18 !important;
}

.wc-block-components-product-name,
.wc-block-components-totals-item__value,
.wc-block-components-formatted-money-amount,
.woocommerce-checkout .product-name,
.woocommerce-checkout .product-total,
.woocommerce-cart .product-name,
.woocommerce-cart .product-subtotal {
  color: var(--zbn-checkout-text) !important;
  font-weight: 900 !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.woocommerce-checkout .order-total th,
.woocommerce-checkout .order-total td,
.woocommerce-cart .order-total th,
.woocommerce-cart .order-total td {
  color: var(--zbn-checkout-gold) !important;
  font-size: 25px !important;
  font-weight: 900 !important;
}

/* Buttons */
.wc-block-components-button:not(.is-link),
.wc-block-components-checkout-place-order-button,
.wc-block-cart__submit-button,
.woocommerce-checkout #place_order,
.woocommerce-cart .checkout-button,
.woocommerce-cart button,
.woocommerce-checkout button,
.woocommerce button.button,
.woocommerce a.button {
  min-height: 62px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #fffaf0, var(--zbn-checkout-gold)) !important;
  color: #061019 !important;
  -webkit-text-fill-color: #061019 !important;
  box-shadow: 0 0 34px rgba(229,189,85,.28) !important;
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  letter-spacing: .045em !important;
  text-transform: uppercase !important;
  padding: 0 30px !important;
  text-decoration: none !important;
}

.wc-block-components-address-form__address_2-toggle,
.wc-block-components-totals-coupon-link,
.wc-block-components-checkout-return-to-cart-button,
.woocommerce-checkout a,
.woocommerce-cart a {
  color: var(--zbn-checkout-gold) !important;
  font-weight: 900 !important;
}

.wc-block-components-notice-banner,
.wc-block-components-validation-error,
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  border: 1px solid rgba(229,189,85,.32) !important;
  border-radius: 20px !important;
  background: linear-gradient(135deg, rgba(229,189,85,.13), rgba(124,60,255,.09)) !important;
  color: var(--zbn-checkout-text) !important;
  font-family: 'Darker Grotesque', Arial Narrow, system-ui, sans-serif !important;
  font-size: 18px !important;
  font-weight: 800 !important;
}

@media (max-width: 780px) {
  .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 {
    border-radius: 22px !important;
    padding: 17px !important;
  }
}

/* Update 1.9: checkout layout polish - smaller titles, clearer controls, better spacing */
body.woocommerce-checkout h1,
body.woocommerce-cart h1,
body.woocommerce-checkout .entry-title,
body.woocommerce-cart .entry-title,
body.woocommerce-checkout .wp-block-post-title,
body.woocommerce-cart .wp-block-post-title {
  font-size: clamp(58px, 9vw, 102px) !important;
  line-height: .84 !important;
  letter-spacing: -.045em !important;
  margin: clamp(24px, 4vw, 48px) 0 clamp(24px, 3.5vw, 42px) !important;
}

.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout,
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout,
.wc-block-components-sidebar-layout,
.wc-block-checkout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px) !important;
  gap: clamp(34px, 5vw, 64px) !important;
  align-items: start !important;
}

.wc-block-checkout__main,
.wc-block-components-sidebar-layout .wc-block-components-main {
  min-width: 0 !important;
}

.wc-block-checkout__sidebar,
.wc-block-components-sidebar-layout .wc-block-components-sidebar {
  width: auto !important;
  min-width: 0 !important;
  position: sticky !important;
  top: 24px !important;
}

.wc-block-components-title,
.wc-block-components-checkout-step__title,
.woocommerce-checkout h3,
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3 {
  font-size: clamp(27px, 2.8vw, 38px) !important;
  line-height: .96 !important;
  letter-spacing: -.018em !important;
  margin-bottom: 16px !important;
}

.wc-block-components-order-summary__title,
.wc-block-components-sidebar .wc-block-components-panel__button,
.wc-block-components-panel__button,
.wc-block-components-totals-wrapper h2 {
  font-size: clamp(22px, 2.2vw, 30px) !important;
  line-height: 1 !important;
  letter-spacing: -.015em !important;
}

.wc-block-components-product-name,
.wc-block-components-order-summary-item__description .wc-block-components-product-name,
.wc-block-components-order-summary-item__description a,
.wc-block-components-sidebar .wc-block-components-product-name {
  font-size: clamp(20px, 2vw, 26px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.02em !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

.wc-block-components-order-summary-item,
.wc-block-components-totals-wrapper,
.wc-block-components-panel {
  padding-block: 16px !important;
}

.wc-block-components-order-summary-item__image {
  width: 54px !important;
  min-width: 54px !important;
}

.wc-block-components-order-summary-item__image img {
  width: 54px !important;
  height: 54px !important;
  object-fit: cover !important;
}

.wc-block-components-order-summary-item__description {
  padding-left: 14px !important;
}

/* Clear, normal-sized radio/checkbox controls. */
.wc-block-components-radio-control__input,
.wc-block-components-checkbox__input[type='checkbox'],
.woocommerce-checkout input[type='radio'],
.woocommerce-checkout input[type='checkbox'],
.woocommerce-cart input[type='radio'],
.woocommerce-cart input[type='checkbox'] {
  appearance: none !important;
  -webkit-appearance: none !important;
  inline-size: 18px !important;
  block-size: 18px !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  padding: 0 !important;
  margin: 0 12px 0 0 !important;
  border: 2px solid rgba(255,250,240,.55) !important;
  background: rgba(2,3,7,.85) !important;
  background-image: none !important;
  box-shadow: 0 0 0 4px rgba(124,60,255,.08) !important;
  cursor: pointer !important;
  vertical-align: middle !important;
  flex: 0 0 18px !important;
}

.wc-block-components-radio-control__input,
.woocommerce-checkout input[type='radio'],
.woocommerce-cart input[type='radio'] {
  border-radius: 999px !important;
}

.wc-block-components-checkbox__input[type='checkbox'],
.woocommerce-checkout input[type='checkbox'],
.woocommerce-cart input[type='checkbox'] {
  border-radius: 5px !important;
}

.wc-block-components-radio-control__input:checked,
.woocommerce-checkout input[type='radio']:checked,
.woocommerce-cart input[type='radio']:checked {
  border-color: var(--zbn-checkout-gold, #e5bd55) !important;
  background: radial-gradient(circle at center, var(--zbn-checkout-gold, #e5bd55) 0 35%, rgba(2,3,7,.9) 38% 100%) !important;
  box-shadow: 0 0 0 4px rgba(229,189,85,.12), 0 0 18px rgba(229,189,85,.18) !important;
}

.wc-block-components-checkbox__input[type='checkbox']:checked,
.woocommerce-checkout input[type='checkbox']:checked,
.woocommerce-cart input[type='checkbox']:checked {
  border-color: var(--zbn-checkout-gold, #e5bd55) !important;
  background:
    linear-gradient(135deg, transparent 0 42%, #061019 42% 58%, transparent 58%),
    linear-gradient(45deg, transparent 0 44%, #061019 44% 58%, transparent 58%),
    var(--zbn-checkout-gold, #e5bd55) !important;
  box-shadow: 0 0 0 4px rgba(229,189,85,.12), 0 0 18px rgba(229,189,85,.18) !important;
}

.wc-block-components-radio-control__option,
.wc-block-components-radio-control-accordion-option,
.woocommerce-checkout #payment ul.payment_methods li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  padding: 16px 18px !important;
}

.wc-block-components-radio-control__label,
.wc-block-components-payment-method-label,
.woocommerce-checkout #payment ul.payment_methods li label {
  font-size: 18px !important;
  line-height: 1.12 !important;
  letter-spacing: -.005em !important;
}

.wc-block-components-payment-methods__payment-method-content,
.wc-block-components-radio-control-accordion-content,
.woocommerce-checkout #payment div.payment_box {
  margin-top: 8px !important;
  padding: 14px 18px !important;
  font-size: 16px !important;
  line-height: 1.28 !important;
  border-radius: 18px !important;
}

.wc-block-components-payment-methods__payment-method-content p,
.wc-block-components-radio-control-accordion-content p,
.woocommerce-checkout #payment div.payment_box p {
  font-size: 16px !important;
  line-height: 1.28 !important;
  margin: 0 !important;
}

.wc-block-components-checkbox,
.wc-block-components-checkbox label,
.woocommerce-checkout .woocommerce-form__label-for-checkbox {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
}

.wc-block-components-checkbox__label,
.woocommerce-checkout .woocommerce-form__label-for-checkbox span {
  font-size: 17px !important;
  line-height: 1.2 !important;
}

.wc-block-components-sidebar,
.wc-block-checkout__sidebar {
  font-size: 16px !important;
}

.wc-block-components-sidebar .wc-block-components-totals-item__label,
.wc-block-components-sidebar .wc-block-components-totals-item__value,
.wc-block-components-sidebar .wc-block-components-formatted-money-amount {
  font-size: 17px !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 21px !important;
}

.wc-block-components-address-form,
.wc-block-components-checkout-step__content,
.woocommerce-billing-fields__field-wrapper {
  display: grid !important;
  row-gap: 14px !important;
}

@media (max-width: 980px) {
  .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout,
  .wp-block-woocommerce-cart .wc-block-components-sidebar-layout,
  .wc-block-components-sidebar-layout,
  .wc-block-checkout {
    display: block !important;
  }
  .wc-block-checkout__sidebar,
  .wc-block-components-sidebar-layout .wc-block-components-sidebar {
    position: static !important;
    margin-top: 26px !important;
  }
}

/* Update 2.0: checkout anti-squash + refined blocks layout */
body.woocommerce-checkout .zbn-shop-shell,
body.woocommerce-cart .zbn-shop-shell,
body.woocommerce-checkout .zbn-shop-frame,
body.woocommerce-cart .zbn-shop-frame,
body.woocommerce-checkout .zbn-page-content,
body.woocommerce-cart .zbn-page-content,
body.woocommerce-checkout .entry-content,
body.woocommerce-cart .entry-content,
body.woocommerce-checkout .wp-block-woocommerce-checkout,
body.woocommerce-cart .wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout,
.wp-block-woocommerce-cart {
  width: min(1180px, calc(100vw - 56px)) !important;
  max-width: 1180px !important;
  margin-inline: auto !important;
  box-sizing: border-box !important;
}

body.woocommerce-checkout .zbn-page-content,
body.woocommerce-cart .zbn-page-content,
body.woocommerce-checkout .entry-content,
body.woocommerce-cart .entry-content {
  display: block !important;
}

body.woocommerce-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout,
body.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-sidebar-layout,
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout,
.wp-block-woocommerce-cart .wc-block-components-sidebar-layout,
.wc-block-components-sidebar-layout,
.wc-block-checkout {
  width: 100% !important;
  max-width: 1180px !important;
  display: grid !important;
  grid-template-columns: minmax(600px, 1fr) minmax(330px, 390px) !important;
  column-gap: clamp(28px, 4vw, 52px) !important;
  row-gap: 32px !important;
  align-items: start !important;
  margin-inline: auto !important;
  box-sizing: border-box !important;
}

.wc-block-checkout__main,
.wc-block-components-sidebar-layout .wc-block-components-main {
  width: 100% !important;
  min-width: 600px !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

.wc-block-checkout__sidebar,
.wc-block-components-sidebar-layout .wc-block-components-sidebar {
  width: 100% !important;
  min-width: 330px !important;
  max-width: 390px !important;
  box-sizing: border-box !important;
  margin-left: 0 !important;
}

.wc-block-components-checkout-step,
.wc-block-components-checkout-step__container,
.wc-block-components-checkout-step__content,
.wc-block-components-address-form,
.wc-block-components-address-form > *,
.wc-block-components-text-input,
.wc-block-components-combobox,
.wc-block-components-select,
.wc-block-components-base-control,
.wc-block-components-panel,
.wc-block-components-sidebar .wc-block-components-panel,
.wc-block-components-sidebar .wc-block-components-totals-wrapper,
.wc-block-components-sidebar .wc-block-components-order-summary {
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.wc-block-components-checkout-step__title,
.wc-block-components-title,
.woocommerce-checkout h3,
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3 {
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
  white-space: normal !important;
  font-size: clamp(30px, 3vw, 42px) !important;
  line-height: .92 !important;
  letter-spacing: -.025em !important;
}

.wc-block-components-address-form {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.wc-block-components-address-form .wc-block-components-address-form__country,
.wc-block-components-address-form .wc-block-components-address-form__address_1,
.wc-block-components-address-form .wc-block-components-address-form__address_2,
.wc-block-components-address-form .wc-block-components-address-form__city,
.wc-block-components-address-form .wc-block-components-address-form__postcode,
.wc-block-components-address-form .wc-block-components-address-form__phone,
.wc-block-components-address-form .wc-block-components-address-form__company,
.wc-block-components-address-form .wc-block-components-address-form__state {
  grid-column: auto !important;
}

.wc-block-components-address-form .wc-block-components-address-form__country,
.wc-block-components-address-form .wc-block-components-address-form__address_1,
.wc-block-components-address-form .wc-block-components-address-form__address_2-toggle,
.wc-block-components-address-form .wc-block-components-address-form__address_2 {
  grid-column: 1 / -1 !important;
}

.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,
.woocommerce-checkout .input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  font-size: 20px !important;
  min-height: 58px !important;
  padding: 20px 15px 8px !important;
}

.wc-block-components-text-input label,
.wc-block-components-combobox label,
.wc-block-components-select label,
.woocommerce-checkout label {
  font-size: 12px !important;
  letter-spacing: .095em !important;
  line-height: 1 !important;
}

.wc-block-components-radio-control,
.wc-block-components-radio-control__option,
.wc-block-components-radio-control-accordion-option,
.wc-block-components-radio-control-accordion-content,
.wc-block-components-payment-methods,
.wc-block-components-payment-methods__payment-method,
.wc-block-components-payment-methods__payment-method-content {
  width: 100% !important;
  box-sizing: border-box !important;
}

.wc-block-components-radio-control__input,
.wc-block-components-checkbox__input[type='checkbox'],
.woocommerce-checkout input[type='radio'],
.woocommerce-checkout input[type='checkbox'] {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  flex: 0 0 16px !important;
  margin: 2px 10px 0 0 !important;
}

.wc-block-components-radio-control__option,
.wc-block-components-radio-control-accordion-option,
.woocommerce-checkout #payment ul.payment_methods li {
  align-items: flex-start !important;
  min-height: auto !important;
  padding: 14px 16px !important;
}

.wc-block-components-payment-methods__payment-method-content,
.wc-block-components-radio-control-accordion-content,
.woocommerce-checkout #payment div.payment_box {
  margin: 8px 0 0 26px !important;
  width: calc(100% - 26px) !important;
  padding: 14px 16px !important;
}

.wc-block-components-payment-methods__payment-method-content p,
.wc-block-components-radio-control-accordion-content p,
.woocommerce-checkout #payment div.payment_box p {
  font-size: 15px !important;
  line-height: 1.35 !important;
}

.wc-block-components-order-summary-item {
  display: grid !important;
  grid-template-columns: 52px minmax(0, 1fr) auto !important;
  gap: 12px !important;
  align-items: start !important;
}

.wc-block-components-order-summary-item__description {
  padding-left: 0 !important;
  min-width: 0 !important;
}

.wc-block-components-order-summary-item__total-price,
.wc-block-components-order-summary-item__individual-prices {
  white-space: nowrap !important;
}

.wc-block-components-product-name,
.wc-block-components-order-summary-item__description .wc-block-components-product-name,
.wc-block-components-order-summary-item__description a,
.wc-block-components-sidebar .wc-block-components-product-name {
  font-size: clamp(17px, 1.45vw, 22px) !important;
  line-height: 1.05 !important;
  letter-spacing: -.012em !important;
  overflow-wrap: break-word !important;
}

@media (max-width: 1080px) {
  body.woocommerce-checkout .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout,
  body.woocommerce-cart .wp-block-woocommerce-cart .wc-block-components-sidebar-layout,
  .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout,
  .wp-block-woocommerce-cart .wc-block-components-sidebar-layout,
  .wc-block-components-sidebar-layout,
  .wc-block-checkout {
    display: block !important;
  }

  .wc-block-checkout__main,
  .wc-block-components-sidebar-layout .wc-block-components-main,
  .wc-block-checkout__sidebar,
  .wc-block-components-sidebar-layout .wc-block-components-sidebar {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .wc-block-checkout__sidebar,
  .wc-block-components-sidebar-layout .wc-block-components-sidebar {
    position: static !important;
    margin-top: 28px !important;
  }
}

@media (max-width: 680px) {
  body.woocommerce-checkout .zbn-shop-shell,
  body.woocommerce-cart .zbn-shop-shell,
  body.woocommerce-checkout .zbn-shop-frame,
  body.woocommerce-cart .zbn-shop-frame,
  body.woocommerce-checkout .zbn-page-content,
  body.woocommerce-cart .zbn-page-content,
  body.woocommerce-checkout .entry-content,
  body.woocommerce-cart .entry-content,
  body.woocommerce-checkout .wp-block-woocommerce-checkout,
  body.woocommerce-cart .wp-block-woocommerce-cart,
  .wp-block-woocommerce-checkout,
  .wp-block-woocommerce-cart {
    width: min(100%, calc(100vw - 28px)) !important;
  }

  .wc-block-components-address-form {
    grid-template-columns: 1fr !important;
  }
}

/* Update 2.1: ZBN Graduation Bookings plugin frontend integration */
body:has(.zbn-booking-form) .zbn-shop-shell,
body:has(.zbn-booking-card) .zbn-shop-shell {
  padding-top: clamp(28px, 5vw, 72px) !important;
}

body:has(.zbn-booking-form) .zbn-shop-frame,
body:has(.zbn-booking-card) .zbn-shop-frame {
  max-width: 1120px !important;
  padding: clamp(18px, 3vw, 32px) !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(110, 75, 255, .26), transparent 35%),
    radial-gradient(circle at 88% 18%, rgba(0, 159, 125, .22), transparent 38%),
    linear-gradient(145deg, rgba(14, 20, 42, .84), rgba(0, 6, 18, .92)) !important;
  border: 1px solid rgba(255,255,255,.13) !important;
  box-shadow: 0 28px 90px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.08) !important;
}

body:has(.zbn-booking-form) .zbn-page-content > h1 {
  max-width: 920px !important;
  margin: 0 auto clamp(18px, 4vw, 34px) !important;
  font-size: clamp(52px, 9vw, 108px) !important;
  line-height: .82 !important;
  letter-spacing: -.055em !important;
  color: var(--cream, #fff8e8) !important;
  text-shadow: 0 0 30px rgba(105, 74, 255, .45) !important;
}

.zbn-booking-form {
  width: min(100%, 920px) !important;
  max-width: 920px !important;
  margin: 0 auto clamp(80px, 8vw, 120px) !important;
  padding: 0 !important;
  color: var(--cream, #fff8e8) !important;
  font-family: 'Darker Grotesque', system-ui, sans-serif !important;
}

.zbn-booking-card {
  position: relative !important;
  overflow: hidden !important;
  margin: 0 0 clamp(22px, 3.5vw, 34px) !important;
  padding: clamp(24px, 4.2vw, 48px) !important;
  border-radius: clamp(24px, 3vw, 38px) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.09), transparent 32%),
    radial-gradient(circle at 0% 0%, rgba(110,75,255,.27), transparent 34%),
    radial-gradient(circle at 100% 22%, rgba(0,159,125,.18), transparent 34%),
    rgba(3, 8, 22, .78) !important;
  box-shadow: 0 24px 80px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.08) !important;
  backdrop-filter: blur(18px) !important;
}

.zbn-booking-card::before {
  content: '' !important;
  position: absolute !important;
  inset: -1px !important;
  pointer-events: none !important;
  background: linear-gradient(115deg, transparent 0%, rgba(255,213,97,.18) 28%, transparent 46%, rgba(122,95,255,.18) 72%, transparent 100%) !important;
  opacity: .65 !important;
  mix-blend-mode: screen !important;
}

.zbn-booking-card > * { position: relative !important; z-index: 1 !important; }

.zbn-kicker {
  display: inline-flex !important;
  width: auto !important;
  margin: 0 0 12px !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,213,97,.36) !important;
  background: rgba(255,213,97,.08) !important;
  color: var(--gold, #ffd561) !important;
  text-transform: uppercase !important;
  letter-spacing: .18em !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  opacity: 1 !important;
}

.zbn-booking-card h1,
.zbn-booking-card h2 {
  margin: 0 0 16px !important;
  color: var(--cream, #fff8e8) !important;
  font-size: clamp(42px, 6vw, 72px) !important;
  line-height: .86 !important;
  letter-spacing: -.05em !important;
  text-shadow: 0 0 24px rgba(111, 80, 255, .36) !important;
}

.zbn-booking-card p {
  max-width: 68ch !important;
  color: rgba(255,248,232,.74) !important;
  font-size: clamp(18px, 2vw, 24px) !important;
  line-height: 1.2 !important;
  margin: 0 0 18px !important;
}

.zbn-booking-form label {
  display: block !important;
  margin: 18px 0 8px !important;
  color: rgba(255,248,232,.74) !important;
  font-size: 15px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !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 {
  width: 100% !important;
  min-height: 58px !important;
  margin-top: 9px !important;
  padding: 15px 17px !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 18px !important;
  background: linear-gradient(145deg, rgba(10,28,58,.72), rgba(5,4,16,.88)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 0 1px rgba(80,58,160,.08) !important;
  color: var(--cream, #fff8e8) !important;
  font-family: 'Darker Grotesque', system-ui, sans-serif !important;
  font-size: 22px !important;
  font-weight: 750 !important;
  line-height: 1.1 !important;
  outline: none !important;
  box-sizing: border-box !important;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease !important;
}

.zbn-booking-form select {
  appearance: auto !important;
  color-scheme: dark !important;
}

.zbn-booking-form textarea {
  min-height: 120px !important;
  resize: vertical !important;
}

.zbn-booking-form input:focus,
.zbn-booking-form select:focus,
.zbn-booking-form textarea:focus {
  border-color: rgba(255,213,97,.62) !important;
  box-shadow: 0 0 0 4px rgba(255,213,97,.10), 0 0 34px rgba(111,80,255,.18), inset 0 1px 0 rgba(255,255,255,.12) !important;
  transform: translateY(-1px) !important;
}

.zbn-checkline,
.zbn-booking-form label.zbn-checkline {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: start !important;
  margin: 18px 0 !important;
  padding: 15px 16px !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.045) !important;
  color: rgba(255,248,232,.82) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 20px !important;
  line-height: 1.12 !important;
  font-weight: 760 !important;
}

.zbn-checkline input[type='checkbox'] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  margin: 1px 0 0 !important;
  accent-color: var(--gold, #ffd561) !important;
  flex: 0 0 18px !important;
}

.zbn-note {
  margin: 14px 0 0 !important;
  padding: 15px 17px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255,213,97,.28) !important;
  background: rgba(255,213,97,.08) !important;
  color: rgba(255,248,232,.82) !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
}

.zbn-fsa-frame {
  max-height: min(65vh, 680px) !important;
  overflow: auto !important;
  padding: clamp(16px, 3vw, 28px) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  border-radius: 22px !important;
  background: rgba(255,248,232,.965) !important;
  color: #08111f !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7) !important;
  font-size: 17px !important;
  line-height: 1.48 !important;
}

.zbn-fsa-frame * {
  color: #08111f !important;
  text-shadow: none !important;
}

.zbn-fsa-frame h1,
.zbn-fsa-frame h2,
.zbn-fsa-frame h3 {
  color: #08111f !important;
  font-size: revert !important;
  line-height: 1.05 !important;
  letter-spacing: -.025em !important;
}

.zbn-fsa-frame .fsa-page {
  min-height: auto !important;
  padding: 0 !important;
  margin: 0 0 24px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.zbn-fsa-frame .fsa-header,
.zbn-fsa-frame .fsa-footer,
.zbn-fsa-frame .page-number {
  display: none !important;
}

.zbn-signature-wrap {
  margin-top: 20px !important;
}

.zbn-signature-wrap canvas {
  width: 100% !important;
  height: 220px !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  border-radius: 20px !important;
  background: rgba(255,248,232,.96) !important;
  box-shadow: 0 18px 50px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.68) !important;
  cursor: crosshair !important;
}

.zbn-signature-wrap .button,
.zbn-booking-form .button,
.zbn-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 52px !important;
  margin: 16px 10px 0 0 !important;
  padding: 14px 22px !important;
  border: 1px solid rgba(255,213,97,.48) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--cream, #fff8e8), var(--gold, #ffd561)) !important;
  color: #030711 !important;
  box-shadow: 0 14px 44px rgba(255,213,97,.20) !important;
  font-family: 'Darker Grotesque', system-ui, sans-serif !important;
  font-size: 18px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease !important;
}

.zbn-signature-wrap .button:hover,
.zbn-booking-form .button:hover,
.zbn-submit:hover {
  opacity: 1 !important;
  transform: translateY(-2px) !important;
  filter: brightness(1.04) !important;
  box-shadow: 0 18px 60px rgba(255,213,97,.28) !important;
}

.zbn-conditional[hidden] { display: none !important; }

@media (max-width: 720px) {
  body:has(.zbn-booking-form) .zbn-shop-frame { padding: 14px !important; }
  .zbn-booking-card { padding: 22px 16px !important; border-radius: 24px !important; }
  .zbn-booking-card h1, .zbn-booking-card h2 { font-size: clamp(38px, 12vw, 58px) !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: 20px !important; border-radius: 16px !important; }
  .zbn-checkline, .zbn-booking-form label.zbn-checkline { font-size: 18px !important; }
  .zbn-fsa-frame { max-height: 520px !important; }
}

/* Mobile performance pass: reduce GPU-heavy neon motion on phones/tablets */
@media (hover: none), (pointer: coarse), (max-width: 780px) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  body::before {
    animation: none !important;
    background-size: 42px 42px !important;
    opacity: .18 !important;
  }

  body::after,
  .site-bg::before,
  .site-bg::after,
  .neon-orb,
  .hero-orb,
  .glow-orb,
  .zbn-orb,
  .booking-card::before,
  .booking-card::after,
  .neon-frame::before,
  .zbn-shop-frame::before,
  .product-story-row::before,
  .step-item::before {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .image-reveal,
  .image-reveal.in-view,
  .booking-row,
  .neon-frame,
  .step-item,
  .zbn-shop-frame,
  .zbn-product-hero,
  .product-story-row,
  .interactive-image,
  .booking-image,
  .booking-image img,
  .hero-visual,
  .hero-card,
  .portrait-card,
  .magnetic {
    animation: none !important;
    transform: none !important;
    translate: none !important;
    transition: opacity .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease !important;
    filter: none !important;
  }

  .reveal,
  .image-reveal,
  .image-reveal.in-view {
    opacity: 1 !important;
  }

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

  .booking-row,
  .neon-frame,
  .step-item,
  .zbn-shop-frame,
  .zbn-product-hero,
  .product-story-row,
  .interactive-image,
  .wc-block-components-sidebar,
  .wc-block-checkout__main,
  .woocommerce-checkout-review-order,
  .woocommerce-billing-fields {
    box-shadow: 0 18px 55px rgba(0,0,0,.32) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .booking-row::after,
  .neon-frame::after,
  .zbn-shop-frame::after,
  .product-story-row::after,
  .step-item::after {
    display: none !important;
  }
}

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


/* Final performance pass: disable heavy motion and GPU effects globally */
.zbn-site::before,
.zbn-site::after,
.hero-orb,
.neon-frame::after,
.booking-row::after,
.product-story-row::after,
.zbn-shop-frame::after,
.step-item::after,
.hero-card::after,
.product-booking-cta::after {
  display: none !important;
  animation: none !important;
}

*,
*::before,
*::after {
  animation: none !important;
  transition-property: color, background-color, border-color, opacity, box-shadow !important;
  transition-duration: .12s !important;
  scroll-behavior: auto !important;
}

.reveal,
.image-reveal,
.image-reveal.in-view {
  opacity: 1 !important;
  transform: none !important;
}

.magnetic,
.magnetic:hover,
.btn:hover,
.portfolio-link:hover,
.logo:hover,
.booking-row:hover,
.neon-frame:hover,
.step-item:hover,
.zbn-shop-frame:hover,
.zbn-product-hero:hover,
.product-story-row:hover,
.interactive-image:hover,
.booking-image:hover,
.booking-image:hover img,
.interactive-image:hover img,
.hero-card,
.portrait-card,
.portrait-card.alt,
.product-story-image img,
.booking-image img {
  transform: none !important;
  translate: none !important;
  filter: none !important;
}

.neon-frame,
.hero-card,
.booking-row,
.step-item,
.sticky-cart-bar,
.zbn-shop-frame,
.zbn-product-hero,
.product-story-row,
.product-booking-cta,
.interactive-image,
.wc-block-components-sidebar,
.wc-block-checkout__main,
.woocommerce-checkout-review-order,
.woocommerce-billing-fields,
.zbn-booking-form,
.zbn-booking-card,
.zbn-fsa-frame {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}


/* Light sweep animations removed globally */
body.zbn-theme::after,
.neon-frame::after,
.booking-row::after,
.product-booking-cta::after,
.woocommerce form.checkout_coupon::before,
.woocommerce form.login::before,
.woocommerce form.register::before,
.woocommerce-checkout #customer_details::before,
.woocommerce-checkout-review-order::before,
.cart-collaterals .cart_totals::before,
.zbn-checkout-demo::before {
  display: none !important;
  content: none !important;
  background: none !important;
  animation: none !important;
}

/* Restored motion: image reveals, hover transforms and magnetic tracking */
.reveal {
  opacity: 0 !important;
  transform: translateY(18px) !important;
  transition-property: opacity, transform !important;
  transition-duration: .65s !important;
  transition-timing-function: cubic-bezier(.18,.9,.22,1) !important;
}
.reveal.in-view,
.reveal:not(.image-reveal) {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.image-reveal {
  opacity: 0 !important;
  transform: translateY(24px) scale(.985) !important;
  transition-property: opacity, transform, filter !important;
  transition-duration: .75s !important;
  transition-timing-function: cubic-bezier(.18,.9,.22,1) !important;
  will-change: opacity, transform;
}
.image-reveal.in-view {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}
.btn,
.magnetic,
.booking-row,
.neon-frame,
.step-item,
.zbn-shop-frame,
.zbn-product-hero,
.product-story-row,
.interactive-image,
.booking-image,
.booking-image img,
.interactive-image img,
.product-story-image img,
.product-main-image img {
  transition-property: transform, filter, box-shadow, border-color, background-color, color, opacity !important;
  transition-duration: .28s !important;
  transition-timing-function: cubic-bezier(.2,.8,.2,1) !important;
}
.magnetic {
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0) !important;
  will-change: transform;
}
.btn:hover,
.magnetic:hover {
  transform: translate3d(var(--magnet-x, 0), var(--magnet-y, 0), 0) translateY(-3px) scale(1.015) !important;
}
.booking-row:hover,
.neon-frame:hover,
.step-item:hover,
.zbn-shop-frame:hover,
.zbn-product-hero:hover,
.product-story-row:hover,
.interactive-image:hover,
.booking-image:hover {
  transform: translateY(-4px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) !important;
}
.booking-image:hover img,
.interactive-image:hover img,
.product-story-image:hover img,
.product-main-image:hover img,
.product-story-row:hover .product-story-image img {
  transform: scale(1.055) rotate(.45deg) !important;
  filter: contrast(1.04) saturate(1.08) !important;
}
@media (hover: none), (pointer: coarse), (max-width: 780px) {
  .image-reveal,
  .image-reveal.in-view,
  .reveal,
  .reveal.in-view {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }
  .btn:hover,
  .magnetic:hover,
  .booking-row:hover,
  .neon-frame:hover,
  .step-item:hover,
  .zbn-shop-frame:hover,
  .zbn-product-hero:hover,
  .product-story-row:hover,
  .interactive-image:hover,
  .booking-image:hover,
  .booking-image:hover img,
  .interactive-image:hover img {
    transform: none !important;
    filter: none !important;
  }
}
