/* SnapBook - Instant Booking */
/* Dark theme - matches main site */

body.instant-booking-page {
  background: var(--bg-dark) !important;
  color: var(--white) !important;
}

body.instant-booking-page .header {
  background: var(--header-bg) !important;
  border-bottom: 1px solid var(--gold-border) !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

body.light-mode.instant-booking-page .header {
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

body.instant-booking-page .logo {
  color: var(--white) !important;
  font-weight: 700;
}

body.instant-booking-page .nav-links a {
  color: var(--white-muted) !important;
}

body.instant-booking-page .nav-links a:hover,
body.instant-booking-page .nav-links a.active {
  color: var(--gold) !important;
}

body.instant-booking-page .nav-links a.active::after {
  background: var(--gold);
}

body.instant-booking-page .header-contact {
  color: var(--gold) !important;
}

body.instant-booking-page .header-contact:hover {
  color: var(--gold-light) !important;
}

/* Book Now / CTA button - SnapBook golden gradient */
body.instant-booking-page .btn-instant {
  background: linear-gradient(135deg, #C4B5FD 0%, #9B8ED4 100%) !important;
  color: #1A1A5E !important;
  border: none !important;
}

body.instant-booking-page .btn-instant:hover {
  background: linear-gradient(135deg, #9B8ED4 0%, #7C6BC7 100%) !important;
}

/* Main content area */
body.instant-booking-page .instant-booking-content {
  background: var(--bg-dark);
  min-height: 50vh;
  padding: 3rem 2rem 4rem;
}
/* When no hero (legacy): ensure space below fixed header */
body.instant-booking-page:not(:has(.hero-ride)) .instant-booking-content {
  padding-top: 7rem;
  min-height: 100vh;
}
body.instant-booking-page.instant-cart-visible .instant-booking-content {
  padding-bottom: 6rem;
}

body.instant-booking-page .instant-booking-content h2,
body.instant-booking-page .instant-booking-content h3,
body.instant-booking-page .instant-booking-content h4 {
  color: var(--white) !important;
}

body.instant-booking-page .instant-booking-content .section-title-main {
  text-align: center;
  margin-bottom: 2.5rem;
}

body.instant-booking-page .instant-booking-content .section-title-main h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white) !important;
}

body.instant-booking-page .instant-booking-content .section-title-main h2 .highlight {
  color: #9B8ED4;
}

body.instant-booking-page .instant-booking-content .section-title-main p {
  color: var(--white-muted);
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Page subtitle */
.instant-booking-subtitle {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2.5rem;
}

/* Section headings */
.instant-section {
  max-width: 1000px;
  margin: 0 auto 3rem;
  scroll-margin-top: 5rem;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.section-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

/* Cards grid */
.instant-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .instant-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .instant-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile: instant booking content & cards */
@media (max-width: 768px) {
  body.instant-booking-page .instant-booking-content {
    padding: 2rem 1.25rem 5rem !important;
  }
  .instant-section {
    margin-bottom: 2rem;
  }
  .section-heading {
    font-size: 1rem !important;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
  }
  .instant-card-body {
    padding: 1.25rem !important;
  }
  .instant-card-title {
    font-size: 1.2rem !important;
    flex-wrap: wrap;
  }
  .instant-reel-title {
    font-size: 1.5rem !important;
  }
  .instant-reel-title .reel-title-num {
    font-size: 2rem !important;
  }
  .instant-cart-bar {
    padding: 1rem 1.25rem !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .instant-cart-bar .instant-btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  body.instant-booking-page .instant-booking-content {
    padding: 1.5rem 1rem 5rem !important;
  }
  .instant-booking-subtitle {
    font-size: 1rem !important;
    margin-bottom: 1.5rem;
  }
  .instant-card {
    overflow: visible;
  }
  .most-popular {
    font-size: 0.65rem;
    padding: 0.25rem 0.6rem;
  }
  .footer-chat-btn {
    bottom: max(20px, env(safe-area-inset-bottom));
    right: max(16px, env(safe-area-inset-right));
  }
}

/* Instant card */
.instant-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.instant-card:hover {
  box-shadow: var(--shadow);
  background: var(--bg-card-hover);
}

.instant-card.popular {
  border: 2px solid var(--gold);
}

/* Highlighted card (2 REELS) - matches site colors, larger font */
.instant-card-highlighted {
  background: var(--bg-card-hover) !important;
  border: 2px solid var(--gold) !important;
  box-shadow: var(--shadow);
}
.instant-card-highlighted .instant-card-title {
  font-size: 1.55rem !important;
  font-weight: 800 !important;
}
.instant-card-highlighted .instant-price {
  font-size: 1.8rem !important;
}
.instant-btn-dark {
  background: #2d2d2d !important;
  color: #fff !important;
}
.instant-btn-dark:hover {
  background: #1a1a1a !important;
}

.most-popular {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #9B8ED4 0%, #7C6BC7 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  z-index: 2;
  letter-spacing: 0.02em;
  border-radius: 0 12px 0 8px;
}

.most-popular .trophy-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.instant-card-body {
  padding: 1.5rem;
  flex: 1;
}

.instant-card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

/* Reel card titles - big serif font, oversized numbers */
.instant-reel-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.85rem !important;
  font-weight: 700 !important;
  line-height: 1.2;
}

.instant-reel-title .reel-title-num {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  line-height: 1;
}

.card-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}

.instant-features {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
}

.instant-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--white-muted);
}

.feat-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--white-muted);
}

