/* Reservation Confirmed Section */
.confirmation-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 3rem 2rem;
    text-align: center;
  }
  .success-animation {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
  }
  .checkmark {
    width: 80px;
    height: 80px;
  }
  .checkmark__circle {
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s ease-in-out forwards;
  }
  .checkmark__check {
    stroke: var(--primary-color);
    stroke-width: 2;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s ease-in-out 0.8s forwards;
  }
  @keyframes stroke {
    100% {
      stroke-dashoffset: 0;
    }
  }
  .confirmation-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .confirmation-message {
    font-size: 1.125rem;
    color: var(--text-color-secondary);
    margin-bottom: 2rem;
  }
  .qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
  }
  .qr-code {
    padding: 1rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    margin-bottom: 1rem;
  }
  .qr-info {
    font-size: 0.875rem;
    color: var(--text-color-secondary);
  }
  .reservation-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .detail-card {
    background-color: var(--surface-color-alt);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
  }
  .detail-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  .detail-info {
    flex: 1;
  }
  .detail-info h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .detail-info p {
    font-size: 0.875rem;
    color: var(--text-color-secondary);
    margin-bottom: 0.25rem;
  }
  .detail-action {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
  }
  .weather-forecast {
    background-color: var(--surface-color-alt);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: left;
  }
  .weather-forecast h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  .forecast-days {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1rem;
  }
  .forecast-day {
    text-align: center;
  }
  .day-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  .weather-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .temperature {
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  .conditions {
    font-size: 0.875rem;
    color: var(--text-color-secondary);
  }
  .weather-tip {
    font-size: 0.875rem;
    color: var(--info-color);
    text-align: center;
    margin-top: 1rem;
  }
  .next-steps {
    margin-bottom: 2.5rem;
  }
  .next-steps h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .step-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  .step-content h5 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
  .step-content p {
    font-size: 0.75rem;
    color: var(--text-color-secondary);
  }
  .share-experience {
    margin-bottom: 2.5rem;
  }
  .share-experience h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  .confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }