/* ===================================
   UTSAV BANQUETS — PREMIUM REDESIGN
   =================================== */

/* Google Fonts imported via HTML link */

/* ─── Design Tokens ─── */
:root {
  /* Palette */
  --gold:         #C9A84C;
  --gold-light:   #E8C96A;
  --gold-glow:    rgba(201, 168, 76, 0.3);
  --gold-faint:   rgba(201, 168, 76, 0.08);

  --bg-base:      #07080D;
  --bg-surface:   #0E1018;
  --bg-elevated:  #141620;
  --bg-glass:     rgba(14, 16, 24, 0.6);

  --border:       rgba(255, 255, 255, 0.07);
  --border-gold:  rgba(201, 168, 76, 0.2);
  --border-focus: rgba(201, 168, 76, 0.5);

  --text-100: #F2F4FF;
  --text-200: #B0B6CC;
  --text-300: #6E7490;
  --text-muted: #42485A;

  --green:  #2ED573;
  --red:    #FF4757;
  --amber:  #FFA502;
  --purple: #9B59B6;
  --teal:   #1ABC9C;
  --rose:   #E91E8C;

  /* Fonts */
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;

  /* Radii */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.25);
  --shadow-md:   0 8px 24px rgba(0,0,0,0.4);
  --shadow-lg:   0 20px 48px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 24px rgba(201, 168, 76, 0.2);

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --spring:      cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:      0.15s var(--ease);
  --t-smooth:    0.3s var(--ease);
  --t-spring:    0.5s var(--spring);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-base);
  background-image: radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 60%),
                    radial-gradient(circle at 100% 50%, rgba(249, 168, 212, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 0% 100%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-100);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, .serif { font-family: var(--serif); }

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
}

/* ─── Particle Canvas ─── */
#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* ─── Layout Wrap ─── */
main {
  position: relative;
  z-index: 1;
  max-width: 1380px;
  margin: 0 auto;
  padding: 2rem 2.5rem 4rem;
}

/* ─── Sticky Navbar ─── */
#mainHeader {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(7, 8, 13, 0.8);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow var(--t-smooth);
}

#mainHeader.scrolled {
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.brand-emblem {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  color: var(--bg-base);
  box-shadow: 0 0 16px var(--gold-glow);
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  background: linear-gradient(to right, var(--text-100) 40%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.3px;
}

/* Nav links */
.main-nav {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-200);
  padding: 0.4rem 0.85rem;
  border-radius: var(--r-pill);
  transition: var(--t-fast);
  position: relative;
}

.nav-link:hover { color: var(--text-100); background: rgba(255,255,255,0.05); }

.nav-link.active {
  color: var(--gold);
  background: var(--gold-faint);
}

/* Mode Toggle */
.mode-toggle {
  display: flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 3px;
}

.mode-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border: none;
  background: transparent;
  border-radius: var(--r-pill);
  cursor: pointer;
  color: var(--text-300);
  transition: var(--t-smooth);
}

.mode-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-base);
  box-shadow: 0 2px 10px var(--gold-glow);
}

/* ─── View Sections ─── */
.view-section {
  display: none;
  animation: fadeSlideIn 0.4s var(--ease);
}

.view-section.active { display: block; }

/* AI Invites uses flex layout, override display */
#aiInvitesView.active { display: flex; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── HERO ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
  min-height: 82vh;
  padding: 4rem 0 3rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-faint);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-pill);
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.75rem;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.3;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.3; }
  70%  { transform: scale(2); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: var(--text-100);
  letter-spacing: -0.5px;
}

.hero-headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--text-200);
  max-width: 520px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat-item strong {
  display: block;
  font-size: 1.7rem;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.stat-item span {
  font-size: 0.78rem;
  color: var(--text-300);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* CTA Buttons */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-base);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: var(--t-smooth);
  box-shadow: 0 4px 18px var(--gold-glow);
  white-space: nowrap;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.45);
  filter: brightness(1.08);
}

.cta-primary:active { transform: translateY(0); }

/* Nav right area */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 1.1rem;
  border: 1.5px solid var(--gold);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: var(--t-fast);
  white-space: nowrap;
}
.cta-secondary:hover {
  background: var(--gold-faint);
  transform: translateY(-1px);
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-100);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: var(--t-smooth);
}

.cta-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--text-200);
}

.cta-ghost-light {
  @extend .cta-ghost;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  color: var(--text-100);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: var(--t-smooth);
}

.cta-ghost-light:hover { background: rgba(255,255,255,0.18); }

.hero-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.w-full { width: 100%; }

/* ─── Hero Card ─── */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.05);
  padding: 2rem;
}

