/* ===================================
   LUMA TRAVEL – BORJOMI PAGE STYLES
   =================================== */

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fdfdfc;
  color: #222;
  scroll-behavior: smooth;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 6%;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.back {
  text-decoration: none;
  color: #444;
  font-weight: 500;
}
.header h3 {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* HERO */
.hero {
  position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.2), rgba(0,0,0,.55));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  margin-bottom: .6rem;
}
.hero p {
  font-weight: 400;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* INFO SECTION */
.info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: -2.5rem auto 4rem;
  padding: 0 6%;
}
.info-card {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}
.info-card:hover { transform: translateY(-5px); }
.info-card img { width: 26px; height: 26px; }
.info-card h4 {
  margin: 0;
  font-weight: 500;
  color: #666;
  font-size: .9rem;
}
.info-card p {
  margin: 0;
  font-weight: 600;
  color: #111;
  font-size: .95rem;
}

/* DETAILS */
.details {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 6% 4rem;
}
.text-block {
  text-align: center;
  margin-bottom: 3rem;
}
.text-block h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.text-block p {
  color: #444;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 750px;
  margin: 0 auto;
}

/* GALLERY */
.gallery {
  padding: 3rem 6%;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 14px;
  filter: brightness(96%);
  transition: transform .4s ease, filter .4s ease;
}
.gallery-grid img:hover {
  transform: scale(1.03);
  filter: brightness(100%);
}

