/* ============================
   VERA – Main Stylesheet
   Matching screenshot aesthetic:
   Forest green #2d5a27, cream #f5f0e8
   Cormorant Garamond headings, Jost body
   ============================ */

:root {
  --green: #2d5a27;
  --green-dark: #1a3617;
  --green-light: #e8f0e5;
  --green-mid: #4a8040;
  --cream: #f5f0e8;
  --cream-dark: #ede7da;
  --white: #ffffff;
  --text: #1a2415;
  --text-mid: #4a5e44;
  --text-muted: #7a8f74;
  --border: #d8e4d4;
  --border-light: #eaf0e7;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 1px 3px rgba(45,90,39,0.08), 0 1px 2px rgba(45,90,39,0.05);
  --shadow-md: 0 4px 16px rgba(45,90,39,0.10);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .nav-logo, .auth-logo, .footer-logo {
  font-family: 'Cormorant Garamond', serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: 'Jost', sans-serif; cursor: pointer; }
input, select, textarea { font-family: 'Jost', sans-serif; }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  padding: 0 2rem; height: 64px;
}
.nav-logo {
  font-size: 22px; font-weight: 600; letter-spacing: 3px;
  color: var(--green); flex-shrink: 0;
}
.nav-links { display: flex; gap: 0.25rem; flex: 1; }
.nav-link {
  padding: 6px 12px; border-radius: var(--radius-sm);
  font-size: 14px; color: var(--text-mid); font-weight: 400;
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover { background: var(--green-light); color: var(--green); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.btn-nav-cta {
  background: var(--green); color: var(--white);
  padding: 7px 16px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500;
  transition: background 0.15s;
}
.btn-nav-cta:hover { background: var(--green-dark); }
.nav-avatar-wrap { position: relative; cursor: pointer; }
.nav-avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); }
.nav-avatar-initials {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500;
}
.nav-dropdown {
  display: none; position: absolute; right: 0; top: calc(100% + 4px);
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  min-width: 180px; overflow: hidden; z-index: 200;
  padding-top: 4px;
}
.nav-avatar-wrap:hover .nav-dropdown { display: block; }
.nav-dropdown::before {
  content: ''; display: block; height: 8px;
  position: absolute; top: -8px; left: 0; right: 0;
}
.nav-dropdown a {
  display: block; padding: 10px 16px; font-size: 14px; color: var(--text-mid);
  transition: background 0.1s;
}
.nav-dropdown a:hover { background: var(--green-light); color: var(--green); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; margin-left: auto;
}
.nav-hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; display: block; }
.nav-mobile { display: none; flex-direction: column; padding: 1rem 2rem; border-top: 1px solid var(--border-light); background: var(--white); }
.nav-mobile a { padding: 10px 0; font-size: 15px; color: var(--text-mid); border-bottom: 1px solid var(--border-light); }
.nav-mobile.open { display: flex; }

/* ============================
   FLASH MESSAGES
   ============================ */
.flash {
  text-align: center; padding: 12px 24px; font-size: 14px; font-weight: 500;
}
.flash-success { background: var(--green-light); color: var(--green); }
.flash-error { background: #fce8e8; color: #a32d2d; }

/* ============================
   BUTTONS
   ============================ */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green); color: var(--white);
  padding: 10px 22px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; border: 1.5px solid var(--green);
  transition: background 0.15s, transform 0.1s; cursor: pointer;
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-primary:active { transform: scale(0.98); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--green);
  padding: 9px 20px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; border: 1.5px solid var(--green);
  transition: background 0.15s; cursor: pointer;
}
.btn-outline:hover { background: var(--green-light); }
.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-lg { padding: 13px 28px; font-size: 16px; }
.btn-full { width: 100%; }
.btn-approve {
  background: var(--green-light); color: var(--green);
  border: 1px solid var(--green); border-radius: var(--radius-sm);
  padding: 5px 12px; font-size: 12px; font-weight: 500; cursor: pointer;
}
.btn-dispute {
  background: #fce8e8; color: #a32d2d;
  border: 1px solid #f0b0b0; border-radius: var(--radius-sm);
  padding: 5px 12px; font-size: 12px; font-weight: 500; cursor: pointer;
}
.link-btn { background: none; border: none; color: var(--green); font-size: 14px; cursor: pointer; text-decoration: underline; }