/* ─── Checklist Styles ─── */
.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all 0.2s ease;
  cursor: pointer;
}
.checklist-item:hover {
  background: rgba(255,255,255,0.05);
}
.checklist-item.done {
  opacity: 0.6;
  background: rgba(46, 204, 113, 0.05);
  border-color: rgba(46, 204, 113, 0.2);
}
.checklist-item.done .checklist-text {
  text-decoration: line-through;
  color: var(--text-muted);
}
.checklist-text {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s ease;
}
.checklist-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all 0.2s ease;
}
.checklist-item.done .checklist-check {
  background: var(--gold);
  color: #000;
}
.checklist-delete {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.4rem;
  border-radius: var(--r-sm);
  display: flex;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.checklist-item:hover .checklist-delete {
  opacity: 1;
}
.checklist-delete:hover {
  background: rgba(255,0,0,0.1);
  color: #ff4d4d;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
}

.hero-card-header h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-100);
}

.live-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  background: var(--green);
  color: var(--bg-base);
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-pill);
}

/* ─── Form Fields ─── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.form-field label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-300);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-field input,
.form-field select,
.form-field textarea,
.form-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.72rem 1rem;
  font-size: 0.92rem;
  color: var(--text-100);
  transition: var(--t-fast);
  outline: none;
  width: 100%;
}

.form-field textarea { resize: vertical; min-height: 100px; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.form-input:focus {
  border-color: var(--border-focus);
  background: rgba(201, 168, 76, 0.04);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

input[type="date"] {
  color-scheme: dark;
}

.form-field select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236E7490' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.5rem;
}

.form-field select option,
.input-with-action select option,
.sort-select-wrap select option {
  background-color: var(--bg-body);
  color: var(--text-100);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.form-row-2 .form-field { margin-bottom: 0; }

.field-hint {
  font-size: 0.75rem;
  color: var(--text-300);
  margin-top: -0.25rem;
}

.req { color: var(--gold); }
.optional { color: var(--text-300); font-weight: normal; text-transform: none; font-size: 0.7rem; }

/* Input with action button (geo) */
.input-with-action {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.input-with-action select,
.input-with-action input {
  flex: 1;
  margin-bottom: 0;
}

.geo-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.72rem 0.9rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-md);
  color: var(--gold);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--t-fast);
  flex-shrink: 0;
}

.geo-btn:hover { background: rgba(201, 168, 76, 0.2); }

.geo-btn.small { padding: 0.72rem 0.75rem; }

/* Search input with icon */
.search-input-wrap {
  position: relative;
}

.search-input-wrap svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-300);
  pointer-events: none;
}

.search-input-wrap input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.72rem 1rem 0.72rem 2.25rem;
  font-size: 0.92rem;
  color: var(--text-100);
  transition: var(--t-fast);
  outline: none;
  width: 100%;
}

.search-input-wrap input:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

/* Input prefix (₹) */
.input-prefix-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--t-fast);
}

.input-prefix-wrap:focus-within {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.input-prefix {
  padding: 0 0.75rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  border-right: 1px solid var(--border);
  height: 100%;
  display: flex;
  align-items: center;
}

.input-prefix-wrap input {
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  flex: 1;
}

.input-prefix-wrap input:focus {
  border: none;
  box-shadow: none;
}

/* Trusted Badges */
.trusted-badges {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.trusted-badges span {
  font-size: 0.75rem;
  color: var(--text-300);
}

/* ─── Marquee ─── */
.locations-marquee {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2.5rem 0 4rem;
  overflow: hidden;
}

.marquee-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-300);
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-track {
  overflow: hidden;
  flex: 1;
  mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-inner {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-inner span {
  display: inline-block;
  padding: 0.35rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-300);
  border-right: 1px solid var(--border);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Sections ─── */
.section { margin-bottom: 6rem; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

.section-header.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--text-100);
  line-height: 1.2;
}

.section-desc {
  color: var(--text-200);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin-top: 1rem;
}

.view-all-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--t-fast);
}

.view-all-link:hover { gap: 0.75rem; }

/* ─── Venue Cards Grid ─── */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
}

.venue-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-spring), border-color var(--t-smooth), box-shadow var(--t-smooth);
  cursor: pointer;
  position: relative;
}

.venue-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.venue-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.venue-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    var(--bg-surface) 0%,
    rgba(14,16,24,0.5) 50%,
    transparent 100%
  );
}

.venue-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  background: rgba(7, 8, 13, 0.8);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
}

.venue-card-rating {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  background: rgba(7, 8, 13, 0.8);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  backdrop-filter: blur(8px);
}

.venue-card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.venue-card-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-100);
  line-height: 1.25;
}

.venue-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin-bottom: 0.9rem;
}

.venue-card-meta span {
  font-size: 0.8rem;
  color: var(--text-300);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.venue-card-desc {
  font-size: 0.87rem;
  color: var(--text-200);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1.1rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.venue-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  gap: 0.75rem;
}

.venue-price-block { flex-shrink: 0; }

.venue-price-label {
  font-size: 0.68rem;
  color: var(--text-300);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.venue-price-value {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.venue-price-value span {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-300);
}

.venue-card-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-card-secondary {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55rem 0.9rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text-200);
  cursor: pointer;
  transition: var(--t-fast);
  white-space: nowrap;
}

.btn-card-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--text-200);
}

.btn-card-share {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text-200);
  cursor: pointer;
  transition: var(--t-fast);
}

.btn-card-share:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--text-200);
  color: var(--text);
}

.btn-card-primary {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.55rem 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  border-radius: var(--r-md);
  color: var(--bg-base);
  cursor: pointer;
  transition: var(--t-fast);
  white-space: nowrap;
}

.btn-card-primary:hover { filter: brightness(1.1); }

/* No results state */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-300);
  grid-column: 1 / -1;
}

.empty-icon { font-size: 3rem; margin-bottom: 1rem; }

/* ─── Steps ─── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.step-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  transition: var(--t-smooth);
}

.step-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.step-number {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }

.step-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-100);
}

.step-card p { font-size: 0.87rem; color: var(--text-200); line-height: 1.6; }

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  margin-top: 6rem;
  color: var(--border-gold);
  font-size: 1.5rem;
}

.step-connector::after { content: '→'; }

/* ─── Why Section ─── */
.why-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-left .cta-primary { margin-top: 2rem; }

.why-features { display: flex; flex-direction: column; gap: 1.5rem; }

.why-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--t-smooth);
}

.why-feature:hover {
  border-color: var(--border-gold);
  background: rgba(201, 168, 76, 0.02);
}

.why-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-icon.gold   { background: rgba(201, 168, 76, 0.12); }
.why-icon.rose   { background: rgba(233, 30, 140, 0.1); }
.why-icon.teal   { background: rgba(26, 188, 156, 0.1); }
.why-icon.purple { background: rgba(155, 89, 182, 0.1); }

.why-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-100);
}

.why-feature p { font-size: 0.84rem; color: var(--text-200); line-height: 1.55; }

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.testimonial-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--t-smooth);
}

.testimonial-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.featured-testimonial {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06), rgba(201, 168, 76, 0.02));
  border-color: var(--border-gold);
  position: relative;
  overflow: hidden;
}

.quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 0.8;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}

.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-200);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-base);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-100);
}

.testimonial-author span {
  font-size: 0.76rem;
  color: var(--text-300);
}

/* ─── Footer CTA ─── */
.footer-cta {
  background: linear-gradient(135deg,
    rgba(201, 168, 76, 0.08) 0%,
    rgba(201, 168, 76, 0.03) 50%,
    rgba(14, 16, 24, 0) 100%
  );
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  padding: 4rem;
  text-align: center;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.06), transparent 70%);
}

.footer-cta-content { position: relative; z-index: 1; }

.footer-cta h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.footer-cta p { color: var(--text-200); margin-bottom: 2rem; }

.footer-cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ─── EXPLORE PAGE ─── */
.explore-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.filter-sidebar {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  position: sticky;
  top: 88px;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.sidebar-header h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.clear-filters-btn {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--t-fast);
}

.clear-filters-btn:hover { opacity: 0.7; }

.filter-group {
  margin-bottom: 1.5rem;
}

.filter-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-300);
  margin-bottom: 0.65rem;
}

/* Chip Radio Buttons */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.filter-chips input[type="radio"] { display: none; }

.chip {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  color: var(--text-300);
  cursor: pointer;
  transition: var(--t-fast);
  user-select: none;
}

.filter-chips input[type="radio"]:checked + .chip {
  background: var(--gold-faint);
  border-color: var(--border-gold);
  color: var(--gold);
}

.chip:hover { border-color: var(--border-gold); color: var(--gold-light); }

/* Filter sidebar selects */
.filter-sidebar select,
#filterLocation,
#filterCapacity {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.72rem 2.5rem 0.72rem 1rem;
  font-size: 0.92rem;
  color: var(--text-100);
  outline: none;
  transition: var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.filter-sidebar select:focus,
#filterLocation:focus,
#filterCapacity:focus {
  border-color: var(--border-focus);
  background-color: rgba(201, 168, 76, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.filter-sidebar select option,
#filterLocation option,
#filterCapacity option {
  background-color: var(--bg-body);
  color: var(--text-100);
}

.filter-results-count {
  font-size: 0.78rem;
  color: var(--text-300);
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Results Panel */
.results-panel { min-width: 0; }

.results-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
}

.results-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
}

.sort-select-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-300);
}

.sort-select-wrap select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.4rem 2rem 0.4rem 0.75rem;
  font-size: 0.82rem;
  color: var(--text-100);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236E7490' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

/* Bookings Wrap */
.bookings-section-wrap {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.bookings-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
  transition: var(--t-smooth);
}

.booking-card:hover { border-color: var(--border-gold); }

.booking-venue-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.booking-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-200);
  margin-bottom: 0.25rem;
}

.booking-detail { font-size: 0.8rem; color: var(--text-300); }

.booking-total {
  text-align: right;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.booking-total-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: normal;
  color: var(--text-300);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.15rem;
  display: block;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.status-pending  { background: rgba(255, 165, 2, 0.1);  border: 1px solid rgba(255, 165, 2, 0.3);  color: var(--amber); }
.status-confirmed{ background: rgba(46, 213, 115, 0.1); border: 1px solid rgba(46, 213, 115, 0.3); color: var(--green); }
.status-rejected { background: rgba(255, 71, 87, 0.1);  border: 1px solid rgba(255, 71, 87, 0.3);  color: var(--red);   }
.status-completed { background: rgba(56, 173, 246, 0.1); border: 1px solid rgba(56, 173, 246, 0.3); color: #38adf6; }

/* ─── PARTNER PAGE ─── */
.partner-hero {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.metric-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--t-smooth);
}

.metric-card:hover { border-color: var(--border-gold); }

.metric-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.03);
  border-radius: var(--r-md);
  flex-shrink: 0;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-300);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.25rem;
}

.metric-value {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-100);
  line-height: 1.1;
}

.partner-workspace {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.workspace-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
}

.workspace-card-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.workspace-card-header h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.workspace-card-header p {
  font-size: 0.85rem;
  color: var(--text-300);
}

/* Toggle Group (Pricing Model) */
.toggle-group {
  display: flex;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 3px;
  gap: 3px;
  width: fit-content;
}

.toggle-option {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: calc(var(--r-md) - 3px);
  cursor: pointer;
  color: var(--text-300);
  transition: var(--t-fast);
  user-select: none;
}

.toggle-option.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-base);
}

.register-form { display: flex; flex-direction: column; }

/* Partner Bookings List */
.partner-bookings-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.partner-booking-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--t-smooth);
}

.partner-booking-card:hover { border-color: var(--border-gold); }

.pbc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.pbc-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.pbc-meta { font-size: 0.78rem; color: var(--text-300); }

.pbc-price {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  text-align: right;
}

.pbc-price small { font-family: var(--sans); font-size: 0.65rem; color: var(--text-300); display: block; }

.pbc-actions { display: flex; gap: 0.5rem; }

.btn-approve, .btn-decline {
  flex: 1;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem;
  border-radius: var(--r-md);
  cursor: pointer;
  border: none;
  transition: var(--t-fast);
}

.btn-approve { background: rgba(46, 213, 115, 0.15); color: var(--green); border: 1px solid rgba(46, 213, 115, 0.3); }
.btn-approve:hover { background: rgba(46, 213, 115, 0.25); }

.btn-decline { background: rgba(255, 71, 87, 0.1); color: var(--red); border: 1px solid rgba(255, 71, 87, 0.2); }
.btn-decline:hover { background: rgba(255, 71, 87, 0.2); }

/* ─── DIALOG / MODAL ─── */
.premium-dialog {
  background: var(--bg-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(0,0,0,0.8);
  color: var(--text-100);
  width: 92vw;
  max-width: 760px;
  max-height: 90vh;
  overflow: hidden;
  margin: auto;
  padding: 0;
  opacity: 0;
  transform: scale(0.94) translateY(20px);
  transition: opacity var(--t-smooth) allow-discrete,
              transform var(--t-smooth) allow-discrete,
              display var(--t-smooth) allow-discrete;
}

.wide-dialog { max-width: 920px; }

.premium-dialog[open] {
  opacity: 1;
  transform: scale(1) translateY(0);
}

@starting-style {
  .premium-dialog[open] {
    opacity: 0;
    transform: scale(0.94) translateY(20px);
  }
}

.premium-dialog::backdrop {
  background: rgba(4, 5, 9, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity var(--t-smooth) allow-discrete,
              display var(--t-smooth) allow-discrete;
}

.premium-dialog[open]::backdrop { opacity: 1; }

@starting-style {
  .premium-dialog[open]::backdrop { opacity: 0; }
}

.dialog-inner {
  overflow-y: auto;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.75rem 2rem 1.25rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg-elevated);
  z-index: 10;
}

.dialog-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.dialog-title {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-100);
}

