.custom-cart-wrapper {
  display: flex;
  gap: 48px;
  width: 100%;
  margin: 32px 0 80px 0;
}
@media (max-width:800px){
	.custom-cart-wrapper {
		flex-direction:column;
		padding:0 16px;
		 margin: 0px 0 40px 0;
		 gap: 24px;
	}
}
.cart-left {
  width: 100%;
  flex: 1;
}

.cart-left .cart-header-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid #e5e5e5;
}
.cart-left .cart-header-left h2 {
  margin: 0;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.cart-item .procut-info {
  display: flex;
}
@media (max-width:430px){
	.cart-item .procut-info {
		gap:16px;
	}
}
.cart-item .procut-info .cart-img img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 20px;
}
@media (max-width:430px){
.cart-item .procut-info .cart-img img {
	  width: 100px;
  height: 100px;
}
	}
.cart-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-details h3 {
  font-size: 18px;
  margin: 0;
}
.cart-details .price {
  font-weight: bold;
  margin: 0;
  color: #333;
}
.cart-details .variation {
  font-size: 14px;
  color: #666;
}
.cart-details .size-color {
  margin: 0;
}
.qty-form {
  display: flex;
  align-items: center;
  width: 100%;
  height: 56px;
  max-width: 175px;
  position: relative;
  transform: translateX(-8px);
}
.qty-form .qty-display {
  width: 100%;
  height: 100%;
  text-align: center;
  border: none !important;
  background: #f2f2f2 !important;
  border: none;
  border-radius: 50px !important;
  margin: 0 8px;
  color: #333333;
  font-weight: 600;
}
.qty-btn {
  color: #fff;
  border: none;
  border-radius: 50px !important;
  cursor: pointer;
  position: absolute;
  width: 32px !important;
  height: 32px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
}
.qty-btn.decrase {
  left: 20px;
}
.qty-btn.increase {
  right: 20px;
}
.update-btn {
  margin-left: 10px;
  padding: 5px 10px;
  background: #444;
  color: #fff;
  border-radius: 6px;
}
.remove {
  color: #2d6cff;
  font-size: 14px;
  font-weight: 600 !important;
  text-decoration: none;
  margin-top: 5px;
  display: inline-block;
}
.remove-all {
  float: right;
  font-size: 14px;
  font-weight: 600 !important;
  color: #2d6cff;
  text-decoration: none;
}

.order-summary-pannel {
  width: 400px;
}
@media (max-width:430px){
	.order-summary-pannel {
  		width: 100%;
	}
}
.order-summary {
  width: 100%;
  height: 100%;
  min-height: 400px;
  padding: 20px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: url("../images/order-summary-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.order-summary p {
  margin: 10px 0 0 0 !important;
}
.order-summary > div {
  border-top: 1px solid #fff;
}
.order-summary h3 {
  margin: 0;
  color: #fff;
}
.order-summary p {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}
.order-summary .total {
  font-weight: bold;
  font-size: 18px;
}
.checkout-btn {
  display: block;
  text-align: center;
  margin-top: 20px;
  background: #fff;
  color: #333 !important;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600 !important;
  transition: all 0.3s ease-in;
}
.checkout-btn:hover {
  background: #ffffffdf;
}
