.obc-cart-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99999;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  background: #12120f;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
}

.obc-cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100000;
  width: min(420px, 100%);
  height: 100vh;
  background: #f5efe4;
  color: #12120f;
  transform: translateX(100%);
  transition: transform .25s ease;
  box-shadow: -20px 0 60px rgba(0, 0, 0, .22);
  display: flex;
  flex-direction: column;
  font-family: inherit;
}

.obc-cart-panel.is-open {
  transform: translateX(0);
}

.obc-cart-header,
.obc-cart-footer {
  padding: 22px;
  border-bottom: 1px solid rgba(18, 18, 15, .14);
}

.obc-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.obc-cart-header strong {
  font-size: 18px;
}

.obc-cart-close {
  border: 0;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
  color: #12120f;
}

.obc-cart-items {
  padding: 22px;
  overflow-y: auto;
}

.obc-cart-empty {
  opacity: .7;
  margin: 0;
}

.obc-cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(18, 18, 15, .12);
}

.obc-cart-item strong,
.obc-cart-total strong {
  display: block;
}

.obc-cart-remove {
  border: 0;
  background: transparent;
  color: #8a2d0e;
  cursor: pointer;
  font-weight: 700;
}

.obc-cart-footer {
  margin-top: auto;
  border-top: 1px solid rgba(18, 18, 15, .14);
  border-bottom: 0;
}

.obc-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.obc-cart-checkout,
.obc-cart-clear {
  width: 100%;
  margin-top: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

.obc-cart-checkout {
  background: #12120f;
  color: #fff;
}

.obc-cart-clear {
  background: rgba(18, 18, 15, .08);
  color: #12120f;
}

.obc-add-to-cart {
  cursor: pointer;
}