.dialog-close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-200);
  cursor: pointer;
  transition: var(--t-fast);
  flex-shrink: 0;
}

.dialog-close:hover {
  background: rgba(255,71,87,0.1);
  border-color: var(--red);
  color: var(--red);
}

.dialog-hero-banner {
  height: 220px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.dialog-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  flex: 1;
}

.dialog-desc {
  font-size: 0.9rem;
  color: var(--text-200);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.detail-pricing-box {
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.pricing-box-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.87rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.pricing-box-row:last-child { border-bottom: none; }

.pricing-box-row span { color: var(--text-300); }

.price-highlight { color: var(--gold); font-size: 1.05rem; }

.amenities-section h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-300);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.75rem;
}

.amenities-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.amenity-tag {
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  color: var(--text-200);
}

/* Reviews */
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.reviews-header h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
}

.avg-rating-badge {
  background: var(--gold-faint);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--r-pill);
}

.reviews-scroll {
  max-height: 220px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-right: 0.5rem;
}

.review-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.85rem;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.review-name { font-size: 0.82rem; font-weight: 600; }
.review-stars { font-size: 0.7rem; color: var(--gold); }
.review-date { font-size: 0.7rem; color: var(--text-300); }
.review-body { font-size: 0.82rem; color: var(--text-200); font-style: italic; line-height: 1.5; }

/* Star Rating Input */
.add-review-form h5 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-200);
}

.star-rating-group {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.star-input {
  font-size: 1.6rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--t-fast);
  user-select: none;
}

.star-input.active, .star-input:hover { color: var(--gold); }

.add-review-form input[type="text"] {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.65rem 1rem;
  font-size: 0.87rem;
  color: var(--text-100);
  width: 100%;
  margin-bottom: 0.75rem;
  outline: none;
  transition: var(--t-fast);
}

.add-review-form input[type="text"]:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

/* ─── BOOKING DIALOG ─── */
.booking-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  overflow-y: auto;
  max-height: calc(90vh - 90px);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Addon items */
.addon-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.addon-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: var(--t-fast);
}

.addon-item:hover { border-color: var(--border-gold); background: var(--gold-faint); }

.addon-item input[type="checkbox"] { display: none; }

.addon-item:has(input:checked) {
  border-color: var(--border-gold);
  background: var(--gold-faint);
}

.addon-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.addon-icon { font-size: 1.2rem; }

.addon-content strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
}

.addon-content span {
  font-size: 0.75rem;
  color: var(--gold);
}

/* Live Calculator */
.live-calculator {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: fit-content;
  position: sticky;
  top: 0;
}

.calc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.calc-header h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
}

.calc-venue-info {
  font-size: 0.8rem;
  color: var(--text-300);
  margin-bottom: 1.25rem;
  padding: 0.6rem;
  background: rgba(255,255,255,0.02);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}

.calc-rows { display: flex; flex-direction: column; gap: 0; }

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  font-size: 0.87rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.calc-row span:first-child { color: var(--text-300); }
.calc-row span:last-child { font-weight: 600; color: var(--text-100); }

.tax-row span:first-child { font-style: italic; }
.tax-row span:last-child { color: var(--text-200) !important; }

.calc-total-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0 0.75rem;
  margin-top: 0.25rem;
  border-top: 2px solid var(--border-gold);
}

.calc-total-box span { font-size: 0.9rem; color: var(--text-200); font-weight: 600; }

.calc-total-box strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
}

