/* ==========================================================================
   BARKLY v3 — Design tokens + components + sections
   Source of truth: barklyyy/project/Barkly Homepage.html (Claude Design handoff)
   Loaded site-wide after barkly-site.css. Owner directive: new UI on every page.
   ========================================================================== */


/* --------------------------------------------------------------------------
   DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root{
  --bk-green:#3D5A3E;
  --bk-ink:#2A332B;
  --bk-gold:#C8922A;
  --bk-gold-soft:#E4B86A;
  --bk-cream:#F5F0E8;
  --bk-paper:#FAF7F1;
  --bk-white:#ffffff;
  --bk-ink-75:rgba(42,51,43,.75);
  --bk-ink-55:rgba(42,51,43,.55);
  --bk-cream-60:rgba(245,240,232,.60);
  --bk-cream-70:rgba(245,240,232,.70);
  --bk-cream-45:rgba(245,240,232,.45);

  /* TICKER SPEED — owner directive 2026-05: 76s (was 36s in design source) */
  --bk-ticker-speed:76s;
}


/* --------------------------------------------------------------------------
   BASE — applied site-wide so new header/footer typography matches
   Scoped low-specificity so it doesn't fight admin or quiz pages.
   -------------------------------------------------------------------------- */
.bk-v3,
.bk-v3 *,
.bk-header,
.bk-footer,
.bkv2-page{
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

/* Body-level safety bg: keeps cream behind everything so any FSE-added
   wrapper margin doesn't show as a stripe of white above the footer. */
html, body{background:var(--bk-cream)}
body.wp-admin{background:#f0f0f1}/* don't touch admin */

.bk-v3{
  font-family:'DM Sans',system-ui,sans-serif;
  background:var(--bk-cream);
  color:var(--bk-ink);
  font-weight:400;
  line-height:1.55;
  overflow-x:hidden;
}
.bk-v3 img{max-width:100%;display:block}
.bk-v3 a{color:inherit;text-decoration:none}
.bk-v3 button{font:inherit;cursor:pointer;border:none;background:none;color:inherit}
.bk-v3 h1,
.bk-v3 h2,
.bk-v3 h3,
.bk-v3 h4{
  font-family:'Fraunces',Georgia,serif;
  font-weight:600;
  letter-spacing:-0.01em;
  margin:0;
  color:var(--bk-ink);
  text-wrap:balance;
}
.bk-v3 h1{line-height:1.02;letter-spacing:-0.025em}
.bk-v3 h2{line-height:1.05;letter-spacing:-0.02em}
.bk-v3 p{margin:0;text-wrap:pretty}


/* --------------------------------------------------------------------------
   UTILITIES — container, eyebrow, buttons, soft link, grain
   -------------------------------------------------------------------------- */
.bk-wrap{max-width:1240px;margin:0 auto;padding:0 24px}
@media(min-width:1024px){.bk-wrap{padding:0 48px}}

.bk-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:'DM Sans',sans-serif;
  font-size:12px;font-weight:600;letter-spacing:.16em;text-transform:uppercase;
  color:var(--bk-ink-75);
}
.bk-eyebrow .dot{width:6px;height:6px;border-radius:99px;background:var(--bk-gold)}
.bk-eyebrow.on-dark{color:var(--bk-cream-60)}

/* Primary button — works on <a> AND <button> elements.
   <button> needs explicit resets so UA styles don't sabotage layout.
   Text + arrow sit tightly centered together (no flex space-between).
   width:auto + max-content prevents stretching by parent flex containers. */
.bk-btn,
button.bk-btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:12px;
  padding:18px 32px;
  border-radius:999px;
  font-weight:600;
  background:var(--bk-gold);color:#fff;
  box-shadow:
    0 12px 26px -10px rgba(200,146,42,.55),
    0 1px 0 rgba(255,255,255,.45) inset;
  transition:transform .25s cubic-bezier(.2,.7,.2,1),box-shadow .25s,background .2s,color .2s;
  font-family:'DM Sans',sans-serif;
  font-size:16px;letter-spacing:.005em;line-height:1;
  text-decoration:none;
  text-align:center;
  white-space:nowrap;
  /* Critical: prevent parent flex/grid containers from stretching the button */
  width:auto;
  max-width:100%;
  /* button-element resets */
  border:0;
  cursor:pointer;
  -webkit-appearance:none;-moz-appearance:none;appearance:none;
  user-select:none;
  -webkit-tap-highlight-color:transparent;
  vertical-align:middle;
}
.bk-btn:hover,
button.bk-btn:hover{
  transform:translateY(-2px);
  background:#D89B30;
  color:#fff;
  box-shadow:
    0 18px 36px -12px rgba(200,146,42,.65),
    0 1px 0 rgba(255,255,255,.5) inset;
}
.bk-btn:active,
button.bk-btn:active{transform:translateY(0);box-shadow:0 6px 16px -8px rgba(200,146,42,.55)}
.bk-btn:focus-visible,
button.bk-btn:focus-visible{outline:2px solid var(--bk-gold);outline-offset:3px}

/* Arrow sits inline, tight against text, slides on hover */
.bk-btn .arrow{
  display:inline-block;
  transition:transform .25s;
  font-weight:400;
  line-height:1;
}
.bk-btn:hover .arrow{transform:translateX(4px)}

/* Large variant — bigger padding, larger text */
.bk-btn--lg,
button.bk-btn--lg{padding:20px 34px;font-size:17px}

/* Outline variant — transparent bg, gold ring */
.bk-btn--outline,
button.bk-btn--outline{
  background:transparent;color:var(--bk-gold);
  box-shadow:inset 0 0 0 1.5px var(--bk-gold);
}
.bk-btn--outline:hover,
button.bk-btn--outline:hover{
  background:var(--bk-gold);color:#fff;
}

/* Hero CTA row: align items so button doesn't stretch */
.bk-v3 .hero-cta-row .bk-btn{flex-shrink:0}

/* Mobile button — wraps text instead of overflowing */
@media (max-width:520px){
  .bk-btn,
  button.bk-btn{
    white-space:normal;
    line-height:1.25;
    padding:16px 24px;
    font-size:15px;
  }
  .bk-btn--lg,
  button.bk-btn--lg{padding:18px 28px;font-size:16px}
}

.bk-link-soft{
  color:var(--bk-gold);font-weight:500;font-size:15px;
  border-bottom:1px solid transparent;transition:border-color .2s,color .2s;
}
.bk-link-soft:hover{border-bottom-color:var(--bk-gold)}

.bk-grain{position:absolute;inset:0;pointer-events:none;opacity:.5;mix-blend-mode:multiply;z-index:1}
.bk-grain svg{width:100%;height:100%}


/* --------------------------------------------------------------------------
   PLACEHOLDER HIGHLIGHT — owner directive 2026-05
   Anything inside [ ... ] in legal/about copy gets soft yellow so owner
   can spot blanks immediately. Implemented via .bk-placeholder wrapper
   inserted by render layer (PHP) or fallback JS.
   -------------------------------------------------------------------------- */
.bk-placeholder{
  background:#FFF3CD;
  color:#6B5510;
  padding:2px 6px;
  border-radius:3px;
  font-style:normal;
  font-weight:500;
  outline:1px dashed rgba(107,85,16,.35);
  outline-offset:0;
}
.bk-placeholder::before{content:""}
.bk-placeholder::after{content:""}


/* --------------------------------------------------------------------------
   HEADER — sticky cream nav, paw + "Barkly" logo, center links, primary CTA
   -------------------------------------------------------------------------- */
