:root {
  --primary: #805836; /* Main */
  --secondary: #f4ece4; /* Secondary */
  --accent: #faf6f1; /* Soft background accents */
  --gray-light: #f1f1f1; /* Tertiary */
  --gray: #e6e2dd; /* Neutral borders */
  --text: #2b2622; /* Dark, readable text */
  --error: #c94838;
  --success: #6fb28f;
  --shadow: rgba(128, 88, 54, 0.15);
  --shadow-blue: rgba(128, 88, 54, 0.08);
}

html {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Raleway", sans-serif;
  background-color: var(--gray-light);
  color: var(--text);
  line-height: 1.6;
  background-image: radial-gradient(var(--gray) 1px, transparent 1px);
  background-size: 20px 20px;
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  min-height: 100vh;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* Progress Bar */
.progress-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 3rem;
  position: relative;
  max-width: 800px;
  padding: 0 40px;
}

.progress-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 40px;
  right: 40px;
  transform: translateY(-50%);
  height: 3px;
  background: var(--gray);
  z-index: 1;
}

.step {
  position: relative;
  z-index: 2;
  background: white;
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--gray);
}

.step.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--accent);
}

.step::after {
  content: attr(data-title);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.85rem;
  color: var(--text);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Update the progress line for completed steps */
.step.active ~ .step {
  border-color: var(--gray);
  background: white;
  color: var(--text);
}

.step.active ~ .step::before {
  background-color: var(--gray);
}

/* Add progress line for completed steps */
.progress-bar .step.completed::after {
  color: var(--primary);
}

.progress-bar .step.completed {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Add progress line between completed steps */
.progress-bar .step.completed + .step.completed::before,
.progress-bar .step.completed + .step.active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -100%;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: translateY(-50%);
  z-index: 0;
}

/* Booking Form */
.booking-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px var(--shadow);
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.booking-form::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.5;
  z-index: -1;
}

.booking-form::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}

.booking-form h2 {
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 15px;
}

.booking-form h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

/* Grid Layouts */
.branch-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Cards */
.branch-card,
.service-card {
  background: white;
  border: 2px solid var(--gray);
  border-radius: 8px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.branch-card input[type="radio"],
.service-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}

.branch-card input[type="radio"]:checked ~ .branch-info,
.service-card input[type="radio"]:checked ~ .service-info {
  border-color: var(--primary);
  background: var(--accent);
  box-shadow: 0 4px 12px var(--shadow);
}

.branch-info,
.service-info {
  position: relative;
  z-index: 0;
  padding: 1rem;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}

/* Time Slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.time-slot {
  position: relative;
  padding: 0.75rem 0.5rem;
  background: white;
  border: 2px solid var(--gray);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 0.85rem;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.time-slot:not(.booked):hover,
.time-slot:not(.booked):active {
  border-color: var(--primary);
  background: var(--accent);
  color: var(--text); /* Ensure text remains readable */
}

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

.time-slot.selected:hover,
.time-slot.selected:active {
  background: var(--secondary);
  color: var(--text);
}

.time-slot.booked {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--gray);
}

.time-slot input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.time-slot input[type="checkbox"]:checked + span {
  background: var(--primary);
  color: white;
}

/* Form Groups */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px var(--accent);
}

/* Buttons */
.btn-container {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  align-items: stretch;
}

.btn-back,
.btn-next {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid;
  min-height: 45px;
}

.btn-back {
  flex: 1;
  background: white;
  color: var(--text);
  border-color: var(--gray);
  order: 1;
}

.btn-next {
  flex: 2;
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  order: 2;
}

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

.btn-next:hover:not(:disabled) {
  background: #6f4d2e;
  border-color: #6f4d2e;
  color: white;
}

.btn-next:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .btn-container {
    flex-direction: row;
    width: 100%;
  }

  .btn-back {
    order: 1;
  }

  .btn-next {
    order: 2;
  }
}

/* Date Picker */
.date-picker {
  margin-bottom: 2rem;
}

