/* =============================================
   PAINT & BUBBLES — MAIN STYLESHEET
   Branding: Watercolour rose, dusty mauve, slate blue
   ============================================= */

:root {
  /* Typography — overridden at runtime by design settings */
  --font-body: 'Nunito', sans-serif;
  --font-h1:   'Nunito', sans-serif;
  --font-h2:   'Nunito', sans-serif;
  --font-h3:   'Nunito', sans-serif;
  --font-h4:   'Nunito', sans-serif;

  /* Banner / hero gradient (overridden at runtime by design settings) */
  --banner-start: #2C0F18;
  --banner-mid:   #6B2D42;
  --banner-end:   #C4748A;

  /* Divider / separator line colour */
  --divider: #C4A35A;

  /* Brand Palette — inspired by the Paint & Bubbles watercolour logo */
  --rose:        #C4748A;
  --rose-deep:   #A85D72;
  --rose-dark:   #8A4560;
  --rose-50:     #F5F0EB;
  --rose-100:    #FFE8EE;
  --rose-200:    #FFCCD8;
  --slate:       #8FA8B5;
  --slate-light: #C5D6DE;
  --slate-50:    #F0F5F7;

  /* Status */
  --green:  #059669;
  --amber:  #d97706;
  --coral:  #e05555;

  /* Neutrals */
  --text-dark:  #2C2028;
  --text-mid:   #5C4F57;
  --text-light: #9E8E96;
  --border:     #EDE0E5;
  --bg:         #FDF8F9;
  --white:      #ffffff;

  /* Section Backgrounds — overridden at runtime by design settings */
  --bg-about:  #ffffff;
  --bg-trust:  #F5F0EB;
  --bg-events: var(--bg);
  --bg-social: #F5F0EB;
  --bg-footer: #2C0F18;

  /* Effects */
  --shadow-sm: 0 1px 4px rgba(160,80,110,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:    0 4px 20px rgba(160,80,110,0.12);
  --shadow-lg: 0 12px 48px rgba(160,80,110,0.18);
  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1 { font-family: var(--font-h1); }
h2 { font-family: var(--font-h2); }
h3 { font-family: var(--font-h3); }
h4 { font-family: var(--font-h4); }

.hidden { display: none !important; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 88px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
}

/* Script text logo (fallback / used by default) */
.logo-text {
  font-family: 'Dancing Script', cursive;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.logo-and {
  color: var(--rose);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: flex-end;
}

.nav-btn {
  background: none;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-btn:hover  { background: var(--rose-50); color: var(--rose); }
.nav-btn.active { background: var(--rose-50); color: var(--rose-deep); font-weight: 800; }

/* ---- BURGER BUTTON ---- */
.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  color: var(--text-dark);
  flex-shrink: 0;
  transition: background var(--transition);
}
.nav-burger:hover { background: var(--rose-50); }
.nav-burger svg { width: 24px; height: 24px; display: block; transition: var(--transition); }
.burger-icon-close { display: none; }
.site-header.nav-open .burger-icon-open  { display: none; }
.site-header.nav-open .burger-icon-close { display: block; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: white;
  box-shadow: 0 4px 14px rgba(168,93,114,0.35);
}
.btn-primary:hover  { background: linear-gradient(135deg, var(--rose-deep), var(--rose-dark)); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(168,93,114,0.45); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid var(--border);
  box-shadow: none;
}
.btn-ghost:hover { border-color: var(--rose); color: var(--rose); }

.btn-sm   { padding: 8px 18px; font-size: 13px; }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--banner-start) 0%, var(--banner-mid) 45%, var(--banner-end) 100%);
  padding: 180px 0 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 65%);
  top: -150px;
  right: -120px;
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(143,168,181,0.18) 0%, transparent 70%);
  bottom: 0;
  left: 3%;
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  padding-bottom: 72px;
  position: relative;
  z-index: 2;
}


