﻿/* ═══════════════════════════════════════════════════
   CampSphere – Public Website Custom Styles
   ═══════════════════════════════════════════════════ */

/* ── Scroll behaviour ─────────────────────────────── */
html { scroll-behavior: smooth; }

/* ── Fade-in on scroll (JS toggles .is-visible) ──── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero parallax shimmer ───────────────────────── */
.hero-gradient {
  background: linear-gradient(160deg, rgba(6,78,59,.82) 0%, rgba(5,150,105,.55) 50%, rgba(217,119,6,.30) 100%);
}

/* ── Glass card ──────────────────────────────────── */
.glass {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.18);
}

/* ── Floating animation (hero icons) ─────────────── */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-float-delayed { animation: float 3s ease-in-out 1.5s infinite; }

/* ── Pulse-glow for CTA buttons ──────────────────── */
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(217,119,6,.45); }
  50%     { box-shadow: 0 0 20px 6px rgba(217,119,6,.18); }
}
.btn-glow { animation: pulse-glow 2.5s ease-in-out infinite; }

/* ── Camp card hover lift ────────────────────────── */
.card-lift {
  transition: transform .3s ease, box-shadow .3s ease;
}
.card-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

/* ── Category card gradient overlay on hover ─────── */
.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(to top, rgba(6,78,59,.70), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
}
.category-card:hover::after { opacity: 1; }

/* ── Mobile menu slide ───────────────────────────── */
.mobile-menu {
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: translateX(0); }

/* ── Star rating colour ──────────────────────────── */
.star-filled { color: #f59e0b; }
.star-empty  { color: #d1d5db; }

/* ── Search bar focus ring ───────────────────────── */
.search-ring:focus-within {
  box-shadow: 0 0 0 3px rgba(5,150,105,.40);
}

/* ── Pricing card popular badge ──────────────────── */
.pricing-popular {
  position: relative;
}
.pricing-popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #d97706;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── Testimonial quote mark ──────────────────────── */
.quote-mark::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(5,150,105,.25);
  position: absolute;
  top: -.25rem;
  left: -.15rem;
}

/* ── Smooth image zoom on hover ──────────────────── */
.img-zoom img {
  transition: transform .5s ease;
}
.img-zoom:hover img {
  transform: scale(1.08);
}

/* ── Custom scrollbar (desktop) ──────────────────── */
@media (min-width: 768px) {
  ::-webkit-scrollbar { width: 8px; }
  ::-webkit-scrollbar-track { background: #f5f5f4; }
  ::-webkit-scrollbar-thumb { background: #059669; border-radius: 4px; }
}

/* ── Auth modal ──────────────────────────────────── */
.auth-modal-card {
  animation: authModalIn .35s cubic-bezier(.4,0,.2,1);
}
@keyframes authModalIn {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Owner dropdown ──────────────────────────────── */
#owner-dropdown {
  animation: ddFade .2s ease;
}
@keyframes ddFade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Booking pages ──────────────────────────────── */
.booking-page-wrap {
  background: linear-gradient(180deg, #f5f5f4 0%, #fafaf9 35%, #f5f5f4 100%);
}

.booking-hero-wrap {
  position: relative;
  z-index: 1;
}

.booking-hero {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1.05rem 1.2rem;
  border: 1px solid rgba(231, 229, 228, .96);
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.booking-hero h1 {
  color: #1c1917;
}

.booking-hero p {
  color: #374151;
  font-weight: 500;
}

.booking-hero-icon {
  width: 2.15rem;
  height: 2.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: .75rem;
  color: #0369a1;
  border: 1px solid rgba(14,165,233,.25);
  background: linear-gradient(135deg, rgba(14,165,233,.14), rgba(2,132,199,.08));
}

.booking-main-card {
  background: #fff;
  border: 1px solid rgba(231, 229, 228, .9);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15,23,42,.06);
}

.booking-main-image {
  height: 17rem;
}

.booking-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .28rem .65rem;
  border-radius: 9999px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #0369a1;
  background: rgba(14, 165, 233, .12);
  border: 1px solid rgba(14, 165, 233, .25);
}

.booking-review-note {
  display: flex;
  align-items: center;
  gap: .5rem;
  border-radius: .75rem;
  padding: .62rem .75rem;
  border: 1px solid rgba(14, 165, 233, .25);
  background: linear-gradient(135deg, rgba(14, 165, 233, .12), rgba(2, 132, 199, .08));
  color: #0f172a;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.45;
}

.booking-review-note i {
  color: #0284c7;
}

.booking-meta-card {
  padding: .8rem;
  border-radius: .75rem;
  border: 1px solid #f1f5f9;
  background: linear-gradient(180deg, #fafaf9 0%, #fff 100%);
  transition: transform .2s ease, box-shadow .2s ease;
}

.booking-meta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(15, 23, 42, .06);
}

.booking-meta-title {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #a8a29e;
}

.booking-meta-value {
  font-size: .92rem;
  margin-top: .25rem;
  font-weight: 700;
  color: #1f2937;
}

.booking-summary-card {
  position: relative;
  overflow: hidden;
  padding: 1.15rem;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, .95);
  background: linear-gradient(180deg, #ffffff 0%, #fafaf9 100%);
  box-shadow: 0 18px 38px rgba(15, 23, 42, .08);
}

.booking-summary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0ea5e9, #059669, #d97706);
}

.booking-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .85rem;
}

.booking-summary-chip {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #047857;
  background: rgba(5, 150, 105, .12);
  border: 1px solid rgba(5, 150, 105, .24);
  border-radius: 999px;
  padding: .22rem .55rem;
  white-space: nowrap;
}

.booking-summary-list {
  display: grid;
  gap: .45rem;
}

.booking-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #57534e;
  padding: .45rem .1rem;
}

