/* Finnish Booking Form - Exact Figma Design */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.fbp-booking-form {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
  max-width: 900px;
  margin: 20px auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.fbp-header {
  background-color: #2d5a3d; /* Primary color */
  color: #fff;
  padding: 25px 30px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fbp-header h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
}

.fbp-navigation {
  background-color: #3a704d; /* Slightly darker primary */
  padding: 15px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fbp-nav-steps {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto; /* Enable horizontal scrolling for mobile */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
}

.fbp-nav-steps::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari, Opera */
}

.fbp-nav-step {
  flex: 1;
  text-align: center;
  padding: 10px 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap; /* Prevent wrapping */
}

.fbp-nav-step.active {
  color: #fff;
  font-weight: 600;
}

.fbp-nav-step.completed {
  color: #fff;
}

.fbp-nav-step.active::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}

.fbp-nav-step.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.fbp-content {
  padding: 30px;
}

.fbp-step-content {
  display: none;
}

.fbp-step-content.active {
  display: block;
  animation: fbpFadeIn 0.4s ease-out;
}

@keyframes fbpFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fbp-booking-container {
  display: flex;
  min-height: fit-content;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: transparent !important;
  position: relative;
}

/* Left Sidebar Navigation */
.fbp-sidebar-nav {
  border-radius: 15px;
  width: 300px;
  background: linear-gradient(135deg, #133d2f 0%, #1e3d2a 100%);
  padding: 2rem 1.5rem;
  position: absolute;
  top: 0px;
  z-index: 1000;
  overflow-y: auto;
}

.fbp-nav-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fbp-nav-step {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.fbp-nav-step.active {
  background: rgba(255, 140, 0, 0.2);
  border-color: #fad35e;
  color: #ffffff;
}

.fbp-nav-step.completed {
  background: rgba(76, 175, 80, 0.2);
  border-color: #4caf50;
}

.fbp-step-number {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  margin-right: 1rem;
  flex-shrink: 0;
}

.fbp-nav-step.active .fbp-step-number {
  background: #fad35e;
  color: #ffffff;
}

.fbp-nav-step.completed .fbp-step-number {
  background: #4caf50;
  color: #ffffff;
}

.fbp-step-text {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
}

/* Main Content Area */
.fbp-main-content {
  margin-left: 300px;
  background: white;
  flex: 1;
  padding: 2rem; /* Adjusted padding */
  min-height: 500px;
  max-height: max-content;
}

.fbp-step-content {
  display: none;
  max-width: 900px;
  margin: 0 auto;
}

.fbp-step-content.active {
  display: block;
  animation: fbpFadeIn 0.4s ease-out;
}

@keyframes fbpFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Step 1: Service Categories */
.fbp-service-categories {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.fbp-service-card {
  background: #133d2f; /* Restored dark green background */
  border-radius: 12px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff; /* Restored white text */
  border: 2px solid transparent;
  position: relative;
}

.fbp-service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 90, 61, 0.3);
  border-color: rgba(255, 140, 0, 0.3);
}

.fbp-service-card.selected {
  border-color: #fad35e;
  background: #3a6b4a;
}

.fbp-service-card-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fbp-service-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 140, 0, 0.2); /* Restored yellow background */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fad35e; /* Restored yellow icon color */
}

.fbp-service-title {
  color: white; /* Restored white text */
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.fbp-service-arrow {
  color: #ffffff; /* Restored white arrow color */
  font-size: 1.2rem;
  opacity: 0.8; /* Restored opacity */
}

/* Step 2: Service Selection */
.fbp-service-selection {
  background: #133d2f;
  border-radius: 16px;
  padding: 2rem;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.fbp-selected-category {
  display: flex;
  align-items: center;
  background: #133d2f;
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  font-weight: 500;
}

.fbp-selected-category i {
  margin-right: 0.75rem;
  color: #fad35e;
  font-size: 1.2rem;
}

.fbp-service-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fbp-service-option {
  display: flex;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  color: white;
}

.fbp-service-option:hover {
  border-color: #133d2f;
  box-shadow: 0 4px 12px rgba(45, 90, 61, 0.1);
}

.fbp-service-option input[type="radio"] {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  z-index: 2;
}

.fbp-service-option input[type="radio"]:checked + label {
  border-left: 4px solid white;
}

.fbp-service-option label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.5rem 2rem 0.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.fbp-option-content {
  flex: 1;
}

.fbp-option-content h4 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.fbp-service-read-more {
  color: #fad35e;
  font-size: 0.9rem;
  text-decoration: underline;
  cursor: pointer;
  display: inline-block;
  margin-top: 0.25rem;
}

.fbp-service-description,
.fbp-extra-description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
  padding: 0;
}

.fbp-service-description.expanded,
.fbp-extra-description.expanded {
  max-height: 200px;
  opacity: 1;
  padding: 10px 0;
}

.fbp-service-description p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #ffffffcf;
}

.fbp-option-price {
  display: flex;
  justify-content: end;
  gap: 1rem;
}