.hero-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(44px, 7vw, 78px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-highlight {
  color: #FFD4DE;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 32px;
  font-weight: 500;
  line-height: 1.65;
}

/* ---- HERO ACTIONS ---- */

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.55);
  box-shadow: none;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
  transform: translateY(-1px);
}

/* ---- VIEW ALL / EVENTS CTA ---- */
.view-all-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--rose);
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}
.view-all-link:hover { color: var(--rose-dark); text-decoration: underline; }

.events-cta {
  text-align: center;
  margin-top: 40px;
}

/* ---- EVENTS PAGE HERO ---- */
.events-page-hero {
  background: linear-gradient(135deg, var(--banner-start) 0%, var(--banner-mid) 45%, var(--banner-end) 100%);
  padding: 40px 0 0;
  position: relative;
  overflow: hidden;
}

.events-page-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 65%);
  top: -120px;
  right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.events-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.events-page-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 6px;
}

.events-page-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ---- VIEW TOGGLE ---- */
.events-view-toggle {
  display: flex;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 4px;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}

.view-toggle-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.75);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.view-toggle-btn:hover  { color: white; background: rgba(255,255,255,0.1); }
.view-toggle-btn.active { background: white; color: var(--rose-dark); }

/* Search bar on events page sits at the bottom of the hero */
.events-page-hero .search-bar {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 600px) {
  .events-page-header { flex-direction: column; align-items: flex-start; }
  .events-view-toggle { align-self: stretch; justify-content: center; }
}

/* ---- SEARCH BAR ---- */
.search-bar {
  display: flex;
  gap: 12px;
  background: white;
  padding: 16px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.search-field {
  flex: 1;
  min-width: 160px;
  position: relative;
}

.search-field input,
.search-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--bg);
  transition: var(--transition);
  appearance: none;
}

.search-field input:focus,
.search-field select:focus {
  outline: none;
  border-color: var(--rose);
  background: white;
  box-shadow: 0 0 0 3px rgba(196,116,138,0.15);
}

.search-field input::placeholder { color: var(--text-light); font-weight: 500; }

/* ---- ABOUT SECTION ---- */
.about-section {
  padding: 80px 0;
  background: var(--bg-about);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.about-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--rose);
  margin-bottom: 12px;
}

.about-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-body {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--divider);
}

.about-pillar {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-pillar-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
}

.about-pillar-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
}

.about-image { position: relative; display: flex; flex-direction: column; }

.about-image-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 380px;
  background: linear-gradient(135deg, var(--banner-mid), var(--banner-end));
  box-shadow: var(--shadow-lg);
}

.about-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Decorative blob behind image */
.about-image::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  background: var(--rose-100);
  border-radius: var(--radius-lg);
  bottom: -20px;
  right: -20px;
  z-index: -1;
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image { order: 1; }
  .about-image::before { display: none; }
  .about-pillars { flex-direction: row; flex-wrap: wrap; }
  .about-pillar { flex: 1; min-width: 140px; }
}

@media (max-width: 480px) {
  .about-section { padding: 56px 0; }
  .about-pillars { flex-direction: column; }
}

/* ---- TRUST BAR ---- */
.trust-section {
  padding: 48px 0;
  background: var(--bg-trust);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.trust-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--rose-200);
  transform: translateY(-2px);
}

.trust-icon {
  width: 44px;
  height: 44px;
  background: var(--rose-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rose-deep);
}

.trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.trust-sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.5;
}

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

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; gap: 12px; }
  .trust-section { padding: 36px 0; }
}

/* ---- EVENTS SECTION ---- */
.events-section { padding: 40px 0 80px; background: var(--bg-events); }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
}

