/* ==========================================================================
   KOŠNICA LAB — Design System
   Motiv: heksagonalna ćelija košnice + slojevi 3D štampe (layer lines).
   Autor stila: custom, bez framework-a. Sve boje kroz tokene.
   ========================================================================== */

/* ---------- 1. Tokeni ---------- */
:root {
  /* Boje — osnova */
  --ink:            #0B0B0E;
  --ink-2:          #101014;
  --surface:        #15151A;
  --surface-2:      #1C1C22;
  --surface-3:      #24242C;

  /* Boje — akcenti */
  --honey:          #FFB800;
  --honey-soft:     #FFCE52;
  --honey-deep:     #D98F00;
  --nozzle:         #FF6B2C;   /* topli narandžasti — "vrela dizna" */

  /* Tekst */
  --text:           #F5F5F3;
  --text-2:         #B9B9C2;
  --text-3:         #86868F;
  --text-on-honey:  #0B0B0E;

  /* Linije i senke */
  --line:           rgba(255, 255, 255, .09);
  --line-strong:    rgba(255, 255, 255, .16);
  --line-honey:     rgba(255, 184, 0, .34);
  --shadow-sm:      0 1px 2px rgba(0,0,0,.4);
  --shadow-md:      0 12px 32px -12px rgba(0,0,0,.7);
  --shadow-lg:      0 32px 64px -24px rgba(0,0,0,.85);
  --glow-honey:     0 0 0 1px rgba(255,184,0,.35), 0 18px 50px -18px rgba(255,184,0,.35);

  /* Status */
  --ok:             #35C77A;
  --warn:           #FFB800;
  --err:            #FF5A5A;

  /* Tipografija */
  --font-display: 'Space Grotesk', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono:    ui-monospace, 'SF Mono', 'JetBrains Mono', 'Cascadia Mono', Menlo, monospace;

  /* Fluidna skala (clamp) */
  --fs-display: clamp(2.75rem, 1.6rem + 5.4vw, 6rem);
  --fs-h1:      clamp(2.25rem, 1.5rem + 3.4vw, 4rem);
  --fs-h2:      clamp(1.85rem, 1.3rem + 2.4vw, 3rem);
  --fs-h3:      clamp(1.25rem, 1.05rem + .8vw, 1.65rem);
  --fs-lead:    clamp(1.0625rem, 1rem + .45vw, 1.3125rem);
  --fs-body:    1rem;
  --fs-sm:      .9375rem;
  --fs-xs:      .8125rem;
  --fs-mono:    .75rem;

  /* Razmaci */
  --sp-1: .25rem;  --sp-2: .5rem;   --sp-3: .75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 6rem;    --sp-10: 8rem;
  --section-y: clamp(4.5rem, 3rem + 7vw, 9rem);

  /* Layout */
  --container: 1240px;
  --container-narrow: 820px;
  --gutter: clamp(1.25rem, .75rem + 2.2vw, 2.5rem);
  --header-h: 72px;

  /* Radijusi i geometrija */
  --r-sm: 8px;  --r-md: 14px;  --r-lg: 20px;  --r-xl: 28px;  --r-pill: 999px;
  --notch: 18px;                 /* zasečen ugao — "chamfer" kao na 3D printu */

  /* Motion */
  --ease-out:   cubic-bezier(.16, 1, .3, 1);
  --ease-in-out:cubic-bezier(.65, 0, .35, 1);
  --ease-spring:cubic-bezier(.34, 1.56, .64, 1);
  --t-fast: 140ms;  --t-med: 260ms;  --t-slow: 520ms;

  --z-header: 100;  --z-menu: 110;  --z-modal: 200;  --z-toast: 300;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video, canvas { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
table { border-collapse: collapse; width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.028em;
  text-wrap: balance;
}
p { text-wrap: pretty; }

:focus-visible {
  outline: 2px solid var(--honey);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--honey); color: var(--text-on-honey); }

/* Skrol traka */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--ink-2); }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 99px; border: 3px solid var(--ink-2); }
::-webkit-scrollbar-thumb:hover { background: #35353F; }

/* ---------- 3. Layout primitivi ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }
.section--alt { background: var(--ink-2); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--honey); color: var(--text-on-honey);
  padding: .75rem 1.25rem; border-radius: 0 0 var(--r-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- 4. Teksturne pozadine (potpis brenda) ---------- */
/* Saće — SVG pattern kroz data URI, u honey boji sa niskim opacitetom */
.bg-hex {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='96' viewBox='0 0 56 96'%3E%3Cg fill='none' stroke='%23FFB800' stroke-width='1' stroke-opacity='.13'%3E%3Cpath d='M28 1 L54 16 L54 46 L28 61 L2 46 L2 16 Z'/%3E%3Cpath d='M0 49 L26 64 L26 94 L0 109'/%3E%3Cpath d='M56 49 L30 64 L30 94 L56 109'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 0%, transparent 72%);
}

/* Slojevi 3D štampe — fine horizontalne linije */
.bg-layers {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,.035) 0px,
    rgba(255,255,255,.035) 1px,
    transparent 1px,
    transparent 5px
  );
  mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
}

/* Topli sjaj u pozadini */
.bg-glow {
  position: absolute; z-index: 0; pointer-events: none;
  width: min(900px, 110vw); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,184,0,.16) 0%, rgba(255,107,44,.06) 38%, transparent 66%);
  filter: blur(20px);
}
.bg-glow--tl { top: -34%; left: -18%; }
.bg-glow--br { bottom: -40%; right: -22%; }

.section > .container { position: relative; z-index: 1; }

/* ---------- 5. Tipografske pomoćne klase ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: var(--sp-4);
}

.display { font-size: var(--fs-display); }
.h1 { font-size: var(--fs-h1); }
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); }

.lead {
  font-size: var(--fs-lead);
  color: var(--text-2);
  line-height: 1.6;
  max-width: 62ch;
}
.muted { color: var(--text-2); }
.dim   { color: var(--text-3); }
.honey { color: var(--honey); }

.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: var(--sp-4); }

.section-head--split {
  display: flex; flex-wrap: wrap; gap: var(--sp-5);
  align-items: flex-end; justify-content: space-between;
  max-width: none;
}
.section-head--split > div:first-child { max-width: 640px; }

/* ---------- 6. Dugmad ---------- */
.btn {
  --btn-bg: var(--honey);
  --btn-fg: var(--text-on-honey);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .875rem 1.6rem;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: -.01em;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  white-space: nowrap;
  transition: transform var(--t-fast) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out),
              background-color var(--t-fast) var(--ease-out),
              border-color var(--t-fast) var(--ease-out),
              color var(--t-fast) var(--ease-out);
  will-change: transform;
}
.btn:hover  { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(255,184,0,.6); }
.btn:active { transform: translateY(0) scale(.985); }

.btn .arrow { transition: transform var(--t-med) var(--ease-spring); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary { background: var(--honey); color: var(--text-on-honey); }
.btn--primary:hover { background: var(--honey-soft); }

.btn--ghost {
  background: transparent; color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 0 0 1px var(--line-honey), 0 14px 30px -16px rgba(0,0,0,.8);
  color: var(--text);
}

.btn--dark { background: var(--surface-2); color: var(--text); box-shadow: inset 0 0 0 1px var(--line); }
.btn--dark:hover { background: var(--surface-3); box-shadow: inset 0 0 0 1px var(--line-honey); }

.btn--lg { padding: 1.0625rem 2.1rem; font-size: 1.0625rem; }
.btn--sm { padding: .625rem 1.1rem; font-size: var(--fs-xs); }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .5; pointer-events: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }

/* Tekstualni link sa strelicom */
.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; font-size: var(--fs-sm); color: var(--honey);
  transition: gap var(--t-med) var(--ease-spring);
}
.link-arrow:hover { gap: .8rem; }

/* ---------- 7. Header ---------- */
.header {
  position: sticky; top: 0; z-index: var(--z-header);
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(11,11,14,.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med) var(--ease-out),
              background-color var(--t-med) var(--ease-out);
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(11,11,14,.9);
}

.header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5);
  width: 100%;
}

.logo { display: inline-flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.logo__mark { width: 34px; height: 34px; flex-shrink: 0; }
.logo__mark path { stroke: var(--honey); }
.logo__text {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.0625rem; letter-spacing: -.02em; line-height: 1;
  white-space: nowrap;
}
.logo__text span { color: var(--honey); }
.logo:hover .logo__mark { animation: hex-pulse 600ms var(--ease-out); }

@keyframes hex-pulse {
  0%   { transform: scale(1) rotate(0deg); }
  45%  { transform: scale(1.1) rotate(-8deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.nav { display: flex; align-items: center; gap: .25rem; }
.nav__link {
  position: relative;
  padding: .5rem .85rem;
  font-size: var(--fs-sm); font-weight: 500; color: var(--text-2);
  border-radius: var(--r-sm);
  transition: color var(--t-fast) var(--ease-out), background-color var(--t-fast) var(--ease-out);
}
.nav__link:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav__link[aria-current="page"] { color: var(--text); }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .18rem;
  height: 2px; background: var(--honey); border-radius: 2px;
}

.header__actions { display: flex; align-items: center; gap: var(--sp-3); }

/* Dugme korpe */
.cart-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--r-pill);
  color: var(--text-2);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}
.cart-btn:hover { color: var(--text); box-shadow: inset 0 0 0 1px var(--line-honey); }
.cart-btn__count {
  position: absolute; top: -3px; right: -3px;
  min-width: 19px; height: 19px; padding: 0 5px;
  display: grid; place-items: center;
  background: var(--honey); color: var(--text-on-honey);
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  border-radius: var(--r-pill);
  border: 2px solid var(--ink);
  transform: scale(0);
  transition: transform var(--t-med) var(--ease-spring);
}
.cart-btn__count.is-visible { transform: scale(1); }

/* Hamburger */
.burger {
  display: none;
  width: 42px; height: 42px; border-radius: var(--r-pill);
  place-items: center;
  box-shadow: inset 0 0 0 1px var(--line);
}
.burger span {
  display: block; width: 17px; height: 1.5px; background: var(--text); border-radius: 2px;
  transition: transform var(--t-med) var(--ease-out), opacity var(--t-fast) var(--ease-out);
}
.burger span + span { margin-top: 4.5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobilni meni */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: var(--z-menu);
  background: var(--ink);
  padding: var(--sp-6) var(--gutter) var(--sp-8);
  display: flex; flex-direction: column; gap: var(--sp-2);
  overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity var(--t-med) var(--ease-out),
              transform var(--t-med) var(--ease-out),
              visibility var(--t-med);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-4) 0;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  border-bottom: 1px solid var(--line);
  color: var(--text-2);
  transition: color var(--t-fast) var(--ease-out), padding-left var(--t-med) var(--ease-out);
}
.mobile-menu__link:hover, .mobile-menu__link[aria-current="page"] { color: var(--text); padding-left: .5rem; }
.mobile-menu__link[aria-current="page"] { color: var(--honey); }
.mobile-menu__link .num { font-family: var(--font-mono); font-size: var(--fs-mono); color: var(--text-3); }
.mobile-menu .btn { margin-top: var(--sp-5); }
.mobile-menu__foot { margin-top: auto; padding-top: var(--sp-6); color: var(--text-3); font-size: var(--fs-sm); }
.mobile-menu__foot a { color: var(--text-2); }
body.is-locked { overflow: hidden; }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex; align-items: center;
  padding-block: clamp(4rem, 2rem + 8vw, 7rem);
  overflow: hidden;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem);
  align-items: center;
}
.hero__title { font-size: var(--fs-display); margin-bottom: var(--sp-5); }
.hero__title .stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--honey);
  paint-order: stroke fill;
}
.hero__lead { margin-bottom: var(--sp-6); max-width: 52ch; }
.hero .btn-row { margin-bottom: var(--sp-6); }

