/* ============================================================
   TikFuel theme — design system
   Light and dark, tokens first. Global resets stay modest on
   purpose: legacy Divi pages render inside this stylesheet and
   must not be restyled by it.
   ============================================================ */

:root {
  --paper:      #F5ECFA;
  --paper-2:    #FBF7FD;
  --surface:    #FFFFFF;
  --wash:       #F3E7FA;
  --ink:        #1E1233;
  --ink-2:      #4C3D66;
  --muted:      #7C6B94;
  --hairline:   #E7D8F2;
  --hairline-2: #D8C2E8;

  --violet:      #9B23D4;
  --violet-soft: #9B23D414;
  --magenta:     #E530B5;
  --grad:        linear-gradient(120deg, #E056FD 0%, #E530B5 100%);
  --grad-soft:   linear-gradient(120deg, #E056FD22 0%, #E530B522 100%);
  --green:       #0A8A72;
  --amber:       #B0651F;
  --danger:      #C02B3C;

  --sh-sm: 0 1px 2px #1E123310, 0 2px 6px #1E12330A;
  --sh-md: 0 2px 6px #1E123312, 0 14px 34px -10px #1E123326;
  --sh-lg: 0 6px 14px #1E123314, 0 30px 64px -14px #1E123336;
  --sh-glow: 0 18px 46px -14px #9B23D455;

  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --serif: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --r: 16px;
  --r-sm: 10px;
  --pad: clamp(1.1rem, 4vw, 2.25rem);
  --maxw: 76rem;
  --measure: 68ch;
  --header-h: 84px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video, canvas { max-width: 100%; height: auto; }
img { display: block; }

a { color: var(--violet); text-underline-offset: 2px; }
a:hover { color: var(--magenta); }

:focus-visible { outline: 2px solid var(--violet); outline-offset: 2px; border-radius: 5px; }

.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--surface); color: var(--ink); padding: .75rem 1.1rem;
  border-radius: 0 0 var(--r-sm) 0; box-shadow: var(--sh-md);
}
.skip-link:focus { left: 0; }

/* ---------------- layout ---------------- */
.shell { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.measure { max-width: var(--measure); }
.site-main { display: block; min-height: 40vh; }

/* Legacy Divi pages: the builder owns everything, we add nothing. */
.divi-passthrough { padding: 0; }
.divi-passthrough .shell { max-width: none; padding-inline: 0; }

/* ---------------- typography ---------------- */
h1, h2, h3, h4, h5 { letter-spacing: -.028em; text-wrap: balance; margin: 0; line-height: 1.15; }
.page-title { font-size: clamp(2rem, 4.6vw, 3.1rem); font-weight: 800; line-height: 1.04; }

.entry > * + * { margin-top: 1.1rem; }
.entry h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-top: 2.5rem; }
.entry h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); font-weight: 700; margin-top: 2rem; }
.entry p, .entry li { color: var(--ink-2); }
.entry strong { color: var(--ink); font-weight: 650; }
.entry ul, .entry ol { padding-left: 1.2rem; }
.entry li + li { margin-top: .4rem; }
.entry blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: 1.2rem; line-height: 1.45; color: var(--ink);
  border-left: 3px solid var(--violet); padding: .2rem 0 .2rem 1.3rem; margin: 2rem 0;
}
.entry img { border-radius: var(--r-sm); }
.entry table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.entry th, .entry td { padding: .7rem .9rem; border-bottom: 1px solid var(--hairline); text-align: left; }

.eyebrow {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--violet); margin-bottom: .9rem;
}

.page-head { padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(1.25rem, 3vw, 2rem); }
.page-meta { font-size: .88rem; color: var(--muted); margin-top: .6rem; }

/* ---------------- header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.is-stuck { border-bottom-color: var(--hairline); box-shadow: var(--sh-sm); }

.header-inner {
  display: flex; align-items: center; gap: 1.25rem;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { display: block; width: auto; height: 52px; }
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo { max-height: 52px; width: auto; }

.header-actions { display: flex; align-items: center; gap: .5rem; margin-left: auto; }
.cart-link {
  position: relative; display: inline-grid; place-items: center;
  width: 42px; height: 42px; border-radius: 999px; color: var(--ink);
  transition: background .16s, color .16s;
}
.cart-link:hover { background: var(--violet-soft); color: var(--violet); }
.cart-link svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: 2px; right: 0;
  min-width: 18px; height: 18px; padding: 0 4px;
  border-radius: 999px; background: var(--grad); color: #fff;
  font-family: var(--mono); font-size: .66rem; font-weight: 650;
  display: grid; place-items: center;
}

/* ---------------- desktop bar ----------------
   Hidden below --nav-bp, where the hamburger panel takes over. */