.calc-note {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.73rem;
  color: var(--text-300);
  line-height: 1.4;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  background: var(--bg-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text-100);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 360px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform var(--t-spring), opacity var(--t-smooth);
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: var(--r-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .metrics-row { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .testimonial-card:nth-child(3) { display: none; }
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; min-height: unset; padding: 3rem 0; }
  .hero-card { max-width: 480px; }
  .explore-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .sidebar-header { grid-column: 1 / -1; }
  .filter-results-count { grid-column: 1 / -1; }
  .why-section { grid-template-columns: 1fr; gap: 3rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .partner-workspace { grid-template-columns: 1fr; }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.2s ease;
}
.mobile-menu-btn:active { transform: scale(0.9); }

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  main { padding: 1.5rem 1.25rem 3rem; }
  .nav-container { padding: 0 1.25rem; gap: 0.5rem; }
  .nav-right { gap: 0.4rem; }
  .brand-name { display: none; }
  .mode-btn { font-size: 0; gap: 0; padding: 0.5rem; }
  .mode-btn svg { width: 16px; height: 16px; }
  #navSignInBtn { padding: 0.4rem 0.6rem; font-size: 0.75rem; }
  .main-nav { 
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 64px; /* Header height approx */
      left: 0;
      right: 0;
      background: rgba(20, 21, 35, 0.98);
      backdrop-filter: blur(16px);
      padding: 1.5rem;
      gap: 0.75rem;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 20px 40px rgba(0,0,0,0.6);
      transform: translateY(-150%);
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 990;
  }
  .main-nav.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
  }
  .main-nav .nav-link {
      padding: 0.85rem 1.25rem;
      font-size: 1.05rem;
      border-radius: 0.75rem;
      background: rgba(255,255,255,0.03);
  }
  .main-nav .nav-link.active {
      background: rgba(201,168,76,0.15);
  }
  .hero-headline { font-size: 2.8rem; }
  .hero-stats { gap: 1.25rem; }
  .venues-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:nth-child(3) { display: flex; }
  .dialog-body { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .footer-cta { padding: 2.5rem 1.5rem; }
  .metrics-row { grid-template-columns: 1fr 1fr; }
  .filter-sidebar { grid-template-columns: 1fr 1fr; }
  .booking-card { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .mode-btn { padding: 0.4rem 0.6rem; font-size: 0.75rem; }
  .metrics-row { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .filter-sidebar { grid-template-columns: 1fr; }
}

/* ─── Account / User Menu ─── */
.user-avatar-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  border-radius: 2rem;
  padding: 0.35rem 0.75rem 0.35rem 0.35rem;
  cursor: pointer;
  color: var(--text);
  transition: background 0.2s;
}
.user-avatar-btn:hover { background: rgba(var(--accent-rgb), 0.22); }

.user-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2, #a855f7));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}

.user-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  min-width: 200px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  z-index: 1000;
  overflow: hidden;
  animation: fadeInDown 0.18s ease;
}
.user-dropdown.open { display: block; }

.user-dropdown-info {
  padding: 0.9rem 1rem;
  background: rgba(var(--accent-rgb), 0.07);
}
.user-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}
.user-dropdown-item {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0.7rem 1rem;
  color: var(--text);
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.15s;
}
.user-dropdown-item:hover { background: rgba(var(--accent-rgb), 0.1); }
.user-dropdown-item.danger { color: #f87171; }
.user-dropdown-item.danger:hover { background: rgba(248,113,113,0.1); }

/* ─── Auth Modal Tabs ─── */
.auth-tabs {
  display: flex;
  background: var(--bg);
  border-radius: 0.6rem;
  padding: 0.3rem;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}
.auth-tab {
  flex: 1;
  padding: 0.55rem 1rem;
  border: none;
  border-radius: 0.45rem;
  background: none;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.9rem;
}
.auth-tab.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.4);
}
.auth-form { display: flex; flex-direction: column; gap: 0; }
.auth-error {
  color: #f87171;
  font-size: 0.85rem;
  margin: 0.25rem 0;
}
.auth-switch {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.auth-switch button {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  font-weight: 600;
  font-size: inherit;
}
.auth-switch button:hover { text-decoration: underline; }

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── City Pills ─── */
.city-pills-wrap {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 1rem 2.5rem 0;
  max-width: 1380px;
  margin: 0 auto;
}
.city-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-200);
  border-radius: var(--r-pill);
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.city-pill:hover { 
  border-color: rgba(201, 168, 76, 0.5); 
  color: var(--gold); 
  background: rgba(201, 168, 76, 0.1); 
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 168, 76, 0.15);
}
.city-pill.active { 
  background: linear-gradient(135deg, var(--gold), #a68434); 
  color: #000; 
  border-color: transparent; 
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

/* ─── Wishlist Heart Button on Venue Card ─── */
.wishlist-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s;
  z-index: 5;
  backdrop-filter: blur(4px);
  /* Constrain to card image area only */
  top: 0.75rem;
  right: 0.75rem;
}
.wishlist-btn:hover { transform: scale(1.2); }
.wishlist-btn.wishlisted { color: #f87171; }

/* ─── Booking Status Timeline ─── */
.booking-timeline {
  display: flex;
  gap: 0;
  margin-top: 0.75rem;
  align-items: center;
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
  font-size: 0.7rem;
  color: var(--text-muted);
}
.timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--border);
  transition: background 0.3s;
}
.timeline-step.done .timeline-dot { background: var(--gold); border-color: var(--gold); }
.timeline-step.active .timeline-dot { background: #4ade80; border-color: #4ade80; box-shadow: 0 0 8px rgba(74,222,128,0.5); }
.timeline-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin-bottom: 1.1rem;
}
.timeline-line.done { background: var(--gold); }

