/* Shared KeepCalm.org cart. Payment stays with Shopify; shopping stays here. */
.kc-shopcart__trigger,
.kc-shopcart__footer {
  font: inherit;
  cursor: pointer;
}
.kc-shopcart__trigger {
  height: 36px;
  padding: 7px 12px;
  border: 1px solid var(--wt-rule);
  border-radius: 999px;
  background: transparent;
  color: var(--wt-ink);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  white-space: nowrap;
}
.kc-shopcart__trigger:hover { border-color: currentColor; background: color-mix(in srgb, currentColor 8%, transparent); }
.kc-shopcart__trigger:focus-visible,
.kc-shopcart__footer:focus-visible,
.kc-shopcart button:focus-visible,
.kc-shopcart a:focus-visible { outline: 3px solid var(--wt-link); outline-offset: 2px; }
.kc-shopcart__icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.9; }
.kc-shopcart__count {
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--wt-btn-bg);
  color: var(--wt-btn-ink);
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  line-height: 1;
}
.kc-shopcart__footer {
  appearance: none;
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.kc-shopcart {
  position: fixed;
  inset: 0;
  z-index: 1600;
  pointer-events: none;
  visibility: hidden;
}
.kc-shopcart[data-open="true"] { pointer-events: auto; visibility: visible; }
.kc-shopcart__shade {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(9, 14, 11, .58);
  opacity: 0;
  transition: opacity 180ms ease;
}
.kc-shopcart[data-open="true"] .kc-shopcart__shade { opacity: 1; }
.kc-shopcart__drawer {
  position: absolute;
  inset-block: 0;
  inset-inline-end: 0;
  width: min(440px, 100%);
  background: var(--wt-surface, #fffdf9);
  color: var(--wt-ink, #26302b);
  border-inline-start: 1px solid var(--wt-rule, #e4ddcf);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  transform: translateX(102%);
  transition: transform 220ms ease;
  box-shadow: -18px 0 50px rgba(9, 14, 11, .18);
}
[dir="rtl"] .kc-shopcart__drawer { transform: translateX(-102%); }
.kc-shopcart[data-open="true"] .kc-shopcart__drawer { transform: translateX(0); }
.kc-shopcart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px 16px;
  border-bottom: 1px solid var(--wt-rule, #e4ddcf);
}
.kc-shopcart__head h2 { margin: 0; font: 800 clamp(1.35rem, 3vw, 1.75rem)/1.1 var(--wt-font-display, Montserrat, sans-serif); }
.kc-shopcart__close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--wt-rule, #e4ddcf);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
.kc-shopcart__body { overflow: auto; padding: 8px 24px 24px; }
.kc-shopcart__empty { margin: 32px 0; color: var(--wt-ink-soft, #5f6a60); line-height: 1.55; }
.kc-shopcart__line {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--wt-rule, #e4ddcf);
}
.kc-shopcart__line img { width: 86px; height: 104px; object-fit: cover; border-radius: 10px; background: #f0ede7; }
.kc-shopcart__linecopy { min-width: 0; }
.kc-shopcart__linecopy a { color: inherit; font-weight: 750; line-height: 1.28; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.kc-shopcart__variant { margin: 5px 0 8px; color: var(--wt-ink-soft, #5f6a60); font-size: .88rem; }
.kc-shopcart__linefoot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.kc-shopcart__qty { display: inline-flex; align-items: center; border: 1px solid var(--wt-rule, #e4ddcf); border-radius: 999px; overflow: hidden; }
.kc-shopcart__qty button { width: 34px; height: 34px; border: 0; background: transparent; color: inherit; font-size: 18px; cursor: pointer; }
.kc-shopcart__qty output { min-width: 24px; text-align: center; font-weight: 700; font-size: .9rem; }
.kc-shopcart__price { font-weight: 750; }
.kc-shopcart__remove { margin-top: 8px; border: 0; padding: 0; background: transparent; color: var(--wt-ink-soft, #5f6a60); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.kc-shopcart__foot { padding: 18px 24px max(22px, env(safe-area-inset-bottom)); border-top: 1px solid var(--wt-rule, #e4ddcf); background: var(--wt-surface, #fffdf9); }
.kc-shopcart__subtotal { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 14px; font-weight: 800; }
.kc-shopcart__note { margin: 0 0 14px; color: var(--wt-ink-soft, #5f6a60); font-size: .85rem; line-height: 1.45; }
.kc-shopcart__checkout,
.kc-shopcart__continue {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  font: 750 1rem var(--wt-font-ui, Montserrat, sans-serif);
  cursor: pointer;
}
.kc-shopcart__checkout { border: 1px solid var(--wt-btn-bg, #2c5f4e); background: var(--wt-btn-bg, #2c5f4e); color: var(--wt-btn-ink, #fffdf9); }
.kc-shopcart__checkout:hover { background: var(--wt-btn-bg-hover, #1f4638); }
.kc-shopcart__checkout:disabled { opacity: .55; cursor: default; }
.kc-shopcart__continue { margin-top: 9px; border: 1px solid var(--wt-rule, #e4ddcf); background: transparent; color: inherit; }
.kc-shopcart__error { margin: 10px 0 0; color: #9f3f28; font-size: .88rem; line-height: 1.4; }
body.kc-shopcart-open { overflow: hidden; }
@media (max-width: 720px) {
  .kc-shopcart__trigger { padding-inline: 9px; }
  .kc-shopcart__trigger-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .kc-shopcart__drawer { width: 100%; }
  .kc-shopcart__head, .kc-shopcart__body, .kc-shopcart__foot { padding-inline: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .kc-shopcart__shade, .kc-shopcart__drawer { transition: none; }
}