.desktop-nav { display: none; margin-left: auto; }
.dnav-list { display: flex; align-items: center; gap: .2rem; list-style: none; margin: 0; padding: 0; }
.dnav-item { position: relative; }

.dnav-top {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .55rem .85rem; border-radius: 999px;
  font: inherit; font-weight: 650; font-size: .95rem;
  color: var(--ink); text-decoration: none;
  background: transparent; border: 0; cursor: pointer;
  transition: background .16s, color .16s;
}
.dnav-top:hover, .dnav-top:focus-visible { background: var(--violet-soft); color: var(--violet); }
.dnav-top.is-current { color: var(--violet); }

.dnav-chev { display: grid; place-items: center; width: 14px; height: 14px; color: var(--muted); transition: transform .2s cubic-bezier(.2,.8,.3,1), color .16s; }
.dnav-chev svg { width: 12px; height: 12px; }
.dnav-item:hover .dnav-chev,
.dnav-item:focus-within .dnav-chev { transform: rotate(180deg); color: var(--violet); }

/* The dropdown. Padding-top on the wrapper bridges the gap under the trigger so
   the pointer can travel into the panel without passing over dead space. */
.dnav-drop {
  /* Right-anchored, not centred: the bar sits hard against the right edge, so a
     centred 660px panel would hang off the viewport. */
  position: absolute; top: 100%; right: 0; z-index: 90;
  padding-top: .5rem;
  transform: translateY(-6px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s cubic-bezier(.2,.8,.3,1), visibility .18s;
}
.dnav-item:hover > .dnav-drop,
.dnav-item:focus-within > .dnav-drop,
.dnav-item.is-open > .dnav-drop {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}

.dnav-drop-inner {
  width: max-content; max-width: min(660px, calc(100vw - 2rem));
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .25rem;
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--r); box-shadow: var(--sh-lg, var(--sh-md));
  padding: .5rem;
}

.dnav-card {
  display: flex; align-items: center; gap: .7rem;
  padding: .65rem .7rem; border-radius: var(--r-sm);
  text-decoration: none; color: var(--ink);
  transition: background .16s, transform .16s;
}
.dnav-card:hover, .dnav-card:focus-visible { background: var(--violet-soft); color: var(--ink); transform: translateX(3px); }
.dnav-card:hover .nv-ico { background: var(--grad); color: #fff; }
.dnav-card.is-current { background: var(--violet-soft); }
.dnav-card.is-current .nv-ico { background: var(--grad); color: #fff; }
.dnav-card .nv-label { font-weight: 620; font-size: .93rem; }

@media (prefers-reduced-motion: reduce) {
  .dnav-drop, .dnav-card, .dnav-chev { transition: none; }
}

/* ---------------- hamburger ---------------- */
.nav-toggle {
  display: inline-flex; align-items: center; gap: .55rem;
  height: 42px; padding: 0 .9rem 0 .75rem;
  border: 1px solid var(--hairline); background: var(--surface);
  border-radius: 999px; cursor: pointer; color: var(--ink);
  font: inherit; font-weight: 650; font-size: .92rem;
  transition: background .16s, color .16s, border-color .16s;
}
.nav-toggle:hover { background: var(--violet-soft); color: var(--violet); border-color: transparent; }
.nt-bars { display: flex; flex-direction: column; justify-content: center; gap: 4px; width: 18px; height: 14px; }
.nt-bars span {
  display: block; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .22s cubic-bezier(.2,.8,.3,1), opacity .18s, width .22s;
}
.nt-bars span:nth-child(1) { width: 18px; }
.nt-bars span:nth-child(2) { width: 13px; }
.nt-bars span:nth-child(3) { width: 18px; }
.nav-toggle:hover .nt-bars span:nth-child(2) { width: 18px; }
.nav-toggle[aria-expanded="true"] .nt-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nt-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nt-bars span:nth-child(3) { width: 18px; transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 560px) { .nt-word { display: none; } .nav-toggle { padding: 0; width: 42px; justify-content: center; } }

/* ---------------- slide-in panel ----------------
   Without JS the .js class is absent, so the panel renders as a normal block of
   links under the header instead of being stranded off-screen behind a button
   that cannot open. */
.nav-scrim { display: none; }

html.js .nav-scrim {
  display: block; position: fixed; inset: 0; z-index: 110;
  background: rgba(24, 10, 32, .48);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  opacity: 0; transition: opacity .28s ease;
}
/* A class rule with `display` outranks the plain [hidden] attribute, which would
   leave a transparent full-screen layer eating every click on the page. */
html.js .nav-scrim[hidden] { display: none; }
html.js .nav-scrim.is-open { opacity: 1; }

html.js .nav-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 120;
  width: min(400px, 100vw);
  display: flex; flex-direction: column;
  background: var(--surface);
  border-left: 1px solid var(--hairline);
  box-shadow: -24px 0 60px -30px rgba(30, 8, 40, .5);
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.3,.9,.3,1), visibility .32s;
  visibility: hidden;
  overscroll-behavior: contain;
}
html.js .nav-panel.is-open { transform: none; visibility: visible; }