/* ---- EVENT CARDS ---- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.event-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-200);
}

.event-card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--banner-mid), var(--banner-end));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}

.event-card-image img { width: 100%; height: 100%; object-fit: cover; }

.event-card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(8px);
  color: var(--rose-deep);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.event-card-sold-out {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.event-card-body  { padding: 20px; }

.event-card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.event-card-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}

.event-meta-item svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--rose); }

.event-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--divider);
}

.event-price      { font-size: 22px; font-weight: 900; color: var(--rose-deep); }
.event-price-free { color: var(--green); }
.event-spots      { font-size: 12px; font-weight: 600; color: var(--text-light); }
.event-spots.low  { color: #e05555; font-weight: 700; }

/* ---- CALENDAR ---- */
.calendar-section { padding: 40px 0 80px; }

.calendar-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.fc-toolbar-title { font-size: 18px !important; font-weight: 800 !important; }
.fc-button-primary { background: var(--rose) !important; border-color: var(--rose-deep) !important; }
.fc-button-primary:hover { background: var(--rose-deep) !important; }
.fc-button-primary:not(:disabled):active,
.fc-button-primary:not(:disabled).fc-button-active { background: var(--rose-dark) !important; border-color: var(--rose-dark) !important; }
.fc-event {
  background: var(--rose) !important;
  border-color: var(--rose-deep) !important;
  border-radius: 6px !important;
  padding: 2px 7px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  cursor: pointer;
}
.fc-event:hover { background: var(--rose-deep) !important; }
.fc-day-today   { background: var(--rose-50) !important; }

/* ---- MODALS ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,10,18,0.55);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.modal {
  background: white;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.25s ease;
}

.modal-lg { max-width: 680px; }

@keyframes modalIn {
  from { transform: translateY(20px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}
.modal-close:hover { background: var(--rose-100); border-color: var(--rose-200); }
.modal-close svg { width: 16px; height: 16px; }

/* Event Detail Modal */
.event-detail-image {
  height: 220px;
  background: linear-gradient(135deg, var(--banner-mid), var(--banner-end));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.event-detail-image img { width: 100%; height: 100%; object-fit: cover; }

.event-detail-body { padding: 28px; }

.event-detail-title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
  padding-right: 32px;
  color: var(--text-dark);
}

.event-detail-category {
  display: inline-block;
  background: var(--rose-100);
  color: var(--rose-deep);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 20px;
}

.event-detail-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.detail-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
  border-radius: 10px;
  padding: 12px;
}

.detail-meta-icon  { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.detail-meta-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.6px; color: var(--text-light); font-weight: 800; }
.detail-meta-value { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-top: 2px; }

.event-detail-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  font-weight: 500;
}

.event-detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--divider);
}

/* Booking Form */
.booking-header {
  background: linear-gradient(135deg, var(--banner-mid), var(--banner-end));
  padding: 28px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  color: white;
}
.booking-header h2 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.booking-header p  { font-size: 14px; opacity: 0.85; font-weight: 500; }

.booking-body { padding: 28px; }

.booking-steps { display: flex; gap: 8px; margin-bottom: 28px; }

.booking-step {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  transition: var(--transition);
}
.booking-step.active { background: var(--rose); }
.booking-step.done   { background: var(--green); }

.form-section { margin-bottom: 24px; }
.form-section h3 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.form-row { display: flex; gap: 12px; }
.form-row .form-group { flex: 1; }
.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 600;
  color: var(--text-dark);
  background: white;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(196,116,138,0.15);
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  width: 42px;
  height: 42px;
  background: var(--bg);
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-mid);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--rose-100); color: var(--rose); }

.qty-display {
  width: 50px;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  height: 42px;
  line-height: 42px;
}

/* Booking Summary */
.booking-summary {
  background: var(--rose-50);
  border: 1px solid var(--rose-200);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 0;
  color: var(--text-mid);
}

.summary-row.total {
  font-weight: 900;
  font-size: 16px;
  color: var(--text-dark);
  padding-top: 10px;
  border-top: 1px solid var(--rose-200);
  margin-top: 4px;
}

/* Stripe Elements */
#payment-element {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  background: white;
  margin-bottom: 16px;
  min-height: 56px;
}

