/* ==============================================
   CONFIRM BOOKING PAGE RESPONSIVE FIXES
   ============================================== */

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  /* Body and Layout */
  body {
    padding-top: 0 !important; /* Remove padding since using modern header */
  }
  
  .wrap {
    padding: 40px 15px !important;
  }
  
  /* Typography */
  h1 {
    font-size: clamp(28px, 8vw, 48px) !important;
    margin-bottom: 20px !important;
  }
  
  p {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }
  
  /* Booking Card */
  .card {
    padding: 25px 20px !important;
    border-radius: 18px !important;
    margin-top: 30px !important;
  }
  
  /* Card Rows */
  .row {
    padding: 15px 0 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }
  
  .row:last-child {
    border-bottom: none !important;
  }
  
  /* Labels and Values */
  .k {
    min-width: auto !important;
    font-size: 13px !important;
    font-weight: 600 !important;
  }
  
  .v {
    font-size: 14px !important;
    font-weight: 600 !important;
  }
  
  /* Action Buttons */
  .actions {
    margin-top: 30px !important;
    flex-direction: column !important;
    gap: 15px !important;
  }
  
  .btn {
    width: 100% !important;
    height: 48px !important;
    font-size: 16px !important;
    border-radius: 25px !important;
  }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Layout */
  .wrap {
    padding: 50px 20px !important;
  }
  
  /* Typography */
  h1 {
    font-size: 38px !important;
  }
  
  p {
    font-size: 17px !important;
  }
  
  /* Booking Card */
  .card {
    padding: 28px 25px !important;
  }
  
  /* Card Rows */
  .row {
    padding: 12px 0 !important;
  }
  
  /* Labels and Values */
  .k {
    font-size: 14px !important;
  }
  
  .v {
    font-size: 15px !important;
  }
  
  /* Action Buttons */
  .actions {
    margin-top: 25px !important;
  }
  
  .btn {
    height: 45px !important;
    font-size: 15px !important;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  /* Even smaller adjustments */
  .wrap {
    padding: 30px 12px !important;
  }
  
  .card {
    padding: 20px 15px !important;
    margin-top: 25px !important;
  }
  
  .row {
    padding: 12px 0 !important;
  }
  
  .k {
    font-size: 12px !important;
  }
  
  .v {
    font-size: 13px !important;
  }
  
  .btn {
    height: 44px !important;
    font-size: 15px !important;
  }
}

/* Large Desktop (min-width: 1200px) */
@media (min-width: 1200px) {
  /* Ensure proper spacing on large screens */
  .wrap {
    max-width: 1000px !important;
  }
  
  .card {
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Prevent horizontal overflow */
@media (max-width: 768px) {
  .wrap,
  .card,
  .row,
  .actions,
  .btn {
    overflow-x: hidden !important;
  }
  
  .btn {
    max-width: 100% !important;
  }
}