.bk-header{
  position:sticky;top:0;z-index:50;
  background:rgba(245,240,232,.92);
  backdrop-filter:blur(14px) saturate(120%);
  -webkit-backdrop-filter:blur(14px) saturate(120%);
  border-bottom:1px solid rgba(42,51,43,.06);
  font-family:'DM Sans',sans-serif;
}
.bk-header.is-scrolled{
  box-shadow:0 4px 16px -10px rgba(42,51,43,.18);
}
.bk-header__inner{
  max-width:1240px;margin:0 auto;padding:0 24px;
  display:flex;align-items:center;justify-content:space-between;
  height:72px;gap:24px;
}
@media(min-width:1024px){.bk-header__inner{padding:0 48px}}

/* Logo: black paw circle + "Barkly" wordmark */
.bk-header__logo{
  display:flex;align-items:center;gap:10px;
  font-family:'Fraunces',serif;font-weight:600;font-size:22px;letter-spacing:-0.02em;
  color:var(--bk-ink);
  flex-shrink:0;
}
.bk-header__mark{
  width:32px;height:32px;border-radius:50%;
  background:var(--bk-ink);color:var(--bk-cream);
  display:inline-grid;place-items:center;
  flex-shrink:0;
}
.bk-header__brand{line-height:1}

/* Center nav links (hidden on mobile, visible ≥1024px) */
.bk-header__nav{
  display:none;gap:32px;font-size:14px;font-weight:500;color:var(--bk-ink-75);
}
.bk-header__nav a{position:relative;padding:6px 0;transition:color .2s}
.bk-header__nav a:hover{color:var(--bk-ink)}
@media(min-width:1024px){.bk-header__nav{display:flex}}

/* Right-side cluster: profile icon + cart icon + CTA pill */
.bk-header__actions{
  display:flex;align-items:center;gap:6px;
  flex-shrink:0;
}

.bk-header__icon-btn{
  position:relative;
  display:inline-flex;align-items:center;justify-content:center;
  width:42px;height:42px;border-radius:50%;
  background:transparent;color:var(--bk-ink);
  transition:background .2s,color .2s;
}
.bk-header__icon-btn:hover{background:rgba(42,51,43,.06);color:var(--bk-green)}

/* Tiny green dot on profile icon when logged in */
.bk-header__profile-btn{position:relative}
.bk-header__profile-dot{
  position:absolute;top:8px;right:8px;
  width:8px;height:8px;border-radius:50%;
  background:var(--bk-green);
  box-shadow:0 0 0 2px rgba(245,240,232,.92);
}

.bk-header__cart-btn{position:relative;background:transparent;border:0;cursor:pointer}
.bk-header__cart-count{
  position:absolute;top:4px;right:4px;
  min-width:18px;height:18px;padding:0 5px;
  background:var(--bk-gold);color:#fff;
  border-radius:9px;font-size:11px;font-weight:700;
  display:inline-flex;align-items:center;justify-content:center;
  font-family:'DM Sans',sans-serif;
  transition:transform .25s cubic-bezier(.2,.7,.2,1);
}
.bk-header__cart-count[data-empty="1"]{background:rgba(42,51,43,.25)}
.bk-header__cart-count.is-bumping{transform:scale(1.25)}