.nv-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem var(--pad) .9rem; border-bottom: 1px solid var(--hairline);
  flex: none;
}
.nv-eyebrow {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
}
.nv-close {
  display: grid; place-items: center; width: 38px; height: 38px;
  border: 0; background: transparent; border-radius: 999px;
  color: var(--ink); cursor: pointer; transition: background .16s, color .16s;
}
.nv-close:hover { background: var(--violet-soft); color: var(--violet); }
.nv-close svg { width: 19px; height: 19px; }

.nv-body { flex: 1 1 auto; overflow-y: auto; padding: .8rem var(--pad) 1.2rem; }

/* groups */
.nv-group { border-bottom: 1px solid var(--hairline); }
.nv-group:last-of-type { border-bottom: 0; }
.nv-summary {
  display: flex; align-items: center; gap: .75rem;
  padding: .95rem .2rem; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 1.02rem; color: var(--ink);
  transition: color .16s;
}
.nv-summary::-webkit-details-marker { display: none; }
.nv-summary:hover { color: var(--violet); }
.nv-summary .nv-label { flex: 1 1 auto; }
.nv-chev { display: grid; place-items: center; width: 22px; height: 22px; color: var(--muted); transition: transform .24s cubic-bezier(.2,.8,.3,1); }
.nv-chev svg { width: 16px; height: 16px; }
.nv-group[open] > .nv-summary .nv-chev { transform: rotate(180deg); color: var(--violet); }