.fbp-option-price span {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

/* Step 3: Extras/Add-ons */
.fbp-additional-services {
  background: #133d2f;
  border-radius: 16px;
  padding: 2rem;
  color: #ffffff;
}
@media (min-width: 600px) {
  .fbp-additional-services {
    height: 650px !important;
    overflow-y: scroll !important;
  }
}

.fbp-service-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.fbp-service-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.fbp-service-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fbp-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fbp-service-details {
  flex: 1;
}

.fbp-service-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.fbp-service-price {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.fbp-read-more {
  color: #fad35e;
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
  display: inline-block;
}

.fbp-extra-description {
  max-height: 0;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 0.5rem;
}

.fbp-extra-description.expanded {
  max-height: 200px;
  padding: 1rem;
}

.fbp-extra-description p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

.fbp-quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 13px;
}

.fbp-quantity-button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1.1rem;
  font-weight: 600;
}

.fbp-quantity-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.fbp-quantity {
  font-size: 1rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

/* Step 4: Calendar & Time Selection - Exact Figma Design */
.fbp-calendar-section {
  background: linear-gradient(135deg, #133d2f 0%, #1e3d2a 100%);
  border-radius: 16px;
  padding: 0;
  color: #ffffff;
  overflow: hidden;
}

.fbp-calendar-top-summary {
  background: linear-gradient(135deg, #133d2f 0%, #1e3d2a 100%);
  padding: 2rem;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.fbp-summary-left {
  flex: 1;
}

.fbp-summary-right {
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid #fad35e;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  min-width: 200px;
  text-align: center;
}

.fbp-summary-service-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.fbp-summary-service-item {
  color: #ffffff;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fbp-summary-service-item .fbp-orange-dot {
  width: 8px;
  height: 8px;
  background: #fad35e;
  border-radius: 50%;
  flex-shrink: 0;
}

.fbp-summary-provider {
  color: #ffffff;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.fbp-summary-total-box h3 {
  color: #fad35e;
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
}

.fbp-summary-total-time {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.fbp-summary-total-price {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 500;
}

.fbp-calendar-main {
  padding: 2rem;
  background: linear-gradient(135deg, #133d2f 0%, #1e3d2a 100%);
}

.fbp-calendar-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 2rem;
}

.fbp-nav-arrow {
  background: rgba(255, 140, 0, 0.2);
  border: 1px solid #fad35e;
  color: #fad35e;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fbp-nav-arrow:hover {
  background: #fad35e;
  color: #000000;
}

.fbp-week-dates {
  display: flex;
  gap: 1rem;
}

.fbp-date-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 80px;
  position: relative;
}

.fbp-date-item:hover {
  background: rgba(255, 140, 0, 0.2);
  border-color: #fad35e;
}

.fbp-date-item.active {
  background: #fad35e;
  border-color: #fad35e;
  color: #000000;
}

.fbp-date-item.active::after {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background: #fad35e;
  border-radius: 50%;
  border: 2px solid #000000;
}

.fbp-day-name {
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  opacity: 0.8;
}

.fbp-day-number {
  font-size: 1.1rem;
  font-weight: 600;
}

.fbp-time-slots-container {
  margin-top: 2rem;
}

.fbp-time-slots-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.fbp-time-slots-title {
  font-size: 1rem;
  font-weight: 600;
}

.fbp-time-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

/* DIAGNOSTIC STYLE: This will make time slots red if CSS is applied */
.fbp-time-slot {
  background: #fad35e !important; /* Temporarily set to red for diagnostic purposes */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 0.75rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.9rem;
}

.fbp-time-slot:hover {
  background: rgba(255, 140, 0, 0.2);
  border-color: #fad35e;
}

.fbp-time-slot.selected {
  background: #fad35e;
  border-color: #fad35e;
  color: #000000;
  position: relative;
}

.fbp-time-slot.selected::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  width: 12px;
  height: 12px;
  background: #fad35e;
  border-radius: 50%;
  border: 2px solid #000000;
}

.fbp-time-slot.unavailable {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.1);
}

/* Step 5: Customer Form */
.fbp-customer-form-container {
  background: linear-gradient(135deg, #133d2f 0%, #1e3d2a 100%);
  border-radius: 16px;
  padding: 2rem;
  color: #ffffff;
}

.fbp-booking-final-summary {
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid #fad35e;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.fbp-booking-final-summary h3 {
  color: white;
}

.fbp-customer-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fbp-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fbp-form-group label {
  font-size: 0.9rem;
  color: #fad35e;
  font-weight: 500;
}

.fbp-form-group input[type="text"],
.fbp-form-group input[type="email"],
.fbp-form-group input[type="tel"] {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.fbp-form-group input:focus {
  outline: none;
  border-color: #fad35e;
  background: rgba(255, 140, 0, 0.1);
}

.fbp-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1rem 0;
}

.fbp-checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
}

.fbp-checkbox-group label {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #ffffff;
}

.fbp-checkbox-group a {
  color: #fad35e;
  text-decoration: underline;
}

/* Action Buttons */
.fbp-step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}

.fbp-btn-continue,
.fbp-btn-book {
  background: #fad35e !important; /* Restored dark green background */
  color: white !important; /* Restored orange text */
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fbp-btn-continue:hover,
.fbp-btn-book:hover {
  background: #e67c00;
  transform: translateY(-1px);
}

.fbp-btn-previous {
  background: transparent !important; /* Restored transparent background */
  color: black !important; /* Restored black text */
  border: 1px solid rgba(255, 255, 255, 0.3) !important; /* Restored border */
  border-radius: 8px !important;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fbp-btn-previous:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.fbp-btn-clear {
  background: transparent !important; /* Restored transparent background */
  color: black !important; /* Restored black text */
  border: 1px solid black !important; /* Restored black border */
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fbp-btn-clear:hover {
  background: rgba(255, 107, 107, 0.1);
}
.fbp-quantity-button {
  background-color: transparent !important;
}
/* Responsive Design */
@media (max-width: 1024px) {
  .fbp-sidebar-nav {
    width: 250px;
  }

  .fbp-main-content {
    margin-left: 270px;
  }

  .fbp-calendar-section {
    flex-direction: column;
  }

  .fbp-calendar-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .fbp-calendar-top-summary {
    flex-direction: column !important;
  }
  .fbp-summary-left {
    width: 100% !important;
    margin-bottom: 20px;
  }

  .fbp-summary-right {
    min-width: 100% !important;
  }

  .fbp-booking-container {
    flex-direction: column;
  }

  .fbp-additional-services {
    padding: 0px !important;
  }
  .fbp-sidebar-nav {
    position: static;
    width: 100%;
    height: auto;
    padding: 1rem;
  }

  .fbp-nav-steps {
    flex-direction: row;
    overflow-x: auto;
    gap: 0.5rem;
  }

  .fbp-nav-step {
    flex-shrink: 0;
    min-width: 200px;
  }

  .fbp-main-content {
    margin-left: 0;
    padding: 1rem;
  }

  .fbp-time-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fbp-step-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .fbp-step-actions > * {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile Touch/Swipe Enhancements */
@media (max-width: 768px) {
  /* Sidebar Navigation Auto-Scroll */
  .fbp-nav-steps {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
  }

  .fbp-nav-steps::-webkit-scrollbar {
    display: none;
  }

  .fbp-nav-step {
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  /* Calendar Date Boxes Touch/Swipe */
  .fbp-week-dates {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 1rem;
    scroll-snap-type: x mandatory;
  }

  .fbp-week-dates::-webkit-scrollbar {
    display: none;
  }

  .fbp-date-item {
    flex-shrink: 0;
    scroll-snap-align: center;
    min-width: 80px;
  }

  /* Touch indicators for swipeable areas */
  .fbp-nav-steps::after,
  .fbp-week-dates::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1));
    pointer-events: none;
    border-radius: 50%;
  }

  .fbp-nav-steps::before,
  .fbp-week-dates::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(-90deg, transparent, rgba(0, 0, 0, 0.1));
    pointer-events: none;
    border-radius: 50%;
    z-index: 1;
  }

  /* Enhanced touch targets */
  .fbp-nav-step,
  .fbp-date-item {
    touch-action: pan-x;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }

  /* Smooth transitions for active states */
  .fbp-nav-step.active,
  .fbp-date-item.active {
    transition: all 0.3s ease;
  }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
  .fbp-nav-step {
    min-width: 180px;
    padding: 0.75rem 1rem;
  }

  .fbp-date-item {
    min-width: 70px;
    padding: 0.75rem;
  }

  .fbp-week-dates {
    gap: 0.75rem;
  }
}
.fbp-quantity-controls {
  gap: 0px !important;
}
.fbp-service-item {
  padding: 1rem 10px !important;
}

/* Hide warning icons */
.fbp-warning-icon,
.fbp-notification-badge {
  display: none !important;
}

.fbp-btn-book {
  background-color: #133d2f;
}

.fbp-service-selection {
  padding: 2rem 10px;
}
.fbp-main-content {
  padding: 1rem 0px !important;
}
/* Project Details Step Styles */
.fbp-project-details-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.fbp-project-details-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.fbp-project-details-section p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
}

.fbp-project-details-container {
  background: #133d2f;
  border-radius: 12px;
  padding: 1.5rem;
  border: 2px solid #e9ecef;
}

#fbp-project-details {
  width: 100%;
  min-height: 200px;
  padding: 1rem;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  line-height: 1.5;
  resize: vertical;
  background: #fff;
  transition: border-color 0.3s ease;
}

#fbp-project-details:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

#fbp-project-details::placeholder {
  color: #6c757d;
  font-style: italic;
}

/* Mobile responsive for Project Details */
@media (max-width: 768px) {
  .fbp-project-details-section {
    padding: 1rem;
  }

  .fbp-project-details-container {
    padding: 1rem;
  }

  #fbp-project-details {
    min-height: 150px;
    font-size: 16px; /* Prevent zoom on iOS */
  }
}
