/* ===========================================================================
   MultichannelTheme — storefront

   The customer-facing side of the same theme. It shares every design token
   with the admin panel (assets/app.css), so the seven palettes, the light and
   dark schemes and the 12 languages all keep working here — load app.css
   first, then this file.

   Nothing here depends on the admin styles other than those tokens, so you
   can ship the storefront on its own if that is all you need.
   =========================================================================== */

/* ============================================================ shell */
.shop { min-height: 100vh; display: flex; flex-direction: column; }
.shop-main { flex: 1; }
.wrap { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 22px; }

/* ============================================================ header */
.shop-head {
  position: sticky; top: 0; z-index: 40;
  background: var(--panel); border-bottom: 1px solid var(--line);
}
.shop-bar { display: flex; align-items: center; gap: 18px; height: 68px; }
.shop-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 17px;
  letter-spacing: -.02em; flex: none; }
.shop-logo span {
  width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  background: var(--brand); color: var(--brand-ink); font-size: 14px; font-weight: 800;
}
.shop-search {
  flex: 1; display: flex; align-items: center; gap: 9px; min-width: 0;
  background: var(--bg); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px;
}
.shop-search svg { width: 16px; height: 16px; color: var(--muted); flex: none; }
.shop-search input { border: 0; background: none; outline: none; font: inherit;
  color: var(--ink); width: 100%; }
.shop-acts { display: flex; align-items: center; gap: 4px; flex: none; }
.iconbtn {
  position: relative; width: 40px; height: 40px; border: 0; background: none;
  border-radius: 10px; color: var(--ink); cursor: pointer; display: grid; place-items: center;
  transition: background .12s;
}
.iconbtn:hover { background: var(--bg); }
.iconbtn svg { width: 20px; height: 20px; }
.iconbtn .pip {
  position: absolute; top: 4px; inset-inline-end: 4px; min-width: 17px; height: 17px;
  padding: 0 4px; border-radius: 999px; background: var(--brand); color: var(--brand-ink);
  font-size: 10.5px; font-weight: 800; display: grid; place-items: center;
}

/* category strip */
.shop-nav { border-top: 1px solid var(--line); }
.shop-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0;
  overflow-x: auto; scrollbar-width: none; }
.shop-nav ul::-webkit-scrollbar { display: none; }
.shop-nav a {
  display: block; padding: 12px 13px; font-size: 13.5px; font-weight: 600;
  color: var(--muted); white-space: nowrap; border-bottom: 2px solid transparent;
}
.shop-nav a:hover { color: var(--ink); }
.shop-nav a.on { color: var(--brand); border-bottom-color: var(--brand); }

/* announcement */
.ann {
  background: var(--brand); color: var(--brand-ink);
  font-size: 12.5px; font-weight: 600; text-align: center; padding: 8px 16px;
}

/* Staff-only preview strip. Rendered by shop-parts.js only when you arrive
   from the admin panel — a customer never receives this markup at all. */
.preview-bar {
  display: flex; align-items: center; gap: 11px; flex-wrap: wrap;
  padding: 9px 22px; font-size: 12.5px;
  background: var(--ink); color: var(--panel);
}
.preview-bar svg { width: 17px; height: 17px; flex: none; }
.preview-bar b { font-weight: 700; }
.preview-bar span { opacity: .72; }
.preview-bar .spacer { flex: 1; opacity: 1; }
/* currentColor, so the buttons read on both the light and the dark strip */
.preview-bar .btn {
  background: transparent; color: inherit;
  border-color: color-mix(in srgb, currentColor 34%, transparent);
}
.preview-bar .btn:hover { background: color-mix(in srgb, currentColor 14%, transparent); }
@media (max-width: 700px) {
  .preview-bar { padding: 9px 16px; }
  .preview-bar span:not(.spacer) { display: none; }
}

