/* CART CONTAINER */
.custom-cart {
  position: fixed;
  right: -400px;
  top: 0;
  width: 380px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  transition: 0.3s;
  box-shadow: -5px 0 20px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  font-family: "IBM Plex Sans", Sans-serif;
}
.cart-header h3 {
	font-family: "IBM Plex Sans", Sans-serif;
	font-size: 20px !important;
}
.custom-cart.open {
  right: 0;
	padding-top: 20px !important;
}

/* HEADER */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  font-size: 20px;
  font-weight: 700;
  border-bottom: 1px solid #eee;
}

.close-cart {
  cursor: pointer;
  font-size: 22px;
}

/* FREE SHIPPING */
.free-shipping {
  padding: 12px 15px;
  background: #f5f5f5;
}

.shipping-text {
  font-size: 14px;
  margin-bottom: 6px;
	font-family: "IBM Plex Sans", Sans-serif;
}

.progress-bar {
  height: 6px;
  background: #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  background: #6cdccc;
  width: 0%;
  transition: 0.4s;
}

/* 🔥 NEW: DISCOUNT BAR */
.discount-bar {
  background: #fcbabc;
  color: #000;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
	font-family: "IBM Plex Sans", Sans-serif;
}

/* SCROLLABLE CONTENT */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}

.woocommerce-mini-cart.cart_list.product_list_widget {
	overflow-y: scroll !important;
	padding-left: 20px !important;
	padding-right: 10px !important;
} 
.woocommerce-mini-cart__total.total {
	display: none !important;
}

/* 🔥 PRODUCT UI IMPROVED */
.woocommerce-mini-cart-item {
  display: flex !important;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.woocommerce-mini-cart-item img {
  width: 70px;
  border-radius: 10px;
}

.woocommerce-mini-cart-item a {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
}

.woocommerce-mini-cart-item .quantity {
  font-size: 14px;
  color: #555;
} 
/* REMOVE BUTTON */
.woocommerce-mini-cart-item .remove {
  color: red !important;
  font-size: 18px;
}

/* 🔥 REMOVE DEFAULT BUTTONS */
.woocommerce-mini-cart__buttons {
  display: none !important;
}

/* UPSELL BOX */
.upsell-box {
  background: #eaf5ee;
  padding: 18px;
  margin: 15px;
  border-radius: 14px;
}

.upsell-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.upsell-box ul {
  padding-left: 18px;
  margin-bottom: 10px;
	list-style: none !important;
}

.upsell-box button {
  width: 100%;
  background: #6CDCCC;
  color: #000;
  border: none;
  padding: 14px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

/* FOOTER */
.cart-footer {
  padding: 15px;
  border-top: 1px solid #eee;
  background: #fff;
}

.cart-footer h4 {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}

.checkout-btn {
  display: block;
  background: #6CDCCC;
  color: #000;
  text-align: center;
  padding: 16px;
  border-radius: 50px;
  margin-top: 10px;
  font-weight: 600;
  font-size: 18px;
}



/* 🔥 FINAL PRODUCT DESIGN */
/* .custom-mini-cart-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-cart-item {
  display: grid;
  grid-template-columns: 70px 1fr 25px;
  gap: 12px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.cart-img img {
  width: 70px;
  border-radius: 10px;
}

.cart-content h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.cart-content .price {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.cart-content .qty {
  font-size: 13px;
  color: #666;
}

.custom-cart-item .remove {
  color: red;
  font-size: 20px;
  text-decoration: none;
  text-align: right;
} */

.mini-qty{
display:flex;
align-items:center;
gap:5px;
margin-top:5px;
}

.mini-qty button{
width:25px;
height:25px;
border:1px solid #ddd;
background:#fff;
cursor:pointer;
}

.mini-qty input{
width:40px;
text-align:center;
border:1px solid #ddd;
}
.upsell-box a {
  color: #000 !important;
}