.kristi-booking-wrapper {
  display: flex;
  max-width: 1000px;
  margin: 40px auto;
  border: 1px solid #ccc;
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.kristi-sidebar {
  background: #2f2f2f;
  color: #fff;
  width: 240px;
  padding: 30px 20px;
  text-align: center;
}

.kristi-sidebar .logo {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 25px;
}

.steps-list {
  list-style: none;
  padding: 0;
}

.steps-list li {
  padding: 12px 15px;
  margin: 6px 0;
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: 0.3s;
}

.steps-list li.active {
  border-left-color: #6c63ff;
  background: rgba(108,99,255,0.2);
}

.kristi-content {
  flex: 1;
  background: #fff;
  padding: 30px;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.service-card:hover,
.service-card.selected {
  border-color: #6c63ff;
  background: rgba(108,99,255,0.1);
}

.service-card.selected {
  box-shadow: 0 0 0 3px #6c63ff33;
}

.service-card .price {
  display: block;
  margin-top: 8px;
  font-weight: bold;
  color: #137c5b;
}

.service-card.full-width {
  grid-column: 1 / -1;
}

.service-card .full-desc {
  margin-top: 10px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.show-desc-link {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background: #f0f0f0;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  transition: background 0.3s ease;
}

.show-desc-link:hover {
  background: #e0e0e0;
}

.input {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.actions {
  margin-top: 25px;
  text-align: right;
}

.actions button {
  background: #6c63ff;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  margin-left: 10px;
  transition: 0.3s;
}

.actions button:hover {
  background: #554ee3;
}

@media (max-width: 768px) {
  .kristi-booking-wrapper {
    flex-direction: column;
  }

  .kristi-sidebar {
    width: 100%;
    padding: 20px;
  }

  .steps-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .steps-list li {
    flex: 1 1 auto;
    text-align: center;
  }

  .kristi-content {
    padding: 20px;
  }
}