.instant-tagline {
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.instant-desc {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.instant-price {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

/* Quantity selector */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.qty-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  background: var(--bg-card);
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  color: #555;
  transition: all 0.2s;
}
.qty-btn:hover {
  background: #e74c3c;
  color: #fff;
  border-color: #e74c3c;
}
.qty-input {
  width: 48px;
  text-align: center;
  font-weight: 600;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.35rem;
  font-size: 1rem;
}

/* Sticky Selected Packages summary / Cart bar */
.instant-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 100;
  color: var(--white);
}
.instant-cart-bar .instant-cart-summary,
.instant-cart-bar .instant-cart-total { font-size: 0.95rem; }
.instant-cart-bar .cart-label { color: var(--white-muted); margin-right: 0.75rem; }
.instant-cart-bar #cart-total-text { font-weight: 700; font-size: 1.2rem; color: var(--gold); }
.instant-cart-bar .instant-btn { text-decoration: none; padding: 0.75rem 1.5rem; white-space: nowrap; }
.addon-reel-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
}
.addon-reel-note strong { color: var(--gold); }
.addon-reel-note .addon-row { margin-top: 0.5rem; }
.selected-packages-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2d2d2d;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.selected-packages-bar.hidden { display: none; }
.selected-packages-summary { font-size: 0.95rem; }
.selected-packages-total { font-weight: 700; font-size: 1.2rem; }
.btn-book-selected {
  background: #e74c3c;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-book-selected:hover { background: #c0392b; }
.btn-book-selected:disabled {
  background: #999;
  cursor: not-allowed;
}

/* Card footer strip (dark grey - for photo/video cards) */
.instant-card-footer .instant-card-body {
  padding-bottom: 0.5rem;
}

.instant-card-footer .instant-price {
  margin-bottom: 0;
}

.instant-card-footer-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #ffffff;
  color: #1a1a1a;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.instant-card-footer-strip .instant-price {
  color: #1a1a1a;
  margin: 0;
  font-size: 1.5rem;
}

.instant-card-footer-strip .qty-selector-inline .qty-btn { width: 32px; height: 32px; font-size: 1rem; }
.instant-card-footer-strip .qty-selector-inline .qty-input { width: 40px; font-size: 0.9rem; }

/* Quantity selector */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  background: var(--bg-card);
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  color: #1a1a1a;
  transition: all 0.2s;
}

.qty-btn:hover {
  background: #e74c3c;
  color: #fff;
  border-color: #e74c3c;
}

.qty-input {
  width: 48px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.35rem;
}

/* Sticky selected packages bar */
.selected-summary-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 2px solid #e74c3c;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 100;
  display: none;
}

.selected-summary-bar.visible {
  display: flex;
}

.selected-summary-bar .summary-text {
  font-size: 0.95rem;
  color: #444;
}

.selected-summary-bar .summary-total {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
}

.selected-summary-bar .btn-book {
  padding: 0.85rem 2rem;
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  white-space: nowrap;
}

.selected-summary-bar .btn-book:hover {
  background: #c0392b;
}

/* Buttons */
.instant-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.instant-btn-red {
  background: #e74c3c;
  color: white;
}

.instant-btn-red:hover {
  background: #c0392b;
}

.instant-btn-gold {
  background: #d4a017;
  color: white;
}

.instant-btn-gold:hover {
  background: #b8860b;
}

/* Highlighted card (2 REELS) - matches site colors, larger headings */
.instant-card-highlighted {
  background: rgba(13, 10, 8, 0.95) !important;
  border: 2px solid #e74c3c !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.instant-card-highlighted .instant-card-title {
  font-size: 1.55rem !important;
  font-weight: 800 !important;
}
.instant-card-highlighted .instant-price {
  font-size: 1.8rem !important;
}

/* Dark button - for photography/video/drone cards */
.instant-btn-dark {
  background: #2d2d2d !important;
  color: #fff !important;
}
.instant-btn-dark:hover {
  background: #1a1a1a !important;
}

/* Footer strip buttons - no full width */
.instant-card-footer-strip .instant-btn {
  width: auto;
  padding: 0.6rem 1.25rem;
  flex-shrink: 0;
}

