/* ==============================================
   SKOKKA PULSE — Design System v2
   Based on Stitch MCP "Swagvio Pulse" theme
   Primary: #E91E63 | CTA Blue: #00AEEF
   Fonts: Plus Jakarta Sans + Inter
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* FA icon sizing helpers */
.fa-icon-sm { font-size: 13px; }
.fa-icon-md { font-size: 16px; }
.fa-icon-lg { font-size: 20px; }
.fa-icon-xl { font-size: 28px; }

/* ===== CSS TOKENS ===== */
:root {
  /* Brand Colors */
  --pink:        #E91E63;
  --pink-dark:   #b80049;
  --pink-light:  #ffb2be;
  --pink-bg:     #ffd9de;
  --pink-soft:   #fff0f4;
  --blue:        #00AEEF;
  --blue-dark:   #007ab3;
  --blue-bg:     #e0f5fd;
  --green:       #006a34;
  --green-bg:    #89faa8;

  /* Surface / Background */
  --bg:          #f6f3f2;
  --bg-low:      #f6f3f2;
  --bg-card:     #ffffff;
  --bg-section:  #f0eded;
  --white:       #ffffff;

  /* Text */
  --text:        #1b1c1c;
  --text-2:      #5b3f43;
  --text-3:      #8f6f73;
  --text-4:      #b89fa3;

  /* Borders */
  --border:      #e4bdc2;
  --border-light: rgba(228,189,194,0.3);

  /* Shadows */
  --shadow:      0 12px 40px rgba(27,28,28,0.06);
  --shadow-sm:   0 2px 8px rgba(27,28,28,0.04);
  --shadow-lg:   0 20px 60px rgba(27,28,28,0.10);

  /* Misc */
  --radius:      9999px;  /* pill shape */
  --radius-md:   16px;    /* card radius */
  --radius-sm:   8px;
  --warn-bg:     #fff8e1;
  --warn-border: #ffe082;
  --warn-text:   #7b5c00;
}

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

body {
  font-family: 'Inter', 'Plus Jakarta Sans', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', Arial, sans-serif;
  font-weight: 700;
}

a { color: var(--pink); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--pink-dark); }

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: linear-gradient(90deg, var(--pink) 0%, #9c27b0 50%, var(--pink) 100%);
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
  padding: 10px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.promo-banner-text { color: white; font-size: 13px; font-weight: 600; }
.promo-banner-text span { font-size: 11px; font-weight: 400; opacity: .9; }
.promo-try-btn {
  background: white; color: var(--pink);
  border: none; border-radius: var(--radius);
  padding: 7px 20px; font-size: 12px; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .2s;
}
.promo-try-btn:hover { background: var(--pink-soft); }

/* ===== NAVBAR (Glassmorphism) ===== */
.navbar {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 0 28px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }

.navbar-left { display: flex; align-items: center; gap: 8px; }
.navbar-logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 16px;
}
.navbar-brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--text); letter-spacing: -.5px;
  text-decoration: none !important;
}
.navbar-brand-name span { color: var(--pink); }
.navbar-country { font-size: 10px; color: var(--text-3); display: block; line-height: 1; }
.navbar-left-text { display: flex; flex-direction: column; margin-left: 2px; }

.navbar-right { display: flex; align-items: center; gap: 10px; }
.navbar-links { display: flex; align-items: center; gap: 0; }
.navbar-links a {
  color: var(--text-2); font-size: 13px; font-weight: 600;
  padding: 0 14px; height: 64px; display: flex; align-items: center;
  border-bottom: 2px solid transparent; transition: all .15s;
  text-decoration: none; white-space: nowrap;
}
.navbar-links a:hover,
.navbar-links a.active { color: var(--pink); border-bottom-color: var(--pink); text-decoration: none; }

/* Icon buttons */
.navbar-icon-btn {
  width: 36px; height: 36px;
  border: none; background: transparent;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--text-2);
  transition: background 0.2s;
}
.navbar-icon-btn:hover { background: var(--bg-section); }

/* POST YOUR AD — Blue pill CTA */
.navbar-post-btn {
  background: var(--blue); color: white; border: none;
  border-radius: var(--radius); padding: 10px 22px;
  font-size: 13px; font-weight: 700;
  cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: background .2s, transform .15s;
  box-shadow: 0 2px 12px rgba(0,174,239,0.35);
}
.navbar-post-btn:hover { background: var(--blue-dark); color: white; text-decoration: none; transform: translateY(-1px); }

.navbar-login-link {
  font-size: 13px; color: var(--text-2); font-weight: 600; text-decoration: none;
}
.navbar-login-link:hover { color: var(--pink); text-decoration: none; }

.navbar-user { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.navbar-user-icon {
  width: 32px; height: 32px;
  background: var(--pink-soft); border: 1.5px solid var(--pink-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.navbar-username { font-size: 12px; color: var(--text-2); max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Mobile */
.hamburger, .nav-hamburger { display: none; background: none; border: none; cursor: pointer; font-size: 22px; color: var(--text-2); }
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: white; z-index: 999; padding: 20px; flex-direction: column; gap: 0;
  border-top: 1px solid var(--border-light);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-2); font-size: 15px; font-weight: 600;
  padding: 16px 0; border-bottom: 1px solid var(--border-light);
  text-decoration: none;
}
.mobile-menu a:hover { color: var(--pink); }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1a0a10 0%, #3d1020 40%, #1a0a10 100%);
  padding: 60px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: 700px; }
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 45%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 500"><rect fill="%23e91e63" opacity="0.08" width="400" height="500"/></svg>');
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 48px;
  background: var(--bg);
  clip-path: ellipse(60% 100% at 50% 100%);
  z-index: 1;
}

.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 40px; font-weight: 800; color: white;
  margin-bottom: 8px; letter-spacing: -.5px; line-height: 1.15;
}
.hero h1 em { font-style: normal; color: var(--pink-light); }
.hero-sub { font-size: 15px; color: rgba(255,255,255,.75); margin-bottom: 28px; }

/* Wide pill search bar */
.hero-search {
  display: flex; max-width: 620px; margin: 0 auto;
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.hero-search input {
  flex: 1; border: none; padding: 16px 24px;
  color: var(--text); font-size: 15px; font-family: 'Inter', sans-serif;
  outline: none; background: transparent;
}
.hero-search input::placeholder { color: var(--text-4); }
.hero-search-btn {
  background: var(--pink); border: none; padding: 14px 28px;
  color: white; font-size: 14px; font-weight: 700;
  cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; transition: background .2s;
  white-space: nowrap;
}
.hero-search-btn:hover { background: var(--pink-dark); }

.hero-stats {
  display: flex; justify-content: center; gap: 36px; flex-wrap: wrap;
  position: relative; z-index: 2; margin-top: 28px;
}
.hero-stat-num { font-size: 22px; font-weight: 800; color: white; display: block; font-family: 'Plus Jakarta Sans', sans-serif; }
.hero-stat-lbl { font-size: 11px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .4px; }

/* ===== CITY TABS BAR ===== */
.city-tabs-bar { background: white; border-bottom: 1px solid var(--border-light); }
.city-tabs-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 4px;
  overflow-x: auto; scrollbar-width: none;
}
.city-tabs-inner::-webkit-scrollbar { display: none; }
.city-tab {
  padding: 12px 16px; font-size: 13px; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-2); white-space: nowrap; cursor: pointer;
  border-bottom: 3px solid transparent; transition: all .15s; flex-shrink: 0;
  background: none; border-left: none; border-right: none; border-top: none;
}
.city-tab:hover { color: var(--pink); }
.city-tab.active { color: var(--pink); border-bottom-color: var(--pink); }
.city-tab-sep { width: 1px; height: 18px; background: var(--border-light); flex-shrink: 0; }

