#custom-cart {
  position: fixed;
  right: -600px;
  top: 0;
  width: 600px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  padding: 24px;
}

body.cart-open {
    overflow: hidden;
    touch-action: none;
    -webkit-overflow-scrolling: none;
}

#custom-cart.active {
  right: 0;
}

/* Overlay */
#cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 9998;
}

#cart-overlay.active {
  display: block;
}

/* Header */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 40px;
  padding-bottom: 32px;
  cursor: pointer;
}

.cart-header h2 {
  font-size: 48px;
  color: #2f1d13;
}

/* Items */
.cart-items {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.cart-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.cart-item-image {
  height: 134px !important;
}

.cart-item-image img {
  width: 96px;
  height: 134px;
  object-fit: cover;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-weight: 700;
  font-size: 18px;
  font-family: "Open Sans";
}

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

/* Quantity */
.qty-control {
  display: flex;
  border: 1px solid #6b6157;
  height: 59px;
}

.qty-control button {
  background: none;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 18px;
}

.qty-control input {
  width: 43px;
  text-align: center;
  border: none;
  font-size: 18px;
}

/* Remove */
.remove-item {
  font-size: 18px;
  color: #2f1d13;
  text-decoration: underline;
  cursor: pointer;
}

.cart-item-price {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  margin-left: auto;
}

.price-old {
  text-decoration: line-through;
  color: #94867a;
  font-size: 16px;
}

.price-sale {
  color: #2f1d13;
  font-weight: 400;
  font-size: 16px;
}

.price-normal {
  font-weight: 400;
  color: #2f1d13;
  font-weight: 400;
  font-size: 16px;
}

/* Footer */
.cart-footer {
  border-top: 1px solid #dacec4;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
}

.cart-footer .footer-title {
  font-size: 18px;
  font-weight: 700;
  font-family: "Open Sans";
  color: #2f1d13;
}

.cart-footer p {
  font-size: 16px;
  color: #6b6157;
  font-weight: 400;
}

.checkout-btn {
  display: block;
  background: #00277D;
  color: #fff !important;
  text-align: center;
  padding: 12px;
  height: 54px;
  text-decoration: none;
  font-weight: 600;
}

.img-payment-footer {
    text-align: center;
    margin-top: 6px;
}

/* RESPONSIVE */
@media (max-width: 980px) {
   
}

@media (max-width: 768px) {
    #custom-cart {
    width: 100vw;
    right: -100vw;
    padding: 16px;
  }
  .cart-item {
    flex-direction: column;
    align-items: center;
  }
  .cart-item-price {
    flex-direction: row;
    gap: 14px;
    align-self: start;
    margin-left: 0;
  }

}