/* ============================================================
   Munch — design system
   Warm, appetizing, food-forward. Mobile-first; framed as a
   phone on desktop so the MVP reads as a real app.
   ============================================================ */
:root {
  --munch: #ff5436;          /* juicy coral-red — the brand */
  --munch-dark: #e23c1f;
  --munch-soft: #fff0ec;
  --honey: #ffb43d;          /* amber — stars, highlights */
  --honey-soft: #fff6e4;
  --bg: #fff8f0;             /* warm cream */
  --surface: #ffffff;
  --surface-2: #fbf3ea;
  --ink: #2c211b;
  --ink-2: #6b5d54;
  --muted: #a2938a;
  --line: #f0e5d9;
  --line-2: #e7d9ca;
  --good: #2e9b54;
  --shadow: 0 6px 22px rgba(70, 40, 20, 0.10);
  --shadow-lg: 0 18px 50px rgba(70, 40, 20, 0.22);

  /* Nutri-Score palette */
  --ns-a: #1f8a3b; --ns-b: #7ac143; --ns-c: #f6c712; --ns-d: #ef8a1c; --ns-e: #e23b2e;

  --r-card: 20px;
  --r-pill: 999px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: #efe3d4;
  background-image: radial-gradient(120% 80% at 50% -10%, #fff3e6 0%, #ecdcc8 60%, #e4d2bc 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ---------- Responsive app container (no phone frame) ---------- */
body { background: var(--bg); }
.app {
  width: 100%;
  height: 100vh; height: 100dvh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.boot { margin: auto; color: var(--muted); font-weight: 600; }
.tabbar .brandtab { display: none; } /* only shown as the header logo on desktop */

/* ---------- Scroll region ---------- */
.screen {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.screen::-webkit-scrollbar { width: 0; }
.pad { padding: 0 14px; }
.section { margin: 15px 0; }
.section + .section { margin-top: 18px; }

/* ---------- Header ---------- */
.appbar {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  padding: 11px 14px 8px;
  border-bottom: 1px solid var(--line);
}
.appbar-row { display: flex; align-items: center; gap: 10px; }
.brand { display: flex; align-items: center; gap: 8px; font-weight: 900; font-size: 22px; letter-spacing: -0.5px; }
.brand .logo { font-size: 24px; }
.brand .mk { color: var(--munch); }
.appbar .sub { color: var(--ink-2); font-size: 12.5px; margin-top: 2px; font-weight: 600; }
.appbar .spacer { flex: 1; }
.iconbtn {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; font-size: 17px;
  background: var(--surface); box-shadow: var(--shadow);
}

/* Search */
.search {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: var(--r-pill); padding: 11px 15px; margin-top: 12px;
  box-shadow: var(--shadow);
}
.search input { border: none; outline: none; flex: 1; font-size: 15px; background: transparent; color: var(--ink); }
.search input::placeholder { color: var(--muted); }

/* ---------- Section titles ---------- */
.h-row { display: flex; align-items: baseline; justify-content: space-between; margin: 0 14px 9px; }
.h-row h2 { font-size: 18px; font-weight: 800; margin: 0; letter-spacing: -0.3px; }
.h-row .more { color: var(--munch); font-weight: 700; font-size: 13px; }
.eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; color: var(--munch); }

/* ---------- Category chips ---------- */
.chips { display: flex; gap: 9px; overflow-x: auto; padding: 2px 16px 4px; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: none; padding: 9px 15px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--line-2);
  font-weight: 700; font-size: 13.5px; white-space: nowrap; color: var(--ink-2);
  display: flex; align-items: center; gap: 6px; transition: all .12s;
}
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip .em { font-size: 15px; }

/* ---------- Snack cards (grid) ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); gap: 10px; padding: 0 12px; }
.card {
  background: var(--surface); border-radius: var(--r-card);
  box-shadow: var(--shadow); overflow: hidden; position: relative;
  display: flex; flex-direction: column; text-align: left;
  transition: transform .12s ease;
}
.card:active { transform: scale(0.975); }
.card .thumb {
  position: relative; aspect-ratio: 1 / 1; background: var(--surface-2);
  display: grid; place-items: center; overflow: hidden;
}
.card .thumb img { width: 100%; height: 100%; object-fit: contain; padding: 8px; mix-blend-mode: multiply; }
.card .thumb .ph { font-size: 44px; opacity: .6; }
.card .body { padding: 8px 9px 10px; display: flex; flex-direction: column; gap: 2px; flex: 1; }
.card .brand-lbl { font-size: 11px; font-weight: 800; color: var(--munch); text-transform: uppercase; letter-spacing: .3px; }

/* Brand marks: official logo when we have one, else a clean wordmark */
.brandlogo { display: block; object-fit: contain; object-position: left center; }
.brandlogo.card { height: 17px; max-width: 90%; margin: 1px 0 3px; }
.brandlogo.pd { height: 32px; max-width: 74%; margin: 2px 0 5px; }
.brandwm { text-transform: uppercase; font-weight: 800; color: var(--ink-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.brandwm.card { font-size: 10.5px; letter-spacing: .5px; margin-bottom: 2px; }
.brandwm.pd { font-size: 15px; letter-spacing: 1px; color: var(--munch-dark); margin-bottom: 3px; }
.pd-brand { min-height: 32px; display: flex; align-items: center; }
.card .name { font-size: 12.5px; font-weight: 700; line-height: 1.2; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.3em; }
.card .meta { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.card .price { margin-left: auto; font-weight: 800; font-size: 13px; }

/* taste rating inline */
.rating { display: inline-flex; align-items: center; gap: 4px; font-weight: 800; font-size: 13px; }
.rating .star { color: var(--honey); }
.rating .cnt { color: var(--muted); font-weight: 600; font-size: 11.5px; }

/* badges over thumb */
.thumb-badges { position: absolute; top: 8px; left: 8px; right: 8px; display: flex; justify-content: space-between; pointer-events: none; }

/* Local "Lietuviška" badge */
.flag {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--surface); border-radius: var(--r-pill); padding: 3px 8px;
  font-size: 10.5px; font-weight: 800; box-shadow: var(--shadow); color: var(--ink);
}
.flag .lt { width: 14px; height: 10px; border-radius: 2px; overflow: hidden; display: inline-block;
  background: linear-gradient(#fdb913 0 33.3%, #006a44 33.3% 66.6%, #c1272d 66.6% 100%); }

/* ---------- Nutri-Score badge ---------- */
.nutri {
  display: inline-flex; align-items: center; font-weight: 900;
  border-radius: 7px; overflow: hidden; box-shadow: var(--shadow);
}
.nutri span { width: 18px; height: 22px; display: grid; place-items: center; color: #fff; font-size: 12px; opacity: .35; }
.nutri.sm span { width: 15px; height: 19px; font-size: 11px; }
.nutri .a { background: var(--ns-a); } .nutri .b { background: var(--ns-b); }
.nutri .c { background: var(--ns-c); color:#5a4500;} .nutri .d { background: var(--ns-d); } .nutri .e { background: var(--ns-e); }
.nutri .on { opacity: 1; transform: scale(1.18); border-radius: 5px; z-index: 1; box-shadow: 0 0 0 2px #fff; }

/* ---------- Feed (check-ins) ---------- */
.feed-item { background: var(--surface); border-radius: var(--r-card); box-shadow: var(--shadow); padding: 13px; margin: 0 16px 12px; display: flex; gap: 12px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; flex: none; display: grid; place-items: center; font-weight: 800; color: #fff; font-size: 15px; }
.feed-item .ci-name { font-weight: 700; }
.feed-item .ci-sub { color: var(--ink-2); font-size: 13px; margin: 1px 0 7px; }
.feed-item .ci-snack { display: flex; gap: 10px; align-items: center; background: var(--surface-2); border-radius: 14px; padding: 8px; }
.feed-item .ci-snack img { width: 44px; height: 44px; object-fit: contain; mix-blend-mode: multiply; }
.feed-item .ci-note { font-size: 13.5px; margin-top: 8px; color: var(--ink); }
.feed-item .ts { color: var(--muted); font-size: 11.5px; font-weight: 600; }

/* ---------- Product detail ---------- */
.pd-hero { position: relative; background: radial-gradient(120% 90% at 50% 0%, #fff 0%, var(--surface-2) 100%); padding: 12px 16px 14px; text-align: center; }
.pd-hero img { height: 172px; margin: 4px auto 0; object-fit: contain; mix-blend-mode: multiply; filter: drop-shadow(0 12px 18px rgba(80,40,10,.18)); }
.pd-hero .ph { font-size: 120px; }
.back {
  position: absolute; top: 14px; left: 14px; z-index: 5;
  width: 38px; height: 38px; border-radius: 50%; background: #fff; box-shadow: var(--shadow);
  display: grid; place-items: center; font-size: 18px;
}
.pd-wish { position: absolute; top: 14px; right: 14px; z-index: 5; width: 38px; height: 38px; border-radius: 50%; background: #fff; box-shadow: var(--shadow); display: grid; place-items: center; font-size: 18px; }
.pd-title { padding: 0 18px; }
.pd-title .brand-lbl { color: var(--munch); font-weight: 800; text-transform: uppercase; font-size: 12.5px; letter-spacing: .4px; }
.pd-title h1 { font-size: 23px; margin: 3px 0 2px; letter-spacing: -0.5px; line-height: 1.15; }
.pd-title .qty { color: var(--ink-2); font-size: 13.5px; font-weight: 600; }

/* dual score cards */
.scores { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 12px 14px 4px; }
.score-card { background: var(--surface); border-radius: 16px; box-shadow: var(--shadow); padding: 12px; text-align: center; }
.score-card .lbl { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; color: var(--muted); }
.score-card .big { font-size: 30px; font-weight: 900; letter-spacing: -1px; line-height: 1.1; }
.score-card .stars-lg { font-size: 16px; color: var(--honey); letter-spacing: 1px; }
.score-card .sub { font-size: 11.5px; color: var(--ink-2); margin-top: 2px; font-weight: 600; }

/* munch meter bar */
.meter { padding: 6px 18px 0; }
.meter .bar { height: 10px; border-radius: 999px; background: var(--line); overflow: hidden; }
.meter .fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--honey), var(--munch)); }
.meter .cap { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--ink-2); font-weight: 700; margin-top: 5px; }

/* nutrition facts */
.nutri-facts { padding: 4px 18px; }
.fact { display: flex; align-items: center; gap: 10px; margin: 9px 0; }
.fact .fl { width: 92px; font-size: 12.5px; font-weight: 700; color: var(--ink-2); flex: none; }
.fact .ft { width: 56px; text-align: right; font-size: 12.5px; font-weight: 800; flex: none; }
.fact .fbar { flex: 1; height: 8px; border-radius: 999px; background: var(--line); overflow: hidden; }
.fact .ffill { height: 100%; border-radius: 999px; }

/* info rows / chips */
.facts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 8px 18px; }
.info-pill { background: var(--surface); border-radius: 14px; box-shadow: var(--shadow); padding: 11px 13px; }
.info-pill .k { font-size: 11px; color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: .3px; }
.info-pill .v { font-size: 15px; font-weight: 800; margin-top: 2px; }

/* reviews */
.review { padding: 12px 0; border-top: 1px solid var(--line); display: flex; gap: 11px; }
.review .avatar { width: 34px; height: 34px; font-size: 13px; }
.review .rv-name { font-weight: 700; font-size: 13.5px; }
.review .rv-text { font-size: 13.5px; color: var(--ink); margin-top: 3px; }
.review .rv-stars { color: var(--honey); font-size: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--munch); color: #fff; font-weight: 800; font-size: 15px;
  padding: 14px 18px; border-radius: var(--r-pill); width: 100%;
  box-shadow: 0 8px 20px rgba(255, 84, 54, .35); transition: transform .1s;
}
.btn:active { transform: scale(.98); }
.btn.ghost { background: var(--surface); color: var(--ink); box-shadow: var(--shadow); }
.btn.sm { width: auto; padding: 10px 16px; font-size: 13.5px; }
.sticky-cta { position: sticky; bottom: 0; padding: 12px 18px calc(12px + env(safe-area-inset-bottom)); background: linear-gradient(transparent, var(--bg) 28%); }

/* ---------- Bottom nav ---------- */
.tabbar {
  flex: none; display: grid; grid-template-columns: repeat(5, 1fr);
  background: var(--surface); border-top: 1px solid var(--line);
  padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
  position: relative; z-index: 30;
}
.tab { display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--muted); font-size: 10.5px; font-weight: 700; }
.tab .ti { font-size: 21px; line-height: 1; }
.tab.active { color: var(--munch); }
.tab.scan { position: relative; }
.tab.scan .fab {
  width: 56px; height: 56px; border-radius: 50%; margin-top: -26px;
  background: var(--munch); color: #fff; display: grid; place-items: center;
  font-size: 25px; box-shadow: 0 8px 20px rgba(255, 84, 54, .45); border: 4px solid var(--surface);
}
.tab.scan span { color: var(--munch); }

/* ---------- Rate / check-in modal ---------- */
.sheet-backdrop {
  position: absolute; inset: 0; z-index: 100; background: rgba(30, 18, 10, .5);
  display: flex; align-items: flex-end; animation: fade .18s ease;
}
.sheet {
  background: var(--bg); width: 100%; border-radius: 26px 26px 0 0;
  padding: 8px 18px calc(20px + env(safe-area-inset-bottom)); max-height: 92%; overflow-y: auto;
  animation: rise .24s cubic-bezier(.2,.8,.2,1);
}
.sheet .grip { width: 42px; height: 5px; border-radius: 999px; background: var(--line-2); margin: 6px auto 14px; }
.sheet h3 { margin: 0 0 2px; font-size: 19px; }
.sheet .sub { color: var(--ink-2); font-size: 13.5px; margin-bottom: 14px; }
.starpick { display: flex; justify-content: center; gap: 8px; font-size: 40px; color: var(--line-2); margin: 8px 0 14px; }
.starpick .s { transition: transform .1s; }
.starpick .s.on { color: var(--honey); }
.starpick .s:active { transform: scale(1.2); }
.sheet textarea {
  width: 100%; border: 1px solid var(--line-2); border-radius: 14px; padding: 12px;
  font-family: inherit; font-size: 14px; resize: none; min-height: 70px; background: var(--surface); color: var(--ink);
}
.tagline-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0; }
.tagchip { padding: 8px 13px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line-2); font-size: 12.5px; font-weight: 700; color: var(--ink-2); }
.tagchip.on { background: var(--munch-soft); border-color: var(--munch); color: var(--munch-dark); }
@keyframes rise { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Profile / badges ---------- */
.profile-head { text-align: center; padding: 22px 18px 10px; }
.profile-head .avatar { width: 80px; height: 80px; font-size: 30px; margin: 0 auto 10px; }
.profile-head h2 { margin: 0; font-size: 22px; }
.profile-head .handle { color: var(--ink-2); font-weight: 600; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 12px 18px; }
.stat { background: var(--surface); border-radius: 16px; box-shadow: var(--shadow); padding: 14px 8px; text-align: center; }
.stat .n { font-size: 24px; font-weight: 900; letter-spacing: -.5px; }
.stat .l { font-size: 11px; color: var(--ink-2); font-weight: 700; text-transform: uppercase; letter-spacing: .3px; }
.badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 6px 18px; }
.badge { text-align: center; }
.badge .ring { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 5px; display: grid; place-items: center; font-size: 26px; background: var(--surface-2); border: 2px dashed var(--line-2); filter: grayscale(1); opacity: .45; }
.badge.earned .ring { background: var(--honey-soft); border: 2px solid var(--honey); filter: none; opacity: 1; }
.badge .bl { font-size: 10.5px; font-weight: 700; color: var(--ink-2); line-height: 1.15; }

/* taste profile bars */
.taste-bars { padding: 4px 18px; }
.tb { margin: 10px 0; }
.tb .tbl { display: flex; justify-content: space-between; font-size: 12.5px; font-weight: 700; margin-bottom: 4px; }
.tb .tbar { height: 9px; border-radius: 999px; background: var(--line); overflow: hidden; }
.tb .tfill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--honey), var(--munch)); }

/* ---------- misc ---------- */
.empty { text-align: center; color: var(--ink-2); padding: 50px 30px; }
.empty .em { font-size: 54px; }
.empty h3 { margin: 12px 0 4px; }
.toast {
  position: absolute; left: 50%; bottom: 84px; transform: translateX(-50%);
  background: var(--ink); color: #fff; padding: 11px 18px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 13.5px; box-shadow: var(--shadow-lg); z-index: 200;
  animation: rise .25s ease; white-space: nowrap;
}
.tag-row { display: flex; gap: 6px; flex-wrap: wrap; }
.pill { background: var(--surface-2); border-radius: 999px; padding: 4px 10px; font-size: 11.5px; font-weight: 700; color: var(--ink-2); }
.divider-note { font-size: 11px; color: var(--muted); text-align: center; padding: 18px; line-height: 1.5; }
.hscroll { display: flex; gap: 10px; overflow-x: auto; padding: 0 12px 5px; scrollbar-width: none; }
.hscroll::-webkit-scrollbar { display: none; }
.hscroll .card { width: 132px; flex: none; }

/* hero banner on discover */
.hero {
  margin: 4px 16px 0; border-radius: var(--r-card); padding: 18px;
  background: linear-gradient(120deg, var(--munch), #ff8a5c);
  color: #fff; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.hero h2 { margin: 0 0 4px; font-size: 19px; }
.hero p { margin: 0; font-size: 13px; opacity: .95; }
.hero .em { position: absolute; right: -6px; bottom: -14px; font-size: 84px; opacity: .28; }

/* ===== Desktop (>=860px): a normal website — top nav + centered content column.
   Placed last so it overrides the mobile-first base rules above. ===== */
@media (min-width: 860px) {
  .app { height: auto; min-height: 100dvh; overflow: visible; }
  .screen { overflow: visible; flex: none; }

  /* bottom tab bar → sticky top navigation header */
  .tabbar {
    order: -1; position: sticky; top: 0; z-index: 40;
    display: flex; align-items: center; gap: 4px;
    padding: 11px max(24px, calc((100% - 1180px) / 2 + 24px));
    border-top: none; border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 12px rgba(70,40,20,.05);
  }
  .tabbar .brandtab { display: inline-flex; flex-direction: row; align-items: center; gap: 8px; margin-right: auto; color: var(--ink); }
  .brandtab .ti { font-size: 22px; margin: 0; }
  .brandtab span:last-child { font-size: 20px; font-weight: 900; letter-spacing: -.4px; }
  .tab { flex-direction: row; gap: 7px; padding: 8px 13px; border-radius: 11px; font-size: 14.5px; color: var(--ink-2); }
  .tab .ti { font-size: 16px; }
  .tab > span { font-size: 14.5px; }
  .tab:hover { background: var(--surface-2); }
  .tab.active { color: var(--munch); background: var(--munch-soft); }
  .tab.active .ti { color: inherit; }
  .tab.scan { order: 9; margin-left: 8px; }
  .tab.scan .fab {
    width: auto; height: auto; margin: 0; border: none;
    box-shadow: 0 6px 16px rgba(255,84,54,.35);
    border-radius: 999px; padding: 9px 18px; font-size: 15px; color: #fff;
  }
  .tab.scan .fab::after { content: " Munch"; font-weight: 800; }
  .tab.scan > span { display: none; }

  /* centered content column, like a real site */
  .screen-body { max-width: 1180px; margin: 0 auto; width: 100%; padding: 0 24px 40px; }
  .appbar { position: static; background: transparent; backdrop-filter: none; border-bottom: none; padding: 22px 0 6px; max-width: 1180px; margin: 0 auto; width: 100%; }
  .appbar .appbar-row, .appbar .sub { padding-inline: 24px; }
  .appbar .search { margin-inline: 24px; }
  .appbar:has(.search) .appbar-row, .appbar:has(.search) .sub { display: none; } /* logo/profile now live in the top nav */
  .search { max-width: 560px; }
  .hero { margin: 8px 0 0; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(172px, 1fr)); gap: 16px; padding: 0; }
  .h-row, .chips, .hscroll { padding-inline: 0; }
  .sticky-cta { max-width: 1180px; margin: 0 auto; }
}

/* ---------- Dark mode — default light; theme resolved at load (stored choice → else OS) ---------- */
:root[data-theme="dark"] {
  --munch-soft: #3a201a;
  --honey-soft: #33280f;
  --bg: #17120e;
  --surface: #211a15;
  --surface-2: #2a221b;
  --ink: #f3e9df;
  --ink-2: #b9a99c;
  --muted: #8a7a6d;
  --line: #322a22;
  --line-2: #3d332a;
  --good: #48c46f;
  --shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.65);
}
[data-theme="dark"] body { background-image: radial-gradient(120% 80% at 50% -10%, #241a12 0%, #17120e 60%, #100c08 100%); }
/* White packshots need a light tile — multiply can't blend white onto dark */
[data-theme="dark"] .card .thumb { background: #f3ebe1; }
[data-theme="dark"] .pd-hero { background: radial-gradient(120% 90% at 50% 0%, #fff 0%, #efe4d6 100%); }
[data-theme="dark"] .ci-snack img { mix-blend-mode: normal; background: #f3ebe1; border-radius: 8px; padding: 2px; }
