/* ============================================================
   CijeneHR — Design System
   Clean & trustworthy price-comparison platform
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ---------- Tokens: Light ---------- */
:root {
  --font-ui: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-num: 'Space Grotesk', 'Plus Jakarta Sans', monospace;

  /* warm neutral base */
  --bg:          oklch(0.985 0.004 95);
  --bg-2:        oklch(0.965 0.005 95);
  --surface:     oklch(1 0 0);
  --surface-2:   oklch(0.978 0.005 95);
  --border:      oklch(0.915 0.006 95);
  --border-2:    oklch(0.875 0.008 95);

  --text:        oklch(0.26 0.012 255);
  --text-muted:  oklch(0.52 0.012 255);
  --text-faint:  oklch(0.66 0.01 255);

  /* brand: trustworthy emerald = savings */
  --brand:       oklch(0.56 0.115 162);
  --brand-strong:oklch(0.48 0.115 163);
  --brand-soft:  oklch(0.94 0.04 162);
  --brand-soft-2:oklch(0.89 0.06 162);
  --on-brand:    oklch(0.99 0.01 162);

  /* deal / discount accent: warm coral */
  --deal:        oklch(0.62 0.18 28);
  --deal-soft:   oklch(0.95 0.04 32);

  /* price-drop positive */
  --up:          oklch(0.6 0.13 30);     /* price rose (rare) */
  --down:        oklch(0.55 0.13 162);   /* price dropped (good) */

  --amber:       oklch(0.78 0.13 78);

  --shadow-sm: 0 1px 2px oklch(0.4 0.02 255 / 0.06), 0 1px 3px oklch(0.4 0.02 255 / 0.05);
  --shadow-md: 0 2px 4px oklch(0.4 0.02 255 / 0.05), 0 8px 18px oklch(0.4 0.02 255 / 0.07);
  --shadow-lg: 0 4px 8px oklch(0.4 0.02 255 / 0.05), 0 18px 40px oklch(0.4 0.02 255 / 0.10);
  --ring: 0 0 0 3px oklch(0.56 0.115 162 / 0.18);

  --r-xs: 7px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  --maxw: 1240px;
  --header-h: 68px;
}

/* ---------- Tokens: Dark ---------- */
[data-theme="dark"] {
  --bg:          oklch(0.19 0.012 258);
  --bg-2:        oklch(0.165 0.012 258);
  --surface:     oklch(0.225 0.013 258);
  --surface-2:   oklch(0.255 0.013 258);
  --border:      oklch(0.31 0.013 258);
  --border-2:    oklch(0.37 0.014 258);

  --text:        oklch(0.96 0.004 255);
  --text-muted:  oklch(0.72 0.012 255);
  --text-faint:  oklch(0.58 0.012 255);

  --brand:       oklch(0.72 0.13 163);
  --brand-strong:oklch(0.78 0.13 163);
  --brand-soft:  oklch(0.32 0.06 163);
  --brand-soft-2:oklch(0.38 0.07 163);
  --on-brand:    oklch(0.16 0.03 163);

  --deal:        oklch(0.72 0.16 32);
  --deal-soft:   oklch(0.34 0.08 32);
  --up:          oklch(0.72 0.13 32);
  --down:        oklch(0.74 0.12 163);

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 2px 6px oklch(0 0 0 / 0.32), 0 10px 24px oklch(0 0 0 / 0.34);
  --shadow-lg: 0 6px 14px oklch(0 0 0 / 0.36), 0 22px 48px oklch(0 0 0 / 0.46);
  --ring: 0 0 0 3px oklch(0.72 0.13 163 / 0.28);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 15px;
  transition: background .3s ease, color .3s ease;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input { font: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: var(--r-sm); }
::selection { background: var(--brand-soft-2); color: var(--text); }

.num { font-family: var(--font-num); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 56px 0; }
.section-tight { padding: 36px 0; }

.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.sec-head .titles h2 {
  font-size: clamp(1.4rem, 1.1rem + 1.1vw, 1.9rem);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.1;
}
.sec-head .titles p { color: var(--text-muted); margin-top: 5px; font-size: 0.95rem; }
.sec-link {
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
  color: var(--brand-strong); font-weight: 600; font-size: 0.92rem;
  padding: 8px 12px; border-radius: var(--r-full); transition: background .15s, gap .15s;
}
.sec-link:hover { background: var(--brand-soft); gap: 10px; }
.sec-link svg { width: 16px; height: 16px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--brand-strong);
}
.eyebrow::before { content: ""; width: 18px; height: 2px; border-radius: 2px; background: var(--brand); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 0.94rem; line-height: 1;
  padding: 12px 20px; border-radius: var(--r-full); white-space: nowrap;
  transition: transform .12s ease, background .15s, box-shadow .15s, border-color .15s, color .15s;
  border: 1px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: var(--on-brand); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-strong); box-shadow: var(--shadow-md); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border-2); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--text-faint); }