/* ===== SECTION WRAPPER ===== */
.page-wrap { max-width: 1200px; margin: 0 auto; padding: 24px 20px 60px; display: flex; gap: 20px; }
.page-body { max-width: 1200px; margin: 0 auto; padding: 32px 20px 60px; }
.section { margin-bottom: 44px; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.section-title {
  font-size: 18px; font-weight: 800; color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex; align-items: center; gap: 8px;
}
.section-center { text-align: center; margin-bottom: 32px; }
.section-center .section-title { justify-content: center; font-size: 24px; }
.section-center .section-sub { font-size: 14px; color: var(--text-3); margin-top: 4px; }
.section-link { font-size: 13px; color: var(--pink); font-weight: 600; }

/* ===== SIDEBAR ===== */
.sidebar { width: 210px; flex-shrink: 0; }
.sb-box {
  background: white; border-radius: var(--radius-sm);
  margin-bottom: 10px; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sb-title { padding: 10px 14px; font-size: 11px; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: .4px; border-bottom: 1px solid var(--border-light); font-family: 'Plus Jakarta Sans', sans-serif; }
.sb-body { padding: 4px 0; }
.sb-item { display: flex; align-items: center; gap: 8px; padding: 8px 14px; font-size: 13px; color: var(--text-2); cursor: pointer; transition: background .1s; }
.sb-item:hover { background: var(--bg-section); }
.sb-item.active { color: var(--pink); font-weight: 700; }
.sb-item .cnt { margin-left: auto; font-size: 11px; color: var(--text-4); }
.sb-chk {
  width: 14px; height: 14px; border: 1.5px solid var(--border); border-radius: 4px;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.sb-chk.on { background: var(--pink); border-color: var(--pink); }
.sb-chk.on::after { content: '✓'; color: #fff; font-size: 9px; font-weight: 700; }

/* ===== MAIN CONTENT COL ===== */
.main-col { flex: 1; min-width: 0; }
.results-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; flex-wrap: wrap; gap: 8px; }
.results-count { font-size: 13px; color: var(--text-3); }
.results-count strong { color: var(--text); }
.sort-sel { border: 1px solid var(--border); border-radius: var(--radius); padding: 7px 14px; font-size: 13px; color: var(--text-2); background: #fff; outline: none; cursor: pointer; font-family: 'Inter', sans-serif; }

/* ===== LISTING GRID ===== */
.ads-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.ad-card {
  background: var(--bg-card); border-radius: var(--radius-md);
  overflow: hidden; cursor: pointer;
  transition: box-shadow .2s, transform .15s;
  position: relative; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.ad-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.ad-photo { position: relative; aspect-ratio: 3/4; overflow: hidden; background: linear-gradient(135deg, #f8d7eb, #d5afe0); }
.ad-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.ad-img-err { position: absolute; inset: 0; background: linear-gradient(140deg, #f8d7eb, #d5afe0); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.ad-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 55%); }
.ad-top-left { position: absolute; top: 8px; left: 8px; display: flex; flex-direction: column; gap: 4px; z-index: 2; }
.ad-top-right { position: absolute; top: 8px; right: 8px; z-index: 2; }
.badge-f { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: var(--radius); line-height: 1.5; white-space: nowrap; font-family: 'Plus Jakarta Sans', sans-serif; }
.b-feat { background: var(--pink); color: #fff; }
.b-ver  { background: var(--blue); color: #fff; }
.b-new  { background: #4caf50; color: #fff; }
.ad-fav {
  position: absolute; bottom: 10px; right: 10px; z-index: 2;
  background: rgba(255,255,255,.88); border: none; border-radius: 50%;
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 15px; transition: transform .15s;
}
.ad-fav:hover { transform: scale(1.15); }
.ad-fav.on { color: var(--pink); }
.ad-foot { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 10px 9px; display: flex; align-items: center; justify-content: space-between; z-index: 2; }
.ad-city-lbl { font-size: 11px; color: #fff; font-weight: 600; }
.ad-dist-lbl { font-size: 11px; color: rgba(255,255,255,.8); }
.ad-body { padding: 10px 12px 12px; display: flex; flex-direction: column; flex: 1; }
.ad-title { font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 5px; font-family: 'Plus Jakarta Sans', sans-serif; }
.ad-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; }
.ad-tag { font-size: 10px; padding: 2px 7px; border-radius: var(--radius); background: var(--bg-section); color: var(--text-3); border: 1px solid var(--border-light); }
.ad-actions { display: flex; gap: 6px; margin-top: auto; padding-top: 8px; border-top: 1px solid var(--border-light); }
.ad-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 4px;
  padding: 6px 4px; border-radius: var(--radius); border: 1px solid var(--border);
  background: #fff; font-size: 11px; font-weight: 600; cursor: pointer;
  transition: all .12s; color: var(--text-2); font-family: 'Inter', sans-serif;
}
.ad-btn:hover { border-color: var(--pink); color: var(--pink); background: var(--pink-soft); }

/* Load More */
.load-more-wrap { text-align: center; margin-top: 24px; }
.lm-btn {
  background: white; border: 2px solid var(--pink); color: var(--pink);
  border-radius: var(--radius); padding: 12px 40px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; transition: all .2s;
}
.lm-btn:hover { background: var(--pink); color: #fff; }

/* VIP inline banner */
.vip-row { grid-column: 1/-1; background: linear-gradient(90deg, #fff8e1, #fffde7); border: 1px solid #ffe082; border-radius: var(--radius-md); padding: 14px 20px; display: flex; align-items: center; gap: 14px; }
.vip-row-icon { font-size: 28px; flex-shrink: 0; }
.vip-row-text { flex: 1; }
.vip-row-text h4 { font-size: 14px; font-weight: 700; color: #5d4037; font-family: 'Plus Jakarta Sans', sans-serif; }
.vip-row-text p { font-size: 12px; color: #795548; }
.vip-row-btn { background: var(--pink); color: #fff; border: none; border-radius: var(--radius); padding: 9px 22px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; }

/* ===== CATEGORY CARDS (Homepage grid) ===== */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cat-grid-wide { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 16px; }
.cat-card {
  background: white; border-radius: var(--radius-md);
  overflow: hidden; cursor: pointer;
  transition: box-shadow .2s, transform .15s;
  text-decoration: none; display: block;
  box-shadow: var(--shadow-sm);
}
.cat-card:hover { text-decoration: none; box-shadow: var(--shadow); transform: translateY(-3px); }
.cat-thumb {
  aspect-ratio: 3/2; background: var(--pink-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; position: relative; overflow: hidden;
}
.cat-thumb-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cat-thumb-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,0.1) 60%); }
.cat-badge {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(233,30,99,0.9); color: white;
  font-size: 12px; font-weight: 700; padding: 4px 12px;
  border-radius: var(--radius); backdrop-filter: blur(4px);
  z-index: 2; font-family: 'Plus Jakarta Sans', sans-serif;
}
.cat-body { padding: 14px 16px 16px; }
.cat-name { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 5px; font-family: 'Plus Jakarta Sans', sans-serif; }
.cat-desc { font-size: 12px; color: var(--text-3); margin-bottom: 12px; line-height: 1.5; }
.cat-city-links { display: flex; flex-direction: column; gap: 4px; }
.cat-city-link { font-size: 12px; color: var(--text-2); font-weight: 500; }
.cat-city-link span { color: var(--pink); font-weight: 700; }
.cat-count-badge {
  position: absolute; top: 8px; right: 8px;
  background: var(--pink); color: white;
  font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: var(--radius);
}

/* City-Category Section (homepage) */
.city-category { margin-bottom: 28px; text-align: center; }
.city-cat-label {
  font-size: 16px; font-weight: 800; color: var(--text);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 10px; font-family: 'Plus Jakarta Sans', sans-serif;
}
.city-pills-scroll { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.city-pill {
  padding: 7px 18px; border-radius: var(--radius);
  border: 1.5px solid var(--border); background: white;
  color: var(--text-2); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .15s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.city-pill:hover { border-color: var(--pink); color: var(--pink); background: var(--pink-soft); text-decoration: none; }
.city-pill.active { border-color: var(--pink); color: var(--pink); background: var(--pink-soft); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 24px; border-radius: var(--radius);
  font-size: 13px; font-weight: 700; cursor: pointer; border: none;
  text-decoration: none; transition: all .2s;
  font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1;
  white-space: nowrap;
}
.btn-pink { background: var(--pink); color: white; box-shadow: 0 2px 12px rgba(233,30,99,0.35); }
.btn-pink:hover { background: var(--pink-dark); color: white; text-decoration: none; transform: translateY(-1px); }
.btn-blue { background: var(--blue); color: white; box-shadow: 0 2px 12px rgba(0,174,239,0.35); }
.btn-blue:hover { background: var(--blue-dark); color: white; text-decoration: none; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--pink); border: 2px solid var(--pink); }
.btn-outline:hover { background: var(--pink-soft); text-decoration: none; }
.btn-white { background: white; color: var(--pink); font-weight: 700; border: none; }
.btn-white:hover { background: var(--pink-soft); color: var(--pink); text-decoration: none; }
.btn-sm { padding: 7px 16px; font-size: 12px; }
.btn-block { width: 100%; }
.btn-gray { background: var(--bg-section); color: var(--text-2); border: 1px solid var(--border); }
.btn-gray:hover { background: #e0e0e0; text-decoration: none; }

/* ===== POST CTA ===== */
.post-cta {
  background: linear-gradient(135deg, var(--pink) 0%, #9c27b0 100%);
  border-radius: var(--radius-md); padding: 40px 24px; text-align: center;
}
.post-cta h2 { font-size: 26px; font-weight: 800; color: white; margin-bottom: 8px; font-family: 'Plus Jakarta Sans', sans-serif; }
.post-cta p { font-size: 14px; color: rgba(255,255,255,.82); margin-bottom: 24px; }
.post-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== CARDS ===== */
.card { background: var(--bg-card); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.card-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px 14px; border-bottom: 1px solid var(--border-light); }
.card-title { font-size: 15px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 8px; font-family: 'Plus Jakarta Sans', sans-serif; }
.card-body { padding: 16px 20px; }
.card-footer { padding: 14px 20px; border-top: 1px solid var(--border-light); }

/* ===== BADGES ===== */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: var(--radius); font-size: 11px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; }
.badge-pink  { background: var(--pink-soft); color: var(--pink); }
.badge-blue  { background: var(--blue-bg); color: var(--blue-dark); }
.badge-green { background: #e8f5e9; color: #388e3c; }
.badge-new   { background: #4caf50; color: white; font-size: 10px; }

/* ===== ALERTS ===== */
.alert { display: flex; align-items: flex-start; gap: 10px; padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 16px; border: 1px solid transparent; font-size: 13px; }
.alert-warning { background: var(--warn-bg); border-color: var(--warn-border); color: var(--warn-text); }
.alert-success { background: #e8f5e9; border-color: #a5d6a7; color: #1b5e20; }
.alert-error   { background: #fce4ec; border-color: #f48fb1; color: #880e4f; }
.alert-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* ===== FORMS ===== */
.form-control {
  width: 100%; background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px; color: var(--text);
  font-size: 14px; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,174,239,0.12);
}
.form-control::placeholder { color: var(--text-4); }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--text-2); margin-bottom: 6px; font-family: 'Plus Jakarta Sans', sans-serif; text-transform: uppercase; letter-spacing: .3px; }
.form-group { margin-bottom: 16px; }
.input-icon-wrap { position: relative; }
.input-icon-wrap .form-control { padding-left: 42px; }
.input-icon-wrap .icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 16px; color: var(--text-4); }
.password-toggle { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; font-size: 16px; color: var(--text-4); }

/* ===== DIVIDER ===== */
.divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border-light); }
.divider span { color: var(--text-4); font-size: 12px; white-space: nowrap; }

/* ===== AGE GATE ===== */
.age-gate {
  position: fixed; inset: 0; background: rgba(0,0,0,.88);
  z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 16px;
  backdrop-filter: blur(4px);
}
.age-gate-box {
  background: white; border-radius: var(--radius-md); padding: 40px;
  max-width: 440px; width: 100%; text-align: center;
}
.age-gate-icon { font-size: 48px; margin-bottom: 12px; }
.age-gate-box h2 { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 10px; font-family: 'Plus Jakarta Sans', sans-serif; }
.age-gate-box p { font-size: 13px; color: var(--text-3); margin-bottom: 28px; line-height: 1.7; }
.age-gate-btns { display: flex; gap: 10px; justify-content: center; }

/* ===== FOOTER (Dark) ===== */
.site-footer { background: #222222; margin-top: 48px; }
.footer-top { border-bottom: 1px solid rgba(255,255,255,.08); padding: 28px 20px; }
.footer-top-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.footer-brand .footer-name { font-size: 20px; font-weight: 800; color: white; font-family: 'Plus Jakarta Sans', sans-serif; }
.footer-brand .footer-name em { font-style: normal; color: var(--pink); }
.footer-restricted { display: inline-flex; align-items: center; gap: 5px; border: 1px solid rgba(255,255,255,.2); border-radius: 4px; padding: 3px 10px; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.6); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.5); max-width: 380px; line-height: 1.65; }
.footer-desc a { color: var(--pink); }
.footer-grid { max-width: 1200px; margin: 0 auto; padding: 24px 20px; display: grid; grid-template-columns: repeat(4, auto); gap: 40px; justify-content: start; }
.footer-col h5 { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; font-family: 'Plus Jakarta Sans', sans-serif; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col ul li a:hover { color: white; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 20px; }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; }
.footer-post-row { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.footer-post-btn {
  background: var(--blue); color: white; border: none;
  border-radius: var(--radius); padding: 12px 0; width: 220px;
  font-size: 14px; font-weight: 700; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
}
.footer-post-btn:hover { background: var(--blue-dark); }
.footer-countries select {
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius);
  padding: 10px 14px; font-size: 13px; color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08); outline: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.footer-payment-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.pay-c { padding: 4px 12px; border-radius: 4px; font-size: 12px; font-weight: 700; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.6); }
.footer-social-row { display: flex; gap: 16px; align-items: center; margin-top: 14px; }
.footer-social-row a { font-size: 20px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-social-row a:hover { color: white; text-decoration: none; }
.footer-note { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 8px; }
.footer-copyright { text-align: center; font-size: 12px; color: rgba(255,255,255,.3); margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.06); }

/* ===== BACK TO TOP ===== */
.btt {
  position: fixed; bottom: 20px; right: 20px; z-index: 800;
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 8px 16px; font-size: 12px; color: var(--text-3); cursor: pointer;
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 5px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
  font-family: 'Inter', sans-serif;
}
.btt.show { opacity: 1; pointer-events: auto; }
.btt:hover { border-color: var(--pink); color: var(--pink); }
/* legacy alias */
.back-to-top { position: fixed; bottom: 24px; right: 24px; background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 8px 16px; font-size: 12px; color: var(--text-3); cursor: pointer; box-shadow: var(--shadow-sm); transition: all .2s; text-decoration: none; display: flex; align-items: center; gap: 5px; opacity: 0; pointer-events: none; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { border-color: var(--pink); color: var(--pink); text-decoration: none; }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 70px; right: 24px; z-index: 9999;
  background: white; border: 1px solid var(--border-light); border-radius: var(--radius-sm);
  padding: 12px 20px; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow); font-size: 13px;
  animation: fadeInUp .3s ease;
  min-width: 240px; max-width: 320px;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== AUTH PAGES ===== */
.auth-page { min-height: 100vh; background: #f5f5f5; display: flex; flex-direction: column; }
.auth-center { flex: 1; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-card {
  background: white; border-radius: var(--radius-md);
  padding: 40px; width: 100%; max-width: 460px;
  box-shadow: var(--shadow);
}
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-logo .navbar-brand-name { font-size: 28px; }
.auth-logo p { font-size: 14px; color: var(--text-3); margin-top: 6px; }
.auth-alt { text-align: center; margin-top: 20px; font-size: 13px; color: var(--text-3); }
.auth-alt a { font-weight: 700; color: var(--pink); }

/* ===== DASHBOARD (Escort Panel) ===== */
.dash-layout { display: grid; grid-template-columns: 240px 1fr; gap: 24px; max-width: 1200px; margin: 28px auto; padding: 0 20px 60px; }
.dash-sidebar { position: sticky; top: 80px; align-self: start; }
.dash-sidebar-card { background: white; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.dash-user-info { padding: 20px; text-align: center; border-bottom: 1px solid var(--border-light); background: var(--pink-soft); }
.dash-avatar { width: 60px; height: 60px; background: linear-gradient(135deg, var(--pink), var(--pink-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; color: white; margin: 0 auto 10px; }
.dash-username { font-size: 14px; font-weight: 700; color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; }
.dash-email { font-size: 12px; color: var(--text-3); margin-top: 3px; }
.dash-nav { list-style: none; }
.dash-nav li a { display: flex; align-items: center; gap: 12px; padding: 13px 20px; color: var(--text-2); font-size: 13px; font-weight: 600; border-bottom: 1px solid var(--border-light); text-decoration: none; transition: all .15s; font-family: 'Plus Jakarta Sans', sans-serif; }
.dash-nav li a:hover { color: var(--pink); background: var(--pink-soft); text-decoration: none; }
.dash-nav li a.active { color: var(--pink); background: var(--pink-soft); border-right: 3px solid var(--pink); }
.dash-nav li:last-child a { border-bottom: none; }
.dash-main { display: flex; flex-direction: column; gap: 18px; }
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat-card { background: white; border-radius: var(--radius-md); padding: 18px; text-align: center; box-shadow: var(--shadow-sm); }
.stat-num { font-size: 28px; font-weight: 800; color: var(--pink); display: block; font-family: 'Plus Jakarta Sans', sans-serif; }
.stat-label { font-size: 12px; color: var(--text-3); margin-top: 4px; }
.stat-icon { font-size: 26px; margin-bottom: 8px; }
.dash-welcome { background: linear-gradient(135deg, var(--pink), #9c27b0); border-radius: var(--radius-md); padding: 24px 28px; color: white; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dash-welcome h2 { font-size: 20px; font-weight: 800; margin-bottom: 4px; font-family: 'Plus Jakarta Sans', sans-serif; }
.dash-welcome p { font-size: 13px; opacity: .85; }

/* Legacy site-header alias */
.site-header {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--shadow-sm);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .ads-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { position: static; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .ads-grid { grid-template-columns: repeat(3, 1fr); }
  .sidebar { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .navbar-links { display: none; }
  .hamburger, .nav-hamburger { display: block; }
  .ads-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 26px; }
  .page-wrap { flex-direction: column; padding: 12px 12px 40px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .ads-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
}