.booking-summary-total {
  margin-top: .8rem;
  padding-top: .8rem;
  border-top: 1px dashed #d6d3d1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 800;
  color: #1c1917;
}

.booking-summary-total span:last-child {
  color: #d97706;
}

.booking-status-note {
  border: 1px dashed #d6d3d1;
  border-radius: .75rem;
  padding: .55rem .7rem;
  background: #fafaf9;
}

.booking-result-card {
  background: #fff;
  border: 1px solid rgba(231, 229, 228, .9);
  border-radius: 1rem;
  box-shadow: 0 18px 38px rgba(15,23,42,.08);
  padding: 2rem 1.5rem;
  text-align: center;
}

.booking-result-wrap {
  position: relative;
  z-index: 1;
}

.booking-result-title {
  font-size: 1.65rem;
  line-height: 1.2;
  font-weight: 800;
  color: #1c1917;
}

.booking-result-message {
  font-size: .92rem;
  color: #57534e;
}

.booking-result-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-result-icon.success {
  color: #059669;
  background: rgba(16,185,129,.12);
}

.booking-result-icon.error {
  color: #dc2626;
  background: rgba(239,68,68,.12);
}

.booking-result-info {
  border: 1px solid #e7e5e4;
  background: #fafaf9;
  border-radius: .9rem;
  padding: .8rem .95rem;
}

.booking-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
  font-size: .88rem;
  padding: .5rem 0;
  border-bottom: 1px dashed #e7e5e4;
}

.booking-result-row:last-child {
  border-bottom: 0;
}

.booking-result-row span {
  color: #78716c;
}

.booking-result-row strong {
  color: #1f2937;
  text-align: right;
}

.booking-result-row--stack {
  align-items: flex-start;
}

.booking-result-row--stack strong {
  flex: 1;
  min-width: 0;
}

.booking-result-actions a {
  min-width: 10.5rem;
}

/* ── Camp detail gallery slider ─────────────────── */
.camp-gallery-slider {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 20px 40px rgba(15, 23, 42, .22);
}

.camp-gallery-track {
  position: relative;
  height: 16rem;
}

@media (min-width: 640px) {
  .camp-gallery-track { height: 20rem; }
}

@media (min-width: 1024px) {
  .camp-gallery-track { height: 27rem; }
}

.camp-gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .45s ease, transform .75s ease;
  pointer-events: none;
}

.camp-gallery-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.camp-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.32), rgba(0,0,0,.04) 45%, rgba(0,0,0,.14));
}

.camp-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.3);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}

.camp-gallery-nav:hover {
  background: rgba(0,0,0,.5);
  border-color: rgba(255,255,255,.6);
}

.camp-gallery-nav.prev { left: .8rem; }
.camp-gallery-nav.next { right: .8rem; }

.camp-gallery-counter {
  position: absolute;
  top: .9rem;
  right: .9rem;
  z-index: 5;
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  padding: .28rem .62rem;
}