.btn-soft { background: var(--brand-soft); color: var(--brand-strong); }
.btn-soft:hover { background: var(--brand-soft-2); }
.btn-sm { padding: 9px 15px; font-size: 0.86rem; }
.btn-block { width: 100%; }

/* ---------- Badges / chips ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.01em;
  padding: 4px 9px; border-radius: var(--r-full);
}
.badge-deal { background: var(--deal); color: white; }
.badge-save { background: var(--brand-soft); color: var(--brand-strong); }
.badge-new  { background: var(--surface); color: var(--text-muted); border: 1px solid var(--border-2); }
.badge-offers { background: var(--surface); color: var(--text-muted); border: 1px solid var(--border); font-weight: 600; }

.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; border-radius: var(--r-full);
  background: var(--surface); border: 1px solid var(--border);
  font-size: 0.88rem; font-weight: 500; color: var(--text-muted);
  transition: all .15s ease; white-space: nowrap;
}
.chip:hover { border-color: var(--brand); color: var(--brand-strong); background: var(--brand-soft); transform: translateY(-1px); }
.chip .ct { font-family: var(--font-num); font-size: 0.78rem; color: var(--text-faint); }
.chip:hover .ct { color: var(--brand-strong); }

/* ---------- Header ---------- */
.topbar {
  background: var(--brand-strong); color: var(--on-brand);
  font-size: 0.8rem; font-weight: 500;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; height: 34px; gap: 16px; }
.topbar .stats { display: flex; gap: 18px; align-items: center; }
.topbar .stats span { display: inline-flex; align-items: center; gap: 6px; opacity: .92; }
.topbar .stats b { font-family: var(--font-num); font-weight: 600; }
.topbar .tline { display: inline-flex; align-items: center; gap: 7px; opacity: .9; }
.topbar svg { width: 14px; height: 14px; }

.header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--surface) 85%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header .wrap { display: flex; align-items: center; gap: 18px; height: var(--header-h); }

.logo { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo .mark { width: 34px; height: 34px; flex-shrink: 0; }
.logo .wordmark { font-size: 1.22rem; font-weight: 800; letter-spacing: -0.03em; }
.logo .wordmark .hr { color: var(--brand); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 9px 13px; border-radius: var(--r-sm); font-weight: 600; font-size: 0.92rem;
  color: var(--text-muted); transition: color .15s, background .15s;
}
.nav a:hover { color: var(--text); background: var(--surface-2); }
.nav a.active { color: var(--brand-strong); background: var(--brand-soft); }

.header .search {
  flex: 1; max-width: 360px; margin-left: auto;
  display: flex; align-items: center; gap: 9px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-full); padding: 0 14px; height: 42px;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.header .search:focus-within { border-color: var(--brand); box-shadow: var(--ring); background: var(--surface); }
.header .search svg { width: 17px; height: 17px; color: var(--text-faint); flex-shrink: 0; }
.header .search input { border: none; background: none; outline: none; flex: 1; color: var(--text); font-size: 0.9rem; }
.header .search input::placeholder { color: var(--text-faint); }
.header .search kbd {
  font-family: var(--font-num); font-size: 0.68rem; color: var(--text-faint);
  border: 1px solid var(--border-2); border-radius: 5px; padding: 2px 6px; background: var(--surface);
}

.header .actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.icon-btn {
  width: 42px; height: 42px; border-radius: var(--r-full);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-muted); border: 1px solid transparent;
  transition: background .15s, color .15s, border-color .15s;
}
.icon-btn:hover { background: var(--surface-2); color: var(--text); border-color: var(--border); }
.icon-btn svg { width: 19px; height: 19px; }
.theme-toggle .moon { display: none; }
[data-theme="dark"] .theme-toggle .sun { display: none; }
[data-theme="dark"] .theme-toggle .moon { display: block; }

.menu-btn { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 64px 0 52px; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 80% at 82% -10%, var(--brand-soft) 0%, transparent 60%),
    radial-gradient(46% 60% at 8% 110%, var(--brand-soft) 0%, transparent 55%);
  opacity: .8;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; text-align: center; }