#payment-message {
  color: var(--coral);
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  text-align: center;
}

/* Confirmation */
.confirmation-body { padding: 40px 32px; text-align: center; }

.confirm-icon {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, var(--rose-100), var(--rose-200));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin: 0 auto 24px;
}

.confirm-title {
  font-family: 'Dancing Script', cursive;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.confirm-subtitle {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.65;
}

.confirm-details {
  background: var(--rose-50);
  border: 1px solid var(--rose-100);
  border-radius: 14px;
  padding: 20px;
  text-align: left;
  margin-bottom: 24px;
}

.confirm-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--divider);
}
.confirm-detail-row:last-child { border: none; }
.confirm-detail-row span:first-child { color: var(--text-light); font-weight: 600; }
.confirm-detail-row span:last-child  { font-weight: 700; color: var(--text-dark); text-align: right; }

.booking-ref {
  background: linear-gradient(135deg, var(--banner-mid), var(--banner-end));
  color: white;
  border-radius: 12px;
  padding: 12px 24px;
  display: inline-block;
  font-family: monospace;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(168,93,114,0.35);
}

/* ---- STATES ---- */
.loading-state, .empty-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  gap: 16px;
  color: var(--text-light);
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--rose-100);
  border-top-color: var(--rose);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.empty-icon  { font-size: 48px; }
.empty-state h3 { font-size: 18px; font-weight: 700; color: var(--text-mid); }
.empty-state p  { font-size: 14px; font-weight: 500; }

/* ---- FAQ PAGE ---- */
.faq-hero {
  background: linear-gradient(135deg, var(--banner-start) 0%, var(--banner-mid) 45%, var(--banner-end) 100%);
  padding: 56px 0;
  text-align: center;
}

.faq-hero-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.faq-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}

.faq-section {
  padding: 40px 0 80px;
  background: #fff;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--divider);
}

.faq-item {
  border-bottom: 1px solid var(--divider);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--rose-deep); }

.faq-item.open .faq-question { color: var(--text-dark); }

.faq-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #6b7280;
  transition: transform var(--transition);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 48px 28px 0;
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.8;
  white-space: pre-wrap;
}

.faq-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
  font-weight: 600;
}

@media (max-width: 600px) {
  .faq-question { padding: 22px 0; font-size: 16px; }
  .faq-answer-inner { padding: 0 24px 22px 0; font-size: 15px; }
}

/* ---- SOCIAL SECTION ---- */
.social-section {
  background: var(--bg-social);
  padding: 56px 0;
  border-top: 1.5px solid var(--border);
}

.social-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.social-section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.social-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.social-link svg {
  width: 22px;
  height: 22px;
}

.social-link:hover {
  background: var(--sc, var(--rose));
  border-color: var(--sc, var(--rose));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}

/* ---- FOOTER ---- */
.site-footer { background: var(--bg-footer); padding: 56px 0; }

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-brand {
  font-family: 'Dancing Script', cursive;
  font-size: 26px;
  font-weight: 700;
  color: white;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo-text {
  font-family: 'Dancing Script', cursive;
  font-size: 32px;
  font-weight: 700;
  color: white;
}

.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 500; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  /* Show burger, hide desktop nav */
  .nav-burger { display: flex; margin-left: auto; }
  .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px;
    gap: 4px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    z-index: 99;
  }
  .site-header.nav-open .main-nav { display: flex; }
  .main-nav .nav-btn {
    text-align: left;
    width: 100%;
    padding: 13px 16px;
    border-radius: 10px;
    font-size: 15px;
  }
  .main-nav .btn {
    width: 100%;
    text-align: center;
    margin-top: 8px;
    padding: 13px 16px;
    border-radius: 10px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header-inner { gap: 12px; }
  .hero { padding: 48px 0 0; }
  .hero-title { font-size: 44px; }
  .hero-sub   { font-size: 15px; }

  .search-bar { border-radius: var(--radius) var(--radius) 0 0; }
  .search-field { min-width: calc(50% - 6px); }
  .search-field:first-child { min-width: 100%; }

  .events-grid { grid-template-columns: 1fr; }
  .event-detail-meta { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; gap: 0; }
  .booking-body   { padding: 20px; }
  .booking-header { padding: 20px; }
  .modal { border-radius: var(--radius); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .event-detail-footer { flex-direction: column; }
  .event-detail-footer .btn { width: 100%; }
  .confirmation-body { padding: 28px 20px; }
}

/* =============================================
   EVENT DETAIL PAGE
   ============================================= */

.ed-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 120px 0;
  color: var(--text-light);
}