/* ============================================================ hero */
.hero {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px; align-items: center;
  padding: 52px 0;
}
.hero h1 { font-size: 42px; line-height: 1.1; letter-spacing: -.03em; margin: 0 0 14px; }
.hero p { font-size: 16px; color: var(--muted); margin: 0 0 26px; max-width: 46ch; }
.hero-acts { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-art {
  aspect-ratio: 4/3; border-radius: 22px; overflow: hidden;
  background: var(--brand-soft); display: grid; place-items: center;
}
.hero-art svg { width: 62%; height: 62%; }

.btn-lg { padding: 12px 22px; font-size: 15px; border-radius: var(--radius-s); }

/* ============================================================ sections */
.sec { padding: 40px 0; }
.sec-head { display: flex; align-items: flex-end; gap: 16px; margin-bottom: 20px; }
.sec-head h2 { font-size: 23px; letter-spacing: -.02em; margin: 0 0 3px; }
.sec-head p { margin: 0; font-size: 13.5px; color: var(--muted); }
.sec-head .spacer { flex: 1; }

/* category tiles */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tile {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: var(--panel); transition: transform .14s, box-shadow .14s;
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.tile .art { aspect-ratio: 4/3; display: grid; place-items: center; background: var(--bg); }
.tile .art svg { width: 46%; height: 46%; }
.tile b { display: block; padding: 13px 15px 4px; font-size: 14.5px; }
.tile span { display: block; padding: 0 15px 14px; font-size: 12.5px; color: var(--muted); }

/* ============================================================ product grid */
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pgrid.g3 { grid-template-columns: repeat(3, 1fr); }

.pcard { position: relative; display: block; }
.pcard .art {
  position: relative; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden;
  background: var(--bg); border: 1px solid var(--line);
  display: grid; place-items: center; transition: border-color .14s;
}
.pcard:hover .art { border-color: var(--line-2); }
.pcard .art svg { width: 58%; height: 58%; transition: transform .25s; }
.pcard:hover .art svg { transform: scale(1.05); }
.pcard .flag {
  position: absolute; top: 10px; inset-inline-start: 10px; z-index: 1;
  font-size: 10.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 6px; background: var(--brand); color: var(--brand-ink);
}
.pcard .flag.out { background: var(--line-2); color: var(--ink); }
.pcard .flag.sale { background: var(--bad); color: #fff; }
.pcard .wish {
  position: absolute; top: 8px; inset-inline-end: 8px; z-index: 1;
  width: 32px; height: 32px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--panel); color: var(--muted); display: grid; place-items: center;
  opacity: 0; transition: opacity .14s, color .12s;
}
.pcard:hover .wish, .wish:focus-visible { opacity: 1; }
.wish[aria-pressed="true"] { opacity: 1; color: var(--bad); }
.wish svg { width: 16px; height: 16px; }

.pcard .name { display: block; margin: 11px 0 3px; font-size: 14px; font-weight: 600; }
.pcard .meta { display: block; font-size: 12.5px; color: var(--muted); }
.price { display: flex; align-items: baseline; gap: 8px; margin-top: 6px; }
.price b { font-size: 15.5px; }
.price s { font-size: 12.5px; color: var(--muted); }
.price .off { font-size: 11.5px; font-weight: 700; color: var(--bad); }

.stars { display: inline-flex; gap: 1px; vertical-align: -2px; }
.stars svg { width: 13px; height: 13px; color: #F59E0B; }
.stars svg.off { color: var(--line-2); }

.dots { display: flex; gap: 5px; margin-top: 8px; }
.dots i { width: 13px; height: 13px; border-radius: 50%; border: 1px solid var(--line-2); }

/* ============================================================ catalogue */
.cat-layout { display: grid; grid-template-columns: 248px 1fr; gap: 28px; align-items: start; }

.crumb { display: flex; gap: 7px; font-size: 12.5px; color: var(--muted); padding: 18px 0; flex-wrap: wrap; }
.crumb a:hover { color: var(--ink); }

.facet { border-bottom: 1px solid var(--line); padding: 16px 0; }
.facet:first-child { padding-top: 0; }
.facet:last-child { border-bottom: 0; }
.facet h4 { margin: 0 0 11px; font-size: 13px; font-weight: 700; letter-spacing: .01em; }
.facet label { display: flex; align-items: center; gap: 9px; font-size: 13.5px;
  padding: 4px 0; cursor: pointer; color: var(--muted); }
.facet label:hover { color: var(--ink); }
.facet label .n { margin-inline-start: auto; font-size: 12px; }
.facet input[type="checkbox"] { accent-color: var(--brand); width: 15px; height: 15px; }

.sizes { display: flex; flex-wrap: wrap; gap: 6px; }
.sizes button {
  font: inherit; font-size: 12.5px; font-weight: 600; cursor: pointer;
  min-width: 40px; padding: 6px 9px; border-radius: 8px;
  border: 1px solid var(--line); background: var(--panel); color: var(--ink);
}
.sizes button:hover { border-color: var(--line-2); }
.sizes button[aria-pressed="true"] { border-color: var(--brand); background: var(--brand-soft); color: var(--brand); }
.sizes button:disabled { opacity: .38; cursor: not-allowed; text-decoration: line-through; }

.colours { display: flex; flex-wrap: wrap; gap: 8px; }
.colours button {
  width: 28px; height: 28px; border-radius: 50%; cursor: pointer; padding: 0;
  border: 2px solid transparent; box-shadow: 0 0 0 1px var(--line-2);
}
.colours button[aria-pressed="true"] { border-color: var(--panel); box-shadow: 0 0 0 2px var(--brand); }

.range { width: 100%; accent-color: var(--brand); }

.toolbar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.toolbar .count { font-size: 13.5px; color: var(--muted); }
.toolbar .spacer { flex: 1; }
.select-sm { width: auto; padding: 7px 11px; font-size: 13px; }

.pills { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 16px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600;
  padding: 5px 11px; border-radius: 999px; background: var(--brand-soft); color: var(--brand);
}
.pill button { border: 0; background: none; cursor: pointer; color: inherit;
  font-size: 14px; line-height: 1; padding: 0; }

.pager { display: flex; gap: 6px; justify-content: center; margin-top: 32px; }
.pager button {
  font: inherit; font-size: 13.5px; font-weight: 600; cursor: pointer;
  min-width: 38px; height: 38px; border-radius: 9px;
  border: 1px solid var(--line); background: var(--panel); color: var(--ink);
}
.pager button:hover { background: var(--bg); }
.pager button[aria-current="page"] { background: var(--brand); border-color: transparent; color: var(--brand-ink); }

/* ============================================================ product page */
.pdp { display: grid; grid-template-columns: 1.08fr .92fr; gap: 40px; align-items: start; padding-bottom: 12px; }

.gallery { display: grid; grid-template-columns: 74px 1fr; gap: 12px; }
.thumbs { display: grid; gap: 10px; align-content: start; }
.thumb {
  aspect-ratio: 1; border-radius: 11px; cursor: pointer; padding: 0; overflow: hidden;
  border: 1px solid var(--line); background: var(--bg); display: grid; place-items: center;
}
.thumb svg { width: 62%; height: 62%; }
.thumb[aria-pressed="true"] { border-color: var(--brand); box-shadow: 0 0 0 2px var(--brand-soft); }
.stage {
  aspect-ratio: 1; border-radius: var(--radius); border: 1px solid var(--line);
  background: var(--bg); display: grid; place-items: center; overflow: hidden;
}
.stage svg { width: 66%; height: 66%; }

.pdp h1 { font-size: 27px; line-height: 1.2; letter-spacing: -.02em; margin: 6px 0 8px; }
.pdp .sub { font-size: 13.5px; color: var(--muted); margin: 0 0 16px; }
.big-price { display: flex; align-items: baseline; gap: 11px; margin: 16px 0 6px; }
.big-price b { font-size: 30px; letter-spacing: -.02em; }
.big-price s { font-size: 16px; color: var(--muted); }
.vat { font-size: 12.5px; color: var(--muted); }

.opt { margin: 20px 0; }
.opt .lbl { display: flex; align-items: baseline; gap: 8px; margin-bottom: 9px; font-size: 13px; font-weight: 700; }
.opt .lbl span { font-weight: 500; color: var(--muted); }

.qty { display: inline-flex; align-items: stretch; border: 1px solid var(--line); border-radius: var(--radius-s); overflow: hidden; }
.qty button { width: 38px; border: 0; background: var(--panel); color: var(--muted);
  font-size: 17px; line-height: 1; cursor: pointer; }
.qty button:hover { background: var(--bg); color: var(--ink); }
.qty input { width: 52px; text-align: center; border: 0; border-inline: 1px solid var(--line);
  background: var(--panel); color: var(--ink); font: inherit; font-variant-numeric: tabular-nums; }

.buy-row { display: flex; gap: 10px; margin: 22px 0 16px; flex-wrap: wrap; }
.buy-row .btn { flex: 1; min-width: 150px; justify-content: center; }

.assure { display: grid; gap: 11px; padding: 16px 0; border-top: 1px solid var(--line); }
/* Direct children only — the inner wrapper holds the stacked title and note. */
.assure > div { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; }
.assure svg { width: 18px; height: 18px; color: var(--brand); flex: none; margin-top: 1px; }
.assure b { display: block; }
.assure span { color: var(--muted); font-size: 12.5px; }

.spec { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec th, .spec td { text-align: start; padding: 9px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec th { color: var(--muted); font-weight: 500; width: 38%; }

.review { display: grid; grid-template-columns: 42px 1fr; gap: 13px; padding: 16px 0;
  border-bottom: 1px solid var(--line); }
.review:last-child { border-bottom: 0; }
.review .av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand); font-weight: 700; font-size: 14px; }
.review .top { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin-bottom: 4px; }
.review .top b { font-size: 13.5px; }
.review .top time { font-size: 12px; color: var(--muted); margin-inline-start: auto; }
.review p { margin: 5px 0 0; font-size: 13.5px; line-height: 1.6; }

.score { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.score .big { font-size: 44px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.score .bars { flex: 1; min-width: 220px; display: grid; gap: 5px; }
.score .row { display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--muted); }
.score .track { flex: 1; height: 6px; border-radius: 3px; background: var(--line); overflow: hidden; }
.score .track i { display: block; height: 100%; background: #F59E0B; }

/* ============================================================ cart */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 26px; align-items: start; }

.line {
  display: grid; grid-template-columns: 92px 1fr auto; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.line:last-child { border-bottom: 0; }
.line .art { aspect-ratio: 1; border-radius: 11px; background: var(--bg);
  border: 1px solid var(--line); display: grid; place-items: center; }
.line .art svg { width: 60%; height: 60%; }
.line b { font-size: 14.5px; }
.line .meta { font-size: 12.5px; color: var(--muted); margin: 3px 0 10px; }
.line .tools { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.line .rm { border: 0; background: none; cursor: pointer; font: inherit; font-size: 12.5px;
  color: var(--muted); text-decoration: underline; padding: 0; }
.line .rm:hover { color: var(--bad); }
.line .amt { text-align: end; font-weight: 700; font-size: 15px; white-space: nowrap; }

.summary { position: sticky; top: 88px; }
.sum-row { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; padding: 7px 0; }
.sum-row.total { border-top: 1px solid var(--line); margin-top: 9px; padding-top: 13px;
  font-size: 17px; font-weight: 800; }
.sum-row .muted { color: var(--muted); }
.promo { display: flex; gap: 8px; margin: 14px 0 4px; }
.promo .input { flex: 1; }

.freebar { margin: 4px 0 14px; }
.freebar .track { height: 6px; border-radius: 3px; background: var(--line); overflow: hidden; }
.freebar .track i { display: block; height: 100%; background: var(--ok); }
.freebar p { margin: 7px 0 0; font-size: 12.5px; color: var(--muted); }

/* ============================================================ checkout */
.co-layout { display: grid; grid-template-columns: 1fr 360px; gap: 30px; align-items: start; }
.co-steps { display: flex; gap: 0; margin: 18px 0 26px; flex-wrap: wrap; }
.co-step { display: flex; align-items: center; gap: 9px; padding-inline-end: 26px; position: relative; }
.co-step:not(:last-child)::after { content: ""; position: absolute; inset-inline-end: 11px; top: 50%;
  width: 12px; height: 1px; background: var(--line-2); }
.co-step i { width: 24px; height: 24px; border-radius: 50%; flex: none; font-style: normal;
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
  background: var(--line); color: var(--muted); }
.co-step.on i { background: var(--brand); color: var(--brand-ink); }
.co-step.done i { background: var(--ok); color: #fff; }
.co-step span { font-size: 13px; font-weight: 600; color: var(--muted); }
.co-step.on span { color: var(--ink); }

.choice {
  display: grid; grid-template-columns: auto 1fr auto; gap: 13px; align-items: center;
  padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-s);
  cursor: pointer; margin-bottom: 9px; transition: border-color .12s, background .12s;
}
.choice:hover { background: var(--bg); }
.choice:has(input:checked) { border-color: var(--brand); background: var(--brand-soft); }
.choice input { accent-color: var(--brand); width: 17px; height: 17px; }
.choice b { display: block; font-size: 13.5px; }
.choice span { font-size: 12.5px; color: var(--muted); }
.choice .cost { font-weight: 700; font-size: 14px; white-space: nowrap; }

.mini-line { display: flex; gap: 12px; align-items: center; padding: 9px 0; font-size: 13px; }
.mini-line .art { width: 46px; height: 46px; border-radius: 9px; background: var(--bg);
  border: 1px solid var(--line); display: grid; place-items: center; flex: none; }
.mini-line .art svg { width: 62%; height: 62%; }
.mini-line .n { flex: 1; }
.mini-line .n span { display: block; color: var(--muted); font-size: 12px; }

/* ============================================================ confirmation */
.done { text-align: center; padding: 46px 0 30px; }
.done .tick {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--ok-soft); color: var(--ok); display: grid; place-items: center;
}
.done .tick svg { width: 32px; height: 32px; }
.done h1 { font-size: 28px; letter-spacing: -.02em; margin: 0 0 8px; }
.done p { color: var(--muted); margin: 0 auto; max-width: 48ch; }

.track-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 8px 0 4px; }
.track-rail i { height: 6px; border-radius: 3px; background: var(--line); }
.track-rail i.on { background: var(--ok); }
.track-rail i.now { background: var(--brand); }
.track-lbl { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  font-size: 11.5px; color: var(--muted); }

/* ============================================================ account */
.acct-layout { display: grid; grid-template-columns: 224px 1fr; gap: 26px; align-items: start; }
.acct-nav { display: grid; gap: 2px; }
.acct-nav a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: var(--radius-s); font-size: 13.5px; font-weight: 600; color: var(--muted);
}
.acct-nav a svg { width: 17px; height: 17px; }
.acct-nav a:hover { background: var(--bg); color: var(--ink); }
.acct-nav a.on { background: var(--brand-soft); color: var(--brand); }

.ord-card { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; }
.ord-top { display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
  padding: 14px 18px; background: var(--bg); border-bottom: 1px solid var(--line); font-size: 13px; }
.ord-top .k { color: var(--muted); font-size: 11.5px; display: block; }
.ord-top .spacer { flex: 1; }
.ord-body { padding: 6px 18px 16px; }

/* ============================================================ footer */
.shop-foot { border-top: 1px solid var(--line); background: var(--panel); margin-top: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 30px; padding: 40px 0 28px; }
.foot-grid h5 { margin: 0 0 12px; font-size: 12px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: var(--muted); }
.foot-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.foot-grid a { font-size: 13.5px; color: var(--muted); }
.foot-grid a:hover { color: var(--ink); }
.foot-grid p { font-size: 13.5px; color: var(--muted); margin: 10px 0 0; max-width: 34ch; }
.pay-row { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 14px; }
.pay-row i {
  font-style: normal; font-size: 10px; font-weight: 800; letter-spacing: .03em;
  padding: 5px 8px; border-radius: 5px; border: 1px solid var(--line);
  background: var(--bg); color: var(--muted);
}
.foot-base { border-top: 1px solid var(--line); padding: 16px 0; display: flex; gap: 14px;
  flex-wrap: wrap; align-items: center; font-size: 12.5px; color: var(--muted); }
.foot-base .spacer { flex: 1; }

/* ============================================================ responsive */
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; gap: 24px; padding: 34px 0; }
  .hero h1 { font-size: 32px; }
  .hero-art { order: -1; }
  .pdp { grid-template-columns: 1fr; gap: 26px; }
  .cat-layout, .cart-layout, .co-layout, .acct-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .pgrid, .pgrid.g3 { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 700px) {
  .wrap { padding: 0 16px; }
  .shop-bar { height: 60px; gap: 10px; }
  .shop-search { display: none; }
  .pgrid, .pgrid.g3 { grid-template-columns: repeat(2, 1fr); }
  .line { grid-template-columns: 68px 1fr; }
  .line .amt { grid-column: 2; text-align: start; }
  .gallery { grid-template-columns: 1fr; }
  .thumbs { grid-auto-flow: column; grid-auto-columns: 62px; overflow-x: auto; }
  .track-lbl { font-size: 10.5px; }
}
@media (max-width: 460px) {
  .tiles { grid-template-columns: 1fr; }
  .hero h1 { font-size: 27px; }
  /* dar ekranda logo + ikonlar tek satıra sığsın */
  .shop-bar { gap: 8px; min-width: 0; }
  .shop-logo { font-size: 14.5px; gap: 8px; min-width: 0; }
  .shop-logo span { width: 26px; height: 26px; border-radius: 8px; font-size: 12.5px; }
  .shop-acts { gap: 0; }
  .iconbtn { width: 34px; height: 34px; }
  .iconbtn svg { width: 18px; height: 18px; }
}
@media (max-width: 380px) {
  .wrap { padding: 0 12px; }
  .shop-logo { font-size: 13px; }
  .shop-logo span { width: 24px; height: 24px; font-size: 11.5px; }
  .iconbtn { width: 31px; height: 31px; }
}
