@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(plex-sans-greek.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(plex-sans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(plex-sans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(serif-greek.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(serif-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(serif-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #f8f7f4;
  --bg-2: #f1efe9;
  --paper: #ffffff;
  --panel: #ffffff;
  --ink: #1a1917;
  --text: #1a1917;
  --muted: #6f6b64;
  --line: #e4e0d8;
  --accent: #1a1917;
  --accent-hover: #000;
  --color-text: #1a1917;
  --color-text-secondary: #6f6b64;
  --color-primary: #1a1917;
  --color-primary-hover: #000;
  --color-border: #e4e0d8;
  --color-green-leaf: #eceae4;
  --color-green-deep: #1a1917;
  --font-ui: 'IBM Plex Sans', Helvetica, Arial, sans-serif;
  --font-display: 'Source Serif 4', Georgia, serif;
  --header-h: 68px;
  --radius: 0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body:has(.header) { padding-top: var(--header-h); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

h1 { font-size: clamp(36px, 6vw, 64px); }
.hero-buy h1 { font-size: clamp(28px, 4.2vw, 40px); line-height: 1.12; max-width: 14ch; }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: 20px; }
p { margin-bottom: 0.9rem; color: var(--muted); }
a { color: var(--ink); text-decoration: none; border-bottom: 1px solid transparent; }
a:hover { border-bottom-color: currentColor; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.text-center { text-align: center; }
.text-sm { font-size: 13px; color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  appearance: none;
  width: 100%;
  transition: background 0.15s ease, color 0.15s ease;
}

@media (min-width: 768px) { .btn { width: auto; } }

.btn:hover { background: #000; color: #fff; border-bottom-color: var(--ink); }
.btn:disabled { opacity: 0.35; cursor: not-allowed; }

.btn-primary { background: var(--ink); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: rgba(248, 247, 244, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo { display: flex; align-items: center; gap: 8px; border: 0; }
.logo:hover { border: 0; color: var(--ink); }
.logo-mark { width: 18px; height: 18px; color: var(--ink); display: flex; }
.logo-mark svg { width: 100%; height: 100%; }
.logo-text {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav-desktop { display: none; }
@media (min-width: 960px) {
  .nav-desktop { display: block; }
  .nav-desktop ul { display: flex; gap: 28px; }
  .nav-desktop a {
    font-size: 13px;
    color: var(--muted);
    border: 0;
    letter-spacing: 0.02em;
  }
  .nav-desktop a:hover { color: var(--ink); }
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-back {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 0;
}
.header-back:hover { color: var(--ink); }

.bag-link,
.cart-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border: 0;
  background: none;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
  font-family: inherit;
}

.bag-link:hover,
.cart-icon:hover { border: 0; color: var(--ink); }

.cart-count {
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  border: 1px solid var(--ink);
}

.cart-count.is-empty { opacity: 0.35; }

.menu-toggle {
  width: 36px;
  height: 36px;
  background: none;
  border: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.menu-toggle span { display: block; width: 18px; height: 1px; background: var(--ink); }
@media (min-width: 960px) { .menu-toggle { display: none; } }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  z-index: 90;
  padding: 12px 28px 24px;
}
.mobile-menu.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.hero { padding: 48px 0 72px; }
.hero-layout { display: grid; gap: 40px; }
@media (min-width: 960px) {
  .hero-layout { grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: center; }
}

.gallery-main {
  background: var(--bg-2);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-main img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  background: var(--bg-2);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.gallery-thumbs button {
  border: 1px solid transparent;
  background: var(--bg-2);
  padding: 0;
  cursor: pointer;
  height: 68px;
  overflow: hidden;
}
.gallery-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs button.is-active { border-color: var(--ink); }

.kicker {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.hero-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.hero-sku { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.hero-copy { font-size: 17px; max-width: 460px; }

.spec-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; }
.spec-chips span {
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.price-row { display: flex; align-items: baseline; gap: 14px; margin: 8px 0 4px; }
.price-now { font-family: var(--font-display); font-size: 34px; }
.price-was { color: var(--muted); text-decoration: line-through; }
.price-note { font-size: 13px; margin-bottom: 22px; }

.buy-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.qty-box, .quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--ink);
  height: 48px;
}
.qty-box button, .qty-btn {
  width: 42px;
  height: 100%;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--ink);
}
.qty-box input, .qty-input {
  width: 40px;
  border: 0;
  text-align: center;
  font: inherit;
  background: transparent;
  color: var(--ink);
}
.buy-row .btn { height: 48px; flex: 1; }

.hero-assurances, .feature-list { display: grid; gap: 10px; }
.hero-assurances li, .feature-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.hero-assurances svg, .feature-list svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 4px;
}

.stat-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-bar .container { display: grid; grid-template-columns: 1fr 1fr; }
@media (min-width: 800px) { .stat-bar .container { grid-template-columns: repeat(4, 1fr); } }
.stat-item { padding: 28px 0; }
.stat-item strong { display: block; font-family: var(--font-display); font-size: 26px; font-weight: 500; }
.stat-item span { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

section { padding: 80px 0; }
.section-ink { background: var(--paper); }
.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.section-header { margin-bottom: 40px; max-width: 640px; }

.tech-grid, .grid-2, .grid-3 { display: grid; gap: 24px; }
@media (min-width: 800px) {
  .tech-grid, .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.tech-card, .card {
  padding: 8px 0 24px;
  border-top: 1px solid var(--line);
}
.tech-card .num { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.tech-card p, .card p:last-child { margin-bottom: 0; }

.target-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 800px) { .target-grid { grid-template-columns: repeat(4, 1fr); } }
.target-item { padding: 28px 20px 28px 0; border-bottom: 1px solid var(--line); }
.target-item p { margin: 0; font-size: 14px; }

.folk-grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 800px) {
  .folk-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.folk-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--bg-2);
  margin-bottom: 16px;
}
.folk-card h3 { margin-bottom: 8px; }
.folk-card p { margin: 0; font-size: 14px; }

.split { display: grid; gap: 36px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } }
.split img { width: 100%; height: 380px; object-fit: cover; background: var(--bg-2); }

.steps { border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 64px 1fr; border-bottom: 1px solid var(--line); }
.step-n { font-family: var(--font-display); font-size: 22px; padding: 22px 0; color: var(--ink); }
.step-body { padding: 22px 0; }
.step-body p { margin: 0; }

.places { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.place { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }

.tabs { margin-top: 8px; }
.tab-buttons { display: flex; flex-wrap: wrap; gap: 0; border-bottom: 1px solid var(--line); }
.tab-btn {
  background: none;
  border: 0;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  padding: 12px 16px 12px 0;
  margin-right: 20px;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
}
.tab-btn.active { color: var(--ink); border-bottom-color: var(--ink); }
.tab-content { display: none; padding: 28px 0; }
.tab-content.active { display: block; }
.product-details-list li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.product-details-list li span:first-child { color: var(--muted); }
.tab-content ol { padding-left: 18px; color: var(--muted); }
.tab-content ol li { margin-bottom: 8px; }

.accordion { border-bottom: 1px solid var(--line); }
.accordion:first-of-type { border-top: 1px solid var(--line); }
.accordion-header {
  width: 100%;
  background: none;
  border: 0;
  font: inherit;
  font-size: 17px;
  text-align: left;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--ink);
}
.accordion-icon { width: 16px; height: 16px; flex-shrink: 0; }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.accordion-content-inner { padding: 0 0 18px; color: var(--muted); }

.disclaimer-box { border-top: 1px solid var(--line); padding-top: 24px; }
.disclaimer-list { columns: 1; }
@media (min-width: 800px) { .disclaimer-list { columns: 2; gap: 40px; } }
.disclaimer-list li { font-size: 13px; color: var(--muted); padding: 6px 0; break-inside: avoid; }

.footer { border-top: 1px solid var(--line); padding: 56px 0 32px; background: var(--bg); }
.footer-grid { display: grid; gap: 32px; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-col h4 { font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.footer-logo { font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--muted); font-size: 14px; border: 0; }
.footer-links a:hover { color: var(--ink); }
.footer-contact li { display: flex; gap: 8px; align-items: flex-start; color: var(--muted); font-size: 14px; margin-bottom: 10px; }
.footer-contact svg { flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: var(--muted); border: 0; }
.footer-imprint { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line); }
.footer-imprint p, .footer-bottom p { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.footer-bottom { margin-top: 16px; }
.footer-simple { padding: 24px 0; }
.footer-simple .container {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.footer-simple p { margin-bottom: 4px; font-size: 12px; }

.page-header { padding: 48px 0 16px; border-bottom: 1px solid var(--line); }
.page-header .container {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.page-content { padding: 40px 0 80px; }
.page-content > .container {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.legal-content { max-width: none; }
.legal-content h2 { font-size: 24px; margin-top: 32px; }
.legal-content p, .legal-content ul, .legal-content ol { color: var(--muted); }
.legal-content ul, .legal-content ol { padding-left: 18px; margin-bottom: 16px; }
.legal-content ul { list-style: disc; }
.legal-content li { margin-bottom: 8px; }

.imprint-box { border-top: 1px solid var(--line); padding-top: 24px; margin: 24px 0; }
.imprint-list dt { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 16px; }
.imprint-list dt:first-child { margin-top: 0; }
.imprint-list dd { color: var(--ink); }

.form-group { margin-bottom: 18px; }
.form-label { display: block; margin-bottom: 6px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.form-control {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  border-radius: 0;
}
.form-control:focus { outline: none; border-bottom-color: var(--ink); }
textarea.form-control { min-height: 120px; resize: vertical; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-start; }
.checkbox-label { font-size: 13px; color: var(--muted); }

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  z-index: 80;
}
.sticky-cta.visible { display: flex; }
@media (min-width: 960px) { .sticky-cta.visible { display: none; } }
.sticky-cta-title { display: block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.sticky-cta-price { font-family: var(--font-display); }
.sticky-cta .btn { width: auto; }

.cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  max-width: 400px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 20px;
  z-index: 180;
  transform: translateY(120%);
  transition: transform 0.25s ease;
}
.cookie-banner.visible { transform: none; }
.cookie-text { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions .btn { width: auto; flex: 1; }

.toast-container { position: fixed; top: 84px; right: 20px; z-index: 300; display: grid; gap: 8px; }
.toast {
  background: var(--paper);
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 12px 14px;
  font-size: 13px;
  display: flex;
  gap: 8px;
  align-items: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.toast.show { opacity: 1; }
.toast svg { width: 14px; height: 14px; }

.fade-up { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* Dedicated bag / cart page */
.bag-page { background: var(--bg); min-height: 100vh; }
.bag-page .header { background: rgba(248, 247, 244, 0.96); }

.bag-stage {
  display: grid;
  min-height: calc(100vh - var(--header-h));
}
@media (min-width: 900px) {
  .bag-stage { grid-template-columns: 1.15fr 0.85fr; }
}

.bag-visual {
  background: #ece9e2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  min-height: 420px;
}
.bag-visual img {
  width: min(520px, 100%);
  height: auto;
  max-height: 72vh;
  object-fit: contain;
}

.bag-sheet {
  background: var(--paper);
  padding: 48px 36px 64px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
}
.bag-kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.bag-sheet h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 6px;
}
.bag-count { font-size: 14px; color: var(--muted); margin-bottom: 36px; }

.bag-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 240px;
}
.bag-empty h2 { font-size: 28px; }
.bag-empty a { display: inline-block; margin-top: 16px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; border-bottom: 1px solid var(--ink); }

.bag-line {
  display: grid;
  gap: 8px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.bag-line-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.bag-line-name { font-family: var(--font-display); font-size: 24px; }
.bag-line-price { font-size: 16px; }
.bag-line-meta { font-size: 13px; color: var(--muted); }
.bag-line-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.bag-remove {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
}
.bag-remove:hover { color: var(--ink); border-bottom-color: var(--ink); }

.bag-totals { margin-top: auto; padding-top: 28px; border-top: 1px solid var(--ink); }
.bag-totals div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--muted);
}
.bag-totals .bag-grand { color: var(--ink); font-size: 18px; margin-top: 14px; }
.bag-note { display: block; font-size: 12px; color: var(--muted); margin: 8px 0 22px; }
.bag-sheet .btn { width: 100%; }
.bag-continue {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 0;
}
.bag-continue:hover { color: var(--ink); }

.quantity-selector { height: 40px; }
.quantity-selector .qty-btn { width: 36px; }
.quantity-selector .qty-input { width: 36px; }
