/* Perfect Present — warstwa motywu nad design systemem (base.css z Layout V3) */

:root {
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --nav-h: 92px;
  --danger: #9b3b2f;
  --ok: #4f9d6c;
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body { background: var(--pure); overflow-x: clip; }
::selection { background: var(--gold-pale); color: var(--ink); }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }

.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--ink); color: var(--paper); padding: 10px 16px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; }
.skip-link:focus { top: 12px; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }

button { font-family: inherit; }
.site-main { display: block; }

/* ————————————————— Kurtyna przy wejściu i wyjściu ————————————————— */
html.js body::after {
  content: ""; position: fixed; inset: 0; z-index: 300;
  background: var(--pure);
  pointer-events: none;
  opacity: 1;
  transition: opacity .9s var(--ease);
}
html.js.is-ready body::after { opacity: 0; }
/* Po zniknięciu kurtyna wypada z układu: niewidoczny, pełnoekranowy element position:fixed na samej górze
   Safari 26 bierze jako „nagłówek” i zamiast białego koloru nagłówka rozmywa treść pod paskiem statusu. */
html.js.is-curtain-gone body::after { content: none; }
html.js.is-leaving body::after { content: ""; opacity: 1; transition-duration: .45s; }

/* ————————————————— Nawigacja ————————————————— */
.utility-bar { flex-wrap: wrap; row-gap: 6px; }

/* ——— Obszar pod paskiem statusu (iOS 26 rysuje stronę pod godziną i baterią) ———
   viewport-fit=cover + własny pasek w kolorze tego, co jest pod nim: czarny nad paskiem
   informacyjnym, biały, gdy nagłówek jest przyklejony. Na komputerze env() = 0, nic się nie zmienia. */
:root { --sat: env(safe-area-inset-top, 0px); }
.safe-top {
  position: fixed; top: 0; left: 0; right: 0; height: var(--sat); z-index: 45;
  background: var(--pure); pointer-events: none;
}
.safe-top--dark { background: var(--ink); }
html.nav-stuck .safe-top { background: var(--pure); }
.utility-bar { padding-top: calc(10px + var(--sat)); }
.nav { top: var(--sat); }
.utility-bar, .nav {
  padding-left: max(var(--pad-x), env(safe-area-inset-left, 0px));
  padding-right: max(var(--pad-x), env(safe-area-inset-right, 0px));
}
.nav { padding-top: 18px; padding-bottom: 18px; transition: padding .5s var(--ease), background .5s var(--ease), box-shadow .5s var(--ease); }
.nav.is-scrolled { padding-top: 12px; padding-bottom: 12px; }
.nav.is-scrolled { padding-top: 14px; padding-bottom: 14px; background: rgba(255,255,255,.96); box-shadow: 0 1px 0 var(--line-soft), 0 12px 40px -24px rgba(13,12,10,.18); }
.nav .brand img { height: 56px; transition: height .5s var(--ease); }
.nav.is-scrolled .brand img { height: 42px; }
@media (max-width: 1024px) {
  .nav .brand img { height: 40px; }
  .nav.is-scrolled .brand img { height: 34px; }
}
.nav__group a { position: relative; }
.nav__group--left a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: var(--gold);
  transition: right .5s var(--ease);
}
.nav__group--left a:hover::after, .nav__group--left a.is-current::after { right: 0; }
.nav__burger { display: none; background: none; border: 0; padding: 8px 0; cursor: pointer; color: var(--ink); }
.cart-pill { transition: border-color .3s ease, background .3s ease; }
.cart-pill:hover { border-color: var(--ink); }
.cart-pill .count { transition: transform .5s var(--ease-out); }
.cart-pill .count.is-bump { transform: scale(1.35); }
.cart-pill .count.is-empty { background: transparent; color: var(--mute); border: 1px solid var(--line); }

