/* Booking Summary Styles */
.booking-summary {
  background-color: var(--surface-color);
  border-radius: var(--border-radius);
  padding: 0;
  margin: 1.5rem 0;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: none;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.booking-summary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, var(--primary-color), var(--primary-light), var(--secondary-color));
}

.booking-summary h4 {
  margin: 0;
  padding: 0.75rem;
  background-color: var(--primary-color);
  color: white;
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.booking-summary h4::after {
  content: "🚲";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

/* Price Estimation Styles */
.price-estimation {
  background-color: #f9f9f9;
  border-radius: var(--border-radius);
  padding: 0.75rem 1.25rem;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-color);
}

.price-label {
  font-weight: 600;
  color: var(--text-color-secondary);
  font-size: 1rem;
}

.price-value {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.4rem;
}

/* Animation subtile au survol */
.price-estimation:hover .price-value {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

/* Version dark mode */
[data-theme="dark"] .price-estimation {
  background-color: #2d2d2d;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .price-label {
  color: #b0b0b0;
}

[data-theme="dark"] .price-value {
  color: var(--primary-light);
}

/* Version night-shift */
[data-theme="night-shift"] .price-estimation {
  background-color: #263248;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

[data-theme="night-shift"] .price-label {
  color: #a0a0b0;
}

[data-theme="night-shift"] .price-value {
  color: var(--primary-light);
}