/* Hero */
.ed-hero {
  padding: 56px 0 52px;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

.ed-breadcrumb {
  margin-bottom: 20px;
}
.ed-breadcrumb a {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}
.ed-breadcrumb a:hover { color: #fff; }

.ed-category {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  backdrop-filter: blur(6px);
}

.ed-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.ed-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.ed-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
}
.ed-hero-meta-item svg {
  width: 16px;
  height: 16px;
  opacity: 0.75;
  flex-shrink: 0;
}

/* Event image */
.ed-event-image {
  margin-bottom: 36px;
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
}
.ed-event-image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Two-column layout */
.ed-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  padding: 52px 0 80px;
  align-items: start;
}

/* Sections */
.ed-section {
  margin-bottom: 48px;
}
.ed-section:last-child { margin-bottom: 0; }

.ed-section-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--divider);
}

.ed-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  white-space: pre-wrap;
}

/* What's included */
.ed-included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ed-included-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}
.ed-included-list svg {
  width: 20px;
  height: 20px;
  color: var(--rose-deep);
  flex-shrink: 0;
}

/* Good to know */
.ed-know-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ed-know-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--rose-50, #FDF8F9);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.ed-know-icon {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-deep);
  flex-shrink: 0;
}
.ed-know-icon svg { width: 18px; height: 18px; }
.ed-know-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 3px;
}
.ed-know-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

/* Location */
.ed-location-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
}
.ed-location-icon {
  width: 44px;
  height: 44px;
  background: var(--rose-100, #FFE8EE);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-deep);
  flex-shrink: 0;
}
.ed-location-icon svg { width: 22px; height: 22px; }
.ed-location-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.ed-location-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--rose-deep);
  text-decoration: none;
}
.ed-location-link:hover { text-decoration: underline; }

/* Booking card (sticky sidebar) */
.ed-sidebar {
  position: sticky;
  top: 88px; /* 69px sticky header + 19px breathing room */
}

.ed-booking-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(160,80,110,0.12);
}

.ed-booking-price {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--divider);
}
.ed-price-amount {
  display: block;
  font-size: 40px;
  font-weight: 900;
  color: var(--rose-deep);
  line-height: 1;
}
.ed-price-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
}
.ed-price-free {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--green, #059669);
}

.ed-booking-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.ed-booking-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
}
.ed-booking-detail-row svg {
  width: 16px;
  height: 16px;
  color: var(--text-light);
  flex-shrink: 0;
  margin-top: 1px;
}

.ed-availability {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  padding: 10px 14px;
  background: var(--rose-50, #FDF8F9);
  border-radius: 8px;
}
.ed-availability svg { width: 16px; height: 16px; flex-shrink: 0; }

.ed-book-btn {
  padding: 16px;
  font-size: 16px;
  font-weight: 800;
  border-radius: var(--radius);
  width: 100%;
}

.ed-booking-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  font-weight: 500;
}

.ed-map-card {
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}
.ed-map-card iframe {
  width: 100%;
  height: 220px;
  display: block;
  border: none;
}
.ed-map-card-footer {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ed-map-card-address {
  flex: 1;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.4;
}
.ed-map-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--rose);
  text-decoration: none;
  white-space: nowrap;
}
.ed-map-card-link:hover { text-decoration: underline; }