@media (max-width: 1024px) {
  /* Telefon: nagłówek w pełni kryjący i o stałej wysokości — bez prześwitu i bez skakania przy przewijaniu. */
  .nav, .nav.is-scrolled {
    grid-template-columns: 1fr auto 1fr; padding-top: 12px; padding-bottom: 12px;
    background: var(--pure); -webkit-backdrop-filter: none; backdrop-filter: none;
    transition: box-shadow .4s var(--ease);
  }
  .nav .brand img, .nav.is-scrolled .brand img { height: 38px; transition: none; }
  .nav__burger {
    display: inline-flex; justify-self: start; align-items: center;
    width: 44px; height: 44px; margin-left: -10px; padding: 0 10px;
    touch-action: manipulation; -webkit-tap-highlight-color: transparent;
  }
  .cart-pill { touch-action: manipulation; }
  /* iOS 26 Safari barwi obszar pod paskiem statusu kolorem elementu position:fixed przy górnej krawędzi
     (sticky nie jest brany pod uwagę) — dlatego na telefonie nagłówek jest stały od początku,
     a pasek informacyjny leży pod nim w treści strony. */
  .nav, .nav.is-scrolled {
    position: fixed; top: 0; left: 0; right: 0; z-index: 60;
    padding-top: calc(12px + var(--sat));
  }
  body { padding-top: var(--mnav-h, calc(68px + var(--sat))); }
  .utility-bar { padding-top: 10px; }
  .safe-top { display: none; }
  body.admin-bar .nav { top: 32px; }
  html { scroll-padding-top: calc(var(--mnav-h, 68px) + 12px); }
  .nav__group--left { display: none; }
  .nav__group--right { gap: 18px; }
  .nav__account, .nav__search { display: none; }
  .utility-bar { gap: 8px 24px; font-size: 9.5px; letter-spacing: .2em; }
  .utility-bar span:nth-child(n+2) { display: none; }
}

/* Pasek admina WP (widzi go tylko zalogowany administrator): 46 px do 782 px, poniżej 601 px przewija się ze stroną. */
@media (max-width: 782px) { body.admin-bar .nav { top: 46px; } }
@media (max-width: 600px) { body.admin-bar .nav { top: 0; } }

/* Warstwy pełnoekranowe wychodzą poza krawędzie okna: Safari 26 rysuje stronę pod paskiem statusu
   i pod pływającym paskiem adresu — bez zapasu prześwitywała tam treść. Zapas oddajemy w paddingu. */