/* Quantity selector */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.qty-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  background: var(--bg-card);
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.qty-btn:hover {
  background: #e74c3c;
  color: white;
  border-color: #e74c3c;
}
.qty-input {
  width: 48px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.4rem;
}

/* Sticky selected packages bar */
.selected-packages-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2d2d2d;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.selected-packages-bar.visible {
  transform: translateY(0);
}
.selected-packages-bar .summary-text {
  font-size: 1rem;
}
.selected-packages-bar .summary-total {
  font-size: 1.25rem;
  font-weight: 700;
}
.btn-book-selected {
  padding: 0.75rem 1.5rem;
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.btn-book-selected:hover {
  background: #c0392b;
}

/* Premium card - subtle golden tint for dark theme */
.instant-card-premium {
  background: linear-gradient(180deg, #231d18 0%, var(--bg-card) 100%);
}

/* Add On's section */
.addon-section .section-heading {
  margin-bottom: 1rem;
}

.addon-section .addon-row {
  display: block;
  max-width: none;
}

.addon-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
}

.addon-card .card-body {
  padding: 1.25rem 1.5rem;
}

.addon-card .addon-row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--white-muted);
}

.addon-card .addon-row-item .price {
  font-weight: 600;
  color: var(--white);
}

/* Must Know */
.must-know-card {
  max-width: 1000px;
  margin: 0 auto 2rem;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
}

.must-know-title {
  background: #e74c3c;
  color: white;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.must-know-text {
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.6;
  margin: 0;
}

.must-know-card .card-banner {
  background: #e74c3c;
  color: white;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.must-know-card .card-body {
  padding: 1.25rem;
  font-size: 0.95rem;
  color: var(--white-muted);
}

.must-know-card .addon-row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.must-know-card .addon-row-item .price {
  font-weight: 600;
  color: var(--white);
}

.must-know-card input[type="radio"],
.must-know-card input[type="checkbox"] {
  margin-right: 0.5rem;
  accent-color: #e74c3c;
}

/* Must Know - new structure */
.must-know-title {
  background: #e74c3c;
  color: white;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.must-know-text {
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.6;
  margin: 0;
}

/* Addon section - single card */
.addon-section .addon-row {
  grid-template-columns: 1fr;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.addon-section .addon-card {
  border: 1px solid var(--gold-border);
}

.addon-section .addon-card .card-body {
  padding: 1.25rem;
}

/* Photography & Video: 2 columns when 2 cards */
.instant-section .instant-cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Quantity selector */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: var(--bg-card);
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.qty-btn:hover {
  background: #e74c3c;
  color: white;
  border-color: #e74c3c;
}

.qty-input {
  width: 48px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.35rem;
}

/* Sticky selected packages summary */
.selected-packages-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 2px solid #e74c3c;
  padding: 1rem 2rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 1000;
  display: none;
}

.selected-packages-bar.visible {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.selected-packages-bar .summary-text {
  font-size: 0.95rem;
  color: #444;
}

.selected-packages-bar .summary-total {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
}

.selected-packages-bar .btn-book {
  padding: 0.75rem 1.5rem;
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  white-space: nowrap;
}

.selected-packages-bar .btn-book:hover {
  background: #c0392b;
}

body.instant-booking-page {
  padding-bottom: 100px;
}

/* Quantity selector */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: 2px solid #e74c3c;
  background: var(--bg-card);
  color: #e74c3c;
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.qty-btn:hover {
  background: #e74c3c;
  color: #fff;
}

.qty-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.qty-input {
  width: 48px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.35rem;
}

/* Sticky selected packages bar */
.selected-packages-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2d2d2d;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 100;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.selected-packages-bar.visible {
  transform: translateY(0);
}

.selected-packages-summary {
  font-size: 0.95rem;
}

.selected-packages-total {
  font-weight: 700;
  font-size: 1.25rem;
}

.btn-book-selected {
  padding: 0.75rem 1.5rem;
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-book-selected:hover {
  background: #c0392b;
}

.btn-book-selected:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Quantity selector */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: var(--bg-card);
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.qty-btn:hover {
  background: #e74c3c;
  color: white;
  border-color: #e74c3c;
}

.qty-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.qty-input {
  width: 48px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.35rem;
}

/* Sticky selected packages bar */
.instant-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.instant-cart-bar.visible {
  transform: translateY(0);
}

.instant-cart-bar .cart-summary {
  flex: 1;
  font-size: 0.95rem;
}

.instant-cart-bar .cart-total {
  font-weight: 700;
  font-size: 1.25rem;
  color: #e74c3c;
}

.instant-cart-bar .btn-book {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
}

.instant-cart-bar .btn-book:hover {
  background: #c0392b;
}