.hero h1 {
  font-size: clamp(2.1rem, 1.3rem + 3.4vw, 3.6rem);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.03; margin-top: 18px;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--brand); }
.hero .lede { color: var(--text-muted); font-size: clamp(1rem, 0.95rem + 0.3vw, 1.16rem); margin: 16px auto 0; max-width: 560px; text-wrap: pretty; }

.hero-search {
  margin: 30px auto 0; max-width: 620px;
  display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border-2);
  border-radius: var(--r-full); padding: 8px 8px 8px 20px;
  box-shadow: var(--shadow-lg); transition: border-color .15s, box-shadow .15s;
}
.hero-search:focus-within { border-color: var(--brand); box-shadow: var(--shadow-lg), var(--ring); }
.hero-search > svg { width: 21px; height: 21px; color: var(--text-faint); flex-shrink: 0; }
.hero-search input { flex: 1; border: none; outline: none; background: none; font-size: 1.04rem; color: var(--text); min-width: 0; }
.hero-search input::placeholder { color: var(--text-faint); }

.hero-chips { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-top: 22px; }
.hero-chips .label { color: var(--text-faint); font-size: 0.85rem; font-weight: 600; align-self: center; display: inline-flex; gap: 6px; align-items: center; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  max-width: 720px; margin: 40px auto 0;
}
.stat {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 18px 16px; text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat .v { font-family: var(--font-num); font-size: clamp(1.4rem, 1.1rem + 1vw, 1.85rem); font-weight: 700; letter-spacing: -0.02em; color: var(--brand-strong); }
.stat .k { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; font-weight: 500; }

/* ---------- Category grid ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cat-card {
  display: flex; align-items: center; gap: 13px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 15px 16px;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.cat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--border-2); }
.cat-ico {
  width: 46px; height: 46px; border-radius: var(--r-sm); flex-shrink: 0;
  display: grid; place-items: center; font-size: 1.4rem;
  background: var(--brand-soft); color: var(--brand-strong);
}
.cat-card .nm { font-weight: 700; font-size: 0.95rem; letter-spacing: -0.01em; }
.cat-card .ct { font-size: 0.8rem; color: var(--text-muted); margin-top: 1px; }
.cat-card .ct b { font-family: var(--font-num); font-weight: 600; color: var(--text-faint); }

/* ---------- Product card ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.prod-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.pcard {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--border-2); }
.pcard .thumb {
  position: relative; aspect-ratio: 4/3; background: var(--surface-2);
  display: grid; place-items: center; padding: 18px;
}
.pcard .thumb img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; position: relative; z-index: 1; color: transparent; font-size: 0; }
[data-theme="dark"] .pcard .thumb img { mix-blend-mode: normal; }
.pcard .thumb .ph-thumb { position: absolute; inset: 18px; z-index: 0; }
/* hide broken-image alt text everywhere; styled placeholder shows through */
.thumb img, .gallery img, .drop-card img { color: transparent; font-size: 0; }
.ph-thumb {
  width: 100%; height: 100%; border-radius: var(--r-sm);
  background:
    radial-gradient(115% 85% at 50% -5%, color-mix(in oklab, var(--brand) 12%, var(--surface-2)) 0%, var(--surface-2) 62%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px;
  color: var(--text-muted);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.13em; text-transform: uppercase; text-align: center; padding: 10px;
}
.ph-thumb::before {
  content: ""; width: 30px; height: 30px; flex-shrink: 0;
  background: color-mix(in oklab, var(--brand) 60%, var(--text-faint));
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='16' rx='2.5'/><circle cx='8.5' cy='10' r='1.8'/><path d='m21 16-4.5-4.5L7 21'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='16' rx='2.5'/><circle cx='8.5' cy='10' r='1.8'/><path d='m21 16-4.5-4.5L7 21'/></svg>") center/contain no-repeat;
  opacity: .85;
}
.gallery .main .ph-thumb { font-size: 0.95rem; gap: 14px; }
.gallery .main .ph-thumb::before { width: 52px; height: 52px; }
.pcard .thumb .badge { position: absolute; top: 11px; }
.pcard .thumb .badge.l { left: 11px; }
.pcard .thumb .badge.r { right: 11px; }
.fav {
  position: absolute; top: 10px; right: 10px; width: 32px; height: 32px;
  border-radius: var(--r-full); background: color-mix(in oklab, var(--surface) 80%, transparent);
  backdrop-filter: blur(6px); display: grid; place-items: center; color: var(--text-faint);
  border: 1px solid var(--border); transition: color .15s, background .15s; opacity: 0;
}
.pcard:hover .fav { opacity: 1; }
.fav:hover { color: var(--deal); background: var(--surface); }
.fav svg { width: 16px; height: 16px; }

.pcard .body { padding: 14px 15px 16px; display: flex; flex-direction: column; flex: 1; }
.pcard .brand-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.pcard .brand { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-faint); }
.pcard h3 { font-size: 0.95rem; font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.5em; }
.pcard h3:hover { color: var(--brand-strong); }
.pcard .price-row { margin-top: auto; padding-top: 13px; display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; }
.pcard .price .lbl { font-size: 0.72rem; color: var(--text-faint); }
.pcard .price .v { font-family: var(--font-num); font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; }
.pcard .price .old { font-family: var(--font-num); font-size: 0.82rem; color: var(--text-faint); text-decoration: line-through; }
.pcard .offers { text-align: right; font-size: 0.74rem; color: var(--text-muted); line-height: 1.3; }
.pcard .offers b { font-family: var(--font-num); display: block; font-size: 0.98rem; color: var(--text); }

/* compact drop card */
.drop-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 1fr); gap: 14px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
.drop-rail::-webkit-scrollbar { height: 8px; }
.drop-rail::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 8px; }
.drop-card {
  scroll-snap-align: start;
  display: flex; gap: 13px; align-items: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 12px; transition: transform .15s, box-shadow .15s, border-color .15s;
}
.drop-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--border-2); }
.drop-card .dthumb { width: 64px; height: 64px; border-radius: var(--r-sm); background: radial-gradient(120% 90% at 50% -5%, color-mix(in oklab, var(--brand) 13%, var(--surface-2)) 0%, var(--surface-2) 62%); flex-shrink: 0; display: grid; place-items: center; overflow: hidden; }
.drop-card .dthumb::before {
  content: ""; width: 26px; height: 26px;
  background: color-mix(in oklab, var(--brand) 60%, var(--text-faint));
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='16' rx='2.5'/><circle cx='8.5' cy='10' r='1.8'/><path d='m21 16-4.5-4.5L7 21'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='16' rx='2.5'/><circle cx='8.5' cy='10' r='1.8'/><path d='m21 16-4.5-4.5L7 21'/></svg>") center/contain no-repeat;
  opacity: .8;
}
.drop-card .dmeta { min-width: 0; flex: 1; }
.drop-card .dmeta .b { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-faint); }
.drop-card .dmeta h4 { font-size: 0.86rem; font-weight: 600; line-height: 1.25; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.drop-card .drow { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.drop-card .now { font-family: var(--font-num); font-weight: 700; font-size: 1.02rem; }
.drop-card .pct { font-family: var(--font-num); font-size: 0.78rem; font-weight: 700; color: var(--down); display: inline-flex; align-items: center; gap: 2px; }

/* ---------- Partners ---------- */
.partners { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.partner {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 22px 14px; transition: transform .15s, box-shadow .15s, border-color .15s;
}
.partner:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.partner .plogo { font-weight: 800; font-size: 1.05rem; letter-spacing: -0.02em; color: var(--text); }
.partner .pct { font-size: 0.74rem; color: var(--text-faint); font-family: var(--font-num); }

/* ---------- Alert CTA ---------- */
.alert-cta { position: relative; overflow: hidden; border-radius: var(--r-xl); background: var(--brand-strong); color: var(--on-brand); }
.alert-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 120% at 100% 0%, oklch(0.7 0.14 163 / .5) 0, transparent 60%),
              radial-gradient(50% 120% at 0% 100%, oklch(0.4 0.1 200 / .4) 0, transparent 55%);
}
.alert-cta .inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 30px; align-items: center; padding: 46px 48px; }
.alert-cta .eyebrow { color: oklch(0.9 0.06 162); }
.alert-cta .eyebrow::before { background: oklch(0.9 0.06 162); }
.alert-cta h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.08; margin: 12px 0 14px; }
.alert-cta p { color: oklch(0.94 0.03 162); max-width: 440px; }
.alert-cta ul { display: flex; flex-direction: column; gap: 10px; margin: 22px 0 26px; }
.alert-cta li { display: flex; align-items: center; gap: 11px; font-weight: 500; }
.alert-cta li svg { width: 20px; height: 20px; flex-shrink: 0; color: oklch(0.9 0.1 162); }
.alert-cta .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.alert-cta .btn-primary { background: white; color: var(--brand-strong); }
.alert-cta .btn-primary:hover { background: oklch(0.96 0.02 162); }
.alert-cta .btn-ghost { background: transparent; color: white; border-color: oklch(1 0 0 / .35); }
.alert-cta .btn-ghost:hover { background: oklch(1 0 0 / .12); border-color: oklch(1 0 0 / .6); }