.hero__meta {
  display: flex; flex-wrap: wrap; gap: var(--sp-5) var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
}
.hero__meta-item { display: flex; flex-direction: column; gap: .15rem; }
.hero__meta-num {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 700;
  color: var(--text); line-height: 1;
}
.hero__meta-label {
  font-family: var(--font-mono); font-size: var(--fs-mono);
  letter-spacing: .12em; text-transform: uppercase; color: var(--text-3);
}

/* Vizual: heksagonalna ćelija koja se "štampa" sloj po sloj */
.hero__visual { position: relative; aspect-ratio: 1; }
.hero__visual svg { width: 100%; height: 100%; overflow: visible; }

/* Kapljice meda koje cure sa slavine u hero-u */
.drip {
  transform-box: fill-box;
  transform-origin: center top;
  animation: honey-drip 2.25s cubic-bezier(.55, 0, .85, .35) infinite;
  opacity: 0;
}
@keyframes honey-drip {
  0%   { transform: translateY(0) scaleY(.6); opacity: 0; }
  8%   { transform: translateY(2px) scaleY(1); opacity: 1; }
  78%  { transform: translateY(104px) scaleY(1.2); opacity: 1; }
  92%  { transform: translateY(109px) scaleY(.5); opacity: .8; }
  100% { transform: translateY(109px) scaleY(.2); opacity: 0; }
}

.ripple {
  transform-box: fill-box;
  transform-origin: center;
  animation: honey-ripple 2.25s ease-out infinite;
  opacity: 0;
}
@keyframes honey-ripple {
  0%, 74% { transform: scale(.3); opacity: 0; }
  78%     { transform: scale(.5); opacity: .8; }
  100%    { transform: scale(1.8); opacity: 0; }
}

.hex-cell { fill: none; stroke: var(--line-strong); stroke-width: 1; }
.hex-cell--active { stroke: var(--honey); stroke-width: 1.6; }
.hex-fill { fill: var(--honey); opacity: 0; }

.print-layer {
  stroke: var(--honey); stroke-width: 2.4; stroke-linecap: round; fill: none;
  stroke-dasharray: 300; stroke-dashoffset: 300;
  animation: draw-layer 2.4s var(--ease-out) forwards;
}
@keyframes draw-layer { to { stroke-dashoffset: 0; } }

.nozzle-line {
  stroke: var(--nozzle); stroke-width: 2; opacity: .9;
  animation: nozzle-sweep 3.2s var(--ease-in-out) infinite;
}
@keyframes nozzle-sweep {
  0%, 100% { transform: translateY(0); opacity: .25; }
  50%      { transform: translateY(-160px); opacity: .9; }
}



/* ---------- 9. Editorijalna lista (bez kutija, samo linije) ---------- */
.value-list { border-top: 1px solid var(--line); }

.value-row {
  display: grid;
  grid-template-columns: 4.5rem 1fr 1.15fr;
  gap: clamp(1rem, .5rem + 2vw, 3rem);
  align-items: start;
  padding: clamp(1.75rem, 1.2rem + 1.6vw, 2.75rem) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background-color var(--t-med) var(--ease-out);
}
.value-row::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 0;
  background: var(--honey);
  transition: width var(--t-slow) var(--ease-out);
}
.value-row:hover::after { width: 100%; }

.value-row__num {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: .16em;
  color: var(--text-3);
  padding-top: .45rem;
  transition: color var(--t-med) var(--ease-out);
}
.value-row:hover .value-row__num { color: var(--honey); }

