/* ============================================
   KHATI SAMAJ MATRIMONY - Main Stylesheet
   Theme: Warm Saffron + Deep Maroon + Gold
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --primary: #8B1A1A;
  --primary-dark: #6B1010;
  --primary-light: #C0392B;
  --secondary: #D4AF37;
  --secondary-light: #F0D060;
  --accent: #FF6B35;
  --saffron: #FF9933;
  --bg: #FFF8F0;
  --bg-card: #FFFFFF;
  --bg-dark: #1A0A0A;
  --text: #1A0A0A;
  --text-muted: #6B5050;
  --text-light: #9B8080;
  --border: #E8D5C4;
  --border-light: #F5EBE0;
  --success: #16A34A;
  --error: #DC2626;
  --warning: #D97706;
  --info: #2563EB;
  --gold: #D4AF37;
  --silver: #A8A9AD;
  --shadow-sm: 0 1px 3px rgba(139,26,26,0.08);
  --shadow-md: 0 4px 16px rgba(139,26,26,0.12);
  --shadow-lg: 0 8px 32px rgba(139,26,26,0.16);
  --shadow-xl: 0 16px 48px rgba(139,26,26,0.20);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ── SCROLLBAR ─────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ── TYPOGRAPHY ────────────────────── */
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.3; }
.serif { font-family: 'Playfair Display', serif; }
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }

/* ── LAYOUT ────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 640px; margin: 0 auto; padding: 0 20px; }
.container-md { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-profiles { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }

/* ── NAVBAR ────────────────────────── */
.navbar {
  background: var(--primary);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; max-width: 1200px; margin: 0 auto; height: 64px;
}
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.navbar-brand img { height: 44px; width: 44px; border-radius: 50%; border: 2px solid var(--secondary); }
.brand-name { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; line-height: 1.1; }
.brand-tagline { color: var(--secondary-light); font-size: 0.65rem; font-weight: 400; }
.navbar-nav { display: flex; align-items: center; gap: 8px; }
.nav-link { color: rgba(255,255,255,0.85); padding: 8px 14px; border-radius: 8px; font-size: 0.88rem; font-weight: 500; transition: var(--transition); white-space: nowrap; }
.nav-link:hover, .nav-link.active { background: rgba(255,255,255,0.15); color: #fff; }
.navbar-actions { display: flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; background: var(--primary-dark); padding: 16px 20px; }
.mobile-menu.open { display: block; }
.mobile-menu .nav-link { display: block; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }

/* ── BUTTONS ───────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px; border-radius: 8px; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition); white-space: nowrap;
  text-decoration: none; line-height: 1;
}
.btn:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-primary { background: var(--secondary); color: var(--primary-dark); }
.btn-primary:hover { background: var(--secondary-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-red { background: var(--primary); color: #fff; }
.btn-red:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-green { background: var(--success); color: #fff; }
.btn-green:hover { background: #15803d; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--bg); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-ghost:hover { background: var(--primary); color: #fff; }
.btn-sm { padding: 6px 14px; font-size: 0.8rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 10px; }
.btn-full { width: 100%; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #128C7E; }
.btn-icon { width: 38px; height: 38px; padding: 0; border-radius: 50%; }

/* ── HERO SECTION ──────────────────── */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #C0392B 100%);
  padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,175,55,0.2); border: 1px solid var(--secondary); color: var(--secondary); padding: 6px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; margin-bottom: 20px; }
