/* پنل سبد خرید */
#cart-panel {
  position: fixed;
  top: 0;
  left: -100%;  /* به جای right */
  width: 350px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);  /* سایه از راست */
  transition: left 0.3s ease;
  padding: 20px;
  overflow-y: auto;
  direction: rtl;
}

#cart-panel.open {
  left: 0;
}
#close-cart{
  background: none;
  border: none;
  width: 25px;
  height: 25px;
  margin-left: 15px;
}
#close-cart image{
  background: none;
  border: none;
  width: 25px;
  height: 25px;
  margin-left: 15px;
}
/* هدر */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

/* آیتم سبد */
.cart-item {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  margin-bottom: 15px;
}

.cart-item-img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-left: 10px;
}

.cart-item h5 {
  font-size: 16px;
  margin-bottom: 5px;
}

.cart-item p {
  font-size: 14px;
  margin: 0;
}

.cart-item del {
  color: #67CCE0;
  font-size: 13px;
  margin-left: 5px;
}

.cart-item strong {
  color: #000;
  font-size: 15px;
}

/* دکمه حذف */
.cart-item .remove-btn {
  margin-right: auto;
  cursor: pointer;
  font-size: 20px;
}
.cart-item .remove-btn image{
    width: 5px;
    height: 5px;
}

/* فوتر سبد */
.cart-footer {
  border-top: 1px solid #67CCE0;
  padding-top: 15px;
  margin-top: 20px;
  text-align: right;
}

.cart-footer p {
  margin: 5px 0;
  font-size: 15px;
}

.cart-footer .checkout-btn {
  background: linear-gradient(to left, #5f8df1, #9e7ef2);
  color: #fff;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
}