/* ─── Profile View ─── */
#profileView .section { padding: 2rem 2.5rem; }

/* ─── Customer Availability Calendar ─── */
.avail-cal-section {
  margin-top: 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 1rem;
}
.avail-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.avail-cal-header h4 { font-size: 0.95rem; font-weight: 700; }
.avail-cal-nav { display: flex; align-items: center; gap: 0.4rem; }
.avail-cal-btn {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.15s;
  line-height: 1;
}
.avail-cal-btn:hover { background: rgba(255,255,255,0.1); }
.avail-cal-month {
  font-size: 0.82rem;
  font-weight: 700;
  min-width: 110px;
  text-align: center;
  color: var(--text-muted);
}
.avail-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.avail-day-hdr {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 0.2rem 0;
}
.avail-cell {
  aspect-ratio: 1;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  min-height: 32px;
  transition: transform 0.1s;
}
.avail-cell.avail-other { opacity: 0.2; }
.avail-cell.avail-free {
  background: rgba(74,222,128,0.12);
  color: #4ade80;
}
.avail-cell.avail-booked {
  background: rgba(248,113,113,0.18);
  color: #f87171;
  cursor: not-allowed;
}
.avail-cell.avail-pending {
  background: rgba(251,191,36,0.15);
  color: #fbbf24;
}
.avail-cell.avail-today {
  outline: 1.5px solid var(--gold);
}
.avail-cal-legend {
  display: flex;
  gap: 1rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}