.value-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.05rem + 1vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.value-row__body { color: var(--text-2); font-size: var(--fs-sm); padding-top: .3rem; }
.value-row__body strong { color: var(--text); font-weight: 600; }

@media (max-width: 820px) {
  .value-row { grid-template-columns: 3rem 1fr; }
  .value-row__body { grid-column: 2; padding-top: .6rem; }
}

/* ---------- 10. Kartice ---------- */
.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  padding: clamp(1.5rem, 1.1rem + 1.2vw, 2.25rem);
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px var(--line);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out),
              background-color var(--t-med) var(--ease-out);
}
/* Zasečen ugao — potpis brenda */
.card--notch {
  clip-path: polygon(0 0, calc(100% - var(--notch)) 0, 100% var(--notch), 100% 100%, 0 100%);
}
.card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px 220px at var(--mx, 50%) var(--my, 0%), rgba(255,184,0,.09), transparent 70%);
  opacity: 0; transition: opacity var(--t-med) var(--ease-out);
}
.card:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 1px var(--line-honey), var(--shadow-md); background: var(--surface-2); }
.card:hover::after { opacity: 1; }

.card__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px; margin-bottom: var(--sp-5);
  border-radius: var(--r-md);
  background: linear-gradient(150deg, rgba(255,184,0,.18), rgba(255,107,44,.06));
  box-shadow: inset 0 0 0 1px var(--line-honey);
  color: var(--honey);
}
.card__icon svg { width: 24px; height: 24px; }
.card__title { font-size: var(--fs-h3); margin-bottom: var(--sp-3); }
.card__text { color: var(--text-2); font-size: var(--fs-sm); }
.card__num {
  position: absolute; top: var(--sp-5); right: var(--sp-6);
  font-family: var(--font-mono); font-size: var(--fs-mono);
  color: var(--text-3); letter-spacing: .1em;
}

.card__list { margin-top: var(--sp-5); display: grid; gap: .6rem; }
.card__list li {
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: var(--fs-sm); color: var(--text-2);
}
.card__list li::before {
  content: ""; flex-shrink: 0; margin-top: .5rem;
  width: 6px; height: 6px;
  background: var(--honey);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

/* Kartica prednosti sa velikim brojem */
.feature {
  position: relative; padding: clamp(1.75rem, 1.2rem + 1.6vw, 2.5rem);
  border-radius: var(--r-lg);
  background: linear-gradient(170deg, var(--surface) 0%, var(--ink-2) 100%);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-out);
}
.feature:hover { box-shadow: inset 0 0 0 1px var(--line-honey); transform: translateY(-4px); }
.feature__index {
  font-family: var(--font-display); font-size: 3.25rem; font-weight: 700;
  line-height: 1; color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,184,0,.5);
  margin-bottom: var(--sp-5);
}
.feature h3 { font-size: var(--fs-h3); margin-bottom: var(--sp-3); }
.feature p { color: var(--text-2); font-size: var(--fs-sm); }

/* ---------- 11. Proizvodi (shop) ---------- */
.product {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px var(--line);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
}
.product:hover { transform: translateY(-5px); box-shadow: inset 0 0 0 1px var(--line-honey), var(--shadow-md); }

.product__media {
  position: relative; aspect-ratio: 4 / 3;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,184,0,.14), transparent 62%),
    var(--surface-2);
  overflow: hidden;
}
.product__media::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(to bottom, rgba(255,255,255,.04) 0 1px, transparent 1px 6px);
}
.product__media svg { width: 42%; height: auto; color: var(--honey); opacity: .85; position: relative; z-index: 1;
  transition: transform var(--t-slow) var(--ease-spring); }
.product:hover .product__media svg { transform: scale(1.09) rotate(-3deg); }

/* Prava fotografija proizvoda — uvek isti 4:3 kadar */
.product__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform var(--t-slow) var(--ease-out);
}
.product:hover .product__media img { transform: scale(1.045); }
.product__media:has(img)::before { display: none; }

.product__tag {
  position: absolute; top: var(--sp-3); left: var(--sp-3); z-index: 2;
  padding: .3rem .65rem; border-radius: var(--r-pill);
  background: rgba(11,11,14,.82); backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px var(--line-honey);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--honey);
}
.product__tag--hot { background: var(--nozzle); color: #fff; box-shadow: none; }

.product__body { padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; gap: var(--sp-3); }
.product__cat {
  font-family: var(--font-mono); font-size: var(--fs-mono);
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-3);
}
.product__name { font-size: 1.125rem; font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; }
.product__desc { font-size: var(--fs-sm); color: var(--text-2); flex: 1; }
.product__foot {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  margin-top: var(--sp-2); padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
}
.product__price {
  font-family: var(--font-display); font-size: 1.3125rem; font-weight: 700;
  color: var(--honey); letter-spacing: -.02em; white-space: nowrap;
}
.product__price small { display: block; font-size: 11px; color: var(--text-3); font-weight: 500; letter-spacing: .04em; }

/* Filteri */
.filters { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-6); }
.chip {
  padding: .5rem 1.05rem; border-radius: var(--r-pill);
  font-size: var(--fs-sm); font-weight: 500; color: var(--text-2);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: all var(--t-fast) var(--ease-out);
}
.chip:hover { color: var(--text); box-shadow: inset 0 0 0 1px var(--line-strong); }
.chip.is-active { background: var(--honey); color: var(--text-on-honey); font-weight: 600; box-shadow: none; }

/* ---------- 12. Koraci (How it works) + pčela koja leti ---------- */
.steps { display: grid; gap: var(--sp-5); grid-template-columns: repeat(4, 1fr); position: relative; }

/* Putanja leta — SVG preko cele širine, iza heksagona */
.steps__flight {
  position: absolute; top: -6px; left: 0; right: 0;
  width: 100%; height: auto;
  z-index: 0; pointer-events: none;
  overflow: visible;
}
.flight-path {
  fill: none;
  stroke: var(--line-strong);
  stroke-width: 1.4;
  stroke-dasharray: 5 7;
  stroke-linecap: round;
}
.flight-trail {
  fill: none;
  stroke: var(--honey);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 90 1200;
  opacity: .5;
  animation: trail-follow 13s linear infinite;
}
@keyframes trail-follow { to { stroke-dashoffset: -1290; } }

/* Krila lepršaju nezavisno od kretanja tela */
.bee__wing { transform-origin: 0 2px; animation: wing-flap .16s ease-in-out infinite alternate; }
.bee__wing--back { transform-origin: 0 2px; animation-delay: -.08s; }
@keyframes wing-flap {
  from { transform: rotate(-16deg) scaleY(.85); }
  to   { transform: rotate(20deg) scaleY(1); }
}

.step { position: relative; z-index: 1; }
.step__dot {
  width: 54px; height: 54px; margin-bottom: var(--sp-5);
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--honey);
  font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  box-shadow: 0 0 0 1.5px var(--honey);
  position: relative;
}
.step__dot::before {
  content: ""; position: absolute; inset: 3px;
  background: rgba(255,184,0,.09);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.step__dot span { position: relative; z-index: 1; }
.step h3 { font-size: 1.1875rem; margin-bottom: var(--sp-3); }
.step p { font-size: var(--fs-sm); color: var(--text-2); }

/* ---------- 13. Testimonijali ---------- */
.testimonial {
  display: flex; flex-direction: column; gap: var(--sp-5);
  padding: clamp(1.75rem, 1.2rem + 1.5vw, 2.5rem);
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-out);
}
.testimonial:hover { box-shadow: inset 0 0 0 1px var(--line-honey); transform: translateY(-3px); }
.stars { display: flex; gap: 2px; color: var(--honey); }
.stars svg { width: 15px; height: 15px; }
.testimonial blockquote { font-size: 1.0625rem; line-height: 1.6; color: var(--text); flex: 1; }
.testimonial blockquote::before { content: "„"; color: var(--honey); font-size: 1.4em; line-height: 0; vertical-align: -.15em; margin-right: .05em; }
.testimonial__author { display: flex; align-items: center; gap: var(--sp-3); padding-top: var(--sp-4); border-top: 1px solid var(--line); }
.avatar {
  width: 42px; height: 42px; flex-shrink: 0;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--honey), var(--honey-deep));
  color: var(--text-on-honey);
  font-family: var(--font-display); font-weight: 700; font-size: .9375rem;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.testimonial__name { font-weight: 600; font-size: var(--fs-sm); line-height: 1.3; }
.testimonial__role { font-size: var(--fs-xs); color: var(--text-3); }

/* ---------- 14. O nama / split sekcija ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center;
}
.split--reverse .split__media { order: 2; }

.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
.stat {
  padding: var(--sp-5); border-radius: var(--r-md);
  background: var(--surface); box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow var(--t-med) var(--ease-out);
}
.stat:hover { box-shadow: inset 0 0 0 1px var(--line-honey); }
.stat__num {
  font-family: var(--font-display); font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem);
  font-weight: 700; color: var(--honey); line-height: 1; letter-spacing: -.03em;
}
.stat__label { margin-top: .4rem; font-size: var(--fs-xs); color: var(--text-2); }

.checklist { display: grid; gap: var(--sp-4); margin-top: var(--sp-6); }
.checklist li { display: flex; gap: var(--sp-3); align-items: flex-start; }
.checklist svg { width: 21px; height: 21px; color: var(--honey); flex-shrink: 0; margin-top: 2px; }
.checklist strong { display: block; font-size: var(--fs-body); margin-bottom: .15rem; }
.checklist span { font-size: var(--fs-sm); color: var(--text-2); }

/* ---------- 15. FAQ ---------- */
.faq { display: grid; gap: var(--sp-3); max-width: 860px; margin-inline: auto; }
.faq__item {
  background: var(--surface);
  border-radius: var(--r-md);
  box-shadow: inset 0 0 0 1px var(--line);
  overflow: hidden;
  transition: box-shadow var(--t-med) var(--ease-out);
}
.faq__item[open] { box-shadow: inset 0 0 0 1px var(--line-honey); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-5);
  font-family: var(--font-display); font-size: 1.0625rem; font-weight: 600;
  cursor: pointer; list-style: none;
  transition: color var(--t-fast) var(--ease-out);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--honey); }
