/* Shared cart + bank-transfer popup (Vaahaka + Fonts) */
#cartPopup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  z-index: 2000;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  font-family: "Faruma", Arial, sans-serif;
}

#popupCartItems {
  list-style: none;
  padding: 0;
  margin: 0;
}

#popupCartItems li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

#popupCartItems .cart-item-name {
  flex: 1;
  text-align: right;
}

#popupCartTotal {
  font-weight: bold;
  color: #e63946;
  margin-top: 10px;
  text-align: center;
}

#checkoutForm {
  margin-top: 15px;
  text-align: left;
  direction: ltr;
}

#checkoutForm label {
  display: block;
  margin: 6px 0 4px;
  font-size: 14px;
}

#checkoutForm input {
  width: 100%;
  padding: 6px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: "Faruma", Arial, sans-serif;
}

#checkoutCart {
  background: green;
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 5px;
  width: 100%;
  font-size: 16px;
  font-family: "Faruma", Arial, sans-serif;
}

#closeCart {
  background: #165493;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 12px;
  font-size: 14px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-family: "Faruma", Arial, sans-serif;
}

#paymentPopup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 24px 20px;
  width: 400px;
  max-width: 92%;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  font-family: "Faruma", Arial, sans-serif;
  z-index: 3000;
}

#paymentPopupTitle {
  color: #165493;
  font-size: 20px;
  margin: 0 0 14px;
}

#paymentPopup .bank-details {
  text-align: right;
  direction: rtl;
  margin-bottom: 12px;
}

#paymentPopup .bank-dl {
  margin: 0;
  font-size: 14px;
}

#paymentPopup .bank-dl dt {
  color: #666;
  font-size: 12px;
  margin-top: 8px;
}

#paymentPopup .bank-dl dd {
  margin: 2px 0 0;
  font-weight: bold;
  color: #111;
}

#paymentPopup .copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  direction: ltr;
}

#paymentPopup .copy-btn {
  flex-shrink: 0;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 12px;
  cursor: pointer;
  font-family: "Faruma", Arial, sans-serif;
}

#paymentPopup .order-ref {
  font-size: 13px;
  color: #b45309;
  font-weight: bold;
  margin: 10px 0;
  line-height: 1.5;
}

#paymentPopup .payment-note {
  font-size: 13px;
  color: #444;
  font-weight: normal;
  line-height: 1.6;
  margin-bottom: 14px;
}

#paymentPopup .whatsapp-btn {
  display: inline-block;
  margin: 8px 0 12px;
  background: #25D366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  font-family: "Faruma", Arial, sans-serif;
}

#closePaymentPopup {
  background: #165493;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 12px;
  font-family: "Faruma", Arial, sans-serif;
}

.cart-box {
  background: linear-gradient(135deg, #58A6FF, #1f6feb);
  color: #fff;
  font-family: "Faruma", Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 4px;
}
