html.jung-side-cart-open {
  overflow: hidden;
}

.jung-side-cart {
  /* Width follows the site grid: 3 columns + 3 gutters. */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  width: calc(var(--grid-col) * 3 + var(--grid-unit) * 4);
  max-width: 100%;
  padding: 0 var(--grid-unit);
  padding-top: calc(var(--grid-unit) + var(--fs-menu) + (var(--grid-unit) * 1.61));
  background: #fff;
  z-index: 1;
  display: none;
  flex-direction: column;
  font-family: var(--font-body, Helvetica, Arial, sans-serif);
  color: #000;
}

/* Monochrome enforcement — neutralize any global button colors/borders. */
.jung-side-cart button {
  -webkit-appearance: none;
  appearance: none;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  color: #000 !important;
  font-family: var(--font-body);
  font-size: var(--fs-menu-d);
  padding: 0;
}

html.jung-side-cart-open .jung-side-cart {
  display: flex;
}

.jung-side-cart__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}

.jung-side-cart__items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jung-side-cart__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid #000;
}

.jung-side-cart__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.jung-side-cart__name {
  font-size: var(--fs-menu-d);
  font-weight: 900;
  line-height: 1.16;
}

.jung-side-cart__option {
  font-size: 12px;
  font-weight: 700;
}

.jung-side-cart__price {
  font-size: 12px;
}

.jung-side-cart__qty {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.jung-side-cart__qty-btn {
  font-size: var(--fs-menu-d);
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.jung-side-cart__qty-value {
  min-width: 18px;
  text-align: center;
  font-size: var(--fs-menu-d);
}

.jung-side-cart__empty {
  padding: 24px 0;
  font-size: 14px;
}

.jung-side-cart__footer {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid #000;
}

.jung-side-cart__total {
  font-weight: 900;
  font-size: var(--fs-menu-d);
  margin-bottom: 16px;
}

.jung-side-cart__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 32px;
  padding: 0 16px;
  background: #000;
  color: #fff;
  text-align: center;
  font-weight: 900;
  font-size: 12px;
  text-decoration: none;
}

.jung-side-cart__checkout:hover,
.jung-side-cart__checkout:focus {
  background: #222;
  color: #fff;
}

@media (max-width: 1366px) {
  .jung-side-cart {
    padding-top: 91px;
  }
}
@media (max-width: 767px) {
  .jung-side-cart {
    width: min(420px, 100%);
    padding: 0 var(--grid-unit, 20px);
  }
}