.nv-ico {
  display: grid; place-items: center; flex: none;
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--violet-soft); color: var(--violet);
  transition: background .16s, color .16s, transform .16s;
}
.nv-ico svg { width: 19px; height: 19px; }
.nv-ico--group { background: var(--grad); color: #fff; }

/* sub-items */
.nv-sub { padding: .1rem 0 .8rem; display: flex; flex-direction: column; gap: .18rem; }
.nv-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .6rem .55rem; border-radius: var(--r-sm);
  text-decoration: none; color: var(--ink);
  transition: background .16s, transform .16s;
}
.nv-item:hover, .nv-item:focus-visible { background: var(--violet-soft); transform: translateX(3px); color: var(--ink); }
.nv-item:hover .nv-ico { background: var(--grad); color: #fff; }
.nv-text { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.nv-item .nv-label { font-weight: 620; font-size: .95rem; }
.nv-note { font-size: .78rem; color: var(--muted); line-height: 1.35; }
.nv-item.is-current { background: var(--violet-soft); }
.nv-item.is-current .nv-ico { background: var(--grad); color: #fff; }

/* top-level links */
.nv-link {
  display: flex; align-items: center; gap: .75rem;
  padding: .95rem .2rem; text-decoration: none; color: var(--ink);
  font-weight: 700; font-size: 1.02rem;
  border-bottom: 1px solid var(--hairline);
  transition: color .16s;
}
.nv-link:last-child { border-bottom: 0; }
.nv-link:hover { color: var(--violet); }
.nv-link .nv-label { flex: 1 1 auto; }
.nv-arrow { color: var(--muted); transition: transform .18s, color .18s; }
.nv-link:hover .nv-arrow { transform: translateX(4px); color: var(--violet); }
.nv-link:hover .nv-ico { background: var(--grad); color: #fff; }
.nv-link.is-current { color: var(--violet); }
.nv-link.is-current .nv-ico { background: var(--grad); color: #fff; }

/* footer */
.nv-foot { flex: none; padding: 1rem var(--pad) 1.3rem; border-top: 1px solid var(--hairline); background: var(--bg-2, var(--surface)); }
.nv-cart {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1rem; border-radius: 999px;
  background: var(--grad); color: #fff; text-decoration: none; font-weight: 650;
  box-shadow: var(--sh-glow);
}
.nv-cart:hover { color: #fff; filter: brightness(1.05); }
.nv-cart svg { width: 18px; height: 18px; }
.nv-fine { margin: .85rem 0 0; text-align: center; font-size: .8rem; color: var(--muted); }
.nv-fine a { color: var(--violet); }

html.js body.nav-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  html.js .nav-panel, html.js .nav-scrim, .nv-chev, .nv-item, .nv-arrow { transition: none; }
}

/* No-JS fallback: a plain, readable list under the header. */
html:not(.js) .nav-panel { border-top: 1px solid var(--hairline); padding: 0 var(--pad) 1rem; }
html:not(.js) .nv-head, html:not(.js) .nav-toggle { display: none; }

/* Above this width the bar carries the menu and the hamburger steps aside.
   1040px is where four labels, the logo and the cart stop competing for room. */
@media (min-width: 1040px) {
  .desktop-nav { display: block; }
  .nav-toggle { display: none; }
  /* .desktop-nav already carries the auto margin that pushes both to the right. */
  .header-actions { margin-left: .35rem; }
  .brand img { height: 46px; }
  /* The panel is mobile-only, so keep it out of the tab order on desktop. */
  html.js .nav-panel:not(.is-open) { display: none; }
}

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: inherit; font-size: 1rem; font-weight: 650;
  padding: .82rem 1.6rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1.2;
  transition: transform .16s cubic-bezier(.2,.8,.3,1), box-shadow .16s, filter .16s, border-color .16s, color .16s;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--sh-glow); }
.btn-primary:hover { transform: translateY(-2px); filter: saturate(1.08); color: #fff; }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--hairline-2); }
.btn-ghost:hover { border-color: var(--violet); color: var(--violet); transform: translateY(-2px); }
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

/* ---------------- cards ---------------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.2rem; padding-bottom: 3rem; }
.card { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r); overflow: hidden; transition: transform .18s, box-shadow .18s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.card-media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card-body { padding: 1.25rem; }
.card-title { font-size: 1.12rem; font-weight: 700; }
.card-title a { color: var(--ink); text-decoration: none; }
.card-title a:hover { color: var(--violet); }
.card-meta { font-size: .8rem; color: var(--muted); margin: .4rem 0 .6rem; }
.card-excerpt { font-size: .93rem; color: var(--ink-2); margin: 0; }

/* ---------------- breadcrumbs ---------------- */
.crumbs ol { display: flex; flex-wrap: wrap; gap: .35rem; list-style: none; margin: 0 0 .9rem; padding: 0; font-size: .82rem; color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: .35rem; color: var(--hairline-2); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--violet); }

/* ---------------- forms ---------------- */
input[type="text"], input[type="email"], input[type="search"], input[type="tel"],
input[type="password"], input[type="number"], textarea, select {
  width: 100%; font: inherit; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--hairline-2);
  border-radius: var(--r-sm); padding: .7rem .9rem;
}
input:focus, textarea:focus, select:focus { border-color: var(--violet); outline: none; }
.search-form { display: flex; gap: .6rem; margin-top: 1rem; }

/* ---------------- footer ---------------- */
.site-footer {
  background: var(--paper-2);
  border-top: 1px solid var(--hairline);
  margin-top: 4rem;
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.75rem);
}
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; } }