.date-picker input[type="date"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.date-picker input[type="date"]:focus {
  outline: none;
  border-color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 1.5rem 1rem;
    max-width: 100%;
  }

  .progress-bar {
    padding: 0 20px;
    margin-bottom: 2rem;
  }

  .progress-bar::before {
    left: 20px;
    right: 20px;
  }

  .step {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .step::after {
    font-size: 0.75rem;
    width: 80px;
    text-align: center;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .booking-form {
    padding: 1.5rem;
    margin: 1rem 0 1rem 0;
  }

  .branch-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .time-slots {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }

  .booking-form h2 {
    font-size: 1.5rem;
  }

  .btn-container {
    flex-direction: row;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1rem 0.5rem;
  }

  .progress-bar {
    padding: 0 10px;
  }

  .step {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .step::after {
    font-size: 0.7rem;
    width: 60px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-form {
  animation: fadeIn 0.5s ease;
}

/* Add some hover animations */
.branch-info h3,
.service-info h3 {
  color: var(--primary);
  transition: color 0.3s ease;
}

.branch-card:hover .branch-info h3,
.service-card:hover .service-info h3 {
  color: #6f4d2e;
}

/* Booking Summary Styles */
.booking-summary {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px var(--shadow);
  max-width: 800px;
  margin: 2rem auto;
  position: relative;
}

.summary-content {
  padding: 1rem;
}

.summary-section {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--accent);
  border-radius: 10px;
  border: 2px solid var(--gray);
}

.summary-section h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.summary-section p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.price-section {
  background: linear-gradient(135deg, #8b5e3a, #c7b7a4);
  color: white;
  margin-bottom: 2rem;
}

.price-section h3 {
  color: white;
}

.total-price {
  font-size: 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.confirm-form {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.confirm-form .btn-next,
.confirm-form .btn-back {
  font-family: "Raleway", sans-serif;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
}

.confirm-form .btn-next {
  flex: 2;
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.confirm-form .btn-back {
  flex: 1;
  background: white;
  color: var(--text);
  border-color: var(--gray);
}

.confirm-form .btn-next:hover {
  background: #6f4d2e;
  border-color: #6f4d2e;
}

.confirm-form .btn-back:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--accent);
}

@media (max-width: 768px) {
  .confirm-form {
    flex-direction: column;
  }

  .confirm-form .btn-back,
  .confirm-form .btn-next {
    width: 100%;
  }

  .confirm-form .btn-back {
    order: 2;
  }

  .confirm-form .btn-next {
    order: 1;
  }
}

/* Add visual feedback for selected state */
.branch-card input[type="radio"]:checked ~ .branch-info::before,
.service-card input[type="radio"]:checked ~ .service-info::before {
  content: "✓";
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: bold;
}

/* Update service info specific styles */
.service-info h3 {
  margin-bottom: 0.75rem;
}

.service-info p {
  margin-bottom: 0.5rem;
}

.service-info p:last-child {
  margin-bottom: 0;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray);
}

/* Date and Time Selection Styles */
.date-time-container {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.date-picker-container,
.time-slots-container {
  background: var(--accent);
  padding: 1.5rem;
  border-radius: 10px;
  border: 2px solid var(--gray);
}

.date-picker-container h3,
.time-slots-container h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.time-slot {
  position: relative;
  padding: 0.75rem;
  background: white;
  border: 2px solid var(--gray);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.time-slot:not(.booked):hover {
  border-color: var(--primary);
  background: var(--accent);
}

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

.time-slot.booked {
  background: var(--gray);
  cursor: not-allowed;
  opacity: 0.7;
}

.time-slots-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  color: var(--text);
  font-style: italic;
}

/* Date Picker Customization */
.pika-single {
  font-family: "Raleway", sans-serif;
  border: none;
  border-radius: 15px;
  box-shadow: 0 8px 20px var(--shadow);
  padding: 12px;
  width: 100% !important;
  max-width: 340px;
  box-sizing: border-box;
  overflow: hidden;
}

.pika-lendar {
  float: none;
  width: 100% !important;
  margin: 0;
}

/* Header styling */
.pika-title {
  background: linear-gradient(135deg, #8b5e3a, #c7b7a4);
  padding: 15px;
  margin: 0px 0px 12px;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.pika-label {
  background: transparent !important;
  color: white !important;
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0 5px;
  padding: 5px 8px;
}

.pika-prev,
.pika-next {
  background-image: none;
  text-indent: 0;
  width: 34px;
  height: 34px;
  color: white;
  position: relative;
  margin: 0 8px;
}

.pika-prev::after,
.pika-next::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid white;
  border-width: 2px 2px 0 0;
  top: 50%;
  left: 50%;
}

.pika-prev::after {
  transform: translate(-25%, -50%) rotate(-135deg);
}

.pika-next::after {
  transform: translate(-75%, -50%) rotate(45deg);
}

/* Calendar body styling */
.pika-table {
  margin-bottom: 12px;
  width: 100%;
  table-layout: fixed;
  border-spacing: 3px;
  border-collapse: separate;
}

.pika-table th {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 0;
}

.pika-table td {
  padding: 2px;
}

.pika-button {
  background: white;
  color: var(--text);
  border-radius: 8px;
  text-align: center;
  padding: 0;
  font-size: 1rem;
  width: 100%;
  height: 36px;
  line-height: 36px;
  display: block;
}

.pika-button:hover {
  background: var(--accent) !important;
  color: var(--primary) !important;
  box-shadow: none !important;
}

.is-selected .pika-button {
  background: var(--secondary) !important;
  box-shadow: none !important;
  border-radius: 8px !important;
  color: #805836 !important;
}

.is-today .pika-button {
  color: var(--primary);
  font-weight: bold;
}

/* Month/Year dropdown styling */
.pika-select {
  background: transparent;
  border: none;
  color: white;
  font-family: "Raleway", sans-serif;
  font-size: 1.1rem;
  padding: 2px 25px 2px 8px;
  margin: 0 4px;
  height: auto;
}

.pika-lendar {
  float: left;
  width: 240px;
  margin: 0px !important;
  margin-top: 8px;
}

.pika-select:focus {
  outline: none;
}

.pika-select option {
  background: white;
  color: var(--text);
  font-size: 1rem;
  padding: 8px;
}

/* Input field styling */
#date-picker {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray);
  border-radius: 8px;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent; /* Remove tap highlight on iOS */
  user-select: none; /* Prevent text selection */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

#date-picker:hover,
#date-picker:focus {
  border-color: var(--primary);
  outline: none;
}

/* Update time slots container */
.time-slots-container {
  background: white;
}

.time-slots {
  max-height: 350px;
  padding: 0.5rem;
  background: var(--gray-light);
  border-radius: 8px;
}

/* Add some animation for time slots */
.time-slot {
  transform: scale(1);
  transition: all 0.2s ease;
}

.time-slot:not(.booked):hover {
  transform: scale(1.02);
}

.time-slot.selected {
  transform: scale(1.02);
  box-shadow: 0 2px 8px var(--shadow);
}

/* Add back button styles */
.btn-container {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  align-items: stretch;
}

.btn-back {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--gray);
  border-radius: 25px;
  background: white;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 45px;
}

.btn-next {
  flex: 2;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover states */
.btn-back:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--accent);
}

.btn-next:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Improve date picker for mobile */
.flatpickr-calendar.open {
  display: flex !important;
}

@supports (-webkit-touch-callout: none) {
  /* iOS-specific styles */
  #date-picker {
    -webkit-appearance: none;
  }
}

@media (max-width: 768px) {
  .date-time-container {
    grid-template-columns: 1fr;
  }

  .pika-single {
    width: 100% !important;
  }
}

/* Update the date picker container styles */
.date-picker-container {
  position: relative;
  width: 100%;
}

/* Update Pikaday calendar styles for mobile */
@media (max-width: 768px) {
  .pika-single {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: calc(100% - 32px) !important;
    max-width: 340px !important;
    margin: 0 !important;
    z-index: 1000 !important;
    background: white !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
  }

  /* Add backdrop when calendar is open */
  .pika-single::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }

  /* Ensure calendar cells are properly sized */
  .pika-table td {
    padding: 0;
  }

  .pika-button {
    width: 100%;
    height: 32px;
    line-height: 32px;
    padding: 0;
  }
}

/* Additional mobile optimizations */
@media (max-width: 360px) {
  .pika-single {
    width: calc(100% - 16px) !important;
    padding: 8px;
  }

  .pika-button {
    width: 100%;
    height: 28px;
    line-height: 28px;
    font-size: 0.9rem;
  }
}

/* Scrollbar styling */
.time-slots::-webkit-scrollbar {
  width: 8px;
}

.time-slots::-webkit-scrollbar-track {
  background: var(--gray-light);
  border-radius: 4px;
}

.time-slots::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.time-slots::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* For Firefox */
.time-slots {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--gray-light);
}

/* Payment Styles */
.payment-container {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px var(--shadow);
  max-width: 800px;
  margin: 2rem auto;
  position: relative;
}

.payment-container h2 {
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 15px;
}

.payment-container h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
  display: none;
}