.faq__icon {
  flex-shrink: 0; width: 26px; height: 26px; position: relative;
  border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line-strong);
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 11px; height: 1.5px; background: var(--honey);
  transform: translate(-50%, -50%);
  transition: transform var(--t-med) var(--ease-out);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__a { padding: 0 var(--sp-5) var(--sp-5); color: var(--text-2); font-size: var(--fs-sm); max-width: 70ch; }
.faq__item[open] .faq__a { animation: faq-in var(--t-med) var(--ease-out); }
@keyframes faq-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- 16. CTA blok ---------- */
.cta {
  position: relative; overflow: hidden;
  padding: clamp(2.75rem, 1.8rem + 4.5vw, 5.5rem) clamp(1.5rem, 1rem + 3vw, 4rem);
  border-radius: var(--r-xl);
  background: linear-gradient(140deg, #1B1710 0%, var(--ink-2) 55%, #14100A 100%);
  box-shadow: inset 0 0 0 1px var(--line-honey);
  text-align: center;
}
.cta__inner { position: relative; z-index: 1; max-width: 680px; margin-inline: auto; }
.cta h2 { font-size: var(--fs-h2); margin-bottom: var(--sp-4); }
.cta p { color: var(--text-2); font-size: var(--fs-lead); margin-bottom: var(--sp-6); }
.cta .btn-row { justify-content: center; }
.cta__note { margin-top: var(--sp-5); font-size: var(--fs-xs); color: var(--text-3); }

/* ---------- 17. Forme ---------- */
.form { display: grid; gap: var(--sp-5); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
.form-grid--3 { grid-template-columns: repeat(3, 1fr); }
.field { display: grid; gap: .45rem; }
.field--full { grid-column: 1 / -1; }

.label {
  font-size: var(--fs-sm); font-weight: 500; color: var(--text-2);
  display: flex; align-items: center; gap: .35rem;
}
.label .req { color: var(--honey); }

.input, .textarea, .select {
  width: 100%;
  padding: .8rem 1rem;
  background: var(--surface);
  color: var(--text);
  border: 0;
  border-radius: var(--r-sm);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: var(--fs-sm);
  transition: box-shadow var(--t-fast) var(--ease-out), background-color var(--t-fast) var(--ease-out);
}
.input::placeholder, .textarea::placeholder { color: var(--text-3); }
.input:hover, .textarea:hover, .select:hover { box-shadow: inset 0 0 0 1px var(--line-strong); }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  background: var(--surface-2);
  box-shadow: inset 0 0 0 1.5px var(--honey), 0 0 0 4px rgba(255,184,0,.12);
}
.textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2386868F' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.select option { background: var(--surface); color: var(--text); }

.input[aria-invalid="true"], .textarea[aria-invalid="true"], .select[aria-invalid="true"] {
  box-shadow: inset 0 0 0 1.5px var(--err);
}
.field__error { font-size: var(--fs-xs); color: var(--err); min-height: 0; }
.field__hint  { font-size: var(--fs-xs); color: var(--text-3); }

/* Radio kartice */
.radio-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
.radio-cards--3 { grid-template-columns: repeat(3, 1fr); }
.radio-card { position: relative; cursor: pointer; }
.radio-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-card__box {
  display: flex; gap: var(--sp-3); align-items: flex-start;
  padding: var(--sp-4);
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: all var(--t-fast) var(--ease-out);
  height: 100%;
}
.radio-card:hover .radio-card__box { box-shadow: inset 0 0 0 1px var(--line-strong); }
.radio-card input:checked + .radio-card__box {
  background: rgba(255,184,0,.06);
  box-shadow: inset 0 0 0 1.5px var(--honey);
}
.radio-card input:focus-visible + .radio-card__box { outline: 2px solid var(--honey); outline-offset: 2px; }
.radio-card__mark {
  flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px;
  border-radius: 50%; box-shadow: inset 0 0 0 1.5px var(--line-strong);
  display: grid; place-items: center;
  transition: box-shadow var(--t-fast) var(--ease-out);
}
.radio-card__mark::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--honey); transform: scale(0);
  transition: transform var(--t-fast) var(--ease-spring);
}
.radio-card input:checked + .radio-card__box .radio-card__mark { box-shadow: inset 0 0 0 1.5px var(--honey); }
.radio-card input:checked + .radio-card__box .radio-card__mark::after { transform: scale(1); }
.radio-card__title { font-weight: 600; font-size: var(--fs-sm); }
.radio-card__desc { font-size: var(--fs-xs); color: var(--text-3); margin-top: .1rem; }