.footer-brand .brand { margin-bottom: 1rem; }
.footer-note { font-size: .88rem; color: var(--ink-2); max-width: 40ch; margin: 0 0 1rem; }
.footer-co { font-size: .82rem; color: var(--muted); margin: 0 0 .6rem; line-height: 1.6; }
.footer-co a { color: var(--violet); text-decoration: none; }
.footer-co a:hover { text-decoration: underline; }

.footer-head {
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); margin: 0 0 .9rem;
}
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-list a {
  color: var(--ink-2); text-decoration: none; font-size: .9rem;
  transition: color .16s, transform .16s; display: inline-block;
}
.footer-list a:hover { color: var(--violet); transform: translateX(2px); }
.footer-list .current-menu-item > a { color: var(--violet); }

/* payment marks */
.footer-pay {
  display: flex; align-items: center; flex-wrap: wrap; gap: .9rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding-top: 1.5rem; border-top: 1px solid var(--hairline);
}
.pay-label {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
}
/* The 2020 payment-logos artwork is white-on-transparent, so it needs a dark
   plate to be legible on this light footer. */
.pay-marks {
  height: 26px; width: auto; display: block;
  background: var(--ink); border-radius: 7px;
  padding: 6px 10px; box-sizing: content-box;
}

.footer-bottom {
  display: grid; gap: .9rem;
  margin-top: 1.75rem; padding-top: 1.25rem;
  border-top: 1px solid var(--hairline);
}
.footer-fine { margin: 0; font-size: .78rem; line-height: 1.65; color: var(--muted); max-width: 92ch; }
.footer-fine strong { color: var(--ink-2); font-weight: 650; }
.footer-fine a { color: var(--violet); }
.footer-copy { margin: 0; font-size: .78rem; color: var(--muted); }

/* ---------------- WooCommerce (styling only, no template overrides) -------- */
.wc-shell { padding: clamp(2rem, 5vw, 3.5rem) 0 4rem; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.2rem; margin: 0; padding: 0; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product {
  width: auto !important; margin: 0 !important; float: none !important;
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--r); padding: 1rem; text-align: center;
  transition: transform .18s, box-shadow .18s;
}
.woocommerce ul.products li.product:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.woocommerce ul.products li.product .price { color: var(--violet); font-family: var(--mono); font-weight: 650; }
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  border-top-color: var(--violet); background: var(--surface);
  border-radius: var(--r-sm); color: var(--ink-2);
}
.woocommerce #respond input#submit,
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce a.button.alt, .woocommerce button.button.alt {
  background: var(--grad); color: #fff; border-radius: 999px;
  font-weight: 650; padding: .78rem 1.5rem; border: 0;
  transition: transform .16s, filter .16s;
}
.woocommerce a.button:hover, .woocommerce button.button:hover,
.woocommerce input.button:hover, .woocommerce button.button.alt:hover {
  background: var(--grad); filter: saturate(1.08); transform: translateY(-2px); color: #fff;
}
.woocommerce table.shop_table { border-radius: var(--r); border-color: var(--hairline); }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { border-color: var(--hairline); }
.woocommerce-checkout .form-row label { font-weight: 600; font-size: .9rem; }

/* ---------------- misc ---------------- */
.empty-state { padding: 3rem 0 4rem; }
.pagination, .woocommerce-pagination { display: flex; justify-content: center; padding: 2rem 0 3rem; }
.page-numbers { display: inline-grid; place-items: center; min-width: 2.4rem; height: 2.4rem; padding: 0 .5rem; margin: 0 .15rem; border-radius: 999px; text-decoration: none; color: var(--ink-2); }
.page-numbers.current { background: var(--grad); color: #fff; }
.page-numbers:hover:not(.current) { background: var(--violet-soft); color: var(--violet); }

/* Reveal-on-scroll, opt-in via .rv.
   Only hidden once JS has confirmed it can run (html.js), so a script failure
   or a starved observer can never leave the page looking blank. */
.rv { transition: opacity .6s cubic-bezier(.2,.8,.3,1), transform .6s cubic-bezier(.2,.8,.3,1); }
html.js .rv { opacity: 0; transform: translateY(16px); }
html.js .rv.in { opacity: 1; transform: none; }

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