.camp-gallery-dots {
  position: absolute;
  bottom: 4.7rem;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: .38rem;
  padding-inline: .75rem;
}

.camp-gallery-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  transition: all .2s ease;
}

.camp-gallery-dot.is-active {
  width: 1.45rem;
  background: #fff;
}

.camp-gallery-thumbs {
  position: absolute;
  left: .55rem;
  right: .55rem;
  bottom: .55rem;
  z-index: 5;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(3.4rem, 1fr);
  gap: .4rem;
}

.camp-gallery-thumb {
  height: 3.1rem;
  border-radius: .6rem;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: .7;
  transition: all .2s ease;
}

.camp-gallery-thumb:hover,
.camp-gallery-thumb.is-active {
  opacity: 1;
  border-color: rgba(255,255,255,.95);
}

.wishlist-add-btn {
  background: #ffffff;
  color: #ef4444;
}

.wishlist-add-btn:hover {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

@media (max-width: 639px) {
  .camp-gallery-dots { bottom: .9rem; }
  .camp-gallery-thumbs { display: none; }
}

body[data-header-style="solid"] {
  background: #f5f5f4;
}

body[data-header-style="solid"] #site-header {
  background: #064e3b !important;
  box-shadow: 0 10px 28px rgba(0,0,0,.16);
}

@media (max-width: 1023px) {
  .booking-hero {
    padding: .85rem 1rem;
  }

  .booking-main-image {
    height: 14rem;
  }

  .booking-summary-card {
    padding: 1rem;
  }

  .booking-summary-chip {
    font-size: .63rem;
  }

  .booking-result-card {
    padding: 1.3rem 1rem;
  }

  .booking-result-title {
    font-size: 1.35rem;
  }

  .booking-result-actions a {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════
   Booking Calendar (CampPropertyDetail)
   ═══════════════════════════════════════════════════ */

.cs-calendar {
  border: 1px solid rgba(231, 229, 228, .9);
  background: linear-gradient(180deg, #ffffff 0%, #fafaf9 100%);
  border-radius: 1rem;
  padding: .9rem .85rem .85rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, .04);
}

.cs-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .65rem;
}

.cs-cal-title {
  font-size: .92rem;
  font-weight: 700;
  color: #1c1917;
  letter-spacing: .01em;
}

.cs-cal-nav {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #57534e;
  background: #f5f5f4;
  border: 1px solid #e7e5e4;
  transition: all .18s ease;
}

.cs-cal-nav:hover {
  color: #047857;
  border-color: rgba(5, 150, 105, .3);
  background: rgba(5, 150, 105, .06);
  transform: translateY(-1px);
}

.cs-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px;
  margin-bottom: 4px;
}

.cs-cal-weekdays span {
  text-align: center;
  font-size: .65rem;
  font-weight: 700;
  color: #a8a29e;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 0;
}

.cs-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px;
}

.cs-cal-cell {
  position: relative;
  aspect-ratio: 1 / 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 600;
  color: #1f2937;
  border-radius: 8px;
  background: transparent;
  border: 1px solid transparent;
  transition: background .15s ease, color .15s ease, transform .12s ease;
  cursor: pointer;
}

.cs-cal-cell:hover:not(:disabled):not(.is-checkin):not(.is-checkout) {
  background: rgba(5, 150, 105, .08);
  color: #047857;
  transform: scale(1.02);
}

.cs-cal-cell.is-empty { pointer-events: none; }

.cs-cal-cell.is-past {
  color: #d6d3d1;
  cursor: not-allowed;
  text-decoration: line-through;
}

.cs-cal-cell.is-confirmed {
  background: linear-gradient(135deg, rgba(239, 68, 68, .14), rgba(220, 38, 38, .12));
  color: #b91c1c;
  cursor: not-allowed;
  border-color: rgba(220, 38, 38, .25);
}

.cs-cal-cell.is-pending {
  background: linear-gradient(135deg, rgba(245, 158, 11, .15), rgba(217, 119, 6, .12));
  color: #92400e;
  cursor: not-allowed;
  border-color: rgba(217, 119, 6, .25);
}

.cs-cal-cell.is-in-range {
  background: rgba(5, 150, 105, .12);
  color: #047857;
  border-radius: 0;
}

.cs-cal-cell.is-checkin,
.cs-cal-cell.is-checkout {
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
  box-shadow: 0 4px 12px rgba(5, 150, 105, .35);
  transform: scale(1.04);
}

