/* Footer Section */
.payment-page-footer {
  background: white;
  padding: 20px 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  /* box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1); */
  position: sticky;
  bottom: 0;
  z-index: 100;
}

.footer-clear-btn {
  padding: 12px 32px;
  border: 2px solid #ccc;
  background: white;
  color: #666;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-submit-btn {
  padding: 12px 48px;
  border: none;
  background: #35659E;
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  /* box-shadow: 0 4px 12px rgba(53, 101, 158, 0.3); */
}

/* Responsive Design */
@media (max-width: 768px) {
  .payment-page-footer {
    padding: 16px 20px;
  }

  .footer-clear-btn,
  .footer-submit-btn {
    padding: 10px 24px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .payment-page-footer {
    justify-content: space-between;
  }

  .footer-clear-btn,
  .footer-submit-btn {
    flex: 1;
    padding: 12px 16px;
  }
}