.payment-details {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
  grid-template-columns: 1fr;
  width: 100%;
  overflow-x: hidden;
}

.booking-info {
  background: var(--accent);
  padding: 1rem;
  border-radius: 10px;
  border: 2px solid var(--gray);
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.booking-info h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.booking-info p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.qr-container {
  text-align: center;
  padding: 2rem;
  background: white;
  border: 2px solid var(--gray);
  border-radius: 10px;
}

.qr-container h3 {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 600;
}

.qr-code {
  margin: 0rem auto;
  max-width: 300px;
}

.qr-code img {
  width: 100%;
  height: auto;
  border: 2px solid var(--gray);
  border-radius: 10px;
  padding: 1rem;
  background: white;
}

.reference {
  color: var(--secondary);
  font-weight: 600;
  margin: 1rem 0;
  font-size: 11px;
}

.timer {
  color: var(--text);
  margin-top: 1rem;
  font-size: 1rem;
}

#countdown {
  font-weight: 600;
  color: var(--primary);
}

@media (max-width: 768px) {
  .payment-container {
    padding: 1.5rem;
    margin: 1rem;
    width: auto;
    max-width: 100%;
  }

  .payment-details {
    gap: 1.5rem;
    width: 100%;
    overflow-x: hidden;
  }

  .qr-container {
    padding: 1.5rem;
    width: 100%;
  }

  .booking-info {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .qr-code img {
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .payment-container {
    padding: 1rem;
    margin: 0.5rem;
  }

  .payment-details {
    gap: 1rem;
  }

  .booking-info {
    padding: 0.8rem;
    font-size: 0.85rem;
  }

  .qr-container {
    padding: 1rem;
  }

  .qr-code img {
    max-width: 150px;
  }
}

.payment-details p {
  margin-bottom: 0.8rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

.payment-details strong {
  font-weight: 600;
  color: var(--primary);
}