.notif-stack { display: flex; flex-direction: column; gap: 12px; }
.notif {
  display: flex; align-items: center; gap: 13px;
  background: var(--surface); color: var(--text);
  border-radius: var(--r-md); padding: 13px 15px; box-shadow: var(--shadow-lg);
}
.notif:nth-child(1) { transform: translateX(8px); }
.notif:nth-child(3) { transform: translateX(8px); }
.notif .ni { width: 40px; height: 40px; border-radius: var(--r-sm); display: grid; place-items: center; flex-shrink: 0; background: var(--brand-soft); color: var(--brand-strong); }
.notif .ni svg { width: 20px; height: 20px; }
.notif .nt { flex: 1; min-width: 0; }
.notif .nt .h { font-weight: 700; font-size: 0.86rem; display: flex; align-items: center; gap: 6px; }
.notif .nt .s { font-size: 0.8rem; color: var(--text-muted); }
.notif .price { font-family: var(--font-num); font-weight: 700; color: var(--down); font-size: 0.98rem; }
.tag-flag { font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 2px 7px; border-radius: var(--r-full); background: var(--brand-soft); color: var(--brand-strong); }

/* ---------- Newsletter ---------- */
.newsletter { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 34px; }
.newsletter .nl-form { display: flex; gap: 10px; flex: 1; max-width: 420px; min-width: 260px; }
.newsletter input { flex: 1; background: var(--surface-2); border: 1px solid var(--border-2); border-radius: var(--r-full); padding: 0 18px; height: 46px; outline: none; color: var(--text); }
.newsletter input:focus { border-color: var(--brand); box-shadow: var(--ring); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); margin-top: 20px; }
.footer .top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding: 52px 0 40px; }
.footer .about { max-width: 320px; }
.footer .about p { color: var(--text-muted); font-size: 0.9rem; margin: 14px 0 16px; }
.footer .trust { display: flex; gap: 16px; flex-wrap: wrap; }
.footer .trust span { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.footer .trust svg { width: 16px; height: 16px; color: var(--brand); }
.footer h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); margin-bottom: 14px; font-weight: 700; }
.footer .col a { display: block; padding: 5px 0; color: var(--text-muted); font-size: 0.9rem; transition: color .15s; }
.footer .col a:hover { color: var(--brand-strong); }
.footer .bottom { border-top: 1px solid var(--border); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--text-faint); font-size: 0.84rem; }
.footer .bottom .v { font-family: var(--font-num); }

/* ---------- Mobile drawer ---------- */
.drawer-backdrop { position: fixed; inset: 0; background: oklch(0.2 0.02 255 / .5); backdrop-filter: blur(2px); z-index: 90; opacity: 0; pointer-events: none; transition: opacity .25s; }
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 340px); z-index: 91;
  background: var(--surface); border-left: 1px solid var(--border);
  transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 18px;
}
.drawer.open { transform: translateX(0); }
.drawer .dh { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.drawer nav { display: flex; flex-direction: column; gap: 2px; }
.drawer nav a { padding: 13px 14px; border-radius: var(--r-sm); font-weight: 600; color: var(--text); transition: background .15s; }
.drawer nav a:hover, .drawer nav a.active { background: var(--brand-soft); color: var(--brand-strong); }
.drawer .da { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 18px; border-top: 1px solid var(--border); }

/* ============================================================
   PRODUCT / COMPARISON PAGE
   ============================================================ */
.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 0.85rem; color: var(--text-muted); padding: 18px 0; }
.breadcrumb a { color: var(--text-muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--brand-strong); }
.breadcrumb .sep { color: var(--text-faint); }
.breadcrumb .cur { color: var(--text); font-weight: 600; }

.product-top { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 40px; padding: 8px 0 44px; }

.gallery { position: sticky; top: calc(var(--header-h) + 18px); align-self: start; }
.gallery .main {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  aspect-ratio: 1; display: grid; place-items: center; padding: 40px; position: relative; overflow: hidden;
}
.gallery .main img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; position: relative; z-index: 1; }
[data-theme="dark"] .gallery .main img { mix-blend-mode: normal; }
.gallery .main .ph-thumb { position: absolute; inset: 40px; }
.gallery .main .badge { position: absolute; top: 16px; left: 16px; z-index: 2; }
.gallery .thumbs { display: flex; gap: 10px; margin-top: 12px; }
.gallery .thumbs button {
  width: 70px; height: 70px; border-radius: var(--r-sm); background: var(--surface);
  border: 1.5px solid var(--border); padding: 8px; transition: border-color .15s; flex-shrink: 0;
  display: grid; place-items: center; color: var(--text-faint); font-weight: 700; font-size: 0.7rem;
}
.gallery .thumbs button.active { border-color: var(--brand); }
.gallery .thumbs button img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
[data-theme="dark"] .gallery .thumbs button img { mix-blend-mode: normal; }

