body {
  background-color: #f4f7f8;
  color: #333;
  padding: 20px;
}

.container {
  max-width: 600px;
  background: #fff;
  margin: 20px auto;
  padding: 30px 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.progress-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.progress-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.progress-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  right: -50%;
  width: 100%;
  height: 2px;
  background-color: #ccc;
  z-index: 1;
}

.progress-step.completed:not(:last-child)::after {
            background-color: #000000;
}

.step-circle {
  width: 30px;
  height: 30px;
  border: 2px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #999;
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
  transition: 0.3s;
}

.step-title {
  font-size: 0.9rem;
  color: #999;
}

.progress-step.active .step-circle {
  border-color: rgb(0, 0, 0);
  color: rgb(0, 0, 0);
}

.progress-step.completed .step-circle {
  background-color: rgb(0, 0, 0);
  border-color: rgb(0, 0, 0);
  color: #fff;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.input-group {
  display: flex;
  align-items: center;
  /* margin-bottom: 15px; */
  border: 1px solid #ccc;
  border-radius: 6px;
  /* padding: 10px; */
}

.input-group i {
  color: #25d366;
  margin-right: 10px;
  font-size: 30px;
  height: 45px;
  width: 45px;
  background: #25d36626;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #ccc;
}

.input-group span {
  margin-right: 5px;
}

.input-group input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  width: 100%;
}

.black-button {
  background-color: black;
  width: 100%;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  margin-top: 15px;
}

.black-button:hover {
  opacity: 0.8;
}

#verify-otp-section {
  display: none;
  margin-top: 15px;
}

#verify-otp-section input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

#status {
  margin-bottom: 15px;
  font-size: 16px;
  text-align: center;
  /* color: red; */
}

#resendBtn:disabled {
  background-color: #5a5a5a;
  cursor: not-allowed;
}

#phone-message,
#otp-message {
  font-size: 14px;
  margin-top: 5px;
}

.error {
  color: red;
  /* margin-top: 5px; */
}

.valid {
  color: green;
  /* margin-top: 5px; */
}
 .address-container {
  /* max-width: 640px;
            margin: 20px auto;
            padding: 20px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */

  margin: 20px auto;
  padding: 20px;
}

.address-container .address-form {
  width: 100%;
}

.address-container .form-group {
  margin-bottom: 10px;
}

.address-container .form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.address-container .half-width {
  flex: 1;
  margin-bottom: 0;
}

.address-container label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #999;
}

.address-container input[type="text"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.address-container input[type="text"]:focus {
  outline: none;
  border-color: #000;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.address-container .input-with-icon {
  position: relative;
}

.address-container .input-with-icon input {
  padding-right: 45px;
}

.address-container .success-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #28a745;
  font-weight: bold;
  font-size: 16px;
  background-color: #28a745;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.address-container .continue-btn {
  width: 100%;
  padding: 15px;
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.address-container .continue-btn:hover {
  background-color: #333333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.address-container .continue-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .address-container {
    margin: 5px;
    padding: 10px;
  }

  .address-container .form-row {
    flex-direction: column;
    gap: 0;
  }

  .address-container .half-width {
    margin-bottom: 10px;
  }

  .address-container .continue-btn {
    padding: 16px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .address-container {
    margin: 0px;
    padding: 8px;
  }

  .address-container input[type="text"] {
    padding: 10px 14px;
    font-size: 14px;
    /* Prevents zoom on iOS */
  }
}

.secure-badge {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 14px;
  margin-top: 20px;
}

.secure-badge i {
  margin-right: 8px;
  color: #4a90e2;
}

/* Payment methods styling */
.payment-options {
  margin-bottom: 20px;
}

.payment-method {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.payment-method:hover,
.payment-method.active {
  border-color: #4a90e2;
  background-color: #f8faff;
}

.payment-method input[type="radio"] {
  width: auto;
  margin-right: 10px;
}

.payment-details {
  display: none;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.payment-details.active {
  display: block;
}

/* QR code and bank details */
.bank-details {
  background-color: #fff;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  border: 1px solid #eee;
}

.bank-details p {
  margin-bottom: 3px;
}

.qr-container {
  text-align: center;
  margin: 0;
}

.qr-code {
  width: 200px;
  height: 200px;
  background-color: #f0f0f0;
  margin: 0 auto;
  border-radius: 10px;
}

.payment-proof {
  margin-top: 20px;
      background-color: #fff;
    padding: 15px;
    border-radius: 6px;
    /* margin-bottom: 20px; */
    border: 1px solid #d0cfcf;
}

.payment-proof label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 500;
  color: rgb(122, 122, 122);
}

.payment-proof input[type="text"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgb(206,206,206);
  border-radius: 6px;
  font-size: 14px;
  background-color: rgb(255, 255, 255);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.payment-proof input[type="text"]:focus {
  outline: none;
  border-color: #000;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.placeorder-btn {
  /* width: 100%; */
  /* padding: 15px; */
      padding: 10px 15px;
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  /* margin-top: 10px; */
}

.placeorder-btn:hover {
  background-color: #333333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.placeorder-btn:active {
  transform: translateY(0);
}

.place-order-row{
    position: fixed;
    bottom: -1px;
    padding: 10px 15px;
    /* width: 100%; */
    left: 0;
    right: 0;
    background: #ffffff;
    border: none;
    /* box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);*/
        display: flex;
    justify-content: space-between;
    align-items: center;
}