.cs-cal-cell.is-checkin { border-radius: 10px 0 0 10px; }
.cs-cal-cell.is-checkout { border-radius: 0 10px 10px 0; }
.cs-cal-cell.is-checkin.is-checkout { border-radius: 10px; }

.cs-cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem .9rem;
  margin-top: .8rem;
  padding-top: .75rem;
  border-top: 1px dashed #e7e5e4;
  font-size: .68rem;
  color: #78716c;
  font-weight: 600;
}

.cs-leg-item {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.cs-leg-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

.cs-leg-dot.is-confirmed { background: linear-gradient(135deg, #ef4444, #dc2626); }
.cs-leg-dot.is-pending { background: linear-gradient(135deg, #f59e0b, #d97706); }
.cs-leg-dot.is-selected { background: linear-gradient(135deg, #059669, #047857); }

.cs-cal-hint {
  margin-top: .55rem;
  font-size: .72rem;
  color: #78716c;
  text-align: center;
}

.cs-cal-hint.is-error { color: #b91c1c; font-weight: 600; }
.cs-cal-hint.is-info { color: #047857; }

/* ═══════════════════════════════════════════════════
   Confirm Booking — Payment Method Card
   ═══════════════════════════════════════════════════ */

.booking-payment-card {
  position: relative;
  overflow: hidden;
  padding: 1.15rem;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, .95);
  background: linear-gradient(180deg, #ffffff 0%, #fafaf9 100%);
  box-shadow: 0 18px 38px rgba(15, 23, 42, .08);
}

.booking-payment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d97706, #059669, #0ea5e9);
}

.booking-payment-intro {
  font-size: .82rem;
  color: #78716c;
  margin-bottom: .85rem;
}

.booking-pm-options {
  display: grid;
  gap: .55rem;
}

.booking-pm-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .85rem;
  border-radius: .85rem;
  border: 1.5px solid #e7e5e4;
  background: #fff;
  cursor: pointer;
  transition: all .2s ease;
  user-select: none;
}

.booking-pm-option:hover {
  border-color: rgba(5, 150, 105, .35);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(15, 23, 42, .06);
}

.booking-pm-option.is-active {
  border-color: #059669;
  background: linear-gradient(180deg, rgba(5, 150, 105, .06) 0%, rgba(255, 255, 255, 1) 100%);
  box-shadow: 0 8px 22px rgba(5, 150, 105, .12);
}

.booking-pm-icon {
  width: 38px;
  height: 38px;
  border-radius: .7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, .12);
  color: #047857;
  flex-shrink: 0;
}

.booking-pm-option.is-active .booking-pm-icon {
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
  box-shadow: 0 6px 14px rgba(5, 150, 105, .3);
}

.booking-pm-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.booking-pm-title {
  font-size: .9rem;
  font-weight: 700;
  color: #1c1917;
}

.booking-pm-desc {
  font-size: .73rem;
  color: #78716c;
  margin-top: 1px;
}

.booking-pm-check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid #d6d3d1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  flex-shrink: 0;
  transition: all .2s ease;
}

.booking-pm-option.is-active .booking-pm-check {
  background: linear-gradient(135deg, #059669, #047857);
  border-color: #059669;
  color: #fff;
}

/* Cash detail panel (same reveal pattern as e-transfer) */
.booking-cash-panel {
  margin-top: .85rem;
  border: 1px solid rgba(5, 150, 105, .28);
  background: linear-gradient(180deg, rgba(5, 150, 105, .07), rgba(255, 255, 255, 1));
  border-radius: .9rem;
  padding: .9rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: opacity .25s ease, max-height .3s ease, transform .25s ease;
}

.booking-cash-panel.is-open {
  opacity: 1;
  max-height: 280px;
  transform: translateY(0);
}

.booking-cash-panel[hidden] {
  display: none !important;
}

.booking-cash-head {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  margin-bottom: .65rem;
}

.booking-cash-icon {
  width: 32px;
  height: 32px;
  border-radius: .6rem;
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(5, 150, 105, .28);
}

.booking-cash-title {
  font-size: .83rem;
  font-weight: 700;
  color: #065f46;
}

.booking-cash-sub {
  font-size: .72rem;
  color: #047857;
  margin-top: 2px;
}

.booking-cash-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .45rem;
}

.booking-cash-list li {
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  font-size: .72rem;
  font-weight: 600;
  color: #44403c;
}

.booking-cash-list li svg {
  color: #059669;
  margin-top: 1px;
}

.booking-etransfer-panel {
  margin-top: .85rem;
  border: 1px solid rgba(14, 165, 233, .25);
  background: linear-gradient(180deg, rgba(14, 165, 233, .06), rgba(255, 255, 255, 1));
  border-radius: .9rem;
  padding: .9rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: opacity .25s ease, max-height .3s ease, transform .25s ease;
}

.booking-etransfer-panel.is-open {
  opacity: 1;
  max-height: 360px;
  transform: translateY(0);
}

.booking-etransfer-panel[hidden] {
  display: none !important;
}

.booking-etransfer-head {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  margin-bottom: .65rem;
}

.booking-etransfer-icon {
  width: 32px;
  height: 32px;
  border-radius: .6rem;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(14, 165, 233, .3);
}

.booking-etransfer-title {
  font-size: .83rem;
  font-weight: 700;
  color: #0c4a6e;
}

.booking-etransfer-sub {
  font-size: .72rem;
  color: #075985;
  margin-top: 1px;
}

.booking-etransfer-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  background: #fff;
  border: 1px dashed rgba(14, 165, 233, .4);
  border-radius: .65rem;
  padding: .55rem .75rem;
}

.booking-etransfer-email-text {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .82rem;
  font-weight: 600;
  color: #0c4a6e;
  word-break: break-all;
}

.booking-etransfer-copy {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .72rem;
  font-weight: 600;
  color: #047857;
  background: rgba(5, 150, 105, .1);
  border: 1px solid rgba(5, 150, 105, .25);
  border-radius: .55rem;
  padding: .3rem .55rem;
  transition: all .2s ease;
  flex-shrink: 0;
}

.booking-etransfer-copy:hover {
  background: rgba(5, 150, 105, .18);
  transform: translateY(-1px);
}

.booking-etransfer-copy.is-copied {
  background: #059669;
  color: #fff;
  border-color: #059669;
}

.booking-etransfer-foot {
  margin-top: .55rem;
  font-size: .72rem;
  color: #075985;
}

.booking-note-block {
  margin-top: .9rem;
}

.booking-note-label {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  font-weight: 600;
  color: #44403c;
  margin-bottom: .4rem;
}

.booking-note-optional {
  font-size: .68rem;
  color: #a8a29e;
  font-weight: 500;
}

.booking-note-input {
  width: 100%;
  border: 1px solid #e7e5e4;
  border-radius: .85rem;
  background: #fff;
  padding: .7rem .8rem;
  font-size: .85rem;
  color: #1c1917;
  resize: vertical;
  min-height: 78px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.booking-note-input:focus {
  outline: none;
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, .14);
}

.booking-note-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: .25rem;
}

.booking-note-counter {
  font-size: .68rem;
  color: #a8a29e;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   Client Booking Detail — Payment & Note
   ═══════════════════════════════════════════════════ */

.cl-payment-card { position: relative; }

.cl-pm-chip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .25rem .6rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.cl-pm-chip-transfer {
  background: linear-gradient(135deg, rgba(14, 165, 233, .14), rgba(2, 132, 199, .12));
  color: #0c4a6e;
  border: 1px solid rgba(14, 165, 233, .3);
}

.cl-pm-chip-cash {
  background: linear-gradient(135deg, rgba(5, 150, 105, .14), rgba(4, 120, 87, .12));
  color: #065f46;
  border: 1px solid rgba(5, 150, 105, .3);
}

.cl-pm-chip-none {
  background: rgba(231, 229, 228, .6);
  color: #78716c;
  border: 1px solid #e7e5e4;
}

.cl-etransfer-box {
  display: flex;
  gap: .65rem;
  align-items: center;
  background: linear-gradient(180deg, rgba(14, 165, 233, .07), #fff);
  border: 1px solid rgba(14, 165, 233, .25);
  border-radius: .85rem;
  padding: .75rem .85rem;
}

.cl-etransfer-icon {
  width: 34px;
  height: 34px;
  border-radius: .55rem;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(14, 165, 233, .3);
}

.cl-note-box {
  background: #fafaf9;
  border: 1px solid #e7e5e4;
  border-radius: .85rem;
  padding: .8rem .85rem;
}