:root { --bleed-t: 160px; --bleed-b: 200px; }
.mobile-menu { position: fixed; left: 0; right: 0; top: calc(-1 * var(--bleed-t)); bottom: calc(-1 * var(--bleed-b)); z-index: 120; }
.mobile-menu[hidden] { display: none; }
/* Przy otwartym menu nagłówek pod spodem też jest czarny — Safari 26 barwi nim pas pod paskiem statusu. */
html.menu-open .nav, html.menu-open .nav.is-scrolled { background: var(--ink); box-shadow: none; transition: none; }
html.menu-open body { background: var(--ink); }
/* Zamykające się (niewidoczne) menu nie może łapać dotyku nad przyciskiem. */
.mobile-menu:not(.is-open) { pointer-events: none; }
.mobile-menu__panel {
  position: absolute; inset: 0; background: var(--ink); color: var(--paper);
  display: flex; flex-direction: column; padding: calc(28px + var(--sat) + var(--bleed-t)) var(--pad-x) calc(36px + env(safe-area-inset-bottom, 0px) + var(--bleed-b));
  clip-path: inset(0 0 100% 0); transition: clip-path .7s var(--ease-out);
}
.mobile-menu.is-open .mobile-menu__panel { clip-path: inset(0 0 0 0); }
.mobile-menu__close { align-self: flex-end; background: none; border: 0; color: var(--paper); padding: 10px; cursor: pointer; }
.mobile-menu__links { display: grid; gap: 6px; margin-top: 8vh; }
.mobile-menu__links a {
  font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(38px, 11vw, 60px); line-height: 1.15;
  opacity: 0; transform: translateY(20px); filter: blur(8px);
  transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
}
.mobile-menu.is-open .mobile-menu__links a { opacity: 1; transform: none; filter: none; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(2) { transition-delay: .06s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(3) { transition-delay: .12s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(4) { transition-delay: .18s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(5) { transition-delay: .24s; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(6) { transition-delay: .30s; }
.mobile-menu__foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: rgba(250,248,244,.7); }

/* ————————————————— Animacje wejścia ————————————————— */
html.js [data-reveal]:not([data-reveal="mask"]):not([data-reveal="line"]) {
  opacity: 0;
  filter: blur(12px);
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 1.1s var(--ease) var(--d, 0ms),
    filter 1.2s var(--ease) var(--d, 0ms),
    transform 1.4s var(--ease-out) var(--d, 0ms);
  will-change: opacity, filter, transform;
}
html.js [data-reveal].is-in:not([data-reveal="mask"]):not([data-reveal="line"]) {
  opacity: 1; filter: blur(0); transform: none;
}
html.js [data-reveal].is-done { will-change: auto; }

/* Linia rysowana od lewej (border-top sekcji) */
html.js [data-reveal="line"] { position: relative; border-top-color: transparent !important; }
html.js [data-reveal="line"]::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 1px;
  background: var(--line-color, var(--line));
  transform: scaleX(0); transform-origin: left center;
  transition: transform 1.8s var(--ease-out) var(--d, 0ms);
}
html.js [data-reveal="line"].is-in::before { transform: scaleX(1); }

/* Zdjęcie odsłaniane kurtyną.
   Nakładka zamiast clip-path na kontenerze: Chrome wlicza clip-path do IntersectionObservera
   i do leniwego ładowania, więc całkowicie przycięty element potrafił nigdy się nie pokazać. */
[data-reveal="mask"] { position: relative; }
html.js [data-reveal="mask"]::after {
  content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: var(--mask-bg, var(--paper));
  transform-origin: bottom center;
  transition: transform 1.3s var(--ease-out) var(--d, 0ms);
}
html.js [data-reveal="mask"].is-in::after { transform: scaleY(0); }
html.js [data-reveal="mask"] > img { --ms: 1.18; }
html.js [data-reveal="mask"].is-in > img { --ms: 1; }

[data-parallax], [data-reveal="mask"] > img {
  transform: translate3d(0, var(--py, 0px), 0) scale(calc(var(--ms, 1) * var(--pscale, 1)));
  transition: transform 2s var(--ease-out);
}
img[data-parallax] { --pscale: 1.08; }
[data-parallax].is-settled { transition: none; }

/* Nagłówki słowo po słowie */
.w { display: inline-block; white-space: nowrap; }
html.js [data-split] .w > span {
  display: inline-block;
  opacity: 0; filter: blur(10px); transform: translate3d(0, .28em, 0);
  transition:
    opacity 1s var(--ease) var(--d, 0ms),
    filter 1.1s var(--ease) var(--d, 0ms),
    transform 1.3s var(--ease-out) var(--d, 0ms);
}
html.js [data-split].is-in .w > span { opacity: 1; filter: blur(0); transform: none; }

html.pp-static *, html.pp-static *::before, html.pp-static *::after { transition: none !important; animation: none !important; }
html.pp-static body::after { display: none; }
html.pp-static [data-reveal], html.pp-static [data-split] .w > span { opacity: 1 !important; filter: none !important; transform: none !important; clip-path: none !important; }
html.pp-static [data-reveal="line"]::before { transform: none !important; }
html.pp-static [data-reveal="mask"]::after { display: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js [data-reveal], html.js [data-split] .w > span, html.js [data-reveal="mask"] {
    opacity: 1 !important; filter: none !important; transform: none !important; clip-path: none !important; transition: none !important;
  }
  html.js [data-reveal="line"]::before { transform: none !important; }
  html.js [data-reveal="mask"]::after { display: none; }
  [data-parallax] { transform: none !important; }
  html.js body::after { display: none; }
}

/* ————————————————— Przyciski i drobne elementy ————————————————— */
.btn { position: relative; overflow: hidden; isolation: isolate; justify-content: center; }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--ink);
  transform: scaleY(0); transform-origin: bottom; transition: transform .6s var(--ease-out);
}
.btn:hover { background: transparent; }
.btn:hover::before { transform: scaleY(1); }
.btn--solid { background: var(--ink); }
.btn--solid::before { background: var(--gold); }
.btn--solid:hover { background: var(--ink); border-color: var(--gold); }
.btn--on-dark::before { background: var(--paper); }
.btn--on-dark:hover { background: transparent; }
.btn[disabled], .btn.is-loading { pointer-events: none; opacity: .6; }
.link-arrow--paper { color: var(--paper); border-color: rgba(250,248,244,.4); }
.link-arrow .arr { transition: transform .4s var(--ease); }
.link-arrow:hover .arr { transform: translateX(4px); }

.breadcrumb {
  padding: 22px var(--pad-x) 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px;
  font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--mute);
}
.breadcrumb a { color: var(--mute); transition: color .3s; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { color: var(--line); }

/* ————————————————— Karta produktu ————————————————— */
.p-card__media .p-card__img { position: absolute; inset: 0; }
.p-card__img--alt { opacity: 0; transition: opacity .9s var(--ease), transform 1.2s var(--ease) !important; }
.p-card:hover .p-card__img--alt { opacity: 1; }
.p-card__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 0 rgba(173,138,74,0); transition: box-shadow .6s var(--ease);
}
.p-card:hover .p-card__media::after { box-shadow: inset 0 0 0 1px rgba(173,138,74,.55); }
.p-card__no, .p-card__chip { z-index: 2; }
.p-card.is-out .p-card__media img { filter: grayscale(.6); opacity: .75; }