.pinfo .brand-tag { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--brand-strong); }
.pinfo h1 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.12; margin: 8px 0 12px; text-wrap: balance; }
.pinfo .meta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--text-muted); font-size: 0.88rem; margin-bottom: 22px; }
.stars { display: inline-flex; align-items: center; gap: 6px; }
.stars .s { display: inline-flex; gap: 1px; color: var(--amber); }
.stars .s svg { width: 15px; height: 15px; }
.stars b { font-family: var(--font-num); color: var(--text); }
.meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-faint); }

.price-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow-sm); }
.price-panel .pp-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.price-panel .big { display: flex; align-items: baseline; gap: 12px; }
.price-panel .big .now { font-family: var(--font-num); font-size: 2.6rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.price-panel .big .was { font-family: var(--font-num); font-size: 1.05rem; color: var(--text-faint); text-decoration: line-through; }
.price-panel .sub { color: var(--text-muted); font-size: 0.86rem; margin-top: 6px; }
.price-panel .savebox { text-align: right; }
.price-panel .savebox .pct { font-family: var(--font-num); font-size: 1.4rem; font-weight: 700; color: var(--brand-strong); }
.price-panel .savebox .lbl { font-size: 0.74rem; color: var(--text-muted); }
.price-panel .pp-cta { display: flex; gap: 10px; margin-top: 18px; }
.price-panel .pp-note { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 0.8rem; color: var(--text-muted); }
.price-panel .pp-note svg { width: 15px; height: 15px; color: var(--brand); }

.key-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.key-specs .ks { display: flex; align-items: center; gap: 11px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 11px 13px; }
.key-specs .ks .ki { width: 34px; height: 34px; border-radius: 8px; background: var(--brand-soft); color: var(--brand-strong); display: grid; place-items: center; flex-shrink: 0; }
.key-specs .ks .ki svg { width: 17px; height: 17px; }
.key-specs .ks .kk { font-size: 0.72rem; color: var(--text-muted); }
.key-specs .ks .kv { font-weight: 700; font-size: 0.86rem; }

/* offers list */
.offers-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.sort-tabs { display: flex; gap: 4px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-full); padding: 4px; }
.sort-tabs button { padding: 7px 14px; border-radius: var(--r-full); font-size: 0.84rem; font-weight: 600; color: var(--text-muted); transition: all .15s; }
.sort-tabs button.active { background: var(--surface); color: var(--brand-strong); box-shadow: var(--shadow-sm); }

.offer-list { display: flex; flex-direction: column; gap: 10px; }
.offer-row {
  display: grid; grid-template-columns: 56px 1.4fr 1fr auto; gap: 18px; align-items: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 14px 18px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.offer-row:hover { border-color: var(--border-2); box-shadow: var(--shadow-sm); }
.offer-row.best { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand), var(--shadow-sm); }
.offer-row .store-logo { width: 56px; height: 40px; border-radius: 8px; background: var(--surface-2); border: 1px solid var(--border); display: grid; place-items: center; font-weight: 800; font-size: 0.78rem; letter-spacing: -0.02em; color: var(--text); }
.offer-row .store-meta .sn { font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }
.offer-row .store-meta .sd { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 10px; margin-top: 2px; flex-wrap: wrap; }
.offer-row .store-meta .sd .ok { color: var(--brand-strong); display: inline-flex; align-items: center; gap: 4px; }
.offer-row .store-meta .sd svg { width: 13px; height: 13px; }
.offer-row .op { text-align: right; }
.offer-row .op .v { font-family: var(--font-num); font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; }
.offer-row .op .d { font-size: 0.74rem; color: var(--text-muted); }
.offer-row.best .op .v { color: var(--brand-strong); }
.flag-best { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--brand-strong); background: var(--brand-soft); padding: 2px 8px; border-radius: var(--r-full); }
.rating-mini { display: inline-flex; align-items: center; gap: 3px; font-family: var(--font-num); font-size: 0.78rem; color: var(--text-muted); }
.rating-mini svg { width: 12px; height: 12px; color: var(--amber); }