/* Checkbox */
.checkbox { display: flex; gap: var(--sp-3); align-items: flex-start; cursor: pointer; }
.checkbox input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox__mark {
  flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px;
  border-radius: 5px; background: var(--surface);
  box-shadow: inset 0 0 0 1.5px var(--line-strong);
  display: grid; place-items: center;
  transition: all var(--t-fast) var(--ease-out);
}
.checkbox__mark svg { width: 12px; height: 12px; color: var(--text-on-honey); transform: scale(0); transition: transform var(--t-fast) var(--ease-spring); }
.checkbox input:checked + .checkbox__mark { background: var(--honey); box-shadow: inset 0 0 0 1.5px var(--honey); }
.checkbox input:checked + .checkbox__mark svg { transform: scale(1); }
.checkbox input:focus-visible + .checkbox__mark { outline: 2px solid var(--honey); outline-offset: 2px; }
.checkbox__text { font-size: var(--fs-sm); color: var(--text-2); }
.checkbox__text a { color: var(--honey); text-decoration: underline; text-underline-offset: 2px; }

/* Honeypot — sakriven od ljudi, vidljiv botovima */
.hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; height: 0 !important; }

/* Poruka o statusu forme */
.form-status {
  display: none;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  gap: var(--sp-3); align-items: flex-start;
}
.form-status.is-visible { display: flex; animation: faq-in var(--t-med) var(--ease-out); }
.form-status--ok  { background: rgba(53,199,122,.1);  box-shadow: inset 0 0 0 1px rgba(53,199,122,.35);  color: #9BE8C2; }
.form-status--err { background: rgba(255,90,90,.1);   box-shadow: inset 0 0 0 1px rgba(255,90,90,.35);   color: #FFB3B3; }
.form-status svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }

/* Raspored stranice porudžbine: forma + lepljivi sažetak */
.order-layout {
  display: grid;
  grid-template-columns: 1.65fr .95fr;
  gap: clamp(2rem, 1rem + 3vw, 3.5rem);
  align-items: start;
}

/* Red za izbor proizvoda: proizvod | količina | dugme */
.picker-row {
  display: grid;
  grid-template-columns: 1fr 110px auto;
  gap: var(--sp-4);
  align-items: end;
}
.picker-row .btn { height: 44px; }

/* Sažetak porudžbine */
.summary {
  position: sticky; top: calc(var(--header-h) + 24px);
  padding: var(--sp-5);
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px var(--line);
}
.summary h3 { font-size: 1.125rem; margin-bottom: var(--sp-4); }
.summary__items { display: grid; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.summary__empty { font-size: var(--fs-sm); color: var(--text-3); padding: var(--sp-5) 0; text-align: center; }
.summary__row {
  display: flex; justify-content: space-between; gap: var(--sp-3);
  font-size: var(--fs-sm); align-items: flex-start;
}
.summary__row--total {
  padding-top: var(--sp-4); margin-top: var(--sp-4);
  border-top: 1px solid var(--line);
  font-family: var(--font-display); font-size: 1.1875rem; font-weight: 700;
}
.summary__row--total span:last-child { color: var(--honey); }
.summary__name { color: var(--text); }
.summary__qty { color: var(--text-3); font-family: var(--font-mono); font-size: var(--fs-xs); }
.summary__price { white-space: nowrap; color: var(--text-2); }
.summary__remove {
  color: var(--text-3); font-size: var(--fs-xs); text-decoration: underline;
  transition: color var(--t-fast) var(--ease-out);
}
.summary__remove:hover { color: var(--err); }

.qty { display: inline-flex; align-items: center; box-shadow: inset 0 0 0 1px var(--line); border-radius: var(--r-pill); }
.qty button {
  width: 30px; height: 30px; display: grid; place-items: center;
  color: var(--text-2); border-radius: var(--r-pill);
  transition: color var(--t-fast), background-color var(--t-fast);
}
.qty button:hover { color: var(--honey); background: rgba(255,184,0,.08); }
.qty span { min-width: 26px; text-align: center; font-family: var(--font-mono); font-size: var(--fs-xs); }

/* ---------- 18. Kontakt info ---------- */
.contact-list { display: grid; gap: var(--sp-4); }
.contact-item {
  display: flex; gap: var(--sp-4); align-items: flex-start;
  padding: var(--sp-4);
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-out);
}
.contact-item:hover { box-shadow: inset 0 0 0 1px var(--line-honey); transform: translateX(3px); }
.contact-item__icon {
  flex-shrink: 0; width: 42px; height: 42px;
  display: grid; place-items: center;
  color: var(--honey);
  background: rgba(255,184,0,.08);
  border-radius: var(--r-sm);
}
.contact-item__icon svg { width: 20px; height: 20px; }
.contact-item__label { font-family: var(--font-mono); font-size: var(--fs-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin-bottom: .2rem; }
.contact-item__value { font-weight: 600; font-size: var(--fs-body); word-break: break-word; }
.contact-item__value:hover { color: var(--honey); }
.contact-item__sub { font-size: var(--fs-xs); color: var(--text-3); margin-top: .15rem; }

.map-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--line);
  background: var(--surface);
  aspect-ratio: 16 / 10;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.35) invert(.92) hue-rotate(180deg) contrast(.9) brightness(.95); }