/* ————————————————— Szuflada koszyka ————————————————— */
.drawer { position: fixed; left: 0; right: 0; top: calc(-1 * var(--bleed-t)); bottom: calc(-1 * var(--bleed-b)); z-index: 150; }
.drawer[hidden] { display: none; }
.drawer__veil { position: absolute; inset: 0; background: rgba(13,12,10,.42); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); opacity: 0; transition: opacity .6s var(--ease); }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(460px, 100%);
  background: var(--pure); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .8s var(--ease-out);
  box-shadow: -30px 0 80px -40px rgba(13,12,10,.35);
}
.drawer.is-open .drawer__veil { opacity: 1; }
.drawer.is-open .drawer__panel { transform: none; }
.drawer__head { display: flex; justify-content: space-between; align-items: center; padding: calc(26px + var(--sat) + var(--bleed-t)) 32px 26px; border-bottom: 1px solid var(--line-soft); }
.drawer__head .eyebrow { color: var(--ink); display: inline-flex; align-items: center; }
.drawer__close { background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); transition: transform .5s var(--ease); }
.drawer__close:hover { transform: rotate(90deg); }
.drawer__body { flex: 1; overflow: auto; display: flex; flex-direction: column; }

.mini-cart { display: flex; flex-direction: column; flex: 1; }
.mini-cart__items { list-style: none; margin: 0; padding: 8px 32px; }
.mini-cart__item { display: grid; grid-template-columns: 84px 1fr auto; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line-soft); align-items: start; }
.mini-cart__thumb { aspect-ratio: 4/5; background: var(--paper-warm); overflow: hidden; display: block; }
.mini-cart__thumb img { width: 100%; height: 100%; object-fit: cover; }
.mini-cart__name { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; display: block; }
.mini-cart__meta { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--mute); margin-top: 6px; display: block; }
.mini-cart__dedication { margin-top: 10px; font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--ink-soft); line-height: 1.45; padding-left: 12px; border-left: 1px solid var(--gold-soft); max-height: 4.4em; overflow: hidden; }
.mini-cart__price { font-size: 13px; letter-spacing: .1em; white-space: nowrap; }
.mini-cart__remove { display: inline-block; margin-top: 12px; font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--mute); border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.mini-cart__remove:hover { color: var(--danger); border-color: currentColor; }
.mini-cart__foot { margin-top: auto; padding: 24px 32px calc(32px + env(safe-area-inset-bottom, 0px) + var(--bleed-b)); border-top: 1px solid var(--line); background: var(--paper); display: grid; gap: 16px; }
.mini-cart__row { display: flex; justify-content: space-between; align-items: baseline; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; }
.mini-cart__row strong { font-weight: 300; font-size: 22px; letter-spacing: .04em; text-transform: none; }
.mini-cart__free { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--ink-soft); }
.mini-cart__bar { height: 1px; background: var(--line); position: relative; overflow: hidden; }
.mini-cart__bar i { position: absolute; inset: 0 auto 0 0; background: var(--gold); width: var(--p, 0%); transition: width 1s var(--ease-out); }
.mini-cart__actions { display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px; }
.mini-cart__actions .btn { padding: 16px 12px; }
.mini-cart__empty { padding: 60px 32px; text-align: center; display: grid; gap: 18px; justify-items: center; }
.mini-cart__empty img { width: 54px; opacity: .8; }
.mini-cart__empty p { font-family: var(--serif); font-style: italic; font-size: 26px; margin: 0; }
.mini-cart__upsell { padding: 8px 32px 24px; }
.mini-cart__upsell h5 { margin: 12px 0 14px; font-weight: 400; font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--mute); }
.upsell-row { display: grid; grid-template-columns: 56px 1fr auto; gap: 14px; align-items: center; padding: 10px 0; }
.upsell-row img { width: 56px; height: 56px; object-fit: cover; background: var(--paper-warm); }
.upsell-row__name { font-family: var(--serif); font-style: italic; font-size: 17px; }
.upsell-row__price { font-size: 12px; color: var(--mute); letter-spacing: .1em; }
.upsell-row .add { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 2px; background: none; border-top: 0; border-left: 0; border-right: 0; cursor: pointer; }
.upsell-row .add:hover { color: var(--gold); border-color: var(--gold); }
.drawer.is-busy .drawer__body { opacity: .5; pointer-events: none; transition: opacity .3s; }