/* price history chart */
.chart-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; }
.chart-card .ch-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.chart-card .ch-head h3 { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; }
.chart-legend { display: flex; gap: 18px; font-size: 0.82rem; }
.chart-legend span { display: inline-flex; align-items: center; gap: 6px; color: var(--text-muted); }
.chart-legend .dot { width: 9px; height: 9px; border-radius: 50%; }
.chart-stats { display: flex; gap: 28px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.chart-stats .cs .k { font-size: 0.76rem; color: var(--text-muted); }
.chart-stats .cs .v { font-family: var(--font-num); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; }
.chart-stats .cs .v.lo { color: var(--brand-strong); }
.chart-stats .cs .v.hi { color: var(--deal); }

/* spec table */
.spec-table { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.spec-table .sg-title { padding: 14px 20px; font-weight: 800; font-size: 0.92rem; background: var(--surface-2); border-bottom: 1px solid var(--border); letter-spacing: -0.01em; }
.spec-table .sr { display: grid; grid-template-columns: 1fr 1.4fr; gap: 16px; padding: 12px 20px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.spec-table .sr:last-child { border-bottom: none; }
.spec-table .sr .sk { color: var(--text-muted); }
.spec-table .sr .sv { font-weight: 600; }

.two-col { display: grid; grid-template-columns: 1.3fr 1fr; gap: 28px; align-items: start; }

/* ============================================================
   CATEGORY / RESULTS PAGE
   ============================================================ */
.cat-hero { padding: 28px 0; border-bottom: 1px solid var(--border); }
.cat-hero h1 { font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.2rem); font-weight: 800; letter-spacing: -0.025em; }
.cat-hero p { color: var(--text-muted); margin-top: 6px; }
.cat-hero p b { font-family: var(--font-num); color: var(--text); }

.results-layout { display: grid; grid-template-columns: 264px 1fr; gap: 28px; padding: 26px 0 60px; align-items: start; }
.filters { position: sticky; top: calc(var(--header-h) + 18px); display: flex; flex-direction: column; gap: 4px; }
.filter-block { border-bottom: 1px solid var(--border); padding: 18px 0; }
.filter-block:first-child { padding-top: 0; }
.filter-block h4 { font-size: 0.82rem; font-weight: 800; letter-spacing: 0.02em; text-transform: uppercase; color: var(--text); margin-bottom: 13px; display: flex; align-items: center; justify-content: space-between; }
.filter-opt { display: flex; align-items: center; gap: 10px; padding: 6px 0; cursor: pointer; color: var(--text-muted); font-size: 0.9rem; transition: color .15s; }
.filter-opt:hover { color: var(--text); }
.filter-opt .box { width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--border-2); display: grid; place-items: center; flex-shrink: 0; transition: all .15s; }
.filter-opt .box svg { width: 12px; height: 12px; color: white; opacity: 0; }
.filter-opt.on .box { background: var(--brand); border-color: var(--brand); }
.filter-opt.on .box svg { opacity: 1; }
.filter-opt.on { color: var(--text); font-weight: 600; }
.filter-opt .ct { margin-left: auto; font-family: var(--font-num); font-size: 0.78rem; color: var(--text-faint); }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.fchip { padding: 7px 13px; border-radius: var(--r-full); border: 1.5px solid var(--border); font-size: 0.83rem; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all .15s; }
.fchip:hover { border-color: var(--brand); color: var(--brand-strong); }
.fchip.on { background: var(--brand); border-color: var(--brand); color: var(--on-brand); }
.price-range { display: flex; align-items: center; gap: 10px; }
.price-range input { width: 100%; background: var(--surface-2); border: 1px solid var(--border-2); border-radius: var(--r-sm); padding: 9px 11px; outline: none; color: var(--text); font-family: var(--font-num); font-size: 0.86rem; }
.price-range input:focus { border-color: var(--brand); }

.results-bar { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.results-bar .rcount { color: var(--text-muted); font-size: 0.9rem; }
.results-bar .rcount b { font-family: var(--font-num); color: var(--text); }
.results-bar .rtools { display: flex; align-items: center; gap: 10px; }
.select {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-full);
  padding: 9px 14px; font-size: 0.86rem; font-weight: 600; color: var(--text); cursor: pointer;
}
.select svg { width: 15px; height: 15px; color: var(--text-faint); }
.view-toggle { display: flex; gap: 3px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-full); padding: 3px; }
.view-toggle button { width: 34px; height: 32px; border-radius: var(--r-full); display: grid; place-items: center; color: var(--text-muted); transition: all .15s; }
.view-toggle button.active { background: var(--surface); color: var(--brand-strong); box-shadow: var(--shadow-sm); }
.view-toggle button svg { width: 16px; height: 16px; }