.hero h1 { font-size: 2.8rem; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.hero h1 span { color: var(--secondary); }
.hero-desc { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 32px; max-width: 440px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.6rem; color: var(--secondary); font-family: 'Playfair Display',serif; }
.hero-stat span { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.hero-search-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-lg);
  padding: 32px; color: #fff;
}
.hero-search-card h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--secondary); }
.quick-search { display: flex; flex-direction: column; gap: 12px; }
.qs-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.qs-select {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; padding: 10px 14px; border-radius: 8px; font-size: 0.88rem;
  width: 100%; outline: none; cursor: pointer;
}
.qs-select option { background: var(--primary-dark); color: #fff; }
.qs-select:focus { border-color: var(--secondary); }

/* ── FEATURED PROFILES STRIP ───────── */
.featured-strip { background: linear-gradient(135deg,#FFF0E6,#FFE4CC); padding: 40px 0; overflow: hidden; }
.strip-title { font-size: 1.5rem; color: var(--primary); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.strip-title::after { content: ''; flex: 1; height: 2px; background: linear-gradient(to right, var(--secondary), transparent); }
.profiles-scroll { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
.profiles-scroll::-webkit-scrollbar { height: 4px; }
.profiles-scroll::-webkit-scrollbar-thumb { background: var(--secondary); }

/* ── PROFILE CARD ──────────────────── */
.profile-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: var(--transition); border: 1px solid var(--border-light);
  position: relative; flex-shrink: 0; width: 220px; scroll-snap-align: start;
}
.profile-card.grid-card { width: auto; }
.profile-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--secondary); }
.profile-card-img { position: relative; height: 200px; overflow: hidden; background: linear-gradient(135deg, #FDECEA, #FFF0E6); }
.profile-card-img img { width: 100%; height: 100%; object-fit: cover; }
.profile-card-img .avatar-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.profile-card-img .avatar-placeholder svg { width: 80px; height: 80px; opacity: 0.4; }
.featured-badge {
  position: absolute; top: 10px; left: 10px;
  background: linear-gradient(135deg, var(--secondary), #B8860B);
  color: #fff; font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 100px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.gender-badge {
  position: absolute; bottom: 10px; right: 10px;
  padding: 3px 10px; border-radius: 100px; font-size: 0.7rem; font-weight: 600;
}
.gender-badge.male { background: #DBEAFE; color: #1E40AF; }
.gender-badge.female { background: #FCE7F3; color: #9D174D; }
.profile-card-body { padding: 14px 16px; }
.profile-card-name { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.profile-card-meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
.profile-card-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.tag { background: var(--bg); border: 1px solid var(--border); color: var(--text-muted); font-size: 0.7rem; padding: 2px 8px; border-radius: 100px; }
.profile-card-footer { border-top: 1px solid var(--border-light); padding: 10px 16px; display: flex; gap: 8px; }
.profile-card-footer .btn { flex: 1; font-size: 0.78rem; padding: 7px 10px; }
.membership-badge { position: absolute; top: 10px; right: 10px; }
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 8px; border-radius: 100px; font-size: 0.7rem; font-weight: 700; }
.badge-gold { background: linear-gradient(135deg,#D4AF37,#B8860B); color: #fff; }
.badge-silver { background: linear-gradient(135deg,#9CA3AF,#6B7280); color: #fff; }
.badge-free { background: #F3F4F6; color: #6B7280; }

/* ── SECTION HEADERS ───────────────── */
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-size: 2rem; color: var(--primary); margin-bottom: 12px; }
.section-head p { color: var(--text-muted); max-width: 480px; margin: 0 auto; }
.divider { display: flex; align-items: center; gap: 16px; margin: 8px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.divider span { color: var(--secondary); font-size: 1.2rem; }

/* ── MEMBERSHIP CARDS ──────────────── */
.plan-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.plan-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  padding: 32px 24px; border: 2px solid var(--border); text-align: center;
  position: relative; transition: var(--transition);
}
.plan-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.plan-card.popular {
  border-color: var(--secondary); background: linear-gradient(135deg,#FFF8E7,#FFF3CC);
  transform: scale(1.03);
}
.plan-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.popular-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg,var(--secondary),#B8860B);
  color: #fff; font-size: 0.75rem; font-weight: 700; padding: 4px 18px; border-radius: 100px;
  white-space: nowrap;
}
.plan-icon { font-size: 2.5rem; margin-bottom: 12px; }
.plan-name { font-size: 1.3rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.plan-price { font-size: 2rem; font-weight: 800; color: var(--text); margin-bottom: 4px; font-family: 'Playfair Display',serif; }
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.plan-duration { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }
.plan-features { text-align: left; margin-bottom: 24px; }
.plan-feature { display: flex; align-items: flex-start; gap: 8px; padding: 6px 0; font-size: 0.85rem; border-bottom: 1px solid var(--border-light); }
.plan-feature:last-child { border-bottom: none; }
.plan-feature .check { color: var(--success); font-weight: 700; flex-shrink: 0; }
.plan-feature .cross { color: #D1D5DB; flex-shrink: 0; }

/* ── FORMS ─────────────────────────── */
.form-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 40px;
  border: 1px solid var(--border-light);
}
.form-card-sm { max-width: 480px; margin: 0 auto; }
.form-section { margin-bottom: 32px; }
.form-section-title {
  font-size: 1rem; font-weight: 700; color: var(--primary);
  padding-bottom: 10px; border-bottom: 2px solid var(--border);
  margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
.form-label .req { color: var(--primary); }
.form-control {
  width: 100%; padding: 11px 14px; border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.9rem; background: #fff;
  transition: var(--transition); outline: none; color: var(--text);
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(139,26,26,0.08); }
.form-control.error { border-color: var(--error); }
.form-control:disabled { background: var(--bg); cursor: not-allowed; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B5050'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 40px; }
.form-text { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.form-error { font-size: 0.75rem; color: var(--error); margin-top: 4px; }
.input-group { position: relative; }
.input-group .form-control { padding-right: 48px; }
.input-group-btn { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); }
.photo-upload { border: 2px dashed var(--border); border-radius: var(--radius); padding: 32px; text-align: center; cursor: pointer; transition: var(--transition); }
.photo-upload:hover { border-color: var(--primary); background: rgba(139,26,26,0.02); }
.photo-upload input[type=file] { display: none; }
.photo-preview { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid var(--secondary); margin: 0 auto 12px; }

/* ── PROFILE DETAIL PAGE ───────────── */
.profile-detail { display: grid; grid-template-columns: 320px 1fr; gap: 32px; }
.profile-sidebar { position: sticky; top: 80px; align-self: start; }
.profile-photo-card { background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 16px; }
.profile-main-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.profile-photo-card .profile-info { padding: 20px; text-align: center; }
.profile-name-big { font-size: 1.5rem; color: var(--primary); margin-bottom: 4px; }
.profile-age-dist { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.profile-actions-stack { display: flex; flex-direction: column; gap: 10px; padding: 0 20px 20px; }
.profile-info-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 20px; border: 1px solid var(--border-light); }
.info-card-title { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; border-bottom: 2px solid var(--border-light); padding-bottom: 10px; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.info-item { }
.info-item .label { font-size: 0.72rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.info-item .value { font-size: 0.9rem; color: var(--text); font-weight: 500; }
.contact-locked { background: linear-gradient(135deg,#FFF0E6,#FFE4CC); border: 2px dashed var(--secondary); border-radius: var(--radius); padding: 24px; text-align: center; }
.contact-locked h4 { color: var(--primary); margin-bottom: 8px; }
.contact-locked p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }

/* ── DASHBOARD ─────────────────────── */
.dashboard-grid { display: grid; grid-template-columns: 240px 1fr; gap: 24px; min-height: 80vh; }
.dashboard-sidebar { background: var(--bg-card); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-sm); height: fit-content; position: sticky; top: 80px; border: 1px solid var(--border-light); }
.dash-nav a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px; font-size: 0.88rem; font-weight: 500; color: var(--text-muted); transition: var(--transition); margin-bottom: 2px; }
.dash-nav a:hover, .dash-nav a.active { background: rgba(139,26,26,0.08); color: var(--primary); }
.dash-nav a svg { width: 18px; height: 18px; flex-shrink: 0; }
.dash-nav .section-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin: 16px 0 6px 14px; }
.stat-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
.stat-card { background: var(--bg-card); border-radius: var(--radius); padding: 20px; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.stat-card .stat-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 1.3rem; }
.stat-card .stat-value { font-size: 1.6rem; font-weight: 800; color: var(--primary); font-family: 'Playfair Display',serif; }
.stat-card .stat-label { font-size: 0.78rem; color: var(--text-muted); }

/* ── ADMIN ─────────────────────────── */
.admin-layout { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--bg-dark); padding: 24px 0; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.admin-sidebar .logo { padding: 0 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.admin-sidebar .logo span { color: var(--secondary); font-family: 'Playfair Display',serif; font-size: 1.1rem; }
.admin-nav a { display: flex; align-items: center; gap: 10px; padding: 11px 20px; font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: var(--transition); border-left: 3px solid transparent; }
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,0.06); color: #fff; border-left-color: var(--secondary); }
.admin-nav .nav-section { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.3); padding: 16px 20px 4px; }
.admin-main { background: #F8F9FA; padding: 24px; overflow-y: auto; }
.admin-header { background: #fff; padding: 16px 24px; border-bottom: 1px solid #E5E7EB; margin: -24px -24px 24px; display: flex; align-items: center; justify-content: space-between; }
.admin-header h1 { font-size: 1.3rem; color: var(--primary); }
.admin-card { background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: 0 1px 4px rgba(0,0,0,0.05); margin-bottom: 20px; border: 1px solid #E5E7EB; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: #F8F9FA; padding: 10px 14px; text-align: left; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); border-bottom: 2px solid #E5E7EB; }
.admin-table td { padding: 12px 14px; border-bottom: 1px solid #F3F4F6; font-size: 0.85rem; vertical-align: middle; }
.admin-table tr:hover td { background: #FAFAFA; }
.admin-stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
.admin-stat { background: #fff; border-radius: var(--radius); padding: 20px; border-left: 4px solid; box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
.admin-stat.red { border-left-color: var(--primary); }
.admin-stat.gold { border-left-color: var(--secondary); }
.admin-stat.green { border-left-color: var(--success); }
.admin-stat.blue { border-left-color: var(--info); }
.admin-stat .val { font-size: 1.8rem; font-weight: 800; color: var(--text); font-family: 'Playfair Display',serif; }
.admin-stat .lbl { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* ── STATUS BADGES ─────────────────── */
.status { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; }
.status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.status-pending { background: #FEF9C3; color: #854D0E; }
.status-pending::before { background: #EAB308; }
.status-approved { background: #DCFCE7; color: #14532D; }
.status-approved::before { background: #22C55E; }
.status-rejected { background: #FEE2E2; color: #7F1D1D; }
.status-rejected::before { background: #EF4444; }
.status-active { background: #DCFCE7; color: #14532D; }
.status-active::before { background: #22C55E; }
.status-inactive { background: #F3F4F6; color: #6B7280; }
.status-inactive::before { background: #9CA3AF; }

/* ── PAYMENT ───────────────────────── */
.payment-methods { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 24px; }
.payment-method {
  border: 2px solid var(--border); border-radius: var(--radius);
  padding: 20px; text-align: center; cursor: pointer; transition: var(--transition);
}
.payment-method:hover, .payment-method.selected { border-color: var(--primary); background: rgba(139,26,26,0.04); }
.payment-method .icon { font-size: 2rem; margin-bottom: 8px; }
.payment-method .name { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.upi-qr-box { background: linear-gradient(135deg,#FFF8E7,#FFF0D0); border: 2px solid var(--secondary); border-radius: var(--radius-lg); padding: 32px; text-align: center; }
.upi-qr-box img { width: 200px; height: 200px; margin: 0 auto 16px; border: 4px solid #fff; border-radius: 12px; box-shadow: var(--shadow-md); }
.upi-id { font-size: 1.1rem; font-weight: 700; color: var(--primary); background: #fff; padding: 8px 20px; border-radius: 8px; display: inline-block; margin-bottom: 12px; border: 1px solid var(--border); }
.screenshot-upload { border: 2px dashed var(--secondary); border-radius: var(--radius-lg); padding: 32px; text-align: center; cursor: pointer; transition: var(--transition); }
.screenshot-upload:hover { background: rgba(212,175,55,0.05); }

/* ── ALERTS ────────────────────────── */
.alert { padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 16px; display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; border-left: 4px solid; }
.alert-success { background: #F0FDF4; color: #14532D; border-left-color: var(--success); }
.alert-error { background: #FEF2F2; color: #7F1D1D; border-left-color: var(--error); }
.alert-warning { background: #FFFBEB; color: #78350F; border-left-color: var(--warning); }
.alert-info { background: #EFF6FF; color: #1E3A8A; border-left-color: var(--info); }

/* ── PAGINATION ────────────────────── */
.pagination { display: flex; align-items: center; gap: 6px; justify-content: center; padding: 24px 0; }
.page-btn { width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 600; border: 2px solid var(--border); background: #fff; color: var(--text-muted); cursor: pointer; transition: var(--transition); }
.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.page-btn.disabled { opacity: 0.4; cursor: not-allowed; }

/* ── FOOTER ────────────────────────── */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.75); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-top: 12px; color: rgba(255,255,255,0.55); }
.footer-brand .brand-name { color: #fff; font-family: 'Playfair Display',serif; font-size: 1.2rem; }
.footer h4 { color: var(--secondary); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer ul a:hover { color: var(--secondary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: var(--transition); border: 1px solid rgba(255,255,255,0.12); }
.social-btn:hover { background: var(--secondary); color: var(--primary-dark); border-color: var(--secondary); }

/* ── MODAL ─────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 9000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: var(--transition); }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: #fff; border-radius: var(--radius-lg); max-width: 480px; width: 100%; padding: 32px; box-shadow: var(--shadow-xl); transform: scale(0.9); transition: var(--transition); }
.modal-overlay.open .modal { transform: scale(1); }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.modal-title { font-size: 1.2rem; color: var(--primary); }
.modal-close { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--text-muted); line-height: 1; }

/* ── OTP INPUT ─────────────────────── */
.otp-inputs { display: flex; gap: 10px; justify-content: center; margin: 20px 0; }
.otp-input { width: 50px; height: 56px; text-align: center; font-size: 1.4rem; font-weight: 700; border: 2px solid var(--border); border-radius: 10px; outline: none; transition: var(--transition); }
.otp-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(139,26,26,0.08); }

/* ── DISTRICT SLIDERS ──────────────── */
.district-slider-wrap { position: relative; }
.district-tab-list { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 12px; margin-bottom: 24px; }
.district-tab-list::-webkit-scrollbar { height: 0; }
.district-tab { padding: 7px 18px; border-radius: 100px; font-size: 0.82rem; font-weight: 600; cursor: pointer; border: 2px solid var(--border); background: #fff; color: var(--text-muted); white-space: nowrap; transition: var(--transition); }
.district-tab.active, .district-tab:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ── SEARCH & FILTER ───────────────── */
.search-layout { display: grid; grid-template-columns: 280px 1fr; gap: 24px; }
.filter-sidebar { background: var(--bg-card); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); height: fit-content; position: sticky; top: 80px; border: 1px solid var(--border-light); }
.filter-title { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; }
.filter-group { margin-bottom: 20px; }
.filter-label { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.range-inputs { display: flex; align-items: center; gap: 8px; }
.range-inputs input { flex: 1; }
.range-inputs span { color: var(--text-muted); font-size: 0.85rem; }
.filter-actions { display: flex; gap: 8px; }
.search-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.sort-select { padding: 8px 14px; border: 2px solid var(--border); border-radius: 8px; font-size: 0.85rem; outline: none; }

/* ── EVENTS ────────────────────────── */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 20px; }
.event-card { background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: var(--transition); }
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.event-card-img { height: 180px; object-fit: cover; width: 100%; }
.event-card-body { padding: 16px 20px 20px; }
.event-date-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(139,26,26,0.08); color: var(--primary); font-size: 0.78rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; margin-bottom: 10px; }
.event-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.event-meta { font-size: 0.8rem; color: var(--text-muted); }

/* ── BIRTHDAY SECTION ──────────────── */
.birthday-strip { background: linear-gradient(135deg,#FFF0E6,#FFE0CC); padding: 32px 0; }
.birthday-cards { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; }
.birthday-card { flex-shrink: 0; width: 160px; background: #fff; border-radius: var(--radius); padding: 16px; text-align: center; border: 1px solid #FFD0A0; box-shadow: var(--shadow-sm); }
.birthday-card .cake { font-size: 1.8rem; margin-bottom: 8px; }
.birthday-card .bname { font-size: 0.82rem; font-weight: 700; color: var(--primary); }
.birthday-card .bage { font-size: 0.72rem; color: var(--text-muted); }
.birthday-card .bday { font-size: 0.72rem; color: var(--saffron); font-weight: 600; margin-top: 4px; }

/* ── TOAST NOTIFICATIONS ───────────── */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast { background: #1F2937; color: #fff; padding: 14px 20px; border-radius: 10px; font-size: 0.88rem; box-shadow: var(--shadow-xl); display: flex; align-items: center; gap: 10px; min-width: 280px; animation: slideUp 0.3s ease; border-left: 4px solid; }
.toast-success { border-left-color: var(--success); }
.toast-error { border-left-color: var(--error); }
.toast-info { border-left-color: var(--info); }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ── SKELETON LOADING ──────────────── */
.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 6px; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ── UTILITIES ─────────────────────── */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.p-0 { padding: 0; }
.w-full { width: 100%; }
.hidden { display: none !important; }
.block { display: block; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.rounded-full { border-radius: 9999px; }

/* ── RESPONSIVE ────────────────────── */
@media (max-width: 1024px) {
  .grid-4, .admin-stat-grid, .stat-cards { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 60px 0 40px; }
  .hero h1 { font-size: 2.2rem; }
  .profile-detail { grid-template-columns: 1fr; }
  .profile-sidebar { position: static; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .search-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
}
@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .plan-cards, .payment-methods { grid-template-columns: 1fr; }
  .form-row, .form-row-3, .qs-row { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .section { padding: 40px 0; }
  .section-head h2 { font-size: 1.6rem; }
  .form-card { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  h1 { font-size: 1.8rem; }
  .stat-cards { grid-template-columns: repeat(2,1fr); }
  .admin-stat-grid { grid-template-columns: repeat(2,1fr); }
  .otp-inputs { gap: 6px; }
  .otp-input { width: 44px; height: 50px; font-size: 1.2rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.7rem; }
  .stat-cards, .admin-stat-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn-lg { padding: 12px 24px; font-size: 0.95rem; }
}

/* ── PWA INSTALL BANNER ────────────── */
.pwa-banner { background: linear-gradient(135deg,var(--primary),var(--primary-dark)); color: #fff; padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pwa-banner p { font-size: 0.85rem; }
.pwa-banner .close { background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.2rem; cursor: pointer; }

/* ── NEWS SECTION ─────────────────────── */
.news-grid-wrap { display:grid; grid-template-columns:1.4fr 1fr; gap:24px; }
.news-lead-img  { width:100%; height:220px; object-fit:cover; object-position:center; border-radius:var(--radius-lg); display:block; }
@media(max-width:768px) {
  .news-grid-wrap { grid-template-columns:1fr; }
  .news-lead-img  { height:180px; }
}
/* ============================================================
   FIX PATCH v1.1 — Dashboard, Classified Detail, PWA
   ============================================================ */

/* --- DASHBOARD: Tab bar sticky fix ---
   Main navbar ~65px fixed + tab bar sticky below it
   Profile content ka scroll-margin bhi fix
--------------------------------------------------------- */
.dash-tabs {
    position: sticky;
    top: 65px;          /* main navbar height */
    z-index: 95;
    background: #fff;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 2px 8px rgba(139,26,26,0.08);
}

.dash-tab-link {
    white-space: nowrap;
}

/* Tab content panels ko enough breathing room do */
.dash-tab-pane,
.tab-pane,
[id^="tab-"],
.profile-form-section,
.dash-content {
    scroll-margin-top: 140px;
}

/* Dashboard container: ensure no overflow hiding */
.dashboard-container,
.dash-main,
.dash-body {
    overflow: visible !important;
}

/* If tab-content div clips content */
.tab-content-wrap,
.dash-tab-content {
    overflow: visible !important;
    padding-top: 16px;
}

/* ============================================================
   CLASSIFIED DETAIL — Professional 2-column layout
   ============================================================ */
.classified-detail-page {
    max-width: 1100px;
    margin: 24px auto;
    padding: 0 16px;
}

/* Breadcrumb */
.classified-breadcrumb {
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 16px;
}
.classified-breadcrumb a { color: var(--primary); text-decoration: none; }

/* Main grid: 60/40 split */
.classified-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    align-items: start;
}

/* --- LEFT COLUMN --- */
.classified-gallery {
    border-radius: var(--radius, 12px);
    overflow: hidden;
    background: #f5f0eb;
    margin-bottom: 20px;
}

.classified-main-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius, 12px);
    cursor: zoom-in;
    transition: transform 0.3s;
}
.classified-main-img:hover { transform: scale(1.01); }

.classified-thumbs {
    display: flex;
    gap: 8px;
    padding: 10px 0 0;
    flex-wrap: wrap;
}

.classified-thumb {
    width: 80px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s, opacity 0.2s;
    opacity: 0.75;
}
.classified-thumb:hover,
.classified-thumb.active {
    border-color: var(--primary);
    opacity: 1;
}

/* Description card */
.classified-desc-card {
    background: #fff;
    border-radius: var(--radius, 12px);
    padding: 22px 24px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
    margin-bottom: 16px;
}
.classified-desc-card h3 {
    color: var(--primary);
    font-size: 1rem;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0e8e8;
    display: flex;
    align-items: center;
    gap: 6px;
}
.classified-desc-text {
    color: #444;
    line-height: 1.8;
    font-size: 0.95rem;
    white-space: pre-wrap;
}

.classified-meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}
.classified-badge {
    background: #fdf3f3;
    color: var(--primary);
    border: 1px solid #f0d0d0;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.82rem;
    font-weight: 500;
}

/* --- RIGHT COLUMN (sticky sidebar) --- */
.classified-sidebar {
    position: sticky;
    top: 130px; /* navbar + tab height */
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Price card */
.classified-price-card {
    background: linear-gradient(135deg, var(--primary) 0%, #6b1414 100%);
    color: #fff;
    border-radius: var(--radius, 12px);
    padding: 20px 22px;
}
.classified-price-label {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.classified-price-value {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.classified-price-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 8px;
    opacity: 0.95;
    line-height: 1.4;
}
.classified-location-line {
    font-size: 0.85rem;
    opacity: 0.75;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.classified-views-line {
    font-size: 0.8rem;
    opacity: 0.65;
    margin-top: 4px;
}

/* Contact card */
.classified-contact-card {
    background: #fff;
    border-radius: var(--radius, 12px);
    padding: 18px 20px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.classified-contact-card h4 {
    color: var(--primary);
    font-size: 0.9rem;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid #f0e8e8;
    padding-bottom: 10px;
}
.classified-poster-name {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    margin-bottom: 4px;
}
.classified-poster-mobile {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.classified-contact-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.btn-call {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-call:hover { background: #6b1414; color: #fff; }
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-whatsapp:hover { background: #1da851; color: #fff; }

/* Share card */
.classified-share-card {
    background: #fff;
    border-radius: var(--radius, 12px);
    padding: 16px 20px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.classified-share-card h4 {
    color: #555;
    font-size: 0.85rem;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.classified-share-card .share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.classified-share-card .share-btn {
    flex: 1;
    min-width: 70px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
}
.classified-share-card .share-btn:hover { opacity: 0.85; }

/* Date info card */
.classified-dates-card {
    background: #fdf9f3;
    border: 1px solid #f0e4c8;
    border-radius: var(--radius, 12px);
    padding: 14px 18px;
    font-size: 0.82rem;
    color: #666;
    line-height: 1.9;
}
.classified-dates-card span { font-weight: 600; color: #444; }

/* MOBILE: stack vertically */
@media (max-width: 768px) {
    .classified-grid {
        grid-template-columns: 1fr;
    }
    .classified-sidebar {
        position: static;
    }
    .classified-main-img {
        height: 240px;
    }
    .classified-price-value {
        font-size: 1.5rem;
    }
    .dash-tabs {
        top: 55px;
        overflow-x: auto;
    }
}

/* ============================================================
   PWA INSTALL BANNER — ensure it shows above all content
   ============================================================ */
#pwa-install-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, var(--primary) 0%, #6b1414 100%);
    color: #fff;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    animation: slideUp 0.4s ease;
}
@keyframes slideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}
#pwa-install-banner .pwa-text { flex: 1; font-size: 0.9rem; line-height: 1.4; }
#pwa-install-banner .pwa-text strong { display: block; margin-bottom: 2px; }
#pwa-install-banner .pwa-install-btn {
    background: #D4AF37;
    color: #3d2600;
    border: none;
    border-radius: 8px;
    padding: 9px 18px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}
#pwa-install-banner .pwa-close-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    flex-shrink: 0;
}