.wc-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  display: none;
  z-index: 99999;
}

.wc-cart-modal {
  background: #fff;
  max-width: 1100px;
  margin: 4% auto;
  padding: 25px;
  display: flex;
  gap: 30px;
  position: relative;
}

.cart-left {
  width: 65%;
  max-height: 500px;
  overflow: auto;
}

.cart-right {
  width: 35%;
  border-left: 1px solid #eee;
  padding-left: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.qty-control button {
  width: 28px;
  height: 28px;
}

.qty-control input {
  width: 30%;
  text-align: center;
}

.checkout-btn {
  background: #a11d44;
  color: #fff;
  padding: 12px;
  display: block;
  text-align: center;
  margin-top: 15px;
}

.keep-shopping {
  border: 1px solid #a11d44;
  background: transparent;
  padding: 12px;
  width: 100%;
}

.qty-control {
  align-items: center;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.close-modal {
  height: 40px;
  width: 40px;
  font-size: 2.5rem;
}