/* ————————————————— Toast ————————————————— */
.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 180; transform: translate(-50%, 20px);
  background: var(--ink); color: var(--paper); padding: 14px 22px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  opacity: 0; transition: opacity .5s var(--ease), transform .6s var(--ease-out);
  max-width: calc(100vw - 32px);
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }
.toast.is-error { background: var(--danger); }

/* ————————————————— Stopka ————————————————— */
.foot-tagline { color: rgba(250,248,244,.65); font-size: 13px; max-width: 32ch; line-height: 1.6; }
.foot-newsletter p { color: rgba(250,248,244,.6); font-size: 12.5px; margin: 0 0 16px; }
.foot-col .menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
@media (max-width: 1024px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-grid > .foot-col:first-child, .foot-newsletter { grid-column: 1 / -1; }
  .foot-bottom { flex-direction: column; gap: 18px; align-items: flex-start; }
  .foot-bottom__claim { display: none; }
  .foot-bottom .pay { flex-wrap: wrap; }
}

/* ————————————————— Komunikaty Woo ————————————————— */
.woocommerce-notices-wrapper:empty { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  list-style: none; margin: 0 0 28px; padding: 18px 22px;
  border: 1px solid var(--line); border-left: 2px solid var(--gold);
  background: var(--paper); font-size: 13.5px; color: var(--ink-soft);
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between;
}
.woocommerce-error { border-left-color: var(--danger); display: block; }
.woocommerce-error li + li { margin-top: 6px; }
.woocommerce-message .button, .woocommerce-info .button, .woocommerce-info a {
  font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; border-bottom: 1px solid currentColor; padding-bottom: 2px; background: none;
}

