#cart {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

#cart.cart-open {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100%;
  height: 100%;
  background: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

#cart.cart-open .cart-sidebar {
  transform: translateX(0);
}

.cart-sidebar-header {
  padding: 18px 20px;
  border-bottom: 1px solid #e5e5e5;
  background-color: #FE7D00;
  color: #ffffff;
}

.cart-sidebar-title {
  margin: 0;
  font-size: 1.2em;
  font-weight: 600;
}

.cart-sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 15px 20px;
}

.cart-sidebar-footer {
  padding: 15px 20px 20px 20px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

/* Prevent qty '+' button clipping on the right edge */
.cart-sidebar .ci-bottom {
  padding-right: 4px;
}

/* Mini-cart subtotal styling */
.cart-mini-subtotal {
  margin-top: 10px;
}

.cart-mini-note {
  margin-top: 4px;
}

#cartContents {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 15px;
}

@media (max-width: 767px) {
  .cart-sidebar {
    width: 100%;
  }
}