/* ============================
   LAYOUT
   ============================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 800px; }
.page-wrap { padding: 3rem 0 5rem; }
.page-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 2.5rem; gap: 1rem; flex-wrap: wrap;
}
.page-title { font-size: 36px; font-weight: 500; color: var(--text); line-height: 1.2; }
.page-sub { font-size: 15px; color: var(--text-muted); margin-top: 4px; }
.back-link { display: inline-block; color: var(--text-muted); font-size: 14px; margin-bottom: 1.5rem; }
.back-link:hover { color: var(--green); }
.muted { color: var(--text-muted); font-size: 13px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 500; text-align: center; margin-bottom: 0.5rem; }
.section-sub { text-align: center; color: var(--text-muted); margin-bottom: 3rem; font-size: 15px; }
.section-label { font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }

/* ============================
   HERO
   ============================ */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, #e8ede0 60%, #dde8d8 100%);
  padding: 80px 0;
}
.hero-content {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 4rem;
}
.hero-text { flex: 1; }
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px); font-weight: 500;
  line-height: 1.15; color: var(--green-dark); margin-bottom: 1rem;
}
.hero-sub { font-size: 16px; color: var(--text-mid); max-width: 420px; margin-bottom: 2rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image { flex-shrink: 0; }
.hero-floral-badge {
  width: 180px; height: 180px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-floral-svg { position: absolute; width: 100%; height: 100%; }
.hero-floral-icon { font-size: 72px; position: relative; z-index: 1; }

/* ============================
   SECTION ALT (Network Preview)
   ============================ */
.section-alt { background: var(--white); padding: 3rem 0; border-bottom: 1px solid var(--border-light); }
.network-preview-cards { display: flex; flex-direction: column; gap: 0.75rem; }
.network-preview-card {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px; gap: 1rem;
  box-shadow: var(--shadow);
}
.np-card-body h3 { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.np-meta { font-size: 13px; color: var(--text-muted); }

/* ============================
   FEATURES GRID
   ============================ */
.section-white { padding: 5rem 0; }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem;
}
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  display: block;
}
.feature-card:hover {
  border-color: var(--green); box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.feature-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 500; margin-bottom: 0.5rem; }
.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============================
   STATS
   ============================ */
.stats-section { background: var(--green); padding: 4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 600; color: var(--white); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 4px; letter-spacing: 0.5px; }

/* ============================
   CTA SECTION
   ============================ */
.cta-section { background: var(--cream); padding: 5rem 0; }
.cta-inner { text-align: center; }
.cta-section h2 { font-size: 36px; font-weight: 500; margin-bottom: 0.75rem; }
.cta-section p { font-size: 16px; color: var(--text-muted); margin-bottom: 2rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ============================
   FILTER PILLS
   ============================ */
.filter-bar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-pill {
  padding: 7px 16px; border-radius: 30px;
  border: 1px solid var(--border); background: var(--white);
  font-size: 13px; color: var(--text-muted); cursor: pointer;
  transition: all 0.15s; white-space: nowrap;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--green); color: var(--white); border-color: var(--green);
}
.filter-search { display: flex; gap: 0.5rem; align-items: center; }
.filter-city-input {
  padding: 7px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 13px; outline: none;
}
.filter-city-input:focus { border-color: var(--green); }

/* ============================
   VENDOR GRID
   ============================ */
.vendor-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.vendor-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: box-shadow 0.2s, border-color 0.2s;
  box-shadow: var(--shadow);
}
.vendor-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.vendor-card-top { display: flex; align-items: center; gap: 0.75rem; }
.vendor-card-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.vendor-card-initials {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 500;
}
.vendor-card-header { flex: 1; }
.vendor-card-header h3 { font-size: 15px; font-weight: 500; margin-bottom: 2px; }
.vendor-card-role { font-size: 12px; color: var(--text-muted); }
.verified-badge {
  width: 20px; height: 20px; border-radius: 50%; background: var(--green);
  color: white; font-size: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vendor-card-meta { display: flex; justify-content: space-between; font-size: 12px; }
.vendor-city-tag { background: var(--green-light); color: var(--green); padding: 2px 10px; border-radius: 12px; font-size: 11px; }
.vendor-rate { color: var(--text-muted); }
.vendor-rating { font-size: 13px; color: var(--text-mid); }
.vendor-rating .stars { color: #e2a52d; }
.review-count { color: var(--text-muted); }
.vendor-bio { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.vendor-card-footer { display: flex; align-items: center; gap: 0.5rem; font-size: 12px; margin-top: auto; }
.availability-dot { width: 8px; height: 8px; border-radius: 50%; }
.availability-dot.available { background: var(--green); }
.availability-dot.unavailable { background: #ccc; }
.availability-text { color: var(--text-muted); flex: 1; }
.view-profile-link { color: var(--green); font-size: 12px; }

/* ============================
   VENDOR DETAIL
   ============================ */
.vendor-detail-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.vd-header { display: flex; align-items: center; gap: 1.5rem; padding: 2rem; background: var(--cream); flex-wrap: wrap; }
.vd-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.vd-avatar-initials {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.vd-header-info { flex: 1; }
.vd-header-info h1 { font-size: 28px; margin-bottom: 4px; }
.vd-role { font-size: 14px; color: var(--text-muted); }
.vd-location { font-size: 14px; color: var(--text-muted); }
.vd-header-meta { text-align: right; }
.vd-rating { font-size: 15px; color: var(--text-mid); }
.vd-rate { font-size: 18px; font-weight: 500; color: var(--green); }
.vd-avail { font-size: 13px; color: var(--text-muted); }
.vd-avail.available { color: var(--green); }
.vd-section { padding: 1.5rem 2rem; border-top: 1px solid var(--border-light); }
.vd-section h2 { font-size: 20px; margin-bottom: 1rem; }
.vd-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.portfolio-item img { border-radius: var(--radius-sm); aspect-ratio: 1; object-fit: cover; width: 100%; }
.review-item { padding: 1rem 0; border-bottom: 1px solid var(--border-light); }
.review-stars { color: #e2a52d; margin-bottom: 4px; }
.review-date { font-size: 12px; color: var(--text-muted); }
.review-form { margin-top: 1.5rem; }
.star-rating { display: flex; gap: 4px; font-size: 24px; color: #ddd; cursor: pointer; margin-bottom: 0.75rem; }
.star-rating .star:hover { color: #e2a52d; }

/* ============================
   LOCAL CHAT
   ============================ */
.local-city-bar { margin-bottom: 1.5rem; }
.city-form { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.city-input {
  padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; min-width: 200px; outline: none;
}
.city-input:focus { border-color: var(--green); }
.posts-list { display: flex; flex-direction: column; gap: 1rem; }
.chat-post-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
  box-shadow: var(--shadow); transition: box-shadow 0.2s;
}
.chat-post-card:hover { box-shadow: var(--shadow-md); }
.chat-post-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.chat-post-author { display: flex; align-items: center; gap: 0.75rem; }
.chat-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.chat-initials {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500;
}
.chat-author-name { font-size: 14px; font-weight: 500; display: block; }
.chat-post-type {
  font-size: 11px; padding: 2px 8px; border-radius: 10px; margin-left: 6px;
}
.post-type-job { background: var(--green-light); color: var(--green); }
.post-type-giveaway { background: #fff3cd; color: #856404; }
.post-type-request { background: #cce5ff; color: #004085; }
.post-type-other { background: var(--cream); color: var(--text-muted); }
.chat-post-time { font-size: 12px; color: var(--text-muted); }
.chat-post-body h3 { font-size: 16px; font-weight: 500; margin-bottom: 4px; }
.chat-post-body p { font-size: 14px; color: var(--text-muted); }
.chat-post-meta { display: flex; gap: 1rem; margin-top: 0.5rem; font-size: 12px; color: var(--text-muted); }
.chat-post-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; }
.chat-city-tag { background: var(--cream); color: var(--text-muted); padding: 3px 10px; border-radius: 12px; font-size: 11px; }
.claimed-tag { font-size: 12px; color: var(--green); font-weight: 500; }

/* ============================
   EVENTS
   ============================ */
.events-list { display: flex; flex-direction: column; gap: 0.75rem; }
.event-list-card {
  display: flex; align-items: center; gap: 1.5rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  transition: box-shadow 0.2s, border-color 0.2s; box-shadow: var(--shadow);
}
.event-list-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.elc-date { text-align: center; min-width: 50px; }
.elc-month { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.elc-day { display: block; font-family: 'Cormorant Garamond', serif; font-size: 32px; line-height: 1; color: var(--green); }
.elc-year { display: block; font-size: 11px; color: var(--text-muted); }
.elc-info { flex: 1; }
.elc-info h3 { font-size: 17px; font-weight: 500; margin-bottom: 3px; }
.elc-info p { font-size: 13px; color: var(--text-muted); }
.elc-staff { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.elc-status { display: flex; align-items: center; gap: 0.75rem; }
.elc-arrow { font-size: 20px; color: var(--text-muted); }
.status-badge {
  display: inline-block; padding: 3px 10px; border-radius: 12px;
  font-size: 11px; font-weight: 500; text-transform: capitalize;
}
.status-planning { background: #fff3cd; color: #856404; }
.status-confirmed { background: var(--green-light); color: var(--green); }
.status-active { background: #cce5ff; color: #004085; }
.status-complete { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }
.status-open { background: #cce5ff; color: #004085; }
.status-paid { background: #d4edda; color: #155724; }
.status-draft { background: var(--cream); color: var(--text-muted); }
.status-pending { background: #fff3cd; color: #856404; }
.status-approved { background: var(--green-light); color: var(--green); }
.status-disputed { background: #f8d7da; color: #721c24; }
.status-badge-sm { font-size: 10px; padding: 2px 7px; border-radius: 10px; }

/* ============================
   EVENT DETAIL
   ============================ */
.event-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: start; }
.event-detail-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 2rem; gap: 1rem;
}
.event-detail-title { font-size: 36px; font-weight: 500; margin-bottom: 6px; }
.event-detail-meta { font-size: 14px; color: var(--text-muted); }
.event-section { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.25rem; box-shadow: var(--shadow); }
.event-section h2 { font-size: 20px; font-weight: 500; margin-bottom: 1rem; }
.event-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.event-section-header h2 { margin-bottom: 0; }

/* Staff rows */
.staff-row {
  display: flex; align-items: center; gap: 1rem; padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}
.staff-row:last-child { border-bottom: none; }
.staff-avatar-wrap .staff-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.staff-initials {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 500;
}
.staff-info { flex: 1; }
.staff-role-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; display: block; }
.staff-info h3 { font-size: 15px; font-weight: 500; }
.staff-info p { font-size: 13px; color: var(--text-muted); }
.staff-status-tag { font-size: 11px; padding: 3px 10px; border-radius: 12px; }
.staff-status-needed { background: #fff3cd; color: #856404; }
.staff-status-assigned { background: var(--green-light); color: var(--green); }
.staff-status-confirmed { background: #d4edda; color: #155724; }
.staff-arrow { color: var(--text-muted); }

/* Timeline */
.timeline-list { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid; grid-template-columns: 24px 1fr 140px;
  align-items: center; gap: 1rem; padding: 12px 0;
}
.tl-icon-wrap { display: flex; flex-direction: column; align-items: center; }
.tl-icon {
  width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--border);
  background: var(--white); flex-shrink: 0;
}
.timeline-item-complete .tl-icon { background: var(--green); border-color: var(--green); }
.timeline-item-active .tl-icon { background: var(--white); border-color: var(--green); box-shadow: 0 0 0 3px var(--green-light); }
.tl-line { width: 2px; flex: 1; min-height: 20px; background: var(--border-light); }
.tl-content h3 { font-size: 15px; font-weight: 500; }
.tl-time { font-size: 13px; color: var(--text-muted); }
.tl-progress-bar { height: 4px; background: var(--border-light); border-radius: 2px; overflow: hidden; }
.tl-fill-complete { width: 100%; height: 100%; background: var(--green); border-radius: 2px; }
.tl-fill-active { width: 50%; height: 100%; background: var(--green); border-radius: 2px; }
.tl-fill-pending { width: 0%; height: 100%; background: var(--green); }

/* Hours log rows */
.hours-log-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border-light); gap: 1rem;
}
.hours-log-row:last-child { border-bottom: none; }
.hlr-left { display: flex; align-items: center; gap: 0.75rem; }
.hlr-left h3 { font-size: 14px; font-weight: 500; }
.hlr-left p { font-size: 12px; color: var(--text-muted); }
.hlr-right { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; justify-content: flex-end; }
.hlr-hours { font-size: 13px; color: var(--text-muted); }
.hlr-amount { font-size: 16px; font-weight: 500; color: var(--green); }

/* Invoice summary */
.invoice-summary-box { background: var(--green-light); border-radius: var(--radius-sm); padding: 1.25rem; }
.inv-line { display: flex; justify-content: space-between; font-size: 14px; padding: 4px 0; }
.inv-divider { border-top: 1px solid var(--border); margin: 8px 0; }
.inv-total { font-weight: 500; font-size: 16px; border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px; }

/* Event photos */
.event-photos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.photo-main { grid-column: 1 / -1; border-radius: var(--radius-sm); width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.photo-thumb { border-radius: var(--radius-sm); aspect-ratio: 1; object-fit: cover; width: 100%; }
.photo-placeholder {
  background: var(--cream); border: 2px dashed var(--border);
  border-radius: var(--radius); padding: 2rem; text-align: center;
  color: var(--text-muted); font-size: 14px;
}

/* ============================
   DASHBOARD
   ============================ */
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.dash-panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.panel-header h2 { font-size: 18px; font-weight: 500; }
.panel-link { font-size: 13px; color: var(--green); }
.event-row {
  display: flex; align-items: center; gap: 1rem; padding: 10px 0;
  border-bottom: 1px solid var(--border-light); transition: color 0.15s;
}
.event-row:last-child { border-bottom: none; }
.event-row:hover { color: var(--green); }
.event-row-date { text-align: center; min-width: 44px; }
.event-row-month { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.event-row-day { display: block; font-family: 'Cormorant Garamond', serif; font-size: 24px; line-height: 1; color: var(--green); }
.event-row-info { flex: 1; }
.event-row-info h3 { font-size: 14px; font-weight: 500; }
.event-row-info p { font-size: 12px; color: var(--text-muted); }
.event-row-arrow { color: var(--text-muted); }
.hours-row { display: flex; align-items: center; gap: 0.75rem; padding: 10px 0; border-bottom: 1px solid var(--border-light); }
.hours-row:last-child { border-bottom: none; }
.hours-avatar img, .hours-avatar { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; }
.hours-info { flex: 1; }
.hours-info h3 { font-size: 14px; font-weight: 500; }
.hours-info p { font-size: 12px; color: var(--text-muted); }
.hours-actions { display: flex; gap: 0.5rem; }
.quick-links { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.quick-link-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem; text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.quick-link-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); }
.ql-icon { font-size: 24px; margin-bottom: 0.5rem; }
.quick-link-card span { font-size: 13px; color: var(--text-muted); }

/* ============================
   AUTH
   ============================ */
.auth-page {
  min-height: calc(100vh - 130px); display: flex; align-items: center;
  justify-content: center; background: var(--cream); padding: 3rem 1rem;
}
.auth-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem; width: 100%; max-width: 440px;
  box-shadow: var(--shadow-md);
}
.auth-card-wide { max-width: 600px; }
.auth-logo { display: block; font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; letter-spacing: 3px; color: var(--green); margin-bottom: 1.5rem; }
.auth-title { font-size: 28px; font-weight: 500; margin-bottom: 6px; }
.auth-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 2rem; }
.auth-switch { font-size: 14px; color: var(--text-muted); margin-top: 1.5rem; text-align: center; }
.auth-switch a { color: var(--green); }
.role-toggle { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; background: var(--cream); padding: 5px; border-radius: var(--radius-sm); }
.role-btn {
  flex: 1; padding: 8px; border: none; border-radius: var(--radius-sm);
  font-size: 13px; background: transparent; color: var(--text-muted); cursor: pointer;
  transition: all 0.15s;
}
.role-btn.active { background: var(--white); color: var(--green); font-weight: 500; box-shadow: var(--shadow); }

/* ============================
   FORMS
   ============================ */
.auth-form, .event-form, .modal-form, .profile-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--text-mid); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
input[type="text"], input[type="email"], input[type="password"],
input[type="number"], input[type="tel"], input[type="url"],
input[type="date"], select, textarea {
  padding: 9px 12px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px; color: var(--text);
  background: var(--white); outline: none;
  transition: border-color 0.15s;
}
input:focus, select:focus, textarea:focus { border-color: var(--green); }
textarea { resize: vertical; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.form-section-title { font-size: 15px; font-weight: 500; color: var(--text-mid); margin-bottom: 0.75rem; border-top: 1px solid var(--border-light); padding-top: 1rem; }
.form-actions { display: flex; gap: 1rem; justify-content: flex-end; margin-top: 0.5rem; }
.form-radio-row { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.form-radio-row label { font-size: 14px; display: flex; align-items: center; gap: 6px; font-weight: 400; }
.timeline-row { display: grid; grid-template-columns: 1fr 120px 32px; gap: 0.5rem; margin-bottom: 0.5rem; align-items: center; }
.tl-label, .tl-time { padding: 7px 10px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; }
.tl-remove { background: none; border: none; color: var(--text-muted); font-size: 14px; cursor: pointer; }

/* ============================
   INVOICING
   ============================ */
.invoice-layout { display: grid; gap: 1.5rem; }
.invoice-row-card {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem; box-shadow: var(--shadow); gap: 1rem; flex-wrap: wrap;
}
.irc-left h3 { font-size: 16px; font-weight: 500; }
.irc-left p { font-size: 13px; color: var(--text-muted); }
.irc-right { display: flex; align-items: center; gap: 0.75rem; }
.irc-total { font-size: 18px; font-weight: 500; color: var(--green); }

/* ============================
   CONFERENCES
   ============================ */
.conf-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
.conf-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.conf-img { width: 100%; height: 200px; object-fit: cover; }
.conf-img-placeholder {
  width: 100%; height: 200px; background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 64px;
}
.conf-body { padding: 1.5rem; }
.conf-body h3 { font-size: 20px; font-weight: 500; margin-bottom: 6px; }
.conf-location, .conf-dates { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.conf-desc { font-size: 14px; color: var(--text-mid); margin: 0.75rem 0; line-height: 1.6; }
.conf-speakers { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.speaker-tag { background: var(--cream); color: var(--text-mid); padding: 3px 10px; border-radius: 12px; font-size: 12px; }
.conf-pricing { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; }
.conf-price-member { font-size: 18px; font-weight: 500; color: var(--green); }
.member-label { font-size: 11px; background: var(--green-light); color: var(--green); padding: 2px 8px; border-radius: 10px; margin-left: 6px; }
.conf-price-regular { font-size: 14px; color: var(--text-muted); }
.conf-member-note { font-size: 12px; color: var(--green); }

/* ============================
   TUTORIALS
   ============================ */
.tutorials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.tutorial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: box-shadow 0.2s, transform 0.2s; box-shadow: var(--shadow); }
.tutorial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tutorial-thumb { position: relative; height: 150px; background: var(--cream); }
.tutorial-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tutorial-thumb-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--green-light), var(--cream)); }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 40px; height: 40px; border-radius: 50%; background: rgba(45,90,39,0.9);
  color: white; display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.locked-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.55); color: white; font-size: 12px;
  padding: 6px; text-align: center;
}
.tutorial-info { padding: 1rem; }
.tutorial-category { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--green); font-weight: 500; }
.tutorial-info h3 { font-size: 14px; font-weight: 500; margin: 4px 0; line-height: 1.4; }
.tutorial-instructor { font-size: 12px; color: var(--text-muted); }
.tutorial-meta { display: flex; gap: 1rem; font-size: 11px; color: var(--text-muted); margin-top: 6px; }
.modal-video { max-width: 700px; }

/* ============================
   HARDGOODS
   ============================ */
.hardgoods-list { display: flex; flex-direction: column; gap: 0.75rem; }
.hardgoods-card {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow); gap: 1rem; flex-wrap: wrap;
}
.hg-featured { border-left: 3px solid var(--green); }
.hg-left { display: flex; align-items: flex-start; gap: 1rem; flex: 1; }
.hg-logo { width: 50px; height: 50px; object-fit: contain; border-radius: var(--radius-sm); }
.hg-logo-placeholder {
  width: 50px; height: 50px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: var(--green); color: white; display: flex; align-items: center;
  justify-content: center; font-size: 20px; font-weight: 600;
}
.hg-name-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 4px; }
.hg-name-row h3 { font-size: 16px; font-weight: 500; }
.featured-badge { background: var(--green); color: white; font-size: 10px; padding: 2px 8px; border-radius: 10px; }
.hg-left > div > p { font-size: 13px; color: var(--text-muted); }
.hg-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 6px; }
.hg-tag { background: var(--cream); color: var(--text-mid); padding: 2px 8px; border-radius: 10px; font-size: 11px; }
.hg-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
.hg-category { font-size: 11px; text-transform: capitalize; color: var(--text-muted); }

/* ============================
   PROFILE
   ============================ */
.profile-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.profile-avatar-section { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border-light); }
.profile-avatar-lg { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.profile-avatar-initials-lg {
  width: 80px; height: 80px; border-radius: 50%; background: var(--green);
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.profile-avatar-section h2 { font-size: 24px; font-weight: 500; }
.member-tag { display: inline-block; background: var(--green); color: white; font-size: 12px; padding: 3px 10px; border-radius: 12px; margin-top: 4px; }

/* ============================
   MODAL
   ============================ */
.modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45); z-index: 500;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.modal {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.modal-header h2 { font-size: 22px; font-weight: 500; }
.modal-close { background: none; border: none; font-size: 22px; color: var(--text-muted); cursor: pointer; line-height: 1; }

/* ============================
   EMPTY STATES
   ============================ */
.empty-state { padding: 1.5rem 0; text-align: center; color: var(--text-muted); font-size: 14px; }
.empty-state-large {
  text-align: center; padding: 5rem 2rem;
  background: var(--cream); border-radius: var(--radius);
  border: 2px dashed var(--border);
}
.empty-state-large h3 { font-size: 22px; margin-bottom: 0.5rem; }
.empty-state-large p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ============================
   FOOTER
   ============================ */
.footer { background: var(--green-dark); color: rgba(255,255,255,0.85); padding: 4rem 0 2rem; margin-top: 4rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; margin-bottom: 3rem; }
.footer-logo { font-size: 24px; font-weight: 600; letter-spacing: 3px; color: white; display: block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 { font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 0.6rem; transition: color 0.15s; }
.footer-col a:hover { color: white; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 1.5rem 2rem 0; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; color: rgba(255,255,255,0.4); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { flex-direction: column; gap: 2rem; }
  .hero-image { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-grid { grid-template-columns: 1fr; }
  .quick-links { grid-template-columns: repeat(3, 1fr); }
  .event-detail-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .page-wrap { padding: 2rem 0 4rem; }
  .container { padding: 0 1rem; }
  .page-title { font-size: 26px; }
  .hero { padding: 3rem 0; }
  .hero-headline { font-size: 30px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .vendor-grid { grid-template-columns: 1fr; }
  .tutorials-grid { grid-template-columns: 1fr 1fr; }
  .quick-links { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .conf-grid { grid-template-columns: 1fr; }
}
