.elementor-688 .elementor-element.elementor-element-ebb52bd{--display:flex;}.elementor-688 .elementor-element.elementor-element-844f4c8{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-e7c2d5c */body {
  background-color: #e7e7e7;
  font-family: 'Geist', sans-serif;
  margin: 0;
  padding: 0;
}

.checkout-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.checkout-left {
  width: 400px;
}

.checkout-left h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #0f172a;
}

.donation-box {
  background: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.donation-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 20px;
  border-bottom: 8px solid #eee;
}

.donation-item:last-child {
  border-bottom: none;
}

.title {
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
}

.subtitle {
  font-size: 12px;
  color: #aaa;
  margin-top: 2px;
}

.item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.amount {
  font-weight: 600;
  font-size: 20px;
  color: #0f172a;
}

.delete-btn {
  background: none;
  border: none;
  color: #666;
  font-size: 14px;
  cursor: pointer;
}

.summary-line {
  margin-top: 30px;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  color: #333;
}

.summary-line.total {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #ccc;
  font-weight: 600;
  font-size: 20px;
}

.checkout-divider {
  width: 1px;
  background: #ccc;
  height: 100%;
  min-height: 500px;
}

/* RIGHT SIDE - Payment Form */
.checkout-right {
  width: 450px;
  background: #F8F8F8;
  padding: 30px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.checkout-right h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #0f172a;
}

.checkout-right label,
.card-info-label {
  display: block;
  font-size: 14px;
  margin-top: 25px;
  margin-bottom: 8px;
  color: #747474;
}

.checkout-right input,
.checkout-right select {
  width: 100%;
  padding: 12px;
  border: none;
  font-size: 14px;
  background: #fff;
  border-radius: 4px;
  font-family: 'Geist', sans-serif;
}

.card-details-row {
  display: flex;
  margin-top: 10px;
  gap: 10px;
}

.card-details-row input {
  flex: 1;
}

.pay-button {
  width: 30%;
  margin-top: 25px;
  padding: 14px;
  background: #e2a834;
  border: none;
  color: white;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
}

.pay-button:hover {
  background: #c5922e;
}

.secure-text {
  font-size: 13px;
  text-align: center;
  margin-top: 14px;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .checkout-wrapper {
    gap: 40px;
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .checkout-wrapper {
    flex-direction: column;
    align-items: stretch;
    padding: 30px 20px;
  }

  .checkout-left,
  .checkout-right {
    width: 100%;
  }

  .checkout-divider {
    display: none;
  }

  .checkout-right {
    margin-top: 40px;
    padding: 25px;
  }

  .pay-button {
    font-size: 15px;
    padding: 12px;
  }

  .secure-text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .donation-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .summary-line {
    font-size: 14px;
  }

  .summary-line.total {
    font-size: 15px;
  }

  .checkout-right input,
  .checkout-right select {
    font-size: 13px;
    padding: 10px;
  }

  .card-details-row {
    flex-direction: column;
  }

  .card-details-row input {
    width: 100%;
  }
}/* End custom CSS */