.ed-please-note {
  margin-top: 16px;
  background: #fff8f9;
  border: 1px solid var(--border);
  border-left: 3px solid var(--rose);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.ed-please-note-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ed-please-note-text {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .ed-layout {
    grid-template-columns: 1fr;
  }
  .ed-sidebar {
    position: static;
    order: -1;
  }
  .ed-booking-card {
    max-width: 480px;
  }
}

@media (max-width: 600px) {
  .ed-hero { padding: 40px 0 36px; min-height: 260px; }
  .ed-hero-meta { gap: 12px; }
  .ed-know-grid { grid-template-columns: 1fr; }
  .ed-layout { padding: 32px 0 60px; gap: 32px; }
}

/* =============================================
   REVIEWS SECTION
   ============================================= */
.reviews-section {
  background: #ffffff;
  padding: 72px 0;
}

.reviews-section-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.reviews-section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
}

.reviews-stars-summary {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-stars-big {
  color: #00b67a;
  font-size: 28px;
  letter-spacing: 2px;
}

.reviews-score {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
}

.reviews-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviews-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--border, #e5e7eb);
  background: #fff;
  color: var(--text-dark);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: background 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s;
}

.reviews-arrow:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}

.reviews-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.reviews-track-wrap {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.reviews-track-wrap::-webkit-scrollbar { display: none; }

.reviews-cta {
  text-align: center;
  margin-top: 32px;
}

.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.review-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: box-shadow .2s;
}

.review-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.09);
}

.review-card-image {
  margin: -28px -28px 0;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  line-height: 0;
}
.review-card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-card-stars {
  color: #00b67a;
  font-size: 20px;
  letter-spacing: 1px;
}

.review-tp-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #00b67a;
  letter-spacing: 0.3px;
}

.review-tp-logo svg {
  width: 16px;
  height: 16px;
}

.review-card-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-dark);
  flex: 1;
}

.review-card-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 6px;
  border-top: 1px solid var(--divider);
}

.review-author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.review-author-location {
  font-size: 12px;
  color: var(--text-light);
}

@media (max-width: 640px) {
  .reviews-section { padding: 48px 0; }
  .review-card { width: 280px; padding: 20px; }
  .reviews-section-title { font-size: 22px; }
}

/* =============================================
   REVIEWS PAGE
   ============================================= */
.reviews-page-section {
  padding: 64px 0 48px;
  background: var(--bg, #FDF8F9);
}

.reviews-page-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.reviews-count {
  font-size: 15px;
  color: var(--text-light);
  font-weight: 500;
}

.reviews-page-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.reviews-page-cards .review-card {
  width: auto;
}

.reviews-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--text-light);
  font-size: 16px;
}

/* ---- REVIEW SUBMISSION FORM ---- */
.review-form-section {
  padding: 64px 0;
  background: #fff;
  border-top: 1px solid var(--divider);
}

.review-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.review-form-intro {
  margin-bottom: 36px;
}

.review-form-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.review-form-sub {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
}

.review-form .form-group {
  margin-bottom: 20px;
}

.review-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.review-form .req {
  color: var(--rose);
  font-weight: 700;
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e5d5d9;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-dark);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}

.review-form input:focus,
.review-form textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(196,116,138,.12);
}

.review-form textarea {
  resize: vertical;
  min-height: 120px;
}

.review-form-btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 8px;
}

.review-form-msg {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 16px;
}

.review-form-msg.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.review-form-msg.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

@media (max-width: 640px) {
  .reviews-page-cards { grid-template-columns: 1fr; }
  .review-form-title { font-size: 22px; }
}

/* ---- CONTACT PAGE ---- */
.contact-section {
  padding: 56px 0 80px;
  background: #fff;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}
.contact-intro {
  padding-top: 8px;
}
.contact-intro p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-mid);
}
.contact-form-wrap {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
@media (max-width: 700px) {
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 24px; }
}

