body {
  font-family: "Montserrat", sans-serif;
}

.green-gradient {
  background: rgb(29, 125, 53);
  background: linear-gradient(
    99deg,
    rgba(29, 125, 53, 1) 0%,
    rgba(82, 199, 111, 1) 100%
  );
}
.btn-success {
  background: rgb(35, 179, 35);
  border-color: rgb(35, 179, 35);
}

.offer-price {
  color: rgb(35, 179, 35);
}

.border-out-dashed {
  outline: 2px dashed #1b1a1a;
  outline-offset: -10px;
}

.feature li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
}
.feature li span {
  display: block;
  margin-left: 5px;
}

.form-check-input:checked[type="radio"] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='2' fill='%230d6efd'/%3E%3C/svg%3E");
}

.theme-bg {
  background-color: #1cb08f;
}

.theme-bg-light {
  background-color: #33c0a1;
}

body.theme-bg {
  background-color: #1cb08f;
}

.per_off {
  background-color: red;
  padding: 0 5px;
  margin-left: 5px;
  font-weight: 600;
  color: #fff;
}

.gst_price h6 {
  font-size: 26px;
}

.gst_price small {
  font-size: 18px;
  color: grey;
}

.special_offer {
  font-size: 15px;
}

.offer_price {
  font-size: 15px;
}

@media (min-width: 320px) and (max-width: 480px) {
  .special_offer {
    font-size: 12px;
  }
  .offer_price {
    font-size: 13px;
    line-height: 1.3;
  }
  .per_off {
    font-size: 12px;
  }
  .gst_price h6 {
    font-size: 12px;
    line-height: 0.8;
  }

  .gst_price small {
    font-size: 10px;
  }
  .special_offer_mob {
    font-size: 15px;
  }
  .price_label {
    width: 55px;
  }
}

.fs_small {
  font-size: 12px;
}

.fs_mid {
  font-size: 14px;
  font-weight: 500;
}

.text-bubble {
  background-color: #4d5f7a; /* Dark blue background */
  color: white; /* Text color */
  padding: 5px 10px;
  border-radius: 7px;
  position: relative;
  display: inline-block;
  font-size: 14px;
}

/* Bubble tail */
.text-bubble::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 10%;
  transform: translateX(-50%) translateY(100%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #4d5f7a;
}

/* Payment page specific styles */
.input-error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 1px #dc2626;
}

.input-success {
  border-color: #059669 !important;
  box-shadow: 0 0 0 1px #059669;
}

/* Mobile number field specific styling */
.flex.input-error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 1px #dc2626;
}

.flex.input-success {
  border-color: #059669 !important;
  box-shadow: 0 0 0 1px #059669;
}

.error-message {
  color: #dc2626;
  font-size: 14px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.error-message::before {
  content: "⚠";
  font-size: 12px;
}

.step-active {
  border-bottom: 2px solid #0A66C2;
  color: #0A66C2;
}

.step-inactive {
  border-bottom: 2px solid transparent;
  color: #6b7280;
}

.loading-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.pulse-animation {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

/* Form field focus states */
.form-input:focus {
  outline: none;
  border-color: #0A66C2;
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.1);
}

/* Button hover effects */
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .step-button {
    font-size: 12px;
    padding: 8px 12px;
  }
  
  .error-message {
    font-size: 12px;
  }
}