/* ————————————————— Strony tekstowe ————————————————— */
.page-hero { padding: clamp(60px, 8vw, 120px) var(--pad-x) clamp(36px, 4vw, 60px); background: var(--paper); position: relative; overflow: hidden; }
.page-hero .sygnet-watermark { right: -80px; top: -60px; width: 420px; height: 420px; opacity: .06; }
.page-hero__title { font-family: var(--sans); font-weight: 200; font-size: clamp(34px, 5vw, 72px); line-height: 1.04; letter-spacing: .06em; text-transform: uppercase; margin: 22px 0 0; max-width: 18ch; }
.page-hero__title em { font-family: var(--serif); font-style: italic; font-weight: 300; text-transform: none; letter-spacing: 0; color: var(--gold); }
.page-hero__lede { margin-top: 22px; max-width: 46ch; }
.prose { padding: clamp(48px, 6vw, 96px) var(--pad-x) clamp(80px, 9vw, 140px); }
.prose__inner { max-width: 760px; margin: 0 auto; color: var(--ink-soft); font-size: 16px; line-height: 1.8; }
.prose__inner h2 { font-family: var(--sans); font-weight: 300; font-size: 22px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); margin: 2.4em 0 .8em; }
.prose__inner h3 { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 26px; color: var(--ink); margin: 2em 0 .6em; }
.prose__inner a { color: var(--ink); border-bottom: 1px solid var(--gold-soft); }
.prose__inner ul, .prose__inner ol { padding-left: 1.2em; }
.prose__inner li + li { margin-top: .4em; }
.prose__inner blockquote { margin: 2em 0; padding-left: 24px; border-left: 1px solid var(--gold); font-family: var(--serif); font-style: italic; font-size: 24px; line-height: 1.4; color: var(--ink); }

/* ————————————————— Formularze (wspólne) ————————————————— */
.pp-field, .form-row { display: grid; gap: 8px; margin: 0 0 20px; }
.form-row label, .pp-field label {
  font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--ink); font-weight: 400;
}
.form-row label .required { color: var(--gold); text-decoration: none; border: 0; }
.form-row label .optional { color: var(--mute); text-transform: none; letter-spacing: 0; font-family: var(--serif); font-style: italic; font-size: 13px; }
.input-text, .form-row select, .pp-input, .form-row textarea, select.orderby {
  width: 100%; font-family: var(--sans); font-weight: 300; font-size: 15px; color: var(--ink);
  background: var(--pure); border: 1px solid var(--line); border-radius: 0; padding: 14px 16px;
  transition: border-color .3s ease, box-shadow .3s ease;
  -webkit-appearance: none; appearance: none;
}
.form-row select, select.orderby {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230d0c0a'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.input-text:focus, .form-row select:focus, .pp-input:focus, .form-row textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(173,138,74,.12); }
.form-row.woocommerce-invalid .input-text { border-color: var(--danger); }
.form-row textarea { min-height: 110px; resize: vertical; }
input[type=checkbox], input[type=radio] { accent-color: var(--ink); width: 16px; height: 16px; }
.woocommerce-form__label-for-checkbox, label.checkbox { display: inline-flex !important; gap: 12px; align-items: center; text-transform: none !important; letter-spacing: 0 !important; font-size: 14px !important; cursor: pointer; }
.form-row-first, .form-row-last { grid-column: span 1; }
.button, button.button, input.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  padding: 17px 30px; border: 1px solid var(--ink); background: var(--ink); color: var(--paper);
  font-family: var(--sans); font-weight: 400; font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  cursor: pointer; border-radius: 0; transition: background .4s ease, border-color .4s ease, color .4s ease;
}
.button:hover { background: var(--gold); border-color: var(--gold); color: var(--pure); }
.button.alt { background: var(--ink); }
.button:disabled, .button.disabled { opacity: .5; pointer-events: none; }

.blockUI.blockOverlay { background: rgba(255,255,255,.6) !important; opacity: 1 !important; }

/* ————————————————— 404 ————————————————— */
.not-found { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 80px var(--pad-x); position: relative; overflow: hidden; background: var(--paper); }
.not-found .sygnet-watermark { width: 560px; height: 560px; left: 50%; top: 50%; transform: translate(-50%, -50%); opacity: .06; }
.not-found__num { font-family: var(--serif); font-style: italic; font-size: clamp(90px, 16vw, 200px); line-height: 1; color: var(--gold); }
.not-found h1 { margin: 12px 0 28px; }