/* CTA */
.cta {
  text-align: center;
  padding: 5rem 6%;
  background: #f9f8f6;
  border-top: 1px solid #eee;
}
.cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.cta p {
  color: #555;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.btn {
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.btn.primary {
  background: #c6a84f;
  color: #fff;
}
.btn.primary:hover {
  background: #b5963f;
}
.btn.secondary {
  border: 1.5px solid #000;
  color: #000;
  cursor: pointer;
}
.btn.secondary:hover {
  background: #000;
  color: #fff;
}

/* ===== FOOTER ===== 
.site-footer {
  background: #faf8f4;
  border-top: 1px solid #ffffff;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  color: #555;
  font-family: 'Poppins', sans-serif;
}
.site-footer p {
  margin: 0;
  letter-spacing: 0.3px;
}

*/

/* ===================================
   BOOKING OVERLAY (FULL WHITE)
   =================================== */

.booking-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  color: #111;
  z-index: 10000;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .28s ease, transform .28s ease;
  font-family: 'Poppins', sans-serif;
}
.booking-overlay.is-open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.bo-header { border-bottom: 1px solid #eee; }
.bo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 6%;
}
.bo-header .bo-container {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bo-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #eee;
  background: #fff;
  cursor: pointer;
  font-weight: 500;
}
.bo-back:hover { background: #f8f8f8; }
.bo-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Body */
.bo-body { padding: 20px 0 36px; }
.bo-layout { display: grid; grid-template-columns: 360px 1fr; gap: 28px; }
@media (max-width: 980px) { .bo-layout { grid-template-columns: 1fr; } }

/* Sidebar */
.bo-side {
  position: sticky;
  top: 80px;
  align-self: start;
}
@media (max-width: 980px) { .bo-side { position: static; } }

.bo-summary {
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
}
.bo-subtitle { margin: 6px 0 12px; font-size: 1.05rem; font-weight: 600; }

.bo-product {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 8px 0 12px;
}
.bo-product-image {
  width: 64px; height: 64px; border-radius: 10px; overflow: hidden; flex: none;
}
.bo-product-image img { width: 100%; height: 100%; object-fit: cover; }
.bo-product-title { font-weight: 600; }
.bo-product-meta { font-size: .85rem; color: #666; margin-top: .15rem; }

.bo-rows { margin: 6px 0 10px; }
.bo-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
}
.bo-row dt { color: #555; }
.bo-row dd { margin: 0; font-weight: 600; }

.bo-guests { display: grid; gap: 10px; }
.bo-qty { display: flex; align-items: center; justify-content: space-between; }
.bo-stepper { display: inline-flex; align-items: center; gap: 10px; }
.bo-stepper button {
  width: 28px; height: 28px;
  border-radius: 8px;
  border: 1px solid #e7e7e7;
  background: #fff;
  cursor: pointer;
}
.bo-stepper button:hover { background: #f5f5f5; }
.bo-count { min-width: 18px; text-align: center; font-weight: 600; }

.bo-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; margin: 10px 0 4px; font-size: 1.05rem; border-top: 1px solid #eee;
}
.bo-total strong { font-size: 1.15rem; color: #111; }

.bo-cta { display: grid; gap: 10px; margin-top: 8px; }
.btn-primary {
  background: #c6a84f; color: #fff; border: none; border-radius: 12px;
  padding: 12px 16px; font-weight: 600; cursor: pointer;
}
.btn-primary[disabled] { opacity: .5; cursor: not-allowed; }
.btn-primary:hover:not([disabled]) { filter: brightness(.95); }
.btn-ghost {
  text-align: center; text-decoration: none; border: 1px solid #111;
  border-radius: 12px; padding: 10px 16px; color: #111;
}
.btn-ghost:hover { background: #111; color: #fff; }
.bo-note { color: #777; font-size: .85rem; margin-top: 6px; }

/* Calendar */
.bo-main { min-width: 0; }
.bo-msg {
  background: #faf8f2;
  border: 1px solid #f0e9d6;
  color: #6b5a1e;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: .9rem;
  margin-bottom: 14px;
}
.bo-cal-head {
  display: flex; align-items: center; justify-content: center; gap: .8rem;
  margin-bottom: .4rem;
}
.bo-nav {
  font-size: 1.3rem; border: none; background: none; cursor: pointer;
  color: #333; border-radius: 7px; padding: .25rem .6rem; transition: background .2s;
}
.bo-nav:hover { background: #f3f3f3; }
.bo-month { font-weight: 600; color: #222; font-size: 1.1rem; }

.bo-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  color: #999; font-size: .85rem; margin-bottom: .3rem;
}
.bo-weekdays span { text-align: center; }

.bo-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 1.5rem;
}
.bo-day {
  height: 72.1px;                  /* ↓ was 44px — slightly smaller */
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;            /* ↓ a touch smaller font */
  background: #fff;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bo-day:hover {
  border-color: #c6a84f;
  color: #c6a84f;
  background: #faf7ef;
}

.bo-day.disabled {
  background: #f5f5f5;
  color: #aaa;
  cursor: default;
}

.bo-day.start,
.bo-day.end {
  background: #c6a84f;
  color: #fff;
  border-color: #c6a84f;
  font-weight: 600;
}

.bo-day.in-range {
  background: #f8f3df;
  border-color: #e3d29a;
}

/* Mobile adjustment */
@media (max-width: 600px) {
  .bo-grid { gap: 2px; }
  .bo-day { height: 32px; font-size: .7rem; } /* ↓ slightly smaller */
}





/* ==========================================================
   MOBILE SCROLL FIX FOR BOOKING OVERLAY
   ========================================================== */

/* Allow scrolling inside overlay on mobile */
.booking-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  color: #111;
  z-index: 999999;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .28s ease, transform .28s ease;
  font-family: 'Poppins', sans-serif;
  overflow-y: auto;           /* enables scroll for all */
  -webkit-overflow-scrolling: touch; /* smooth iOS scroll */
}

.booking-overlay.is-open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Prevent body scroll when overlay is open */
body.overlay-active {
  overflow: hidden;
  touch-action: none;          /* prevent accidental background scroll */
}

/* Ensure layout can scroll fully inside on mobile */
.bo-body {
  padding: 20px 0 36px;
  overflow-y: auto;
  max-height: calc(100vh - 100px); /* keeps it inside the viewport */
  -webkit-overflow-scrolling: touch;
}

/* Slight top and bottom breathing room for mobile */
@media (max-width: 600px) {
  .booking-overlay {
    overflow-y: auto;
    padding-bottom: 40px;
  }
  .bo-layout {
    grid-template-columns: 1fr;
    overflow-x: hidden;
  }
  .bo-body {
    max-height: none;
  }
}



/* ==========================================================
   15. RESPONSIVE ADJUSTMENTS (Improved for mobile usability)
   ========================================================== */

@media (max-width: 600px) {
  .bo-grid { gap: 2px; }

  /* Larger, easier to tap calendar boxes */
  .bo-day {
    height: 80px;              /* ↑ was 32px */
    font-size: 0.8rem;         /* ↑ slightly larger for legibility */
    border-radius: 7px;        /* smoother tap edges */
  }

  /* Add a bit more padding to prevent touch overlap */
  .bo-grid {
    padding-bottom: 40px;
  }

  /* Improve spacing for top elements */
  .bo-cal-head {
    gap: 0.8rem;
    margin-bottom: 0.5rem;

  }

  .bo-month {
    font-size: 1rem;
  }

  .bo-nav {
    font-size: 1.1rem;
    padding: 0.3rem 0.6rem;
  }
}



/* ===================================
   NEW SECTION: More Trip Options
   =================================== */

.bo-more-trips {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #c6a84f;
  color: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.bo-more-label {
  font-weight: 600;
  margin-right: 8px;
}

.bo-more-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 18px;
}

.bo-more-list li {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dots {
  letter-spacing: 3px;
  opacity: 0.8;
}

.more-info {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.7);
  padding: 4px 10px;
  border-radius: 8px;
  transition: background 0.3s ease;
}
.more-info:hover {
  background: rgba(255,255,255,0.2);
}

/* Mobile adjust */
@media (max-width: 600px) {
  .bo-more-trips {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
  }
  .bo-more-list {
    flex-direction: column;
    gap: 6px;
  }
  .more-info {
    align-self: flex-end;
  }
}


/* ===================================
   LUXURY LAYOUT — More Trip Options + Info Title
   =================================== */

.bo-more-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 34px 0 6px 2px; /* ↑ added top margin to move section down */
  padding: 0 6px;
}


.bo-more-title {
  font-weight: 600;
  font-size: 1rem;
  color: #222;
  margin: 0;
}

.bo-more-info {
  font-weight: 500;
  font-size: 0.95rem;
  color: #555;
  text-transform: capitalize;
  margin-right: 19px; /* slightly inset from the right */
}

/* Main Frame */
.bo-more-trips {
  background: #c6a84f;
  color: #fff;
  border-radius: 14px;
  padding: 14px 26px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.bo-more-item {
  display: flex;
  justify-content: space-between; /* name left, dots right */
  align-items: center;
  width: 100%;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.trip-name {
  text-align: left;
  flex: 1;
}

.trip-dots {
  margin-left: auto; /* push right */
  background: rgba(255,255,255,0.25);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.3rem;
  padding: 2px 14px 4px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.15s ease;
}
.trip-dots:hover {
  background: rgba(255,255,255,0.4);
  transform: scale(1.08);
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .bo-more-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .bo-more-info {
    font-size: 0.9rem;
  }
  .bo-more-trips {
    padding: 12px 18px;
  }
  .bo-more-item {
    font-size: 0.9rem;
  }
}




/* Mobile */
@media (max-width: 600px) {
  .trip-popup-content {
    padding: 1.6rem;
    border-radius: 16px;
  }
  .trip-popup-title { font-size: 1.3rem; }
}


/* SALE BADGE */
.sale-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #2ecc71;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 4px;
  border-radius: 4px;
  z-index: 10;
}
.bo-day {
  position: relative;
}


/* =============================================================
   LUMA — BOOKING.COM × EMIRATES FIRST CLASS POPUP
   ============================================================= */

.final-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  z-index: 9999999;
  animation: fpBG .3s ease forwards;
}

@keyframes fpBG {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =============================================================
   CARD — Emirates warm luxury + Booking.com structure
   ============================================================= */
.final-popup-content {
  background: #ffffff;
  width: 95%;
  max-width: 460px;
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid #e8e8e8;
  box-shadow:
    0 14px 40px rgba(0,0,0,.15),
    0 0 0 3px rgba(198,168,79,0.08); /* subtle Emirates gold */
  animation: fpPop .35s cubic-bezier(.15,.85,.4,1);
  position: relative;
}

@keyframes fpPop {
  0%   { opacity: 0; transform: translateY(35px) scale(.92); }
  60%  { opacity: 1; transform: translateY(-4px) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}

/* =============================================================
   CLOSE BUTTON — small, clean (Booking.com style)
   ============================================================= */
.final-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #f5f5f5;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  color: #333;
  transition: .25s ease;
}
.final-close:hover {
  background: #e2e2e2;
}

/* =============================================================
   TITLE — Booking.com clarity + Emirates class
   ============================================================= */
.final-title {
  text-align: center;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: #222;
}

/* =============================================================
   SUMMARY BOX — compact, structured, premium
   ============================================================= */
.final-summary {
  background: #faf9f6; /* Emirates cream tone */
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e6e0d2;
  margin-bottom: 26px;
}

.final-summary h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #333;
}

.final-summary p {
  font-size: .9rem;
  margin: 3px 0;
  color: #444;
}

/* =============================================================
   FORM LABELS — Booking.com sharpness
   ============================================================= */
.final-form label {
  display: block;
  margin-bottom: 18px;
  font-size: .88rem;
  font-weight: 600;
  color: #222;
}

/* =============================================================
   INPUTS — perfect sizing (not big, not small)
   ============================================================= */
.final-form input,
.final-form select {
  width: 95%;
  padding: 12px 13px;
  margin-top: 6px;
  border-radius: 19px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: .93rem;
  font-weight: 500;
  transition: .2s ease;
}

.final-form input:focus,
.final-form select:focus {
  border-color: #c6a84f;
  box-shadow: 0 0 0 3px rgba(198,168,79,.22);
  outline: none;
}

/* Phone row */
.phone-row { display: flex; gap: 10px; }
.phone-row select { width: 52%; }

/* =============================================================
   SAVE BUTTON — Booking.com primary blue
   ============================================================= */
.save-info-btn {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-radius: 12px;
  background: #0053ff; /* booking.com blue */
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 14px;
  transition: .25s ease;
  box-shadow: 0 4px 14px rgba(0,83,255,.25);
}

.save-info-btn:hover {
  background: #003fcc;
}

.save-info-btn.saved {
  background: #33a744;
  cursor: default;
  box-shadow: none;
}

/* =============================================================
   PAY BUTTON — Emirates gold premium
   ============================================================= */
.final-pay {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #c6a84f, #b49038);
  color: white;
  font-size: 1.15rem;
  font-weight: 700;
  opacity: .45;
  cursor: not-allowed;
  transition: .25s ease;
  box-shadow: 0 4px 16px rgba(198,168,79,.25);
}

.final-pay.enabled {
  opacity: 1;
  cursor: pointer;
}

.final-pay.enabled:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(198,168,79,.45);
}

/* =============================================================
   MOBILE
   ============================================================= */
@media (max-width: 600px) {
  .final-popup-content {
    padding: 40px 40px;
  }
  .final-title {
    font-size: 1.3rem;
  }
}



/* BEAUTIFUL SAVE INFO BUTTON */
.save-info-btn {
  width: 100%;
  padding: 13px;
  margin-top: 8px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #4b91ff, #3678ff);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: .25s ease;
  box-shadow: 0 3px 12px rgba(54,120,255,.35);
}

.save-info-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(54,120,255,.5);
}

.save-info-btn.saved {
  background: #4bb543 !important;
  box-shadow: 0 3px 12px rgba(75,181,67,.35);
  cursor: default;
}

.save-info-btn.saved:hover {
  transform: none;
  box-shadow: 0 3px 12px rgba(75,181,67,.35);
}


.final-summary {
  background: #ffffffd8;
  padding: 16px 18px;
  border-radius: 16px;
  margin-bottom: 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.final-summary h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 700;
}

.final-summary p {
  margin: 4px 0;
  font-size: .92rem;
  color: #333;
}

.save-info-btn {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: 14px;
  background: #4bb543;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: .2s;
  margin-bottom: 12px;
}

.save-info-btn.saved {
  background: #2e8e2e;
  cursor: default;
  opacity: .85;
}


.currency-switch {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cs-btn {
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  background: #e4e7ed;
  transition: 0.2s;
}

.cs-btn svg {
  opacity: 0.55;
  transition: 0.25s;
}

.cs-btn.active {
  background: #c6a84f;
}

.cs-btn.active svg {
  opacity: 1;
}


.currency-switch .cs-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e9eaee;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.currency-switch .cs-btn:hover {
  background: #dcdde3;
}

.currency-switch .cs-btn.active {
  background: #c6a84f;
}

.currency-switch .cs-btn.active svg text,
.currency-switch .cs-btn.active svg path {
  fill: #fff !important;
}


.fc-help {
  text-align: center;
  margin-top: 1rem;
  font-size: .9rem;
  color: #666;
}

.fc-help a {
  color: #C99B2F;
  text-decoration: none;
  font-weight: 600;
}

.fc-help a:hover {
  text-decoration: underline;
  color: #a57912;
}


/* === FINAL CHECKOUT POPUP — MOBILE FIX === */
@media (max-width: 600px) {

  .final-popup-content {
    width: 92% !important;
    padding: 1.4rem 1.1rem !important;
    border-radius: 16px !important;
  }

  .final-title {
    font-size: 1.3rem !important;
    text-align: center;
  }

  .final-summary h3 {
    text-align: center;
  }

  .final-summary p {
    font-size: .9rem !important;
  }

  .final-form label {
    font-size: .85rem !important;
  }

  .final-form input {
    padding: .7rem .9rem !important;
    font-size: .9rem !important;
  }

  .phone-row select {
    font-size: .85rem !important;
    padding: .6rem .4rem !important;
  }

  .phone-row input {
    font-size: .9rem !important;
  }

  .save-info-btn,
  .final-pay {
    font-size: .95rem !important;
    padding: .85rem !important;
    border-radius: 12px !important;
  }

  .fc-help {
    margin-top: .9rem !important;
    font-size: .85rem !important;
    text-align: center !important;
    line-height: 1.4;
  }
}


/* ===== FIXED PHONE POPUP ===== */
@media (max-width: 600px) {

  .final-popup-content {
    width: 92% !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    padding: 1.4rem 1.1rem !important;
    border-radius: 16px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .final-popup {
    display: none;            /* ← REMOVE !important */
    justify-content: center;
    align-items: center;
  }
}