/* ---------- 19. Footer ---------- */
.footer {
  position: relative;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding-block: var(--sp-8) var(--sp-5);
  overflow: hidden;
}
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(2rem, 1rem + 3vw, 4rem);
  padding-bottom: var(--sp-7);
}
.footer__brand { max-width: 340px; }
.footer__brand .logo { margin-bottom: var(--sp-4); }
.footer__brand p { font-size: var(--fs-sm); color: var(--text-2); }
.footer__title {
  font-family: var(--font-mono); font-size: var(--fs-mono);
  letter-spacing: .18em; text-transform: uppercase; color: var(--text-3);
  margin-bottom: var(--sp-4);
}
.footer__links { display: grid; gap: .7rem; }
.footer__links a {
  font-size: var(--fs-sm); color: var(--text-2);
  transition: color var(--t-fast) var(--ease-out), padding-left var(--t-med) var(--ease-out);
}
.footer__links a:hover { color: var(--honey); padding-left: 4px; }

.socials { display: flex; gap: var(--sp-2); margin-top: var(--sp-5); }
.social {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: var(--r-sm);
  color: var(--text-2);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: all var(--t-fast) var(--ease-out);
}
.social:hover { color: var(--honey); box-shadow: inset 0 0 0 1px var(--line-honey); transform: translateY(-2px); background: rgba(255,184,0,.06); }
.social svg { width: 19px; height: 19px; }

.footer__bottom {
  display: flex; flex-wrap: wrap; gap: var(--sp-4);
  align-items: center; justify-content: space-between;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
  font-size: var(--fs-xs); color: var(--text-3);
}
.footer__bottom a:hover { color: var(--honey); }
.footer__legal { display: flex; flex-wrap: wrap; gap: var(--sp-4); }

/* Potpis izrade */
.footer__made {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  padding-top: var(--sp-5); margin-top: var(--sp-5);
  border-top: 1px solid var(--line);
  font-size: var(--fs-xs); color: var(--text-3);
}
.footer__made a { color: var(--text-2); font-weight: 600; transition: color var(--t-fast) var(--ease-out); }
.footer__made a:hover { color: var(--honey); }
.footer__made .heart { color: #FF4D5E; display: inline-block; animation: heartbeat 2.2s var(--ease-in-out) infinite; }
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  8%       { transform: scale(1.22); }
  16%      { transform: scale(1); }
  24%      { transform: scale(1.14); }
  32%      { transform: scale(1); }
}

/* ---------- 20. Breadcrumb ---------- */
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
  font-size: var(--fs-xs); color: var(--text-3);
  padding-top: var(--sp-6);
}
.breadcrumb a { color: var(--text-3); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--honey); }
.breadcrumb li { display: flex; align-items: center; gap: .5rem; }
.breadcrumb li + li::before { content: "/"; color: var(--line-strong); }
.breadcrumb [aria-current="page"] { color: var(--text-2); }

/* Page hero (unutrašnje stranice) */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 2rem + 4vw, 5.5rem) clamp(2.5rem, 1.5rem + 3vw, 4rem); }
.page-hero__inner { position: relative; z-index: 1; max-width: 780px; }
.page-hero h1 { font-size: var(--fs-h1); margin-bottom: var(--sp-5); }

/* ---------- 21. Toast ---------- */
.toast-wrap {
  position: fixed; bottom: var(--sp-5); right: var(--sp-5); z-index: var(--z-toast);
  display: grid; gap: var(--sp-3); pointer-events: none;
  max-width: min(360px, calc(100vw - 2rem));
}
.toast {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--surface-2);
  border-radius: var(--r-md);
  box-shadow: inset 0 0 0 1px var(--line-honey), var(--shadow-lg);
  font-size: var(--fs-sm); font-weight: 500;
  pointer-events: auto;
  animation: toast-in var(--t-med) var(--ease-spring);
}
.toast svg { width: 19px; height: 19px; color: var(--honey); flex-shrink: 0; }
.toast.is-leaving { animation: toast-out var(--t-fast) var(--ease-in-out) forwards; }
@keyframes toast-in  { from { opacity: 0; transform: translateY(14px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes toast-out { to { opacity: 0; transform: translateY(8px) scale(.97); } }

/* ---------- 22. Scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- 23. Responsive ---------- */
@media (max-width: 1080px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; max-width: none; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: var(--sp-6); }
  .steps::before { display: none; }
}

@media (max-width: 980px) {
  .order-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .nav, .header__actions .btn { display: none; }
  .burger { display: grid; }
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; margin-inline: auto; order: -1; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .section-head--split { align-items: flex-start; }
}

@media (max-width: 680px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-grid, .form-grid--3 { grid-template-columns: 1fr; }
  .radio-cards, .radio-cards--3 { grid-template-columns: 1fr; }
  .picker-row { grid-template-columns: 1fr; }
  .picker-row .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .hero__meta { gap: var(--sp-4) var(--sp-5); }
  .toast-wrap { left: var(--sp-4); right: var(--sp-4); bottom: var(--sp-4); max-width: none; }
  .summary { position: static; }
  .btn--lg { padding: .9rem 1.6rem; font-size: 1rem; }
  .btn-row .btn { flex: 1 1 auto; }
}

/* ---------- 24. Pristupačnost / preferencije ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .header, .footer, .mobile-menu, .toast-wrap, .bg-hex, .bg-glow, .bg-layers, .cta { display: none !important; }
  body { background: #fff; color: #000; }
  .card, .product, .testimonial { box-shadow: none; border: 1px solid #ddd; }
}
