@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #f44e38;
  --secondary-color: #c22b17;
  --success-color: #059669;
  --error-color: #dc2626;
  --text-color: #000000;
  --background-color: #f3f4f6;
  --header-height: 80px;
  --footer-height: 60px;
}

.container-fluid {
  background-color: #f3f4f6;
}

.height-100-percent {
  min-height: 91vh;
  height: 100%;
}

@media (min-width: 768px) {
  #bmi-container {
    min-height: 750px;
  }
}

.material.woocommerce-page[data-form-style=default] input#coupon_code, input[type=date], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea {
  background-color: rgb(0 0 0 / 17%);
}

.card-body {
  position: relative;
  z-index: 2; /* Ensures content is above the overlay */
}

.form-check-input[type=radio], .form-check-input[type=checkbox] {
  border: 2px solid #000;
}

/* Hide all steps initially */
.form-step {
  display: none;
}

/* Show first step by default */
#step-1 {
  display: block;
}

/* Show active step */
.form-step.active {
  display: block !important;
}

/* Consultation badge */
.consultation-badge {
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  display: inline-block;
  margin: 1rem 0;
  font-weight: 600;
}

/* Time slots styling */
#available-times {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.75rem;
}

.time-slot-btn {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.2s ease;
}

.time-slot-btn:hover {
  background-color: #f3f4f6;
  border-color: var(--primary-color);
  transform: translateY(-1px);
}

.time-slot-btn.selected {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.time-slot-btn.unavailable {
  background-color: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
  border-color: #e5e7eb;
}

/* Override Bootstrap primary color */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-primary:disabled {
  background-color: #9ca3af;
  border-color: #9ca3af;
}

.form-label,
.form-check-label {
  font-size: 1rem !important;
  line-height: 20px !important;
}

p {
  font-size: 1rem !important;
  line-height: 1.5 !important;
  margin-bottom: 0rem !important;
}

.bmi-content {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  position: relative;
  z-index: 2;
}

.bmi-content .row {
  height: 100%;
  margin: 0;
}

.card {
  height: 100%;
}

.bmi-image-container {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.bmi-image {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

/* Mobile styles */
@media (max-width: 991.98px) {
  .bmi-content .row {
    height: auto;
  }

  .bmi-image {
    height: 400px;
    border-radius: 0;
    margin-bottom: 1rem;
  }
}