.avail-legend-item {
  font-size: 0.75rem;
  font-weight: 600;
}
.avail-legend-item.avail-free { color: #4ade80; }
.avail-legend-item.avail-pending { color: #fbbf24; }
.avail-legend-item.avail-booked { color: #f87171; }

/* ─── Wedding Planner ─── */
.wedding-hero {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1060 40%, #1a1035 100%);
  padding: 4rem 2.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wedding-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(249,168,212,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.wedding-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0.75rem 0;
}
.wedding-gradient-text {
  background: linear-gradient(135deg, #f9a8d4, #c9a84c, #f9a8d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wedding-hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}
.wedding-section {
  padding: 2.5rem 2.5rem;
  max-width: 1380px;
  margin: 0 auto;
}
.wp-category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.wp-cat-card {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.wp-cat-card:hover, .wp-cat-card.active {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201,168,76,0.15);
}
.wp-cat-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.wp-cat-name { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; }
.wp-cat-range { font-size: 0.72rem; color: var(--gold); font-weight: 600; margin-bottom: 0.5rem; }
.wp-cat-toggle { font-size: 0.72rem; color: var(--text-muted); }

/* Detail panels */
.wp-detail-panel {
  display: none;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  padding: 2rem;
  margin-top: 0.5rem;
  animation: fadeSlideIn 0.3s ease;
}
.wp-detail-panel.open { display: block; }
@keyframes fadeSlideIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
.wp-panel-close {
  float: right;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 2rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.wp-panel-close:hover { background: rgba(255,255,255,0.1); }
.wp-panel-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 1.25rem; }
.wp-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.wp-item-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 1.25rem;
  transition: background 0.2s;
}
.wp-item-card:hover { background: rgba(255,255,255,0.07); }
.wp-item-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.wp-item-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.wp-item-range {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2rem;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.75rem;
}
.wp-item-tips { display: flex; flex-direction: column; gap: 0.35rem; }
.wp-tip { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

/* Checklist */
.wp-checklist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.wp-checklist-col {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
}
.wp-checklist-month {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.wp-checklist-items { display: flex; flex-direction: column; gap: 0.5rem; }
.wp-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.4;
  transition: color 0.15s;
}
.wp-check-item input[type=checkbox] { margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.wp-check-item:has(input:checked) { color: var(--text); text-decoration: line-through; opacity: 0.5; }

/* Budget Estimator */
.wp-budget-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
}
.wp-budget-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}
.wp-budget-field { display: flex; flex-direction: column; gap: 0.4rem; }
.wp-budget-field label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.wp-budget-field input, .wp-budget-field select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  padding: 0.65rem 0.85rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.wp-budget-field input:focus, .wp-budget-field select:focus { border-color: var(--gold); }
.wp-budget-result { border-top: 1px solid var(--border); padding-top: 1.5rem; }
.wp-budget-total { font-size: 1.5rem; font-weight: 800; color: var(--gold); margin-bottom: 1rem; }
.wp-budget-breakdown { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.75rem; }
.wp-budget-row {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wp-budget-label { font-size: 0.85rem; color: var(--text-muted); }
.wp-budget-amount { font-size: 0.92rem; font-weight: 700; color: var(--text); }

@media (max-width: 900px) {
  .wp-category-grid { grid-template-columns: repeat(3, 1fr); }
  .wp-checklist-grid { grid-template-columns: 1fr 1fr; }
  .wp-budget-inputs { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .wp-category-grid { grid-template-columns: repeat(2, 1fr); }
  .wp-checklist-grid { grid-template-columns: 1fr; }
  .wp-budget-inputs { grid-template-columns: 1fr; }
  .wedding-section { padding: 1.5rem 1rem; }
}

/* ── SHARE DROPDOWN ── */
.share-dropdown {
    position: fixed;
    z-index: 9999;
    background: rgba(20, 20, 30, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-md);
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 180px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.share-dropdown.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.share-dropdown .share-btn {
    background: transparent;
    border: none;
    color: var(--text-200);
    padding: 0.75rem 1rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: var(--r-sm);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.share-dropdown .share-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

/* =========================================================
   360° VIRTUAL TOUR VIEWER
   ========================================================= */
.pano-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    cursor: grab;
}
.pano-container:active {
    cursor: grabbing;
}
.pano-image {
    height: 100%;
    width: 300%; /* extra wide for panning */
    background-size: cover;
    background-position: center;
    background-repeat: repeat-x;
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform;
}

/* =========================================================
   AI CARD MAKER STUDIO
   ========================================================= */
.card-maker-container {
    display: flex;
    min-height: calc(100vh - 80px);
    width: 100%;
    background: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    position: relative;
}
.card-maker-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 17, 21, 0.85); /* Dark overlay */
}

.card-maker-sidebar {
    position: relative;
    width: 400px;
    padding: 2.5rem;
    overflow-y: auto;
    z-index: 2;
    border-right: 1px solid var(--border);
}

.card-maker-preview {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 2;
}

/* Theme Selector */
.theme-selector {
    display: flex;
    gap: 0.5rem;
}
.theme-btn {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-200);
    padding: 0.6rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.theme-btn:hover { background: rgba(255,255,255,0.1); }
.theme-btn.active { background: var(--gold); color: #000; border-color: var(--gold); }

/* The AI Card Canvas */
.ai-card {
    width: 400px;
    height: 600px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.5s ease;
}

.ai-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 2rem;
}

.ai-card-header { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 2rem; }
.ai-card-names { font-family: var(--font-serif); font-size: 2.5rem; line-height: 1.2; margin-bottom: 1.5rem; }
.ai-card-message { font-size: 0.95rem; font-style: italic; margin-bottom: 2rem; max-width: 80%; }
.ai-card-divider { width: 50px; height: 1px; background: currentColor; margin: 0 auto 2rem; opacity: 0.5; }
.ai-card-date { font-weight: 600; font-size: 1.1rem; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px; }
.ai-card-venue { font-size: 0.9rem; opacity: 0.8; }

/* THEME: Royal Gold */
.theme-royal {
    background: #0f1115;
    color: #e2c073; /* Gold text */
}
.theme-royal .ai-card-content { border-color: #e2c073; }
.theme-royal::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px dashed rgba(226, 192, 115, 0.3);
    z-index: 1;
}

/* THEME: Modern Minimalist */
.theme-minimalist {
    background: #ffffff;
    color: #1a1a1a;
}
.theme-minimalist .ai-card-names { font-family: var(--font-sans); font-weight: 700; font-size: 2.2rem; }
.theme-minimalist .ai-card-content { border: none; }

/* THEME: Floral Elegance */
.theme-floral {
    background: #fdfbf7;
    color: #4a5d4e; /* Deep green */
}
.theme-floral::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 200px;
    background: url('https://images.unsplash.com/photo-1522013897723-1d07c09c91ee?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80') top/cover;
    opacity: 0.3;
}
.theme-floral .ai-card-content { border: none; padding-top: 4rem; }

/* ─── Pulsing Animations for Countdowns ─── */
@keyframes text-pulse {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}
.pulsing-text {
  animation: text-pulse 2s infinite ease-in-out;
}

/* ─── Recently Viewed Strip ─── */
#recentlyViewedGrid::-webkit-scrollbar {
  display: none;
}
#recentlyViewedGrid .venue-card {
  flex: 0 0 300px;
  max-width: 300px;
}