/* ---- PRIVATE EVENTS PAGE ---- */
.private-events-section {
  padding: 56px 0 40px;
  background: #fff;
}
.private-events-content {
  max-width: 780px;
  margin: 0 auto;
}
.private-events-cta {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 48px;
}
.wysiwyg-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 32px 0 12px;
}
.wysiwyg-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 24px 0 10px;
}
.wysiwyg-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.wysiwyg-content ul, .wysiwyg-content ol {
  padding-left: 24px;
  margin-bottom: 14px;
}
.wysiwyg-content li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.wysiwyg-content a { color: var(--rose-deep); }

/* Gallery Page */
.gallery-section { padding: 80px 0; }
.gallery-hero { /* similar to other hero sections */ }
.gallery-grid {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 0;
  list-style: none;
}
.gallery-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gallery-item {
  margin-bottom: 0;
}
.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-item img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.gallery-empty {
  text-align: center;
  color: #888;
  padding: 60px 0;
  font-size: 1.1rem;
}

/* ---- PAYMENT METHOD PICKER ---- */
.payment-method-options {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.payment-method-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  border: 2px solid #e8e0e4;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark, #3a2c35);
  transition: border-color 0.15s, background 0.15s;
}
.payment-method-btn.active {
  border-color: var(--rose, #C4748A);
  background: rgba(196,116,138,0.05);
}

/* ---- FOOTER CARD BADGES ---- */
.footer-cards {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  opacity: 0.7;
}
.card-badge {
  display: inline-flex;
  width: 44px;
  height: 28px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
  flex-shrink: 0;
}
.card-badge svg { width: 100%; height: 100%; display: block; }

/* Card badges on event detail booking panel */
.ed-card-badges {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  opacity: 0.6;
}

/* ---- ABOUT CAROUSEL ---- */
.about-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
}
.about-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.about-carousel-slide.active { opacity: 1; }
.about-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.about-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.about-carousel-dot.active {
  background: #fff;
  transform: scale(1.25);
}

/* =============================================
   GIFT VOUCHERS PAGE
   ============================================= */

.voucher-hero {
  background: linear-gradient(135deg, var(--banner-start) 0%, var(--banner-mid) 50%, var(--banner-end) 100%);
}

.voucher-section {
  padding: 60px 0 80px;
  background: var(--bg);
}

.voucher-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(160,80,110,0.13);
  padding: 40px 40px;
}

@media (max-width: 600px) {
  .voucher-card {
    padding: 28px 20px;
    border-radius: 16px;
  }
}

.voucher-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 16px;
}

.voucher-amount-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.voucher-amount-btn {
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text-dark);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}

.voucher-amount-btn:hover {
  border-color: var(--rose);
  background: var(--card-bg);
}

.voucher-amount-btn.active {
  border-color: var(--rose);
  background: var(--rose);
  color: #fff;
}

.voucher-code-display {
  font-family: monospace;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--rose-deep), var(--rose));
  color: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  text-align: center;
  margin: 20px 0;
  word-break: break-all;
}

.voucher-success {
  text-align: center;
  padding: 16px 0;
}

.voucher-success-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.voucher-success-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-dark);
  margin: 0 0 10px;
}

.voucher-success-sub {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 8px;
}

.voucher-success-hint {
  color: var(--text-light);
  font-size: 13px;
  margin: 0 0 8px;
}

/* Voucher redemption in booking modal */
.voucher-apply-section {
  margin-top: 14px;
}

.voucher-toggle {
  background: none;
  border: none;
  color: var(--rose);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.voucher-toggle:hover {
  color: var(--rose-deep);
}

/* ---- CONTACT FORM — CUSTOM FIELDS ---- */
.cf-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 0 8px;
}
.cf-checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  accent-color: var(--rose);
  cursor: pointer;
}
.cf-checkbox-group label {
  font-size: 0.9rem;
  line-height: 1.45;
  cursor: pointer;
  color: var(--text-dark);
  margin: 0;
}