/* Primary CTA pill (dark, like image) */
.bk-header__cta{
  display:inline-flex;align-items:center;
  padding:11px 22px;margin-left:8px;
  border-radius:999px;
  background:var(--bk-ink);color:var(--bk-cream);
  font-family:'DM Sans',sans-serif;
  font-size:14px;font-weight:600;letter-spacing:.005em;
  transition:transform .2s,background .2s;
  white-space:nowrap;
}
.bk-header__cta:hover{transform:translateY(-1px);background:var(--bk-green);color:#fff}
@media(max-width:640px){
  /* On tiny screens, collapse CTA label, keep icons visible */
  .bk-header__cta{padding:10px 16px;font-size:13px}
  .bk-header__inner{gap:10px}
}

/* Legacy class — kept harmless in case any cached HTML still references it */
.bk-header__profile{display:none}


/* --------------------------------------------------------------------------
   FOOTER — REMOVED 2026-05-13 (owner directive)
   ────────────────────────────────────────────────────────────────────────
   The old two-tone dark footer block lived here. Conflicting with the new
   cream/paper footer in barkly-header-footer.css and winning the cascade
   because this file enqueues at priority 26 (AFTER header-footer). All
   .bk-footer* rules deleted — header-footer.css now owns the footer.
   -------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.bk-v3 .hero{position:relative;background:var(--bk-paper);overflow:hidden;padding:72px 0 96px}
.bk-v3 .hero::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(1000px 600px at 90% -20%,rgba(200,146,42,.10),transparent 60%),
             radial-gradient(800px 600px at -10% 100%,rgba(61,90,62,.07),transparent 60%);
  pointer-events:none;
}
.bk-v3 .hero-grid{
  display:grid;grid-template-columns:1fr;gap:48px;
  align-items:center;position:relative;z-index:2;
}
/* 2-column hero (text left 55%, stage right 45%) activates at 768px+.
   Owner directive 2026-05-13: !important to defeat any cascade override
   from cache plugins, and `> p { display:contents }` belt-and-suspenders
   so that even IF wpautop slips a <p> wrapper around the stage div, the
   <p> becomes layout-transparent and the real grid children align. */
@media(min-width:768px){
  .bk-v3 .hero-grid{
    display:grid !important;
    grid-template-columns:55fr 45fr !important;
    gap:48px;
    align-items:center;
  }
  /* Prevent grid blowout from long descendant content */
  .bk-v3 .hero-grid > *{min-width:0}
  /* If wpautop still slips a <p> in, make it pass through to children */
  .bk-v3 .hero-grid > p{display:contents}
}
@media(min-width:1024px){
  .bk-v3 .hero{padding:96px 0 120px}
  .bk-v3 .hero-grid{
    display:grid !important;
    grid-template-columns:55fr 45fr !important;
    gap:64px;
  }
}
.bk-v3 .hero h1{
  font-size:clamp(44px,7vw,84px);
  font-weight:600;
  margin:24px 0 28px;
  color:var(--bk-ink);
}
.bk-v3 .hero h1 .word{
  display:inline-block;
  margin-right:.22em;
}
@media (prefers-reduced-motion: no-preference){
  .bk-v3 .hero h1 .word{
    opacity:0;transform:translateY(14px);
    animation:bk-wordIn .7s cubic-bezier(.2,.7,.2,1) forwards;
    animation-delay:calc(var(--i) * 80ms + 200ms);
  }
}
.bk-v3 .hero h1 .word.italic{
  font-style:italic;font-weight:500;
  position:relative;
  color:var(--bk-ink);
  margin-right:.05em;
}
.bk-v3 .hero h1 .scribble{
  position:absolute;left:-4%;right:-2%;bottom:-12px;height:18px;
  overflow:visible;pointer-events:none;
}
.bk-v3 .hero h1 .scribble path{
  fill:none;stroke:var(--bk-gold);stroke-width:3;stroke-linecap:round;stroke-linejoin:round;
  stroke-dasharray:340;stroke-dashoffset:340;
  animation:bk-draw 900ms cubic-bezier(.65,.05,.36,1) forwards;
  animation-delay:1500ms;
}
@keyframes bk-wordIn{to{opacity:1;transform:translateY(0)}}
@keyframes bk-draw{to{stroke-dashoffset:0}}

.bk-v3 .hero-sub{font-size:18px;color:var(--bk-ink-75);max-width:540px;margin-bottom:36px;line-height:1.6}
@media(min-width:1024px){.bk-v3 .hero-sub{font-size:19px}}
.bk-v3 .hero-cta-row{display:flex;align-items:center;gap:24px;flex-wrap:wrap;margin-bottom:40px}
.bk-v3 .trust-mini{
  display:flex;flex-wrap:wrap;gap:8px 18px;align-items:center;
  font-size:14px;color:var(--bk-ink-75);
}
.bk-v3 .trust-mini > span{display:inline-flex;align-items:center;gap:8px}
.bk-v3 .trust-mini .sep{opacity:.4}

/* Hero paw pattern — covers FULL hero bg, subtle */
.bk-v3 .hero-pawbg{
  position:absolute;inset:0;
  opacity:.07;z-index:1;pointer-events:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><g fill='%232A332B'><g transform='translate(20,30) rotate(-15)'><ellipse cx='12' cy='16' rx='6' ry='4.5'/><ellipse cx='6' cy='9' rx='2.4' ry='3'/><ellipse cx='10' cy='5' rx='2.4' ry='3'/><ellipse cx='14' cy='5' rx='2.4' ry='3'/><ellipse cx='18' cy='9' rx='2.4' ry='3'/></g><g transform='translate(80,70) rotate(20)'><ellipse cx='12' cy='16' rx='6' ry='4.5'/><ellipse cx='6' cy='9' rx='2.4' ry='3'/><ellipse cx='10' cy='5' rx='2.4' ry='3'/><ellipse cx='14' cy='5' rx='2.4' ry='3'/><ellipse cx='18' cy='9' rx='2.4' ry='3'/></g></g></svg>");
  background-size:160px 160px;
  background-repeat:repeat;
}

/* --------------------------------------------------------------------------
   HERO STAGE — Live Nutri-Scan instrument (Claude Design 2026-05 v2)
   Rings + sweep + scan card + floating chips + parallax tilt.
   JS animations in assets/js/barkly-homepage-v3.js.
   -------------------------------------------------------------------------- */
.bk-v3 .stage{
  position:relative;display:flex;
  flex-direction:column;          /* stack .stage-inner above .hero-dots */
  justify-content:center;align-items:center;
  gap:32px;                       /* breathing room between circle and dots */
  /* responsive height: smaller in 2-col mode, full size when standalone */
  min-height:420px;
  perspective:1500px;
  overflow:visible;               /* BUG 4 FIX: rings spill beyond stage-inner */
}
@media(min-width:1024px){.bk-v3 .stage{min-height:540px;gap:36px}}
/* Owner 2026-05-13: mobile (≤767px) — clamp stage width tighter,
   force .stage-inner to fill the clamped column at 1:1 aspect,
   slightly smaller .scan-core (68%) for breathing room around the disk.
   Note: max-width:767px (NOT 768px) — sits flush against the
   min-width:768px breakpoint above, no overlap, no gap. */
@media (max-width:767px){
  .bk-v3 .stage{
    width:min(340px,86vw);
    margin:0 auto;
  }
  .bk-v3 .stage-inner{
    width:100%;
    height:auto !important;
    aspect-ratio:1/1 !important;
  }
  .bk-v3 .scan-core{
    width:68% !important;
    height:68% !important;
    padding:6%;
  }
  /* On mobile the disk shrinks further — kill macros bars (least useful
     at tiny sizes) to keep the inside readable in a perfect circle. */
  .bk-v3 .scan-core .macros{display:none}
}

.bk-v3 .stage-inner{
  /* Owner 2026-05-13: aspect-ratio + border-radius + height locked with
     !important to defeat egg-shape distortion from any UA / cache layer.
     width:min(420px,80vw) per spec — viewport-relative cap for narrower screens. */
  position:relative;
  width:min(420px,80vw);
  height:auto !important;
  aspect-ratio:1/1 !important;
  border-radius:50% !important;
  overflow:visible;
  transform-style:preserve-3d;
  transition:transform .7s cubic-bezier(.2,.7,.2,1);
  transform:rotateX(var(--rx,6deg)) rotateY(var(--ry,-4deg));
}
@media(min-width:1024px){
  .bk-v3 .stage-inner{width:min(500px,94%)}
}

/* ─── Two rotating gold rings (owner directive 2026-05) ───────────
   ::before  outer ring, 3s clockwise — bold gold top, faint gold right
   ::after   inner ring, 7s counter-clockwise — soft gold bottom only
   pointer-events:none so they don't block .scan-core clicks.
   BUG 4 FIX (owner 2026-05): z-index:2 so rings sit ABOVE chips (z:0)
   and halo (z:-1); alphas slightly bumped for visibility on cream bg. */
.bk-v3 .stage-inner::before{
  content:"";position:absolute;inset:-12px;border-radius:50%;
  border:3px solid transparent;
  border-top-color:#C8922A;
  border-right-color:rgba(200,146,42,.30);
  animation:bkv2-spin 3s linear infinite;
  pointer-events:none;
  z-index:2;
}
.bk-v3 .stage-inner::after{
  content:"";position:absolute;inset:-22px;border-radius:50%;
  border:1.5px solid transparent;
  border-bottom-color:rgba(200,146,42,.20);
  animation:bkv2-spin 7s linear infinite reverse;
  pointer-events:none;
  z-index:2;
}
@keyframes bkv2-spin{
  from{transform:rotate(0deg)}
  to  {transform:rotate(360deg)}
}

/* Glow halo — owner spec 2026-05: extended to inset:-40px, lighter alpha,
   sits BEHIND the rings (z-index:-1) so rings stay sharp. */
.bk-v3 .stage-halo{
  position:absolute;inset:-40px;border-radius:50%;z-index:-1;
  background:radial-gradient(circle,rgba(200,146,42,.12) 0%,transparent 70%);
  filter:blur(14px);
  animation:bk-halopulse 6s ease-in-out infinite;
  pointer-events:none;
}
@keyframes bk-halopulse{
  0%,100%{opacity:.85;transform:scale(1)}
  50%{opacity:1;transform:scale(1.04)}
}

/* Concentric instrument rings — slow rotation */
.bk-v3 .rings{position:absolute;inset:0;transform:translateZ(20px);pointer-events:none}
.bk-v3 .rings svg{width:100%;height:100%;overflow:visible}
.bk-v3 .ring-rot{transform-origin:center;animation:bk-stage-spin 80s linear infinite}
@keyframes bk-stage-spin{to{transform:rotate(360deg)}}

/* ⓘ Old .sweep CSS removed — owner directive 2026-05.
   Gold rotation now provided by .stage-inner::before / ::after rings. */

/* Center scan card — cream disk floating above rings.
   BUG 2 FIX (owner 2026-05): aspect-ratio + border-radius forced with
   !important so caching/CDN minifiers can't drop them. */
.bk-v3 .scan-core{
  /* Owner 2026-05-13 (egg-shape final fix):
     aspect-ratio alone is a HINT — content min-height pushes the box taller
     than the preferred ratio. To force a true circle, we set BOTH width AND
     height as percentages of the parent .stage-inner (which is already
     square via its own aspect-ratio + width). min-height:0 stops content
     from forcing growth. overflow:hidden clips anything that still spills,
     keeping the border-radius circular. */
  position:absolute;
  top:50%;
  left:50%;
  width:72% !important;
  height:72% !important;
  min-height:0 !important;
  aspect-ratio:1/1 !important;
  border-radius:50% !important;
  box-sizing:border-box;
  overflow:hidden;
  transform:translate(-50%,-50%) translateZ(60px);
  background:
    radial-gradient(circle at 30% 28%,#FBF8F2 0%,#F0E6D0 70%,#E2D2A8 100%);
  box-shadow:
    0 30px 60px -28px rgba(42,51,43,.45),
    inset 0 0 0 1px rgba(42,51,43,.10),
    inset 0 -14px 32px rgba(200,146,42,.12);
  padding:7%;                        /* reduced from 11% — gives content more room */
  display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;
}
.bk-v3 .scan-status{
  display:inline-flex;align-items:center;gap:6px;
  font-size:9.5px;letter-spacing:.2em;font-weight:700;text-transform:uppercase;
  color:var(--bk-green);margin-bottom:8px;
  font-family:'DM Sans',sans-serif;
}
.bk-v3 .live-dot{
  width:7px;height:7px;border-radius:50%;background:var(--bk-green);
  box-shadow:0 0 0 0 rgba(61,90,62,.5);
  animation:bk-liveDot 1.6s ease-out infinite;
}
@keyframes bk-liveDot{
  0%{box-shadow:0 0 0 0 rgba(61,90,62,.55)}
  70%{box-shadow:0 0 0 10px rgba(61,90,62,0)}
  100%{box-shadow:0 0 0 0 rgba(61,90,62,0)}
}
/* Owner 2026-05-13: scan-core content shrunk to fit inside the 72% square
   without pushing height. Sizes use clamp() so they scale down on narrow
   viewports and back up on wider screens, but never exceed the target. */
.bk-v3 .dog-name{
  font-family:'Fraunces',serif;
  font-size:clamp(20px,4.2vw,26px);
  font-weight:600;color:var(--bk-ink);
  line-height:1;letter-spacing:-0.02em;
  transition:opacity .35s ease,transform .35s ease;
}
.bk-v3 .dog-meta{
  margin-top:3px;font-size:10.5px;font-weight:500;color:var(--bk-ink-75);
  letter-spacing:.03em;
  font-family:'DM Sans',sans-serif;
  transition:opacity .35s ease;
}
.bk-v3 .kcal-row{
  margin-top:10px;display:flex;align-items:baseline;gap:5px;
  font-family:'Fraunces',serif;color:var(--bk-ink);
}
.bk-v3 .kcal-row .num{font-size:clamp(26px,5.5vw,34px);font-weight:600;letter-spacing:-0.03em;line-height:1;color:var(--bk-gold)}
.bk-v3 .kcal-row .unit{font-family:'DM Sans',sans-serif;font-size:10px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--bk-ink-55)}

.bk-v3 .macros{margin-top:10px;width:82%;display:grid;gap:5px}
.bk-v3 .macro{display:grid;grid-template-columns:48px 1fr 30px;gap:6px;align-items:center}
.bk-v3 .macro .l{font-size:9px;letter-spacing:.08em;text-transform:uppercase;color:var(--bk-ink-75);text-align:left;font-weight:600;font-family:'DM Sans',sans-serif;line-height:1.1}
.bk-v3 .macro .v{font-family:'Fraunces',serif;font-size:11px;color:var(--bk-ink);text-align:right;font-weight:600}
.bk-v3 .macro .b{height:6px;border-radius:99px;background:rgba(42,51,43,.10);overflow:hidden;position:relative}
.bk-v3 .macro .b i{display:block;height:100%;border-radius:99px;background:var(--bk-green);transition:width .8s cubic-bezier(.4,.0,.2,1)}
.bk-v3 .macro:nth-child(2) .b i{background:var(--bk-gold)}
.bk-v3 .macro:nth-child(3) .b i{background:#7A8B5C}

/* Swap (data refresh) animation */
.bk-v3 .scan-core.swap .dog-name,
.bk-v3 .scan-core.swap .dog-meta{opacity:0;transform:translateY(-6px)}

/* Floating ingredient chips around the stage.
   Owner spec 2026-05: 3s ease-in-out cycle, staggered 0 / 0.75 / 1.5 / 2.25s,
   subtle 8px lift. Soft white bg + gold-tinted border per spec. */
.bk-v3 .chip{
  position:absolute;
  background:rgba(255,255,255,.85);
  border:1px solid rgba(200,146,42,.2);
  border-radius:999px;padding:5px 12px;
  font-size:11px;font-weight:600;color:#2A332B;
  display:inline-flex;align-items:center;gap:6px;white-space:nowrap;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
  animation:bkv2-float 3s ease-in-out infinite;
  font-family:'DM Sans',sans-serif;
  /* z-index lower than .scan-core so chips sit visually around/behind the disk */
  z-index:0;
}
.bk-v3 .chip .v{font-family:'Fraunces',serif;font-style:italic;color:var(--bk-gold);font-weight:600}

/* translateZ kept for 3D depth (preserve-3d on .stage-inner).
   `translate:` property in keyframes is independent of transform — animation
   moves Y without overriding the depth Z.
   BUG 3 FIX (owner 2026-05): chips positioned to overflow .stage-inner
   on desktop only. Hidden on mobile to prevent overlap with left text. */
.bk-v3 .chip-1{top:8%;    left:-10%;  transform:translateZ(90px); animation-delay:0s}
.bk-v3 .chip-2{top:8%;    right:-10%; transform:translateZ(70px); animation-delay:.75s}
.bk-v3 .chip-3{bottom:8%; right:-10%; transform:translateZ(100px);animation-delay:1.5s}
.bk-v3 .chip-4{bottom:8%; left:-10%;  transform:translateZ(80px); animation-delay:2.25s}

@keyframes bkv2-float{
  0%,100%{translate:0 0}
  50%    {translate:0 -8px}
}

/* BUG 3 FIX (owner 2026-05): hide chips ≤768px.
   Mobile is cramped (circle + dots already fill the column). Chips would
   overflow the .stage-inner box and visually crash into the left text. */
@media (max-width:768px){
  .bk-v3 .chip{display:none}
}

/* ─── Recipe pill (owner spec 2026-05) — sits below .kcal-row,
   small, gold-bordered, centered. Matches dog cycle. ─── */
.bk-v3 .dog-recipe{
  margin-top:6px;
  display:inline-flex;align-items:center;
  padding:3px 9px;border-radius:999px;
  border:1px solid var(--bk-gold);
  font-family:'DM Sans',sans-serif;
  font-size:10px;font-weight:600;
  color:var(--bk-gold);
  letter-spacing:.03em;
  white-space:nowrap;
  background:rgba(200,146,42,.04);
  transition:opacity .35s ease,transform .35s ease;
}
/* Swap animation cascades to recipe too */
.bk-v3 .scan-core.swap .dog-recipe{opacity:0;transform:translateY(-6px)}

/* ─── Indicator dots — below circle, 4 dots, active = gold filled ─── */
.bk-v3 .hero-dots{
  display:flex;justify-content:center;align-items:center;gap:10px;
  /* Position is via .stage flex-direction:column above */
}
.bk-v3 .hero-dot{
  width:9px;height:9px;border-radius:50%;
  background:rgba(42,51,43,.18);
  border:0;padding:0;cursor:pointer;
  transition:background .25s,transform .25s;
  -webkit-appearance:none;appearance:none;
  -webkit-tap-highlight-color:transparent;
}
.bk-v3 .hero-dot:hover{background:rgba(200,146,42,.55)}
.bk-v3 .hero-dot.is-active{
  background:var(--bk-gold);
  transform:scale(1.35);
  box-shadow:0 0 0 3px rgba(200,146,42,.18);
}
.bk-v3 .hero-dot:focus-visible{outline:2px solid var(--bk-gold);outline-offset:3px}

/* Perimeter readouts (corner labels) */
.bk-v3 .readout{
  position:absolute;font-family:'Fraunces',serif;color:var(--bk-ink-75);
  font-size:10px;letter-spacing:.16em;text-transform:uppercase;font-weight:600;
  display:flex;align-items:center;gap:6px;
  transform:translateZ(50px);
}
.bk-v3 .readout::before{content:"";width:8px;height:1px;background:var(--bk-gold)}
.bk-v3 .readout-tl{top:6%;left:8%}
.bk-v3 .readout-br{bottom:6%;right:8%;flex-direction:row-reverse}
.bk-v3 .readout-br::before{display:none}
.bk-v3 .readout-br::after{content:"";width:8px;height:1px;background:var(--bk-gold)}

@media (prefers-reduced-motion: reduce){
  .bk-v3 .chip{animation:none!important}
  .bk-v3 .stage-halo{animation:none!important}
  .bk-v3 .ring-rot{animation:none!important}
  .bk-v3 .stage-inner::before,
  .bk-v3 .stage-inner::after{animation:none!important}
}

/* Floating leaves around stage */
.bk-v3 .floaty{position:absolute;opacity:.18;pointer-events:none}
.bk-v3 .leaf-1{top:-8%;right:-4%;width:90px;animation:bk-bob 7s ease-in-out infinite}
.bk-v3 .leaf-2{bottom:-6%;left:-6%;width:110px;animation:bk-bob 9s ease-in-out infinite reverse}
@keyframes bk-bob{
  0%,100%{transform:translateY(0) rotate(var(--r,0deg))}
  50%{transform:translateY(-10px) rotate(calc(var(--r,0deg) + 4deg))}
}

/* POLAROID (legacy — kept harmless in case cached HTML still references) */
.bk-v3 .polaroid-wrap{position:relative;display:flex;justify-content:center;align-items:center;min-height:480px}
.bk-v3 .polaroid{
  position:relative;width:min(380px,90vw);
  background:#FBF8F2;
  padding:18px 18px 24px;
  border-radius:6px;
  box-shadow:
    0 30px 60px -30px rgba(42,51,43,.35),
    0 8px 16px -8px rgba(42,51,43,.18),
    0 0 0 1px rgba(42,51,43,.04);
  transform:rotate(-2.2deg);
  transition:transform .6s cubic-bezier(.2,.7,.2,1);
}
.bk-v3 .polaroid:hover{transform:rotate(-1deg) translateY(-4px)}
.bk-v3 .polaroid .tape{
  position:absolute;top:-14px;left:50%;width:120px;height:28px;
  transform:translateX(-50%) rotate(-3deg);
  background:linear-gradient(180deg,rgba(232,222,196,.92),rgba(218,206,176,.85));
  box-shadow:0 4px 8px -4px rgba(42,51,43,.18);
  border-left:1px dashed rgba(0,0,0,.06);border-right:1px dashed rgba(0,0,0,.06);
}
.bk-v3 .polaroid .photo{
  aspect-ratio:1/1;border-radius:3px;overflow:hidden;position:relative;
  background:radial-gradient(circle at 30% 30%,#C9A876 0%,#A07D4A 36%,#5C4424 100%);
}
.bk-v3 .polaroid .photo::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 65%,#3a2d18,transparent 65%),
    radial-gradient(circle at 30% 35%,rgba(255,255,255,.25),transparent 25%),
    radial-gradient(circle at 70% 30%,rgba(0,0,0,.25),transparent 30%);
  mix-blend-mode:multiply;
}
.bk-v3 .polaroid .photo::after{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(ellipse 18% 12% at 38% 42%,#1c140a 50%,transparent 60%),
    radial-gradient(ellipse 18% 12% at 62% 42%,#1c140a 50%,transparent 60%),
    radial-gradient(ellipse 6% 8% at 50% 60%,#0a0604 60%,transparent 70%);
}
.bk-v3 .polaroid .nose-dog{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 35% 25% at 50% 78%,rgba(0,0,0,.35),transparent 60%),
    linear-gradient(180deg,transparent 60%,rgba(0,0,0,.18));
}
.bk-v3 .polaroid .tongue{
  position:absolute;left:48%;top:74%;width:14%;height:8%;
  background:radial-gradient(ellipse,#C97269,#8B3F36);border-radius:50%;
  transform:translateX(-50%);opacity:.85;
}
.bk-v3 .polaroid .caption{
  font-family:'Caveat',cursive;font-size:22px;
  text-align:center;margin-top:14px;color:#2A332B;line-height:1.2;
}
.bk-v3 .polaroid .meta{
  font-size:11px;text-transform:uppercase;letter-spacing:.18em;
  color:var(--bk-ink-55);text-align:center;margin-top:4px;
}

/* Floating leaves around polaroid */
.bk-v3 .floaty{position:absolute;opacity:.18;pointer-events:none;}
.bk-v3 .leaf-1{top:-8%;right:-4%;width:90px;animation:bk-bob 7s ease-in-out infinite}
.bk-v3 .leaf-2{bottom:-6%;left:-6%;width:110px;animation:bk-bob 9s ease-in-out infinite reverse}
.bk-v3 .leaf-3{top:42%;right:-12%;width:70px;animation:bk-bob 8s ease-in-out infinite}
@keyframes bk-bob{
  0%,100%{transform:translateY(0) rotate(var(--r,0deg))}
  50%{transform:translateY(-10px) rotate(calc(var(--r,0deg) + 4deg))}
}
.bk-v3 .paw-deco{position:absolute;opacity:.14;pointer-events:none}


/* --------------------------------------------------------------------------
   TICKER (new design)
   Speed comes from --bk-ticker-speed (76s per owner directive).
   -------------------------------------------------------------------------- */
.bk-v3 .ticker{
  background:var(--bk-ink);color:rgba(255,255,255,.6);
  overflow:hidden;position:relative;
  height:52px;display:flex;align-items:center;
}
.bk-v3 .ticker-track{
  display:flex;gap:48px;flex-shrink:0;
  animation:bk-scroll var(--bk-ticker-speed) linear infinite;
  padding-left:48px;
  font-size:12px;letter-spacing:.14em;text-transform:uppercase;font-weight:500;
  white-space:nowrap;
  font-family:'DM Sans',sans-serif;
}
.bk-v3 .ticker:hover .ticker-track{animation-play-state:paused}
.bk-v3 .ticker-track span.bullet{opacity:.5}
@keyframes bk-scroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}


/* --------------------------------------------------------------------------
   SECTIONS — generic spacing + heading block
   -------------------------------------------------------------------------- */
.bk-v3 section{position:relative}
.bk-v3 .sec-pad{padding:96px 0}
@media(min-width:1024px){.bk-v3 .sec-pad{padding:128px 0}}
.bk-v3 .sec-head{max-width:760px;margin-bottom:56px}
.bk-v3 .sec-head h2{font-size:clamp(34px,4.5vw,56px);margin-top:14px}
.bk-v3 .sec-head .sub{margin-top:18px;font-size:17px;color:var(--bk-ink-75);max-width:620px}


/* --------------------------------------------------------------------------
   BRAND CARDS + STATS + STEPS
   -------------------------------------------------------------------------- */
.bk-v3 .brand-cards{display:grid;grid-template-columns:1fr;gap:18px}
@media(min-width:768px){.bk-v3 .brand-cards{grid-template-columns:repeat(3,1fr);gap:20px}}
.bk-v3 .bcard{
  background:var(--bk-paper);border:1px solid rgba(42,51,43,.08);
  border-radius:18px;padding:32px 28px;
  transition:transform .35s cubic-bezier(.2,.7,.2,1),box-shadow .35s,border-color .35s;
  position:relative;
}
.bk-v3 .bcard:hover{transform:translateY(-4px);box-shadow:0 20px 40px -28px rgba(42,51,43,.25);border-color:rgba(200,146,42,.3)}
.bk-v3 .bcard .ico{font-size:30px;margin-bottom:18px;display:block}
.bk-v3 .bcard h3{font-size:22px;line-height:1.2;margin-bottom:10px}
.bk-v3 .bcard p{font-size:15px;color:var(--bk-ink-75);line-height:1.6}

.bk-v3 .stats{
  display:grid;grid-template-columns:repeat(2,1fr);gap:24px;
  margin-top:80px;padding:48px 32px;
  background:var(--bk-paper);border-radius:24px;
  border:1px solid rgba(42,51,43,.06);
}
@media(min-width:768px){.bk-v3 .stats{grid-template-columns:repeat(4,1fr);padding:56px 40px}}
.bk-v3 .stat{text-align:center}
.bk-v3 .stat .n{font-family:'Fraunces',serif;font-size:clamp(40px,5vw,64px);font-weight:600;line-height:1;color:var(--bk-ink);letter-spacing:-0.02em}
.bk-v3 .stat .l{margin-top:10px;font-size:13px;color:var(--bk-ink-75);font-weight:500}

.bk-v3 .steps-section{margin-top:120px}
.bk-v3 .steps{display:grid;grid-template-columns:1fr;gap:32px;margin-top:48px;position:relative}
@media(min-width:1024px){.bk-v3 .steps{grid-template-columns:repeat(3,1fr);gap:48px}}
.bk-v3 .steps::before{
  /* Dashed connector line between the 01/02/03 step badges.
     Owner 2026-05-17: previous top:42px landed mid-glyph because the .num
     is 54px tall (Fraunces 54px / line-height 1). Pulling it to top:-14px
     floats the line clearly ABOVE the numbers, using the parent's
     margin-top:48px buffer as visual breathing room. */
  content:"";position:absolute;top:-14px;left:12%;right:12%;height:2px;
  background-image:linear-gradient(to right,var(--bk-ink-55) 50%,transparent 0);
  background-size:14px 2px;background-repeat:repeat-x;
  opacity:.35;display:none;
  pointer-events:none;
}
@media(min-width:1024px){.bk-v3 .steps::before{display:block}}
.bk-v3 .step{position:relative;background:transparent;padding:0 8px}
.bk-v3 .step .num{
  /* numerical step badge — clean, no jarring filled bg.
     Gold accent + ink text + subtle bottom underline. */
  font-family:'Fraunces',serif;font-size:54px;font-weight:600;color:var(--bk-gold);
  background:transparent;display:inline-block;padding:0;line-height:1;
  margin-bottom:18px;letter-spacing:-0.04em;
}
.bk-v3 .step .ico{font-size:28px;margin-bottom:8px;display:block}
.bk-v3 .step h3{font-size:22px;margin-bottom:8px;line-height:1.25}
.bk-v3 .step p{font-size:15px;color:var(--bk-ink-75)}
.bk-v3 .steps-cta{text-align:center;margin-top:64px}


/* --------------------------------------------------------------------------
   BENEFITI (6-card grid with barviz + season-row)
   -------------------------------------------------------------------------- */
.bk-v3 .benefits-bg{background:var(--bk-paper);position:relative}
.bk-v3 .benefits-bg::before{
  content:"";position:absolute;inset:0;opacity:.4;pointer-events:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.2 0 0 0 0 0.17 0 0 0 0.4 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.5'/></svg>");
  mix-blend-mode:multiply;
}
.bk-v3 .bgrid{display:grid;grid-template-columns:1fr;gap:20px;position:relative;z-index:2}
@media(min-width:768px){.bk-v3 .bgrid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.bk-v3 .bgrid{grid-template-columns:repeat(3,1fr)}}
.bk-v3 .benefit{
  background:var(--bk-cream);border:1px solid rgba(42,51,43,.07);
  border-radius:20px;padding:32px 28px;
  transition:transform .3s cubic-bezier(.2,.7,.2,1),box-shadow .3s,border-color .3s;
}
.bk-v3 .benefit:hover{transform:translateY(-4px);border-color:var(--bk-gold);box-shadow:0 18px 40px -22px rgba(200,146,42,.4)}
.bk-v3 .benefit .ico{font-size:28px;margin-bottom:18px;display:block}
.bk-v3 .benefit h3{font-size:20px;line-height:1.25;margin-bottom:10px}
.bk-v3 .benefit p{font-size:14.5px;color:var(--bk-ink-75);line-height:1.6}

.bk-v3 .barviz{margin-top:18px;display:grid;grid-template-columns:auto 1fr;gap:6px 12px;align-items:center}
.bk-v3 .barviz .lbl{font-size:11px;font-weight:600;letter-spacing:.06em;color:var(--bk-ink-75);text-transform:uppercase}
.bk-v3 .barviz .bar{height:10px;border-radius:4px;background:rgba(42,51,43,.1);position:relative;overflow:hidden}
.bk-v3 .barviz .bar > i{display:block;height:100%;border-radius:4px}
.bk-v3 .barviz .bar.kibla > i{background:#9b9890;width:96%}
.bk-v3 .barviz .bar.barkly > i{background:var(--bk-green);width:32%}
.bk-v3 .barviz .tag{font-size:11px;color:var(--bk-ink-55)}

.bk-v3 .season-row{
  margin-top:18px;display:flex;align-items:center;justify-content:space-between;
  background:rgba(42,51,43,.04);border-radius:12px;padding:12px 14px;
  font-size:13px;font-weight:500;color:var(--bk-ink-75);
}
.bk-v3 .season-row .arr{color:var(--bk-gold);font-weight:700}


/* --------------------------------------------------------------------------
   NRC dark section
   -------------------------------------------------------------------------- */
.bk-v3 .nrc{background:var(--bk-ink);color:var(--bk-cream);position:relative;overflow:hidden}
.bk-v3 .nrc::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(900px 600px at 80% 0%,rgba(61,90,62,.4),transparent 60%),
    radial-gradient(700px 500px at 0% 100%,rgba(200,146,42,.10),transparent 60%);
  pointer-events:none;
}
.bk-v3 .nrc h2{color:#fff}
.bk-v3 .nrc .sub{color:var(--bk-cream-70)}
.bk-v3 .nrc .quote{
  border-left:2px solid var(--bk-gold);padding:18px 24px;margin:40px 0 56px;
  font-family:'Fraunces',serif;font-style:italic;font-size:18px;color:var(--bk-cream);
  max-width:720px;line-height:1.55;
}
.bk-v3 .nrc .quote .l{display:block;margin-bottom:4px;color:var(--bk-cream-70);font-style:normal;font-family:'DM Sans';font-size:12px;letter-spacing:.16em;text-transform:uppercase;font-weight:600}
.bk-v3 .pills{display:grid;grid-template-columns:1fr;gap:18px}
@media(min-width:768px){.bk-v3 .pills{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.bk-v3 .pills{grid-template-columns:repeat(3,1fr)}}
.bk-v3 .pill{
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);
  border-radius:18px;padding:26px;color:var(--bk-cream);
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  transition:transform .3s,border-color .3s,background .3s;
}
.bk-v3 .pill:hover{transform:translateY(-3px);border-color:rgba(200,146,42,.5);background:rgba(255,255,255,.07)}
.bk-v3 .pill .ico{font-size:22px;display:block;margin-bottom:14px}
.bk-v3 .pill h3{color:#fff;font-size:18px;margin-bottom:8px;line-height:1.3}
.bk-v3 .pill p{font-size:14px;color:var(--bk-cream-70);line-height:1.55}
.bk-v3 .pill .formula{font-family:'Fraunces',serif;font-style:italic;color:var(--bk-gold-soft)}
.bk-v3 .disclaimer{margin-top:48px;color:var(--bk-cream-45);font-size:12px;max-width:720px;line-height:1.5}


/* --------------------------------------------------------------------------
   SERTIFIKATI
   -------------------------------------------------------------------------- */
.bk-v3 .certs{background:var(--bk-paper)}
.bk-v3 .cgrid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
@media(min-width:1024px){.bk-v3 .cgrid{grid-template-columns:repeat(4,1fr)}}
.bk-v3 .cert{
  background:var(--bk-white);border:1px solid rgba(42,51,43,.08);
  border-radius:16px;padding:28px 24px;text-align:left;
  transition:transform .3s,border-color .3s,box-shadow .3s;
}
.bk-v3 .cert:hover{transform:translateY(-3px);border-color:var(--bk-green);box-shadow:0 14px 30px -18px rgba(61,90,62,.3)}
.bk-v3 .cert .ic{width:36px;height:36px;color:var(--bk-green);margin-bottom:18px}
.bk-v3 .cert .ac{font-family:'Fraunces',serif;font-weight:700;font-size:20px;letter-spacing:-0.01em;margin-bottom:6px}
.bk-v3 .cert .ds{font-size:12.5px;color:var(--bk-ink-75);line-height:1.45}

/* Expandable detail panel below cert grid — owner directive 2026-05 */
.bk-v3 .standards-details{
  margin-top:48px;
  border:1px solid rgba(42,51,43,.08);
  border-radius:18px;
  background:var(--bk-white);
  overflow:hidden;
  transition:border-color .25s,box-shadow .25s;
}
.bk-v3 .standards-details[open]{
  border-color:rgba(61,90,62,.25);
  box-shadow:0 18px 40px -28px rgba(42,51,43,.18);
}
.bk-v3 .standards-details__toggle{
  list-style:none;cursor:pointer;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
  padding:22px 28px;
  font-family:'Fraunces',serif;font-size:19px;font-weight:600;color:var(--bk-ink);
  transition:color .2s,background .2s;
}
.bk-v3 .standards-details__toggle:hover{color:var(--bk-green);background:rgba(61,90,62,.04)}
.bk-v3 .standards-details__toggle::-webkit-details-marker{display:none}
.bk-v3 .standards-details__toggle-icon{
  width:32px;height:32px;flex-shrink:0;
  display:grid;place-items:center;
  border-radius:50%;
  border:1.5px solid var(--bk-ink);color:var(--bk-ink);
  font-family:'DM Sans',sans-serif;font-size:20px;font-weight:400;line-height:1;
  transition:transform .3s cubic-bezier(.2,.7,.2,1),background .3s,color .3s,border-color .3s;
}
.bk-v3 .standards-details[open] .standards-details__toggle-icon{
  transform:rotate(45deg);
  background:var(--bk-ink);color:var(--bk-cream);border-color:var(--bk-ink);
}
.bk-v3 .standards-details__body{
  padding:8px 28px 32px;
  border-top:1px solid rgba(42,51,43,.06);
  background:var(--bk-paper);
}
.bk-v3 .standards-details__item{
  padding:22px 0;
  border-bottom:1px solid rgba(42,51,43,.08);
}
.bk-v3 .standards-details__item:last-of-type{border-bottom:0}
.bk-v3 .standards-details__item h3{
  font-family:'Fraunces',serif;font-size:18px;font-weight:600;
  color:var(--bk-ink);margin:0 0 8px;line-height:1.3;
}
.bk-v3 .standards-details__item p{
  font-size:15px;color:var(--bk-ink-75);line-height:1.65;margin:0;
}
.bk-v3 .standards-details__note{
  margin-top:24px;padding-top:20px;
  border-top:1px solid rgba(42,51,43,.08);
  font-size:14px;color:var(--bk-ink-55);text-align:center;
}
.bk-v3 .standards-details__note a{
  color:var(--bk-gold);font-weight:500;text-decoration:underline;text-underline-offset:3px;
}
.bk-v3 .standards-details__note a:hover{color:var(--bk-green)}


/* --------------------------------------------------------------------------
   MID CTA
   -------------------------------------------------------------------------- */
.bk-v3 .midcta{
  background:var(--bk-ink);color:var(--bk-cream);text-align:center;
  padding:120px 0;position:relative;overflow:hidden;
}
.bk-v3 .midcta::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(700px 500px at 50% -10%,rgba(200,146,42,.16),transparent 60%);
  pointer-events:none;
}
.bk-v3 .midcta .paw-em{font-size:34px;margin-bottom:20px;display:inline-block}
.bk-v3 .midcta h2{color:#fff;font-size:clamp(40px,5.5vw,68px);max-width:880px;margin:0 auto 18px}
.bk-v3 .midcta .sub{color:var(--bk-cream-70);max-width:580px;margin:0 auto 40px;font-size:17px}
.bk-v3 .midcta .trust-row{margin-top:32px;display:flex;justify-content:center;gap:24px;flex-wrap:wrap;color:var(--bk-cream-60);font-size:14px}


/* --------------------------------------------------------------------------
   RECENZIJE
   -------------------------------------------------------------------------- */
.bk-v3 .reviews{background:var(--bk-cream)}
.bk-v3 .reviews .rgrid{display:grid;grid-template-columns:1fr;gap:24px}
@media(min-width:1024px){.bk-v3 .reviews .rgrid{grid-template-columns:repeat(3,1fr)}}
.bk-v3 .review{
  background:var(--bk-paper);border-radius:20px;padding:36px 32px;
  box-shadow:0 16px 32px -28px rgba(42,51,43,.25);
  display:flex;flex-direction:column;gap:20px;
  transition:transform .3s;
}
.bk-v3 .review:hover{transform:translateY(-3px)}
.bk-v3 .stars{color:var(--bk-gold);letter-spacing:2px;font-size:16px}
.bk-v3 .review .q{font-family:'Fraunces',serif;font-style:italic;font-size:19px;line-height:1.5;color:var(--bk-ink);text-wrap:pretty}
.bk-v3 .reviewer{display:flex;align-items:center;gap:14px;margin-top:auto}
.bk-v3 .av{
  width:40px;height:40px;border-radius:50%;background:var(--bk-green);color:var(--bk-cream);
  display:grid;place-items:center;font-family:'Fraunces',serif;font-weight:600;font-size:16px;flex-shrink:0;
}
.bk-v3 .reviewer .who{font-weight:600;font-size:14.5px;color:var(--bk-ink);line-height:1.3}
.bk-v3 .reviewer .who small{display:block;font-weight:400;font-size:12.5px;color:var(--bk-ink-55);margin-top:2px}
.bk-v3 .gcta{text-align:center;margin-top:56px}
.bk-v3 .gcta .cap{font-size:13px;color:var(--bk-ink-55);margin-top:14px}


/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */
.bk-v3 .faq{background:var(--bk-paper)}
.bk-v3 .note-box{
  background:rgba(200,146,42,.10);border-left:3px solid var(--bk-gold);
  border-radius:8px;padding:14px 18px;margin-bottom:32px;
  font-size:14.5px;color:var(--bk-ink);
}
.bk-v3 .acc{border-top:1px solid rgba(42,51,43,.12)}
.bk-v3 .acc-item{border-bottom:1px solid rgba(42,51,43,.12)}
.bk-v3 .acc-summary{
  list-style:none;display:flex;align-items:center;justify-content:space-between;gap:24px;
  padding:24px 4px;cursor:pointer;font-family:'Fraunces',serif;font-size:20px;font-weight:500;color:var(--bk-ink);
  transition:color .2s;
}
.bk-v3 .acc-summary:hover{color:var(--bk-green)}
.bk-v3 .acc-summary::-webkit-details-marker{display:none}
.bk-v3 .acc-summary .ic{
  width:28px;height:28px;flex-shrink:0;display:grid;place-items:center;
  border-radius:50%;border:1.5px solid var(--bk-ink);color:var(--bk-ink);
  transition:transform .3s cubic-bezier(.2,.7,.2,1),background .3s,color .3s,border-color .3s;
  font-family:'DM Sans',sans-serif;font-size:18px;line-height:1;font-weight:400;
}
.bk-v3 details[open] .acc-summary .ic{transform:rotate(45deg);background:var(--bk-ink);color:var(--bk-cream);border-color:var(--bk-ink)}
.bk-v3 .acc-body{overflow:hidden;max-height:0;transition:max-height .4s ease}
.bk-v3 details[open] .acc-body{max-height:600px}
.bk-v3 .acc-body-inner{padding:0 4px 28px;font-size:15.5px;color:var(--bk-ink-75);line-height:1.7;max-width:780px}


/* --------------------------------------------------------------------------
   REVEAL animations + reduced motion + focus + selection
   -------------------------------------------------------------------------- */
.bk-v3 [data-reveal]{opacity:0;transform:translateY(40px);transition:opacity .6s ease-out,transform .6s ease-out}
.bk-v3 [data-reveal].is-revealed{opacity:1;transform:none}
.bk-v3 [data-reveal-stagger] > *{opacity:0;transform:translateY(30px);transition:opacity .6s ease-out,transform .6s ease-out;transition-delay:calc(var(--i,0) * 100ms)}
.bk-v3 [data-reveal-stagger].is-revealed > *{opacity:1;transform:none}

@media (prefers-reduced-motion: reduce){
  .bk-v3 *,
  .bk-v3 *::before,
  .bk-v3 *::after{
    animation-duration:.01ms!important;
    transition-duration:.01ms!important;
  }
  .bk-v3 .hero h1 .scribble path{stroke-dashoffset:0}
}

.bk-v3 ::selection{background:rgba(200,146,42,.3);color:var(--bk-ink)}
.bk-v3 :focus-visible{outline:2px solid var(--bk-gold);outline-offset:3px;border-radius:3px}


/* --------------------------------------------------------------------------
   LEGAL / ABOUT page typography
   The existing `.bkv2-legal-inner` block (in barkly-legal-pages.php and
   barkly-public-pages.php) gets the new design's Fraunces + DM Sans treatment
   without touching the rendered HTML.
   -------------------------------------------------------------------------- */
.bkv2-page,
.bkv2-legal,
.bkv2-legal-inner{
  font-family:'DM Sans',system-ui,sans-serif;
  color:var(--bk-ink);
  background:var(--bk-cream);
}
.bkv2-legal-inner{
  max-width:820px;
  margin:0 auto;
  padding:80px 24px 96px;
  line-height:1.65;
}
@media(min-width:1024px){
  .bkv2-legal-inner{padding:120px 48px 128px}
}
.bkv2-legal-inner h1{
  font-family:'Fraunces',Georgia,serif;
  font-size:clamp(40px,5vw,60px);
  font-weight:600;letter-spacing:-0.02em;color:var(--bk-ink);
  margin:0 0 12px;line-height:1.05;
}
.bkv2-legal-inner h2{
  font-family:'Fraunces',serif;
  font-size:clamp(26px,3vw,34px);
  font-weight:600;letter-spacing:-0.015em;color:var(--bk-ink);
  margin:48px 0 16px;line-height:1.15;
}
.bkv2-legal-inner h3{
  font-family:'Fraunces',serif;
  font-size:20px;font-weight:600;color:var(--bk-ink);
  margin:32px 0 10px;line-height:1.2;
}
.bkv2-legal-inner p{font-size:16px;color:var(--bk-ink-75);margin:0 0 14px}
.bkv2-legal-inner ul,
.bkv2-legal-inner ol{font-size:16px;color:var(--bk-ink-75);padding-left:24px;margin:0 0 16px}
.bkv2-legal-inner li{margin-bottom:8px;line-height:1.55}
.bkv2-legal-inner a{color:var(--bk-gold);text-decoration:underline;text-underline-offset:3px}
.bkv2-legal-inner a:hover{color:var(--bk-green)}
.bkv2-legal-inner .bkv2-legal__lead{font-size:18px;color:var(--bk-ink-75);margin-bottom:6px}
.bkv2-legal-inner .bkv2-legal__date{font-size:13px;color:var(--bk-ink-55);text-transform:uppercase;letter-spacing:.14em;margin-bottom:40px}
.bkv2-legal-inner .bkv2-legal__note{
  background:rgba(200,146,42,.10);border-left:3px solid var(--bk-gold);
  border-radius:8px;padding:14px 18px;margin:18px 0;
  font-size:15px;color:var(--bk-ink);
}
.bkv2-legal-inner table{
  width:100%;border-collapse:collapse;font-size:14.5px;
  margin:16px 0 24px;
}
.bkv2-legal-inner th,
.bkv2-legal-inner td{
  text-align:left;padding:10px 12px;
  border-bottom:1px solid rgba(42,51,43,.08);
}
.bkv2-legal-inner th{
  font-family:'Fraunces',serif;font-weight:600;color:var(--bk-ink);
  background:var(--bk-paper);
}


/* --------------------------------------------------------------------------
   LEGACY bkv2-trust slowdown (owner directive 76s)
   Old class still defined in barkly-site.css — this override wins by load order.
   -------------------------------------------------------------------------- */
.bkv2-trust__track{
  animation: bkv2-ticker var(--bk-ticker-speed) linear infinite !important;
}


/* ══════════════════════════════════════════════════════════════════════════
   HOMEPAGE V3.1 — owner directives 2026-05-16
   Hero stats removed (PHP), benefits reworked (PHP), midcta full rewrite,
   header logo bigger + cart badge above icon, profile dot removed (PHP).
   ══════════════════════════════════════════════════════════════════════════ */

/* ── MIDCTA: two-button row + soft note line ────────────────────────────── */
.midcta-btns{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
  margin:32px 0 16px;
}
.midcta-note{
  font-size:13px;
  opacity:.6;
  margin-top:8px;
  text-align:center;
}

/* Outline variant — per owner spec: inherit color, currentColor border.
   On the dark .midcta bg this gives cream text + cream ring; on the cream
   reviews bg it inherits dark ink. Replaces the old gold-ring shadow style. */
.bk-btn--outline,
button.bk-btn--outline,
a.bk-btn--outline{
  background:transparent !important;
  border:2px solid currentColor !important;
  color:inherit !important;
  box-shadow:none !important;
}
.bk-btn--outline:hover,
button.bk-btn--outline:hover,
a.bk-btn--outline:hover{
  background:rgba(255,255,255,.08) !important;
  color:inherit !important;
}

/* Belt-and-suspenders centering for every .bk-btn so no parent flex/grid
   can stretch text off-center (owner directive 7, 2026-05-16 + 2026-05-17 follow-up).
   Bumped line-height 1 → 1.2 because descenders ("g", "p" in "Napravi plan…")
   were sitting on the visual baseline mid-row instead of optical center. */
.bk-v3 .bk-btn,
.bk-v3 button.bk-btn,
.bk-v3 a.bk-btn,
.bk-btn,
button.bk-btn,
a.bk-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  line-height:1.2 !important;
  gap:8px !important;
}
/* Strip any stray <br> that wpautop or a paste-in may have injected inside
   a button — keeps the flex row single-line and centered. */
.bk-btn br,
button.bk-btn br,
a.bk-btn br{ display:none !important; }

/* ── HEADER LOGO: 30% bigger (owner 2026-05-17, 3rd pass) ─────────────────
   Bumped 32px → 48px on the paw circle, SVG inside scales to match. Header
   .bk-header__inner stays at 72px (24px vertical padding around 48px logo).
   !important everywhere because owner reports CSS not applying — likely
   cache; this leaves zero room for any later rule to undo it. */
.bk-header__mark{
  width:48px !important;
  height:48px !important;
}
.bk-header__mark svg{
  width:24px !important;
  height:24px !important;
}
.bk-header__brand{
  font-size:28px !important;
}
.bk-header__inner{
  height:72px !important;
  overflow:visible !important;
}

/* Cart badge positioning consolidated into barkly-header-footer.css with
   !important throughout (owner 2026-05-17, 3rd pass). Kept this comment to
   prevent re-adding the override in two places and creating a cascade race. */