.active-filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.active-filters .af { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; background: var(--brand-soft); color: var(--brand-strong); border-radius: var(--r-full); padding: 6px 8px 6px 13px; font-size: 0.82rem; font-weight: 600; }
.active-filters .af button { width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; color: var(--brand-strong); }
.active-filters .af button svg { width: 12px; height: 12px; }
.active-filters .clear { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; }
.active-filters .clear:hover { color: var(--deal); }

/* list view variant */
.prod-grid.list-view { display: flex; flex-direction: column; gap: 12px; }
.prod-grid.list-view .pcard { flex-direction: row; align-items: stretch; }
.prod-grid.list-view .pcard .thumb { width: 150px; aspect-ratio: auto; flex-shrink: 0; }
.prod-grid.list-view .pcard .body { padding: 16px 20px; }
.prod-grid.list-view .pcard h3 { -webkit-line-clamp: 1; min-height: 0; font-size: 1.05rem; }
.prod-grid.list-view .pcard .price-row { padding-top: 10px; }

.filter-toggle-mobile { display: none; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 36px; }
.pagination a, .pagination span { min-width: 40px; height: 40px; padding: 0 12px; border-radius: var(--r-sm); display: inline-flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.9rem; font-family: var(--font-num); color: var(--text-muted); border: 1px solid var(--border); transition: all .15s; }
.pagination a:hover { border-color: var(--brand); color: var(--brand-strong); }
.pagination .cur { background: var(--brand); border-color: var(--brand); color: var(--on-brand); }
.pagination .dots { border: none; }

@media (max-width: 980px) {
  .product-top { grid-template-columns: 1fr; gap: 26px; }
  .gallery { position: static; }
  .two-col { grid-template-columns: 1fr; }
  .results-layout { grid-template-columns: 1fr; }
  .filters { position: fixed; inset: 0 0 0 auto; width: min(86vw, 320px); background: var(--surface); z-index: 91; padding: 20px; overflow-y: auto; transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1); box-shadow: var(--shadow-lg); }
  .filters.open { transform: translateX(0); }
  .filter-toggle-mobile { display: inline-flex; }
}
@media (max-width: 620px) {
  .offer-row { grid-template-columns: 44px 1fr auto; gap: 12px; padding: 13px 14px; }
  .offer-row .op { grid-column: 3; }
  .offer-row .octa { grid-column: 1 / -1; }
  .offer-row .octa .btn { width: 100%; }
  .key-specs { grid-template-columns: 1fr; }
}

/* ---------- Reveal animation (base state ALWAYS visible; entrance is a safe enhancement) ---------- */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal.in { animation: revealUp .6s cubic-bezier(.22,.61,.36,1) both; }
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .cat-grid, .partners { grid-template-columns: repeat(3, 1fr); }
  .prod-grid, .prod-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .header .search { display: none; }
}
@media (max-width: 860px) {
  .nav, .header .actions .desktop-only { display: none; }
  .menu-btn { display: inline-flex; }
  .alert-cta .inner { grid-template-columns: 1fr; gap: 28px; }
  .footer .top { grid-template-columns: 1fr 1fr; }
  .topbar .stats span:nth-child(n+3) { display: none; }
}
@media (max-width: 680px) {
  .section { padding: 40px 0; }
  .wrap { padding: 0 18px; }
  .cat-grid, .partners { grid-template-columns: repeat(2, 1fr); }
  .prod-grid, .prod-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .alert-cta .inner { padding: 32px 24px; }
  .newsletter { flex-direction: column; align-items: stretch; }
  .footer .top { grid-template-columns: 1fr; gap: 24px; }
  .topbar .stats span:nth-child(n+2) { display: none; }
}
@media (max-width: 420px) {
  .prod-grid, .prod-grid.cols-3, .cat-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== CijeneHR — live-integration overlay fixes =====
   Real product images sit at z-index:1 inside .thumb; keep badges and the
   favourite button above them (the original mockup used placeholders only). */
.pcard .thumb .badge,
.pcard .thumb .fav { z-index: 3; }
.gallery .main .badge { z-index: 3; }
.drop-card .dthumb img { width:100%; height:100%; object-fit:contain; mix-blend-mode:multiply; }
[data-theme="dark"] .drop-card .dthumb img { mix-blend-mode:normal; }
