:root {
  --primary: #00C853;
  --primary-dark: #00A040;
  --secondary: #00E676;
  --accent: #69F0AE;
  --background: #F1F8F4;
  --surface: #ffffff;
  --text-primary: #1B5E20;
  --text-secondary: #757575;
  --text-hint: #BDBDBD;
  --border: #E0E0E0;
  --shadow: rgba(0,0,0,0.1);
  --error: #F44336;
  --warning: #FF9800;
  --info: #2196F3;
  --gradient: linear-gradient(135deg, #00C853, #00E676);
}

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

body {
  font-family: 'Segoe UI', sans-serif;
  background: #F1F8F4;
  background: var(--background);
  color: #1B5E20;
  color: var(--text-primary);
}

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

button { cursor: pointer; border: none; outline: none; }

input, textarea, select {
  outline: none;
  font-family: inherit;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #00C853; background: var(--primary); border-radius: 3px; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(to right, #030712, #111827, #1f2937);
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
  max-width: 100%;
  padding: 0 24px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(20,184,166,0.4);
}

.navbar-logo span span { color: #2dd4bf; }

.navbar-links {
  display: flex;
  list-style: none;
  gap: 2px;
  flex: 1 1;
  justify-content: center;
}

.navbar-links a {
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #9ca3af;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.navbar-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

.navbar-links a.active {
  color: #2dd4bf;
  background: rgba(20,184,166,0.12);
}

.free-badge {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 4px;
  letter-spacing: 0.3px;
}

.navbar-actions { display: flex; align-items: center; gap: 8px; }

.nav-icon-btn {
  position: relative;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  font-size: 18px;
  color: #d1d5db;
  transition: background 0.2s;
  text-decoration: none;
}
.nav-icon-btn:hover { background: rgba(255,255,255,0.12); }

.notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #111827;
}

.btn-login {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}
.btn-login:hover { opacity: 0.9; }

.btn-account {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 8px;
  background: rgba(20,184,166,0.15);
  color: #2dd4bf;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(20,184,166,0.25);
  cursor: pointer;
  transition: background 0.2s;
}
.btn-account:hover { background: rgba(20,184,166,0.25); }

.account-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2dd4bf;
  color: #0d9488;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-chevron { font-size: 10px; margin-left: 2px; }

.account-dropdown-wrapper { position: relative; }

.account-dropdown {
  position: absolute;
  top: 100%;
  margin-top: 10px;
  right: 0;
  background: #1e2433;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  min-width: 180px;
  z-index: 200;
  animation: notifFadeIn 0.15s ease;
}

.account-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #d1d5db;
  cursor: pointer;
  transition: background 0.15s;
}
.account-dropdown-item:hover { background: rgba(255,255,255,0.07); color: #fff; }
.account-dropdown-item.logout { color: #f87171; border-top: 1px solid rgba(255,255,255,0.07); }
.account-dropdown-item.logout:hover { background: rgba(239,68,68,0.1); }

.hamburger {
  display: none;
  background: none;
  font-size: 22px;
  color: #d1d5db;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar-inner { padding: 0 14px; gap: 10px; }

  .navbar-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #111827;
    flex-direction: column;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    gap: 4px;
    z-index: 150;
  }

  .navbar-links.open { display: flex; }

  .hamburger { display: block; }

  .btn-account { padding: 7px 10px; font-size: 13px; }
  .btn-login { padding: 7px 14px; font-size: 13px; }
}

@media (max-width: 480px) {
  .navbar-logo span { display: none; }
  .navbar-actions { gap: 4px; }
  .nav-icon-btn { width: 34px; height: 34px; font-size: 16px; }
}

/* ── Notification Dropdown ── */
.notif-wrapper { position: relative; }

.notif-dropdown {
  position: absolute;
  top: 100%;
  margin-top: 12px;
  right: 0;
  width: 360px;
  background: #1e2433;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 200;
  overflow: hidden;
  animation: notifFadeIn 0.18s ease;
}

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

.notif-dropdown-header {
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.notif-dropdown-header h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.notif-tabs {
  display: flex;
  padding: 10px 12px;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.notif-tab {
  flex: 1 1;
  padding: 7px 0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #9ca3af;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.notif-tab.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.notif-tab:hover:not(.active) { color: #d1d5db; }

.notif-list {
  max-height: 320px;
  overflow-y: auto;
  padding: 8px;
}

.notif-list::-webkit-scrollbar { width: 4px; }
.notif-list::-webkit-scrollbar-track { background: transparent; }
.notif-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  margin-bottom: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.notif-item:hover { background: rgba(255,255,255,0.08); }
.notif-item:last-child { margin-bottom: 0; }

.notif-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(45,212,191,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.notif-item p {
  font-size: 13px;
  color: #d1d5db;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 480px) {
  .notif-dropdown { width: 100vw; max-width: calc(100vw - 32px); right: -60px; }
}

.footer {
  background: linear-gradient(to right, #030712, #111827, #1f2937);
  color: rgba(255,255,255,0.8);
  padding: 40px 12px 20px;
  margin-top: 40px;
}

/* Logo */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  justify-content: center;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}

.footer-brand-name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.footer-brand-name span { color: #00C853; }

.footer-brand-tag {
  font-size: 11px;
  color: #64748b;
  margin-top: 2px;
}

/* 6-col grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 24px;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-col { display: flex; flex-direction: column; gap: 8px; }

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-col p,
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  text-decoration: none;
}

.footer-col a:hover { color: #00C853; }

/* Social Icons */
.footer-social {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.social-icon {
  width: 32px;
  height: 32px;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none;
  transition: background 0.2s;
}
.social-icon:hover { background: #00C853 !important; }

/* App Store Buttons */
.footer-store-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #000;
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 8px 14px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  min-width: 140px;
}
.footer-store-btn:hover { border-color: #00C853; background: #111; }
.store-svg { width: 22px; height: 22px; flex-shrink: 0; }
.footer-store-btn small { font-size: 9px; color: #94a3b8; display: block; line-height: 1.2; }
.footer-store-btn strong { font-size: 13px; color: #fff; display: block; line-height: 1.3; font-weight: 700; }

/* Coming Soon Popup */
.cs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  animation: cs-fade-in 0.2s ease;
}
@keyframes cs-fade-in { from { opacity: 0; } to { opacity: 1; } }
.cs-popup {
  background: #fff;
  border-radius: 20px;
  padding: 36px 40px 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  min-width: 280px;
  animation: cs-pop 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes cs-pop {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.cs-icon { font-size: 52px; margin-bottom: 12px; }
.cs-popup h3 { font-size: 22px; font-weight: 800; color: #1e293b; margin-bottom: 8px; }
.cs-popup p { font-size: 14px; color: #64748b; line-height: 1.6; margin-bottom: 20px; }
.cs-bar { width: 100%; height: 4px; background: #e2e8f0; border-radius: 4px; overflow: hidden; }
.cs-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #00C853, #2563eb);
  border-radius: 4px;
  animation: cs-progress 2.5s linear forwards;
}
@keyframes cs-progress { from { width: 0%; } to { width: 100%; } }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-logo-wrap { justify-content: flex-start; }
}

@media (max-width: 400px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.home { min-height: 100vh; background: #f8fafc; }
.home-content { padding: 16px 0 56px; }

.home .container {
  max-width: 100%;
  padding: 0 48px;
}

/* ══ 1. HERO ROW ══ */
.hero-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 16px;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 28px;
  align-items: stretch;
}

.hero-banner {
  background: linear-gradient(135deg, #e0f2fe 0%, #bfdbfe 100%);
  border-radius: 20px;
  padding: 40px 36px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  position: relative;
  transition: background 0.5s ease;
}

/* Banner dots */
.hero-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active { width: 24px; background: #00C853; }

.hero-text h1 {
  font-size: 42px;
  font-weight: 900;
  color: #1e293b;
  line-height: 1.15;
  margin-bottom: 10px;
}
.hero-text h1 span { color: #1e293b; }
.hero-text p { font-size: 20px; font-weight: 700; color: #1e293b; margin-bottom: 8px; }
.hero-text small { font-size: 14px; color: #475569; display: block; margin-bottom: 24px; }

.hero-btn {
  background: #00C853;
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 14px 34px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
.hero-btn:hover { opacity: 0.9; }

/* Phone Mockup */
.hero-phone { flex-shrink: 0; }

.phone-mockup {
  width: 200px;
  height: 360px;
  background: #1e293b;
  border-radius: 32px;
  padding: 14px 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  position: relative;
}

.phone-screen {
  background: #fff;
  border-radius: 20px;
  height: 100%;
  padding: 10px 8px;
  overflow: hidden;
}

.phone-search-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 9px;
  color: #64748b;
  margin-bottom: 10px;
}

.phone-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 6px;
  gap: 6px;
}

.phone-cat-item {
  background: #f8fafc;
  border-radius: 6px;
  padding: 6px 4px;
  font-size: 8px;
  text-align: center;
  color: #374151;
  border: 1px solid #e2e8f0;
}

/* Promo Video Panel */
.promo-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.promo-panel-title {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  padding: 10px 12px 8px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  margin: 0;
}

.promo-video-wrap {
  flex: 1 1;
  position: relative;
  width: 100%;
  padding-top: 75%;
}

.promo-yt-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ══ 2. SEARCH ══ */
.search-section {
  background: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 36px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.search-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.loc-error-btn {
  background: #fef3c7;
  color: #92400e;
  border: none;
  border-radius: 24px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.location-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1;
  min-width: 160px;
}

.location-input-wrap input {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 36px 12px 40px;
  font-size: 15px;
  width: 100%;
  background: #f8fafc;
  outline: none;
}
.location-input-wrap input:focus { border-color: #00C853; }

.loc-icon {
  position: absolute;
  left: 10px;
  font-size: 16px;
  z-index: 1;
}

.loc-spinner {
  position: absolute;
  right: 10px;
  width: 14px;
  height: 14px;
  border: 2px solid #e2e8f0;
  border-top-color: #00C853;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex: 2 1;
  min-width: 200px;
}

.search-input-wrap input {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 52px 12px 16px;
  font-size: 15px;
  width: 100%;
  background: #f8fafc;
  outline: none;
}
.search-input-wrap input:focus { border-color: #00C853; }

.search-btn {
  position: absolute;
  right: 4px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 16px;
  cursor: pointer;
}

/* ══ 3. SECTION TITLES ══ */
.section-title {
  font-size: 26px;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  padding: 10px 0 20px;
}
.section-title.left { text-align: left; }

/* ══ 4. CATEGORY GRID ══ */
.business-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 16px;
  scrollbar-width: none;
}
.business-grid::-webkit-scrollbar { display: none; }

.box-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 26px 16px 18px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  gap: 12px;
  min-width: 150px;
  flex-shrink: 0;
}
.box-item:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }

.box-icon { font-size: 56px; line-height: 1; }

.box-label {
  font-size: 14px;
  color: #374151;
  font-weight: 500;
  line-height: 1.3;
  max-width: 130px;
}

.view-more-wrap { text-align: center; margin-bottom: 32px; }

.view-more-btn {
  display: inline-block;
  padding: 12px 40px;
  background: #1e293b;
  color: #fff;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.view-more-btn:hover { opacity: 0.85; }

/* ══ 5. HIGHLIGHTS ══ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 16px;
  gap: 16px;
  margin-bottom: 40px;
}

.highlight-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 20px;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.2s;
}
.highlight-box:hover { transform: translateY(-2px); }

.hl-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }

.hl-badge {
  background: rgba(255,255,255,0.9);
  color: #16a34a;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 20px;
  display: inline-block;
}

.highlight-img { font-size: 52px; flex-shrink: 0; }

/* ══ 6. FREE DIGITAL SERVICES ══ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 16px;
  gap: 16px;
  margin-bottom: 40px;
}

.service-card {
  border-radius: 18px;
  padding: 36px 20px 28px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s;
  min-height: 180px;
  justify-content: center;
}
.service-card:hover { transform: translateY(-3px); }

.sc-icon-circle {
  width: 68px;
  height: 68px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.sc-label { color: #fff; font-size: 16px; font-weight: 700; text-align: center; line-height: 1.3; }

/* ══ 7. MIDDLE SECTION ══ */
.mid-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 28px;
  gap: 28px;
  margin-bottom: 40px;
  align-items: stretch;
}

.mid-ad-box {
  display: flex;
  flex-direction: column;
}

.mid-ad-title {
  font-size: 18px;
  font-weight: 700;
  color: #475569;
  text-align: center;
  margin-bottom: 12px;
}

.mid-ad-card {
  background: linear-gradient(135deg, #e0f2fe, #bfdbfe);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex: 1 1;
  border: 1px solid #e2e8f0;
  min-height: 0;
}

.mid-ad-text h3 { font-size: 30px; font-weight: 900; color: #1e293b; line-height: 1.2; margin-bottom: 8px; }
.mid-ad-text h3 strong { display: block; font-size: 34px; }
.mid-ad-text p { font-size: 18px; color: #1e293b; font-weight: 700; margin-bottom: 6px; }
.mid-ad-text small { font-size: 14px; color: #475569; display: block; margin-bottom: 24px; }

.mid-ad-btn {
  background: #00C853;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
  width: fit-content;
}

.mid-ad-phone { flex-shrink: 0; }

.mini-phone {
  width: 130px;
  height: 240px;
  background: #1e293b;
  border-radius: 20px;
  padding: 10px 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.mini-phone-screen {
  background: #fff;
  border-radius: 12px;
  height: 100%;
  padding: 10px 8px;
  overflow: hidden;
}

.mid-right {}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 8px;
  gap: 8px;
  margin-bottom: 8px;
}

.popular-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  padding: 10px;
  gap: 6px;
}
.popular-card:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.1); }
.popular-card > span { font-size: 34px; }
.popular-text { font-size: 11px; color: #374151; font-weight: 500; text-align: center; line-height: 1.2; }

/* ══ 8. EXPLORE MORE ══ */
.explore-section {
  background: #e2e8f0;
  border-radius: 18px;
  padding: 28px 20px;
  margin-bottom: 40px;
}

.explore-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.explore-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 0 8px;
  scrollbar-width: none;
  flex: 1 1;
}
.explore-scroll::-webkit-scrollbar { display: none; }

.explore-card {
  min-width: 200px;
  height: 210px;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.explore-card:hover { transform: translateY(-4px); }

.explore-icon-circle {
  width: 82px;
  height: 82px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}

.explore-card h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.5px;
  white-space: pre-line;
  line-height: 1.3;
}

.explore-arrow {
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #374151;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background 0.2s;
}
.explore-arrow:hover { background: #f1f5f9; }

/* ══ 9. POPULAR BRANDS ══ */
.brands-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  gap: 20px;
  margin-bottom: 40px;
}

.brands-slider-col {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-slide {
  flex: 1 1;
  border-radius: 18px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 230px;
  border: 1px solid #e2e8f0;
}

.brand-slide-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  white-space: pre-line;
  line-height: 1.3;
  margin-bottom: 8px;
}
.brand-slide-text p { font-size: 15px; color: #475569; margin-bottom: 16px; }

.brand-slide-btn {
  background: #00C853;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.brand-slide-phone { flex-shrink: 0; }

.brand-arrow {
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #374151;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.brands-img-col {}

.brands-img-placeholder {
  background: linear-gradient(135deg, #1e3a5f, #1e40af);
  border-radius: 16px;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.brands-img-content { text-align: center; }
.brands-img-content h3 { color: #fff; font-size: 18px; font-weight: 800; line-height: 1.3; margin-bottom: 8px; }
.brands-img-content p { color: #93c5fd; font-size: 14px; margin-bottom: 16px; }
.brands-img-content strong { color: #00C853; }

.brands-store-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.home-store-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #000;
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 8px 14px;
  text-decoration: none;
  transition: border-color 0.2s;
  min-width: 130px;
}
.home-store-btn:hover { border-color: #00C853; }
.home-store-svg { width: 20px; height: 20px; flex-shrink: 0; }
.home-store-btn small { font-size: 9px; color: #94a3b8; display: block; line-height: 1.2; }
.home-store-btn strong { font-size: 12px; color: #fff; display: block; font-weight: 700; }

/* ══ 10. APP DOWNLOAD ══ */
.app-download-wrapper {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.app-phone-mockup {
  width: 90px;
  height: 160px;
  background: #1e293b;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  flex-shrink: 0;
}

.app-phone-icon { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; }
.app-phone-name { font-size: 8px; font-weight: 700; color: #fff; }
.app-phone-bar { width: 54px; height: 6px; background: #334155; border-radius: 3px; }

.app-content { flex: 1 1; }

.app-offer-badge {
  background: #fef3c7;
  color: #92400e;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

.app-content h2 { color: #1e293b; font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.app-content p { color: #64748b; font-size: 15px; margin-bottom: 20px; }

.app-store-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.app-store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #000;
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: border-color 0.2s;
  text-decoration: none;
  min-width: 140px;
}
.app-store-btn:hover { border-color: #00C853; }
.app-store-svg { width: 22px; height: 22px; flex-shrink: 0; }
.app-btn-small { font-size: 10px; color: #94a3b8; display: block; line-height: 1.2; }
.app-btn-big { font-size: 14px; font-weight: 700; color: #fff; display: block; }

.app-qr-col { text-align: center; flex-shrink: 0; }
.app-qr-label { font-size: 11px; color: #64748b; margin-bottom: 8px; }

.app-qr-box {
  width: 90px;
  height: 90px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 6px;
}

.qr-pattern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2px;
  gap: 2px;
  width: 100%;
  height: 100%;
}

.qr-cell { background: #e2e8f0; border-radius: 1px; }
.qr-cell.filled { background: #1e293b; }

.app-qr-sub { font-size: 10px; color: #94a3b8; margin-top: 6px; }

/* ══ 11. LOCAL VIDEO BUZZ ══ */
.video-buzz-section {
  margin-bottom: 32px;
  text-align: center;
}

.video-buzz-title {
  font-size: 32px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
}
.video-buzz-title span { color: #2563eb; }

.video-buzz-sub { font-size: 17px; color: #64748b; margin-bottom: 24px; }

.video-buzz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  gap: 20px;
}

.video-buzz-item { border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

.video-buzz-iframe {
  width: 100%;
  height: 230px;
  border: none;
  display: block;
}

/* HR Popup */
.hr-popup {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 32px;
  max-width: 420px;
  width: 90%;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: cs-pop 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.hr-popup-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 18px; cursor: pointer; color: #94a3b8;
}
.hr-popup-icon { font-size: 56px; margin-bottom: 12px; }
.hr-popup h3 { font-size: 22px; font-weight: 800; color: #1e293b; margin-bottom: 8px; }
.hr-popup p { font-size: 14px; color: #64748b; line-height: 1.6; margin-bottom: 24px; }
.hr-popup-btns { display: flex; gap: 14px; }
.hr-btn {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 12px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hr-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.hr-btn span { font-size: 11px; font-weight: 500; opacity: 0.85; }
.hr-btn.employer { background: linear-gradient(135deg, #2563eb, #1d4ed8); color: #fff; }
.hr-btn.jobseeker { background: linear-gradient(135deg, #00C853, #00a844); color: #fff; }

/* ══ COMING SOON POPUP ══ */
.cs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  animation: cs-fade-in 0.2s ease;
}

@keyframes cs-fade-in { from { opacity: 0; } to { opacity: 1; } }

.cs-popup {
  background: #fff;
  border-radius: 20px;
  padding: 36px 40px 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  min-width: 280px;
  animation: cs-pop 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes cs-pop {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.cs-icon { font-size: 52px; margin-bottom: 12px; }

.cs-popup h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
}

.cs-popup p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cs-bar {
  width: 100%;
  height: 4px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.cs-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #00C853, #2563eb);
  border-radius: 4px;
  animation: cs-progress 2.5s linear forwards;
}

@keyframes cs-progress { from { width: 0%; } to { width: 100%; } }
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
}
.home-poster-popup {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 24px;
  max-width: 380px;
  width: 90%;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.home-poster-popup h3 { font-size: 18px; font-weight: 700; color: #1e293b; margin-bottom: 12px; }
.home-poster-popup p { font-size: 14px; color: #475569; line-height: 1.6; margin-bottom: 24px; }
.home-poster-popup-close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none; font-size: 18px; cursor: pointer; color: #94a3b8;
}
.home-poster-popup-btns { display: flex; gap: 12px; justify-content: center; }
.hpp-btn {
  flex: 1 1; padding: 12px 0; border-radius: 10px; font-size: 15px;
  font-weight: 700; cursor: pointer; border: none;
}
.hpp-btn.edit { background: #2563eb; color: #fff; }
.hpp-btn.make { background: #00C853; color: #fff; }
@media (max-width: 1024px) {
  .hero-text h1 { font-size: 28px; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .home .container { padding: 0 14px; }

  /* Hero */
  .hero-row { grid-template-columns: 1fr; }
  .promo-panel { display: none; }
  .hero-phone { display: none; }
  .hero-banner { padding: 28px 20px 40px; }
  .hero-text h1 { font-size: 26px; }
  .hero-text p { font-size: 16px; }
  .hero-btn { padding: 12px 24px; font-size: 15px; }

  /* Search */
  .search-section { padding: 14px 16px; }
  .search-row { flex-direction: column; gap: 10px; }
  .location-input-wrap, .search-input-wrap { flex: initial; width: 100%; min-width: 0; min-width: initial; }

  /* Category boxes */
  .box-item { min-width: 110px; padding: 18px 10px 12px; }
  .box-icon { font-size: 40px; }
  .box-label { font-size: 12px; }

  /* Highlights & Services */
  .highlights-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-card { padding: 24px 14px 20px; min-height: 140px; }
  .sc-icon-circle { width: 54px; height: 54px; font-size: 26px; }
  .sc-label { font-size: 14px; }

  /* Mid section */
  .mid-section { grid-template-columns: 1fr; gap: 20px; }
  .mid-ad-card { padding: 20px 16px; }
  .mid-ad-text h3 { font-size: 22px; }
  .mid-ad-text h3 strong { font-size: 26px; }
  .mini-phone { display: none; }

  /* Popular grid — 3 cols on tablet/mobile */
  .popular-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .popular-card { aspect-ratio: 1; padding: 8px; }
  .popular-card > span { font-size: 28px; }
  .popular-text { font-size: 10px; }

  /* Explore */
  .explore-card { min-width: 160px; height: 180px; }

  /* Brands */
  .brands-row { grid-template-columns: 1fr; }
  .brands-img-col { display: none; }
  .brand-slide { min-height: 180px; padding: 20px; }

  /* App download */
  .app-download-wrapper { padding: 20px 16px; gap: 16px; flex-wrap: wrap; }
  .app-qr-col { display: none; }
  .app-content h2 { font-size: 18px; }
  .app-content p { font-size: 13px; }

  /* Video buzz */
  .video-buzz-grid { grid-template-columns: 1fr; gap: 14px; }
  .video-buzz-title { font-size: 24px; }
  .video-buzz-sub { font-size: 14px; }

  /* Section titles */
  .section-title { font-size: 20px; }
}

@media (max-width: 480px) {
  .home .container { padding: 0 10px; }

  .hero-text h1 { font-size: 22px; }
  .hero-text p { font-size: 14px; }
  .hero-text small { display: none; }
  .hero-btn { padding: 10px 20px; font-size: 14px; }

  .box-item { min-width: 90px; padding: 14px 8px 10px; gap: 8px; }
  .box-icon { font-size: 34px; }
  .box-label { font-size: 11px; }

  .highlights-grid { gap: 8px; }
  .hl-title { font-size: 13px; margin-bottom: 6px; }
  .hl-badge { font-size: 11px; padding: 4px 10px; }
  .highlight-img { font-size: 34px; }
  .highlight-box { padding: 18px 14px; }

  .services-grid { gap: 10px; }
  .service-card { padding: 20px 10px 16px; min-height: 120px; }
  .sc-icon-circle { width: 46px; height: 46px; font-size: 22px; }
  .sc-label { font-size: 13px; }

  /* Popular grid — 3 cols on small mobile for better readability */
  .popular-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .popular-card > span { font-size: 24px; }
  .popular-text { font-size: 10px; }

  .explore-card { min-width: 140px; height: 160px; padding: 14px; }
  .explore-icon-circle { width: 60px; height: 60px; font-size: 30px; }
  .explore-card h5 { font-size: 12px; }
  .explore-arrow { display: none; }

  .brand-slide-text h3 { font-size: 16px; white-space: normal; }
  .brand-slide-text p { font-size: 13px; }
  .brand-slide-phone { display: none; }

  .app-store-btns { flex-direction: column; }
  .app-store-btn { min-width: 0; min-width: initial; width: 100%; }
  .app-phone-mockup { display: none; }

  .section-title { font-size: 18px; padding-bottom: 14px; }
  .view-more-btn { padding: 10px 28px; font-size: 14px; }

  .video-buzz-iframe { height: 200px; }
}

/* ══════════════════════════════
   Split Auth Page
══════════════════════════════ */
.auth-page-split {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f9ff;
  padding: 24px 16px;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.auth-split-card {
  display: flex;
  width: 100%;
  max-width: 960px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(50,50,93,0.1), 0 5px 15px rgba(0,0,0,0.07);
  overflow: hidden;
  min-height: 560px;
}

/* ── Left Side ── */
.auth-left {
  flex: 6 1;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
}

/* Logo + Tagline */
.auth-left-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.auth-logo-img-sm {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}

.auth-brand-name {
  font-size: 22px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.1;
}

.auth-brand-name span { color: #00C853; }

.auth-brand-tagline {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.3px;
}

/* Welcome Body */
.auth-left-body { flex: 1 1; display: flex; flex-direction: column; justify-content: center; }

.auth-welcome-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 14px;
  line-height: 1.3;
}

.auth-welcome-desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 380px;
}

/* CSS Illustration */
.auth-illustration {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-top: 8px;
}

.auth-illus-building {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.illus-roof {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 30px solid #0284c7;
  opacity: 0.8;
}

.illus-body {
  width: 80px;
  height: 70px;
  background: #bfdbfe;
  border-radius: 0 0 4px 4px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  padding: 8px 8px 0;
  position: relative;
}

.illus-door {
  width: 18px;
  height: 28px;
  background: #0284c7;
  border-radius: 3px 3px 0 0;
  position: absolute;
  bottom: 0;
}

.illus-window {
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  top: 12px;
}

.illus-window:first-of-type { left: 10px; }
.illus-window:last-of-type { right: 10px; }

.auth-illus-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.auth-illus-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0284c7;
  opacity: 0.4;
}

.auth-illus-dots span:nth-child(2) { opacity: 0.7; }
.auth-illus-dots span:nth-child(3) { opacity: 1; }

/* ── Right Side ── */
.auth-right {
  flex: 5 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 40px;
  border-left: 1px solid #f1f5f9;
}

.auth-right-inner { width: 100%; }

.auth-right-header {
  text-align: center;
  margin-bottom: 28px;
}

.auth-right-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.auth-right-header p { color: #6b7280; font-size: 13px; }

/* Form */
.auth-form-split { display: flex; flex-direction: column; gap: 14px; }

/* Input Row (icon + input) */
.auth-input-wrap-row {
  display: flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  background: #f8fafc;
  transition: border-color 0.2s;
}

.auth-input-wrap-row:focus-within { border-color: #0284c7; background: #fff; }

.auth-row-icon {
  padding: 0 14px;
  font-size: 18px;
  height: 50px;
  display: flex;
  align-items: center;
  background: #f1f5f9;
  border-right: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.auth-input-wrap-row input {
  flex: 1 1;
  height: 50px;
  padding: 0 14px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  color: #1e293b;
}

.auth-input-wrap-row input::placeholder { color: #94a3b8; }

.auth-eye-btn {
  background: none;
  border: none;
  padding: 0 12px;
  font-size: 16px;
  cursor: pointer;
  height: 50px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #64748b;
}

.auth-eye-btn {
  background: none;
  border: none;
  padding: 0 12px;
  font-size: 16px;
  cursor: pointer;
  height: 50px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #64748b;
}

/* Referral Toggle Row */
.auth-referral-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}

.auth-referral-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #374151;
  font-weight: 500;
}

/* Toggle Switch */
.auth-toggle {
  width: 44px;
  height: 24px;
  background: #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
  flex-shrink: 0;
}

.auth-toggle.on { background: #00C853; }

.auth-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.auth-toggle.on .auth-toggle-thumb { transform: translateX(20px); }

/* Error */
.auth-error-msg {
  color: #ef4444;
  font-size: 12px;
  margin-top: -6px;
}

/* Submit Button */
.auth-submit-btn {
  height: 50px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s;
  font-family: 'Poppins', sans-serif;
  margin-top: 4px;
}

.auth-submit-btn.green {
  background: linear-gradient(to right, #00C853, #00E676);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,200,83,0.3);
}

.auth-submit-btn.green:hover { opacity: 0.9; }
.auth-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }

.auth-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Toggle Email/Mobile link */
.auth-toggle-link { text-align: center; }

.auth-toggle-link button {
  background: none;
  color: #0284c7;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

/* Switch Login/Register */
.auth-switch-row {
  text-align: center;
  margin-top: 4px;
}

.auth-switch-row p { font-size: 14px; color: #374151; }

.auth-switch-row button {
  background: none;
  color: #0284c7;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.auth-divider {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 18px 0;
}

.auth-terms-split {
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
  line-height: 1.7;
}

.auth-terms-split a { color: #9ca3af; text-decoration: underline; }

/* ══════════════════════════════
   OTP Verify Page
══════════════════════════════ */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f9ff;
  padding: 24px 16px;
}

.auth-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 36px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 15px 35px rgba(50,50,93,0.1), 0 5px 15px rgba(0,0,0,0.07);
  text-align: center;
}

.auth-logo { margin-bottom: 20px; }

.auth-logo-img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,200,83,0.25);
  display: block;
  margin: 0 auto;
}

.auth-card h1 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.auth-sub { color: #6b7280; font-size: 14px; margin-bottom: 28px; }

.auth-form { display: flex; flex-direction: column; gap: 16px; }

.auth-error { color: #ef4444; font-size: 12px; }

.btn-primary {
  height: 50px;
  background: linear-gradient(to right, #00C853, #00E676);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s;
  box-shadow: 0 4px 12px rgba(0,200,83,0.3);
}

.btn-primary:disabled { opacity: 0.7; cursor: not-allowed; }

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

/* OTP Boxes */
.otp-boxes {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 8px 0;
}

.otp-box {
  width: 50px;
  height: 54px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  background: #f8fafc;
  transition: border-color 0.2s;
  outline: none;
}

.otp-box:focus { border-color: #00C853; background: #fff; }

.resend-btn {
  background: none;
  color: #0284c7;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  cursor: pointer;
  display: block;
  width: 100%;
  text-align: center;
}

.auth-terms {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 16px;
  line-height: 1.6;
}

.auth-terms a { color: #9ca3af; text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 700px) {
  .auth-split-card { flex-direction: column; }
  .auth-left { padding: 24px 20px; }
  .auth-welcome-title { font-size: 22px; }
  .auth-illustration { display: none; }
  .auth-right { padding: 24px 20px; border-left: none; border-top: 1px solid #f1f5f9; }
}

.categories-page {
  min-height: 100vh;
  background: #f8fafc;
  padding: 32px 24px 60px;
}

/* ── Top Row: Title + Search ── */
.cat-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.cat-page-title {
  font-size: 28px;
  font-weight: 800;
  color: #1e293b;
}

.cat-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 16px;
  min-width: 260px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: border-color 0.2s;
}

.cat-search:focus-within { border-color: #2563eb; }

.cat-search-icon { font-size: 16px; color: #94a3b8; flex-shrink: 0; }

.cat-search input {
  flex: 1 1;
  border: none;
  outline: none;
  font-size: 14px;
  color: #1e293b;
  background: transparent;
  font-family: inherit;
}

.cat-search-clear {
  background: #f1f5f9;
  border: none;
  border-radius: 6px;
  width: 22px;
  height: 22px;
  font-size: 12px;
  cursor: pointer;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Grid ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  grid-gap: 14px;
  gap: 14px;
  padding-bottom: 40px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 18px 10px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #f1f5f9;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-align: center;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: #e0e7ff;
}

.cat-card-icon {
  font-size: 36px;
  width: 64px;
  height: 64px;
  background: #f8fafc;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f1f5f9;
}

.cat-card p {
  font-size: 11px;
  text-align: center;
  color: #374151;
  font-weight: 500;
  line-height: 1.3;
  word-break: break-word;
}

/* ── Empty State ── */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: #94a3b8;
}

.empty-state span { font-size: 56px; display: block; margin-bottom: 16px; }
.empty-state p { font-size: 16px; font-weight: 500; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .cat-top-row { flex-direction: column; align-items: flex-start; }
  .cat-search { width: 100%; min-width: 0; min-width: initial; }
  .cat-page-title { font-size: 22px; }
  .cat-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 10px; }
  .cat-card-icon { width: 52px; height: 52px; font-size: 28px; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; }
  .cat-card { padding: 14px 8px 10px; }
}

.subcat-page {
  min-height: 100vh;
  background: #f8fafc;
  padding: 36px 24px 60px;
}

.subcat-container {
  max-width: 720px;
  margin: 0 auto;
}

.subcat-title {
  font-size: 28px;
  font-weight: 800;
  color: #1e293b;
  text-align: center;
  margin-bottom: 28px;
}

.subcat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.subcat-item {
  background: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border: 1px solid #f1f5f9;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}

.subcat-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.subcat-name {
  font-size: 16px;
  font-weight: 500;
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.subcat-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.subcat-empty {
  text-align: center;
  padding: 80px 20px;
  color: #94a3b8;
}

.subcat-empty span { font-size: 56px; display: block; margin-bottom: 16px; }
.subcat-empty p { font-size: 16px; font-weight: 500; }

@media (max-width: 480px) {
  .subcat-title { font-size: 22px; }
  .subcat-name { font-size: 14px; }
  .subcat-icon { font-size: 32px; }
  .subcat-item { padding: 16px 18px; }
}

.blp-page { min-height: 100vh; background: #f8fafc; }

/* ── Banner ── */
.blp-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #1e40af 100%);
  padding: 48px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.blp-banner::before {
  content: '';
  position: absolute;
  right: 30%;
  top: -40px;
  width: 400px;
  height: 400px;
  background: rgba(56,189,248,0.12);
  border-radius: 50%;
}

.blp-banner-text { position: relative; z-index: 1; }

.blp-banner-text h1 {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.blp-banner-text h1 span { color: #38bdf8; }

.blp-banner-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 24px;
}

.blp-banner-text button {
  background: #22c55e;
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 14px 36px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
.blp-banner-text button:hover { opacity: 0.9; }

/* Phone mockup */
.blp-banner-visual { flex-shrink: 0; position: relative; z-index: 1; }

.blp-phone-mockup {
  width: 220px;
  height: 380px;
  background: #fff;
  border-radius: 28px;
  padding: 16px 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  border: 3px solid rgba(255,255,255,0.2);
}

.blp-phone-screen { height: 100%; }

.blp-phone-search {
  background: #f1f5f9;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 11px;
  color: #64748b;
  margin-bottom: 14px;
}

.blp-phone-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 8px;
  gap: 8px;
}

.blp-phone-cat {
  background: #f8fafc;
  border-radius: 10px;
  padding: 10px 6px;
  font-size: 10px;
  text-align: center;
  color: #374151;
  border: 1px solid #e2e8f0;
}

/* ── Container ── */
.blp-container { max-width: 900px; margin: 0 auto; padding: 24px 24px 60px; }

/* ── Breadcrumb ── */
.blp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.blp-breadcrumb span { cursor: pointer; }
.blp-breadcrumb span:hover { color: #2563eb; }
.blp-breadcrumb span.active { color: #1e293b; font-weight: 600; cursor: default; }

/* ── Filters ── */
.blp-filters {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  grid-gap: 12px;
  gap: 12px;
  margin-bottom: 24px;
}

.blp-filters select {
  padding: 13px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  color: #374151;
  background: #fff;
  font-family: inherit;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.blp-filters select:focus { border-color: #2563eb; }

.blp-clear-btn {
  padding: 13px 24px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.blp-clear-btn:hover { opacity: 0.9; }

/* ── Business Cards ── */
.blp-list { display: flex; flex-direction: column; gap: 16px; }

.blp-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.blp-verified {
  background: #dcfce7;
  color: #16a34a;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1.5px solid #86efac;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.blp-card-body {
  display: flex;
  gap: 20px;
  padding: 16px;
}

.blp-card-img {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.blp-card-img img { width: 100%; height: 100%; object-fit: cover; }

.blp-card-info { flex: 1 1; }

.blp-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-bottom: 4px;
}

.blp-card-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #2563eb;
  cursor: pointer;
  margin: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blp-card-info h3:hover { color: #1d4ed8; }

.blp-desc { font-size: 13px; color: #64748b; margin-bottom: 8px; }

.blp-rating {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blp-rating span { font-size: 13px; color: #64748b; }

.blp-meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #64748b; margin-bottom: 6px; }

.blp-status { font-weight: 600; }
.blp-status.open { color: #16a34a; }
.blp-status.close { color: #ef4444; }

.blp-address { font-size: 12px; color: #94a3b8; line-height: 1.5; }

.blp-delivery {
  font-size: 13px;
  color: #374151;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blp-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.blp-btn {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s, color 0.2s;
  background: #fff;
}

.blp-btn.call { color: #16a34a; border-color: #16a34a; }
.blp-btn.call:hover { background: #16a34a; color: #fff; }

.blp-btn.enquiry { color: #2563eb; border-color: #2563eb; }
.blp-btn.enquiry:hover { background: #2563eb; color: #fff; }

.blp-btn.website { color: #7c3aed; border-color: #7c3aed; }
.blp-btn.website:hover { background: #7c3aed; color: #fff; }

.blp-btn.whatsapp { color: #059669; border-color: #059669; }
.blp-btn.whatsapp:hover { background: #059669; color: #fff; } */
.blp-empty { text-align: center; padding: 80px 20px; color: #94a3b8; }
.blp-empty span { font-size: 56px; display: block; margin-bottom: 16px; }
.blp-empty p { font-size: 16px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .blp-banner { flex-direction: column; padding: 32px 24px; text-align: center; }
  .blp-banner-visual { display: none; }
  .blp-banner-text h1 { font-size: 26px; }
  .blp-filters { grid-template-columns: 1fr 1fr; }
  .blp-clear-btn { grid-column: span 2; }
  .blp-card-img { width: 100px; height: 100px; }
}

@media (max-width: 480px) {
  .blp-filters { grid-template-columns: 1fr; }
  .blp-clear-btn { grid-column: span 1; }
  .blp-card-body { flex-direction: column; }
  .blp-card-img { width: 100%; height: 180px; }
}

.bd-page {
  min-height: 100vh;
  background: #f5f5f5;
}

.bd-not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 20px;
}

.bd-not-found button {
  padding: 12px 30px;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

/* Carousel */
.bd-carousel {
  position: relative;
  width: 100%;
  height: 400px;
  background: #000;
  overflow: hidden;
}

.bd-back-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.bd-carousel-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.bd-carousel-images img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.bd-carousel-images img.active {
  opacity: 1;
}

.bd-carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.bd-carousel-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.bd-carousel-dots span.active {
  background: white;
  width: 30px;
  border-radius: 5px;
}

.bd-no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 100px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Container */
.bd-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* Header */
.bd-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.bd-header-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.bd-header h1 {
  font-size: 28px;
  color: #333;
  margin: 0;
}

.bd-verified {
  background: #4CAF50;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.bd-bookmark {
  background: white;
  border: 2px solid #ddd;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s;
}

.bd-bookmark:hover {
  background: #FFC107;
  border-color: #FFC107;
}

.bd-tagline {
  font-size: 18px;
  color: #666;
  font-weight: 600;
  margin: 10px 0;
}

.bd-desc {
  color: #888;
  margin-bottom: 15px;
}

/* Rating */
.bd-rating {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.bd-stars {
  color: #FFC107;
  font-size: 20px;
}

.bd-rating span {
  color: #666;
  font-size: 14px;
}

.bd-likes {
  color: #e91e63 !important;
  font-weight: 600;
}

/* Meta */
.bd-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.bd-status {
  padding: 6px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
}

.bd-status.open {
  background: #4CAF50;
  color: white;
}

.bd-status.close {
  background: #f44336;
  color: white;
}

/* Actions Grid - 4 per row */
.bd-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 12px;
  gap: 12px;
  margin-bottom: 25px;
}

.bd-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px;
  background: white;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.bd-action-btn:hover {
  border-color: #4CAF50;
  box-shadow: 0 4px 12px rgba(76,175,80,0.15);
  transform: translateY(-2px);
}

.bd-action-icon {
  font-size: 26px;
  line-height: 1;
}

.bd-action-text {
  font-size: 11px;
  font-weight: 600;
  color: #333;
  text-align: center;
  line-height: 1.3;
}

/* Tabs */
.bd-tabs {
  display: flex;
  gap: 0;
  background: white;
  border-radius: 12px;
  padding: 6px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow-x: auto;
}

.bd-tab {
  flex: 1 1;
  padding: 10px 14px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.bd-tab.active {
  background: #4CAF50;
  color: white;
}

/* Photos Grid */
.bd-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  gap: 10px;
}

.bd-photo-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.bd-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.bd-photo-item:hover img {
  transform: scale(1.05);
}

/* Services */
.bd-services-list {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
}

.bd-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #f9f9f9;
  border-radius: 10px;
  font-size: 15px;
  color: #333;
}

.bd-service-icon {
  width: 28px;
  height: 28px;
  background: #4CAF50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* Products */
.bd-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
  gap: 15px;
}

.bd-product-card {
  border: 1.5px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.bd-product-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.bd-product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.bd-product-card h4 {
  padding: 10px 12px 4px;
  font-size: 14px;
  color: #333;
  margin: 0;
}

.bd-product-price {
  padding: 0 12px 8px;
  font-size: 15px;
  font-weight: 700;
  color: #4CAF50;
  margin: 0;
}

.bd-product-btn {
  width: 100%;
  padding: 10px;
  background: #4CAF50;
  color: white;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* Reviews */
.bd-review-form {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  border: 1px solid #e0e0e0;
}

.bd-review-stars-input {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.bd-star-btn {
  font-size: 32px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.15s;
  line-height: 1;
}

.bd-star-btn.active { color: #FFC107; }

.bd-review-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  margin-bottom: 12px;
  box-sizing: border-box;
}

.bd-review-input:focus { border-color: #4CAF50; }

.bd-review-submit {
  width: 100%;
  padding: 14px;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

.bd-review-submit:hover { opacity: 0.9; }

.bd-reviews-list {
  display: grid;
  grid-gap: 15px;
  gap: 15px;
}

.bd-review-item {
  padding: 15px;
  background: #f9f9f9;
  border-radius: 12px;
}

.bd-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.bd-review-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #4CAF50, #2196F3);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.bd-review-info {
  flex: 1 1;
}

.bd-review-info h4 {
  margin: 0 0 4px;
  font-size: 15px;
  color: #333;
}

.bd-review-stars {
  color: #FFC107;
  font-size: 14px;
}

.bd-review-date {
  font-size: 12px;
  color: #aaa;
}

.bd-review-comment {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Sections */
.bd-section {
  background: white;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.bd-section h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bd-section p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

.bd-delivery {
  color: #4CAF50 !important;
  font-weight: 600;
  margin-top: 10px;
}

/* Info Grid */
.bd-info-grid {
  display: grid;
  grid-gap: 15px;
  gap: 15px;
  margin-top: 15px;
}

.bd-info-item {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  background: #f9f9f9;
  border-radius: 8px;
}

.bd-info-item strong {
  color: #333;
}

.bd-info-item span {
  color: #666;
}

/* Opening Hours */
.bd-hours {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
}

.bd-hour-row {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  background: #f9f9f9;
  border-radius: 8px;
}

.bd-hour-row.today {
  background: #dcfce7;
  border: 1px solid #16a34a;
}

.bd-day {
  font-weight: 600;
  color: #333;
  text-transform: capitalize;
}

.bd-time {
  color: #666;
}

/* Payment Modes */
.bd-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bd-payment-chip {
  padding: 8px 16px;
  background: #E3F2FD;
  color: #1976D2;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .bd-carousel {
    height: 300px;
  }

  .bd-header h1 {
    font-size: 22px;
  }

  .bd-actions-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .bd-action-btn {
    padding: 10px 6px;
  }

  .bd-action-icon {
    font-size: 22px;
  }

  .bd-action-text {
    font-size: 10px;
  }

  .bd-tabs {
    padding: 4px;
  }

  .bd-tab {
    padding: 8px 10px;
    font-size: 12px;
  }

  .bd-section {
    padding: 20px;
  }

  .bd-photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bd-products-grid {
    grid-template-columns: 1fr;
  }
}

.business-page { min-height: 100vh; background: #f8fafc; }

/* ── Login Wall ── */
.biz-login-wall {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(to right, #fff, #e0f7ff, #fff);
}

.biz-login-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 15px 35px rgba(50,50,93,0.1), 0 5px 15px rgba(0,0,0,0.07);
}

.biz-login-icon { font-size: 56px; margin-bottom: 16px; }

.biz-login-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.biz-login-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.biz-login-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  text-align: left;
}

.biz-feature-item {
  font-size: 14px;
  color: #374151;
  padding: 8px 12px;
  background: #f0fdf4;
  border-radius: 8px;
}

.biz-login-btn {
  width: 100%;
  height: 50px;
  background: linear-gradient(to right, #0284c7, #38bdf8);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  transition: opacity 0.2s;
}

.biz-login-btn:hover { opacity: 0.9; }

.biz-back-link {
  background: none;
  color: #6b7280;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.biz-header {
  background: #E8F5E9;
  padding: 20px 0 16px;
  border-bottom: 1px solid #C8E6C9;
}

.biz-header h1 { font-size: 22px; font-weight: 700; margin-top: 8px; }

.back-btn-dark {
  background: none;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  margin-bottom: 8px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1 1;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 60%;
  right: -40%;
  height: 2px;
  background: #ccc;
}

.step.active .step-dot { background: var(--primary); color: #fff; }
.step.active span { color: var(--primary); font-weight: 700; }

.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ccc;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.step span { font-size: 10px; color: #999; text-align: center; }

.biz-form {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 14px;
  gap: 14px;
}

.logo-name-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}

.logo-upload {
  width: 90px;
  height: 90px;
  min-width: 90px;
  border: 2px dashed var(--border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  font-size: 28px;
  color: #ccc;
  overflow: hidden;
}

.logo-upload img { width: 100%; height: 100%; object-fit: cover; }
.logo-upload p { font-size: 11px; color: #999; margin: 0; }

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 12px;
  gap: 12px;
  margin-top: 4px;
}

.hours-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
}

.hours-day { width: 90px; font-size: 14px; font-weight: 600; color: #374151; flex-shrink: 0; }

.hours-times { display: flex; align-items: center; gap: 8px; }
.hours-times input { padding: 8px 10px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 13px; width: 110px; }
.hours-times span { font-size: 13px; color: #94a3b8; }
.hours-closed { font-size: 13px; color: #ef4444; font-weight: 600; }

.upload-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 8px;
  gap: 8px;
  margin-top: 10px;
}

.upload-preview-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.product-form-card {
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
  background: #f8fafc;
}

.product-form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  color: #374151;
  margin-bottom: 12px;
}

.product-form-card {
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
  background: #f8fafc;
}

.product-form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  color: #374151;
  margin-bottom: 12px;
}

.service-input-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.service-input-row input { flex: 1 1; }

.service-remove {
  background: #fee2e2;
  color: #ef4444;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step.done .step-dot { background: #16a34a; color: #fff; }
.step.done span { color: #16a34a; }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .upload-preview-grid { grid-template-columns: repeat(3, 1fr); }
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  font-size: 15px;
  background: #fff;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group textarea { border-radius: 16px; resize: vertical; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }



.input-with-btn {
  display: flex;
  gap: 10px;
  align-items: center;
}

.input-with-btn input { flex: 1 1; }

.btn-verify {
  background: var(--info);
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; grid-gap: 10px; gap: 10px; margin-top: 10px; }

.btn-add-cat {
  background: rgba(0,200,83,0.12);
  color: var(--primary);
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  align-self: flex-start;
  cursor: pointer;
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }

.chip {
  background: rgba(0,200,83,0.1);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chip button { background: none; color: var(--primary); font-size: 16px; cursor: pointer; }

.payment-group { margin-bottom: 16px; }

.payment-cat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.payment-modes { display: flex; flex-direction: column; gap: 8px; }

.payment-mode {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
}

.payment-mode input { accent-color: var(--primary); width: 16px; height: 16px; }

.btn-next {
  background: var(--gradient);
  color: #fff;
  padding: 16px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  margin-top: 8px;
  cursor: pointer;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.modal {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

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

.modal-header h3 { font-size: 18px; font-weight: 700; }
.modal-header button { background: none; font-size: 20px; cursor: pointer; }

.modal-search {
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  font-size: 15px;
  margin-bottom: 12px;
  width: 100%;
}

.modal-list { overflow-y: auto; flex: 1 1; }

.modal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 4px;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  font-size: 15px;
}

.modal-item input { accent-color: var(--primary); width: 18px; height: 18px; }

.btn-done {
  background: var(--gradient);
  color: #fff;
  padding: 14px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  margin-top: 12px;
  cursor: pointer;
}

.success-popup {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  width: 380px;
  max-width: 95vw;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  animation: popIn 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
}

@keyframes popIn {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

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

.success-popup h2 {
  font-size: 26px;
  font-weight: 800;
  color: #16a34a;
  margin-bottom: 8px;
}

.success-popup p {
  font-size: 15px;
  color: #374151;
  margin-bottom: 4px;
}

.success-sub { font-size: 13px; color: #94a3b8; margin-bottom: 20px; }

.success-bar {
  height: 6px;
  background: #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
}

.success-bar-fill {
  height: 100%;
  background: linear-gradient(to right, #16a34a, #22c55e);
  border-radius: 6px;
  animation: fillBar 3.5s linear forwards;
}

@keyframes fillBar {
  from { width: 0%; }
  to   { width: 100%; }
}

/* Location Popup */
.location-popup {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  width: 460px;
  max-width: 95vw;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.location-popup-header {
  background: #16a34a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.location-popup-close {
  background: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
}

.location-popup-text {
  padding: 24px 20px;
  font-size: 16px;
  color: #374151;
  margin: 0;
}

.location-popup-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 0 20px 20px;
}

.location-btn {
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid;
}

.location-btn.yes { background: #16a34a; color: #fff; border-color: #16a34a; }
.location-btn.no { background: #fff; color: #ef4444; border-color: #ef4444; }

/* Autofill Popup */
.autofill-popup {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  width: 420px;
  max-width: 95vw;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.autofill-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid #93c5fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #3b82f6;
  margin: 0 auto 16px;
}

.autofill-popup h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }

.autofill-warning {
  background: #fef08a;
  color: #854d0e;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 24px;
}

.autofill-actions { display: flex; justify-content: center; gap: 16px; }

.autofill-btn {
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

.autofill-btn.no { background: #374151; color: #fff; }
.autofill-btn.yes { background: #6366f1; color: #fff; }

/* Modal subcategory */
.modal-expand {
  font-size: 12px;
  color: #94a3b8;
  padding: 4px 8px;
  cursor: pointer;
}

.modal-subcats {
  background: #f8fafc;
  border-left: 3px solid #22c55e;
  margin-left: 32px;
  margin-bottom: 4px;
  border-radius: 0 8px 8px 0;
}

.modal-subcat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
}

.modal-subcat-item input { accent-color: var(--primary); width: 16px; height: 16px; }

.location-hint {
  font-size: 13px;
  color: #92400e;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 10px;
}

.logistry-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  cursor: pointer;
}

.toggle-switch input { display: none; }

.toggle-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 26px;
  transition: background 0.2s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}

.toggle-switch input:checked + .toggle-slider { background: var(--primary); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }

/* ── Business Landing Page ── */
.biz-landing { min-height: 100vh; background: #f8fafc; }

.biz-landing-hero {
  background: linear-gradient(135deg, #0ea5e9, #22d3ee);
  color: #fff;
  text-align: center;
  padding: 40px 24px 32px;
}

.biz-landing-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.biz-landing-logo { width: 48px; height: 48px; object-fit: contain; }

.biz-landing-brand-name {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}

.biz-landing-brand-name span { color: #bbf7d0; }

.biz-landing-hero h1 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.biz-landing-hero h2 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.biz-landing-hero p { font-size: 14px; opacity: 0.9; }

.biz-landing-body {
  display: flex;
  gap: 32px;
  padding: 32px 16px;
  align-items: flex-start;
}

.biz-landing-left { flex: 1 1; }

.biz-landing-left h3 {
  color: #0ea5e9;
  font-size: 17px;
  font-weight: 700;
  margin: 20px 0 8px;
}

.biz-landing-left h3:first-child { margin-top: 0; }

.biz-landing-left p { font-size: 14px; color: #374151; line-height: 1.7; }

.biz-advantages {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 8px;
  padding: 0;
}

.biz-advantages li { font-size: 14px; color: #374151; }

.btn-list-business {
  margin-top: 24px;
  background: #16a34a;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
}

.biz-landing-right {
  width: 340px;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 12px;
  gap: 12px;
  align-items: start;
}

.biz-info-card {
  border-radius: 12px;
  padding: 16px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.biz-info-card.free {
  background: #dcfce7;
  color: #15803d;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}

.biz-info-card.blue { background: #dbeafe; color: #1e40af; }
.biz-info-card.pink { background: #fce7f3; color: #9d174d; }
.biz-info-card.yellow { background: #fef9c3; color: #854d0e; }

@media (max-width: 768px) {
  .biz-landing-body { flex-direction: column; }
  .biz-landing-right { width: 100%; }
}

.mybiz-page {
  min-height: 100vh;
  background: #f8fafc;
  padding: 32px 0 60px;
}

.mybiz-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 12px;
}
.mybiz-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #00C853;
  margin: 8px auto 0;
  border-radius: 2px;
}

.mybiz-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 28px;
}

.mybiz-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  display: flex;
  gap: 0;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

/* Image */
.mybiz-img-wrap {
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  position: relative;
  background: #f1f5f9;
  border-radius: 12px;
  overflow: hidden;
}

.mybiz-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  box-sizing: border-box;
}

.mybiz-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  background: #f1f5f9;
  min-height: 280px;
}

.mybiz-deleted-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

/* Info */
.mybiz-info {
  flex: 1 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mybiz-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.mybiz-name {
  font-size: 22px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 4px;
}

.mybiz-cats {
  font-size: 14px;
  color: #00C853;
  font-weight: 600;
}

/* Profile progress */
.mybiz-profile-wrap { min-width: 140px; }

.mybiz-profile-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 6px;
}

.mybiz-profile-pct { font-weight: 700; color: #1e293b; }

.mybiz-progress-bar {
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.mybiz-progress-fill {
  height: 100%;
  background: #00C853;
  border-radius: 4px;
  transition: width 0.4s;
}

/* Stats */
.mybiz-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8px 24px;
  gap: 8px 24px;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  padding: 12px 0;
}

.mybiz-stat-col { display: flex; flex-direction: column; gap: 8px; }

.mybiz-stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #475569;
}

.mybiz-stat-icon { font-size: 15px; }
.mybiz-stat-label { color: #64748b; }
.mybiz-stat-val { font-weight: 600; color: #1e293b; }

/* Management */
.mybiz-mgmt-label {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 600;
  margin-bottom: 2px;
}

.mybiz-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  gap: 10px;
}

.mybiz-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 8px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
}
.mybiz-action-btn:hover { background: #f8fafc; border-color: #00C853; color: #00C853; }
.mybiz-action-btn.green { background: #00C853; color: #fff; border-color: #00C853; }
.mybiz-action-btn.green:hover { background: #00b348; }

/* Add button */
.mybiz-add-wrap { text-align: center; margin-top: 32px; }

.mybiz-add-btn {
  background: #00C853;
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
.mybiz-add-btn:hover { opacity: 0.9; }

@media (max-width: 768px) {
  .mybiz-card { flex-direction: column; }
  .mybiz-img-wrap { width: 100%; min-height: 200px; }
  .mybiz-actions { grid-template-columns: repeat(2, 1fr); }
  .mybiz-top-row { flex-direction: column; }
}

/* ── Modals ── */
.mybiz-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; padding: 16px;
}

.mybiz-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%; max-width: 680px;
  max-height: 90vh;
  display: flex; flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  overflow: hidden;
}

.mybiz-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #e2e8f0;
  flex-shrink: 0;
}
.mybiz-modal-header h3 { font-size: 17px; font-weight: 700; color: #1e293b; }
.mybiz-modal-close { background: none; border: none; font-size: 18px; cursor: pointer; color: #94a3b8; }

.mybiz-modal-body {
  padding: 20px 24px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 14px;
}

.mybiz-form-row { display: flex; gap: 14px; }
.mybiz-form-group { display: flex; flex-direction: column; gap: 6px; flex: 1 1; }
.mybiz-form-group label { font-size: 13px; font-weight: 600; color: #374151; }
.mybiz-form-group input,
.mybiz-form-group select,
.mybiz-form-group textarea {
  border: 1px solid #e2e8f0; border-radius: 8px;
  padding: 10px 12px; font-size: 14px; outline: none;
  background: #f8fafc; font-family: inherit;
}
.mybiz-form-group input:focus,
.mybiz-form-group select:focus,
.mybiz-form-group textarea:focus { border-color: #00C853; background: #fff; }

.mybiz-save-btn {
  background: #00C853; color: #fff; border: none;
  border-radius: 10px; padding: 13px; font-size: 15px;
  font-weight: 700; cursor: pointer; margin-top: 6px;
}
.mybiz-save-btn:disabled { opacity: 0.7; cursor: not-allowed; }

.mybiz-add-row-btn {
  background: none; border: 1px dashed #00C853;
  color: #00C853; border-radius: 8px; padding: 9px 16px;
  font-size: 13px; font-weight: 600; cursor: pointer; width: fit-content;
}

.mybiz-remove-btn {
  background: #fef2f2; color: #ef4444; border: 1px solid #fecaca;
  border-radius: 8px; padding: 8px 12px; font-size: 12px;
  font-weight: 600; cursor: pointer; align-self: flex-end; white-space: nowrap;
}

.mybiz-product-card {
  border: 1px solid #e2e8f0; border-radius: 10px;
  padding: 14px; display: flex; flex-direction: column; gap: 10px;
}

/* Hours */
.mybiz-hours-row {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0; border-bottom: 1px solid #f1f5f9;
}
.mybiz-hours-day { width: 90px; font-size: 13px; font-weight: 600; color: #374151; flex-shrink: 0; }
.mybiz-hours-times { display: flex; align-items: center; gap: 8px; }
.mybiz-hours-times input { border: 1px solid #e2e8f0; border-radius: 6px; padding: 6px 8px; font-size: 13px; }

.mybiz-toggle-wrap { position: relative; display: inline-block; width: 40px; height: 22px; flex-shrink: 0; }
.mybiz-toggle-wrap input { opacity: 0; width: 0; height: 0; }
.mybiz-toggle-slider {
  position: absolute; inset: 0; background: #e2e8f0;
  border-radius: 22px; cursor: pointer; transition: 0.2s;
}
.mybiz-toggle-slider::before {
  content: ''; position: absolute;
  width: 16px; height: 16px; left: 3px; bottom: 3px;
  background: #fff; border-radius: 50%; transition: 0.2s;
}
.mybiz-toggle-wrap input:checked + .mybiz-toggle-slider { background: #00C853; }
.mybiz-toggle-wrap input:checked + .mybiz-toggle-slider::before { transform: translateX(18px); }

/* Category checkboxes */
.mybiz-cat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-gap: 8px;
  gap: 8px; max-height: 200px; overflow-y: auto;
  border: 1px solid #e2e8f0; border-radius: 8px; padding: 10px;
}
.mybiz-cat-check {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: #374151; cursor: pointer;
}

/* Logo upload */
.mybiz-logo-upload {
  width: 120px; height: 120px;
  border: 2px dashed #e2e8f0; border-radius: 12px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; cursor: pointer; transition: border-color 0.2s;
}
.mybiz-logo-upload:hover { border-color: #00C853; }

@media (max-width: 600px) {
  .mybiz-form-row { flex-direction: column; }
  .mybiz-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .mybiz-modal { max-height: 95vh; }
}

.account-page {
  min-height: 100vh;
  background: #f1f5f9;
  padding: 24px 0 40px;
}

.account-main-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.account-bottom-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.account-bottom-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 20px 16px;
  flex-wrap: wrap;
}

.account-bottom-grid .account-menu-item {
  width: 160px;
}

.account-header {
  background: linear-gradient(135deg, #0ea5e9 0%, #22d3ee 50%, #16a34a 100%);
  padding: 24px 24px 20px;
}

.account-profile-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.account-avatar-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.8);
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-avatar-img { width: 100%; height: 100%; object-fit: cover; }

.account-avatar-initials {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

.account-profile-info { flex: 1 1; }
.account-profile-info h2 { font-size: 18px; font-weight: 800; color: #fff; margin: 0 0 2px; }
.account-profile-info p { font-size: 13px; color: rgba(255,255,255,0.85); margin: 0; }
.account-profile-phone { font-size: 12px !important; color: rgba(255,255,255,0.7) !important; margin-top: 2px !important; }

.account-edit-btn {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.account-edit-btn:hover { background: rgba(255,255,255,0.35); }

.account-menu-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 0;
  gap: 0;
  padding: 16px;
}

.account-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 12px 20px;
  margin: 6px;
}

.account-menu-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.account-menu-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: relative;
}

.menu-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.account-menu-label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .account-menu-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .account-menu-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 400px) {
  .account-menu-grid { grid-template-columns: repeat(3, 1fr); }
  .account-menu-icon { width: 52px; height: 52px; font-size: 22px; }
  .account-menu-item { padding: 18px 8px 14px; }
}

/* Floating Support Button */
.float-support-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00C853, #00E676);
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,200,83,0.4);
  animation: floatPulse 2s ease-in-out infinite;
  border: none;
}

@keyframes floatPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(0,200,83,0.4); }
  50% { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,200,83,0.6); }
}

/* Support Popup */
.support-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.support-popup {
  background: #1a2332;
  border-radius: 16px;
  width: 700px;
  max-width: 95vw;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
}

.support-popup-header {
  background: linear-gradient(135deg, #0ea5e9, #22d3ee, #16a34a);
  padding: 20px 24px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.support-popup-body {
  display: flex;
  min-height: 360px;
}

.support-popup-left {
  flex: 1 1;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.support-popup-left h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.support-popup-left h2 span { color: #00C853; }

.support-popup-email {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 14px;
}

.support-popup-socials {
  display: flex;
  gap: 12px;
}

.support-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #2d3748;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.support-social-btn:nth-child(1):hover { background: #1877f2; }
.support-social-btn:nth-child(2):hover { background: #1da1f2; }
.support-social-btn:nth-child(3):hover { background: #e1306c; }
.support-social-btn:nth-child(4):hover { background: #0077b5; }

.support-popup-right {
  width: 340px;
  background: #fff;
  border-radius: 12px;
  margin: 16px 16px 16px 0;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.support-popup-right h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.sp-group { display: flex; flex-direction: column; gap: 6px; }
.sp-group label { font-size: 13px; font-weight: 600; color: #374151; }

.sp-group select,
.sp-group input,
.sp-group textarea {
  padding: 10px 14px;
  border: 1.5px solid #00C853;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: #fff;
}

.sp-group textarea { resize: vertical; min-height: 80px; }

.sp-submit-btn {
  background: #00C853;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  transition: opacity 0.2s;
}

.sp-submit-btn:hover { opacity: 0.9; }

.support-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  border: none;
  z-index: 1;
}

.support-popup-header-wrap {
  position: relative;
}

/* HR Popup */
.hr-popup {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 32px;
  max-width: 420px;
  width: 90%;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: cs-pop 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.hr-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #94a3b8;
}

.hr-popup-icon {
  font-size: 56px;
  margin-bottom: 12px;
}

.hr-popup h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
}

.hr-popup p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hr-popup-btns {
  display: flex;
  gap: 14px;
}

.hr-btn {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 12px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hr-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

.hr-btn span {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
}

.hr-btn.employer {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
}

.hr-btn.jobseeker {
  background: linear-gradient(135deg, #00C853, #00a844);
  color: #fff;
}

@keyframes cs-pop {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

/* Account Poster Profile Popup */
.account-poster-popup {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 24px;
  max-width: 380px;
  width: 90%;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.account-poster-popup h3 { font-size: 18px; font-weight: 700; color: #1e293b; margin-bottom: 12px; }
.account-poster-popup p { font-size: 14px; color: #475569; line-height: 1.6; margin-bottom: 24px; }
.account-poster-popup-close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none; font-size: 18px; cursor: pointer; color: #94a3b8;
}
.account-poster-popup-btns { display: flex; gap: 12px; justify-content: center; }
.app-btn {
  flex: 1 1; padding: 12px 0; border-radius: 10px; font-size: 15px;
  font-weight: 700; cursor: pointer; border: none;
}
.app-btn.edit { background: #2563eb; color: #fff; }
.app-btn.make { background: #00C853; color: #fff; }

.poster-popup {
  background: #fff;
  border-radius: 16px;
  width: 420px;
  max-width: 95vw;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.poster-popup-header {
  background: linear-gradient(135deg, #00C853, #00E676);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.poster-popup-header button {
  background: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  border: none;
  line-height: 1;
}

.poster-popup-sub {
  padding: 12px 20px 4px;
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

.poster-popup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  gap: 10px;
  padding: 12px 20px 20px;
}

.poster-popup-cat {
  height: 72px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.15s;
}

.poster-popup-cat:hover { transform: translateY(-2px); }

.poster-popup-emoji { font-size: 24px; }

.poster-popup-label {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.profile-page {
  min-height: 100vh;
  background: #f1f5f9;
  padding: 24px 0 60px;
}

/* ── Banner ── */
.profile-banner {
  background: linear-gradient(135deg, #e0f2fe, #dbeafe, #e0f2fe);
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.profile-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.profile-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: #0284c7;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }

.avatar-edit-btn {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 28px;
  height: 28px;
  background: #0284c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.profile-banner-name {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
}

/* ── Info Card ── */
.profile-info-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 24px;
}

.profile-info-row {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid #f1f5f9;
  gap: 0;
}

.profile-info-row:last-child { border-bottom: none; }

.profile-info-left {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 240px;
  flex-shrink: 0;
}

.profile-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.profile-info-label {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
}

.profile-info-value {
  flex: 1 1;
  font-size: 15px;
  color: #1e293b;
  padding-left: 16px;
  border-left: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 24px;
}

.verify-email-btn {
  background: #16a34a;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
}

/* ── Action Buttons ── */
.profile-action-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.btn-edit-profile {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-delete-account {
  background: #ef4444;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-edit-profile:hover, .btn-delete-account:hover { opacity: 0.9; }

/* ── Edit Page ── */
.profile-edit-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.profile-edit-header {
  background: linear-gradient(135deg, #0ea5e9, #22d3ee, #16a34a);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: #fff;
}

.profile-back-arrow {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
}

.profile-edit-form {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile-edit-row3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 16px;
  gap: 16px;
}

.profile-edit-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 16px;
  gap: 16px;
}

.pfe-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pfe-group label {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
}

.pfe-label-green { color: #16a34a !important; }
.pfe-label-green span { color: #ef4444; }

.pfe-group input,
.pfe-group select {
  padding: 14px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}

.pfe-group input:focus,
.pfe-group select:focus { border-color: #0ea5e9; }

.pfe-group input[readonly] { background: #f8fafc; color: #94a3b8; }

.profile-edit-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.btn-update {
  background: #16a34a;
  color: #fff;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-cancel {
  background: #ef4444;
  color: #fff;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-update:hover, .btn-cancel:hover { opacity: 0.9; }

@media (max-width: 768px) {
  .profile-edit-row3 { grid-template-columns: 1fr; }
  .profile-edit-row2 { grid-template-columns: 1fr; }
  .profile-banner { flex-direction: column; text-align: center; padding: 24px; }
  .profile-info-left { width: 180px; }
}

.daily-page { min-height: 100vh; }

.daily-header {
  background: var(--gradient);
  padding: 20px 0 24px;
  border-radius: 0 0 24px 24px;
  margin-bottom: 24px;
}

.daily-header h1 { color: #fff; font-size: 22px; font-weight: 700; margin-top: 8px; }

.back-btn {
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.daily-needs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  grid-gap: 16px;
  gap: 16px;
  padding-bottom: 40px;
}

.dn-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}

.dn-card:hover { transform: translateY(-3px); }

.dn-icon {
  font-size: 40px;
  width: 72px;
  height: 72px;
  background: var(--background);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dn-card p {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: var(--text-primary);
}

.adset-page { background: #f5f5f5; min-height: 100vh; }

.adset-topbar {
  background: linear-gradient(135deg, #16a34a, #15803d);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
}
.adset-back-btn {
  background: none; border: none; color: #fff; font-size: 15px; cursor: pointer;
}
.adset-topbar h2 { color: #fff; font-size: 18px; font-weight: 700; margin: 0; }

/* Advertise Banner */
.adset-advertise-banner {
  background: #fff; margin: 16px; border-radius: 14px;
  padding: 20px; display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.adset-advertise-label {
  display: inline-block; border: 2px solid red; color: red;
  font-weight: 800; font-size: 18px; padding: 2px 10px; border-radius: 4px;
}
.adset-advertise-sub {
  background: #000; color: #fff; font-size: 14px;
  padding: 2px 10px; border-radius: 4px; margin-top: 4px; display: inline-block;
}
.adset-advertise-text p { color: #888; font-size: 13px; margin: 8px 0 0; }
.adset-advertise-logo { font-size: 64px; }

.adset-container { padding: 0 16px 40px; }

/* Section Header */
.adset-section-header {
  display: flex; justify-content: space-between; align-items: center;
  margin: 16px 0 10px;
}
.adset-section-header span { color: #16a34a; font-weight: 700; font-size: 16px; }
.adset-toggle-btn {
  background: #e8f5e9; border: none; border-radius: 20px;
  padding: 6px 14px; font-size: 13px; color: #555; cursor: pointer;
}

/* Details Section */
.adset-details-section { background: #fff; border-radius: 12px; padding: 16px; margin-bottom: 8px; }
.adset-section-title { color: #16a34a; font-weight: 700; font-size: 15px; margin: 0 0 8px; }
.adset-sub-title { color: #16a34a; font-weight: 700; font-size: 14px; margin: 16px 0 8px; }
.adset-advantage-item { display: flex; gap: 8px; margin-bottom: 10px; font-size: 14px; color: #333; }
.adset-check { color: #16a34a; font-weight: 700; flex-shrink: 0; }
.adset-benefit-item { display: flex; gap: 8px; margin-bottom: 8px; font-size: 14px; color: #333; align-items: flex-start; }

/* Packages */
.adset-packages { display: flex; flex-direction: column; gap: 12px; }
.adset-pkg-card {
  background: #fff; border-radius: 12px; border: 1.5px solid #ccc;
  padding: 14px;
}
.adset-pkg-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.adset-pkg-preview-btn {
  color: #fff; border: none; border-radius: 20px;
  padding: 6px 14px; font-size: 12px; cursor: pointer;
}
.adset-pkg-size { text-align: center; font-size: 14px; color: #555; padding: 6px 0; }
.adset-pkg-price-row { display: flex; justify-content: space-between; font-size: 14px; padding: 4px 0; }
.adset-gst-note {
  background: #fff; border-radius: 10px; padding: 12px;
  text-align: center; font-weight: 600; font-size: 13px; color: #555;
}

/* Action Cards */
.adset-action-row { display: flex; gap: 12px; margin-top: 20px; }
.adset-action-card {
  flex: 1 1; background: #fff; border-radius: 12px; padding: 16px;
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
}
.adset-action-icon { font-size: 48px; }
.adset-action-btn {
  color: #fff; border: none; border-radius: 20px;
  padding: 10px 18px; font-size: 13px; font-weight: 600; cursor: pointer; width: 100%;
}
.adset-action-card p { font-size: 12px; color: #888; margin: 0; }

/* Login Wall */
.adset-login-wall { display: flex; justify-content: center; align-items: center; min-height: 80vh; padding: 20px; }
.adset-login-card { background: #fff; border-radius: 16px; padding: 32px; text-align: center; max-width: 360px; }
.adset-login-icon { font-size: 48px; margin-bottom: 12px; }
.adset-login-btn {
  background: #16a34a; color: #fff; border: none; border-radius: 8px;
  padding: 12px 32px; font-size: 15px; cursor: pointer; width: 100%; margin-top: 16px;
}
.adset-back-link { background: none; border: none; color: #16a34a; cursor: pointer; margin-top: 10px; font-size: 14px; }

/* Upload Modal */
.adset-upload-modal {
  background: #fff; border-radius: 16px 16px 0 0;
  width: 100%; max-width: 560px; height: 90vh;
  display: flex; flex-direction: column; overflow: hidden;
}
.adset-upload-modal form {
  display: flex; flex-direction: column; flex: 1 1; min-height: 0;
}
.adset-modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; border-bottom: 1px solid #e2e8f0;
}
.adset-modal-header h3 { margin: 0; font-size: 17px; font-weight: 700; }
.adset-modal-header button { background: none; border: none; font-size: 18px; cursor: pointer; color: #888; }

.adset-form-scroll {
  flex: 1 1; overflow-y: auto; padding: 16px 20px;
  min-height: 0; -webkit-overflow-scrolling: touch;
}
.adset-form-section-title { font-weight: 700; font-size: 15px; margin: 16px 0 10px; text-align: center; }

.adset-field { margin-bottom: 14px; }
.adset-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; color: #374151; }
.adset-field input, .adset-field select {
  width: 100%; padding: 11px 14px; border: 1px solid #d1d5db;
  border-radius: 10px; font-size: 14px; background: #fff; box-sizing: border-box;
  outline: none;
}
.adset-field input:focus, .adset-field select:focus { border-color: #16a34a; }
.adset-field-row { display: flex; gap: 10px; }
.adset-field-row .adset-field { flex: 1 1; }

.adset-image-upload {
  border: 1.5px dashed #d1d5db; border-radius: 10px;
  min-height: 100px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; background: #f9fafb; margin-bottom: 8px;
}
.adset-remove-img {
  background: none; border: none; color: #ef4444; font-size: 13px; cursor: pointer; margin-bottom: 8px;
}

.adset-tab-row { display: flex; gap: 10px; margin-bottom: 14px; }
.adset-tab-btn {
  flex: 1 1; padding: 11px; border: none; border-radius: 10px;
  background: #e5e7eb; font-size: 14px; font-weight: 600; cursor: pointer; color: #374151;
}
.adset-tab-btn.active { background: #16a34a; color: #fff; }

.adset-modal-footer {
  padding: 14px 20px; border-top: 1px solid #e2e8f0;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: #fff;
}
.adset-modal-footer .adset-action-btn { width: auto; padding: 12px 28px; }

/* Success */
.adset-success { padding: 40px 20px; text-align: center; }
.adset-success div { font-size: 52px; margin-bottom: 12px; }
.adset-success h3 { color: #16a34a; margin-bottom: 8px; }
.adset-success p { color: #64748b; font-size: 14px; }

/* History */
.adset-history-filters { display: flex; gap: 8px; padding: 12px 16px; overflow-x: auto; flex-wrap: wrap; }
.adset-filter-chip {
  border-radius: 20px; padding: 5px 14px; font-size: 13px; cursor: pointer;
  background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0;
  white-space: nowrap;
}
.adset-filter-chip.active {
  background: #16a34a; color: #fff; border-color: #16a34a;
}
.adset-history-list { padding: 0 16px 16px; overflow-y: auto; max-height: 60vh; }
.adset-history-item {
  display: flex; gap: 12px; align-items: center;
  background: #f8fafc; border-radius: 12px; padding: 12px; margin-bottom: 10px;
}
.adset-history-img {
  width: 72px; height: 72px; background: #e5e7eb; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden;
}
.adset-history-img img { width: 100%; height: 100%; object-fit: cover; }
.adset-history-img span { font-size: 28px; }
.adset-history-info { flex: 1 1; font-size: 13px; color: #374151; line-height: 1.7; }
.adset-status-badge { font-size: 11px; padding: 3px 10px; border-radius: 20px; font-weight: 600; flex-shrink: 0; }
.adset-status-pending   { background: #fef9c3; color: #b45309; }
.adset-status-approved  { background: #dcfce7; color: #16a34a; }
.adset-status-published { background: #dbeafe; color: #1d4ed8; }
.adset-status-expired   { background: #f1f5f9; color: #64748b; }
.adset-status-rejected  { background: #fee2e2; color: #dc2626; }

.adset-error-msg {
  color: #dc2626; font-size: 12px; background: #fee2e2;
  padding: 6px 10px; border-radius: 8px; flex: 1 1; text-align: center;
}

.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1000; display: flex; align-items: flex-end; justify-content: center;
}
.adset-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1000; display: flex; align-items: flex-end; justify-content: center;
}

@media (max-width: 480px) {
  .adset-action-row { flex-direction: column; }
  .adset-upload-modal { height: 95vh; border-radius: 16px 16px 0 0; }
}

.poster-page { min-height: 100vh; background: #f8fafc; }

.poster-header {
  padding: 28px 0 32px;
  border-radius: 0 0 24px 24px;
  margin-bottom: 28px;
  text-align: center;
}

.poster-header h1 { color: #fff; font-size: 22px; font-weight: 800; margin: 8px 0 4px; }
.poster-header p { color: rgba(255,255,255,0.85); font-size: 14px; }

.back-btn {
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

/* ── Category Cards Grid (SrankBazaar style) ── */
.poster-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 14px;
  gap: 14px;
  padding: 20px 0 40px;
}

.poster-cat-card {
  border-radius: 18px;
  padding: 24px 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.10);
  min-height: 130px;
}
.poster-cat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 22px rgba(0,0,0,0.16); }

.poster-cat-card-icon {
  width: 62px;
  height: 62px;
  background: rgba(255,255,255,0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.poster-cat-card-label {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,0.20);
}

@media (max-width: 480px) {
  .poster-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ── Poster List Grid ── */
.poster-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 14px;
  gap: 14px;
  padding-bottom: 40px;
}

.poster-list-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}

.poster-list-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.14); }

.poster-list-card.selected {
  border-color: #00C853;
  box-shadow: 0 0 0 3px rgba(0,200,83,0.18);
  transform: translateY(-4px);
}

.poster-thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #e2e8f0;
}

.poster-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.poster-thumb-emoji-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.poster-check-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #00C853;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  z-index: 3;
}

.poster-thumb-footer {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.poster-thumb-footer span {
  font-size: 12px;
  color: #475569;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.poster-preview-btn {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 11px;
  color: #475569;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 600;
  flex-shrink: 0;
}

/* ── Poster Preview Page ── */
.poster-preview-page {
  min-height: 100vh;
  background: #f1f5f9;
  padding-bottom: 40px;
}

.poster-preview-topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  margin-bottom: 20px;
}

.poster-preview-topbar h2 { font-size: 17px; font-weight: 700; color: #1e293b; }

.poster-card-wrap {
  max-width: 560px;
  margin: 0 auto 16px;
  padding: 0 16px;
}

/* Poster image box */
.poster-img-box {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,0.16);
  background: #1e293b;
}

.poster-full-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.poster-wm {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  letter-spacing: 1px;
}

/* User info card below poster */
.poster-info-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 12px;
}

.poster-info-left { flex-shrink: 0; }

.poster-profile-img-wrap { cursor: pointer; }

.poster-profile-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  display: block;
}

.poster-profile-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  cursor: pointer;
}

.poster-profile-placeholder span { font-size: 10px; color: #64748b; margin-top: 2px; }

.poster-info-col { flex: 1 1; min-width: 0; }

.poster-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.poster-name { font-size: 16px; font-weight: 700; color: #1e293b; }
.poster-divider { color: #94a3b8; }
.poster-desig { font-size: 13px; color: #475569; font-style: italic; }

.poster-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #374151;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.poster-location-row {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 6px;
}

.poster-edit-btn {
  background: none;
  color: #0284c7;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  padding: 0;
}

.poster-edit-input {
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px;
  width: 100%;
  margin-bottom: 6px;
  outline: none;
  font-family: inherit;
  box-sizing: border-box;
}

.poster-edit-input.name { font-size: 15px; font-weight: 700; }
.poster-edit-input.desig { color: #475569; }
.poster-edit-input.contact { font-size: 12px; }

.poster-done-btn {
  background: #00C853;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
}

/* Action Buttons */
.poster-action-btns {
  display: flex;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 16px;
}

.poster-btn-download {
  flex: 1 1;
  height: 50px;
  background: #00C853;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

.poster-btn-share {
  flex: 1 1;
  height: 50px;
  background: #0284c7;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

.poster-btn-download:hover, .poster-btn-share:hover { opacity: 0.9; }

@media (max-width: 480px) {
  .poster-list-grid { gap: 8px; }
  .poster-name { font-size: 14px; }
  .poster-profile-img, .poster-profile-placeholder { width: 60px; height: 60px; }
}

.poster-create-btn {
  background: linear-gradient(135deg, #00C853, #2563eb);
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 16px 56px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,200,83,0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s, transform 0.2s;
}
.poster-create-btn:hover { opacity: 0.92; transform: translateY(-2px); }
.poster-create-btn:disabled { opacity: 0.7; cursor: not-allowed; }

.poster-create-spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}



.vc-page {
  min-height: 100vh;
  background: #f1f5f9;
}

/* Header */
.vc-header {
  background: linear-gradient(135deg, #1e40af, #06b6d4, #059669);
  padding: 28px 20px;
  text-align: center;
}

.vc-header h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  margin: 0;
}

/* Body */
.vc-body {
  padding: 32px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Swatches */
.vc-swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.vc-swatch {
  width: 60px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: transform 0.15s, border-color 0.15s;
}

.vc-swatch:hover { transform: scale(1.08); }
.vc-swatch.active { border-color: #f59e0b; transform: scale(1.08); }

/* Card */
.vc-card-wrap {
  width: 100%;
  max-width: 540px;
}

.vc-card {
  border-radius: 18px;
  padding: 32px 36px 28px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* Decorative circles */
.vc-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}
.vc-circle.c1 { width: 160px; height: 160px; bottom: -40px; right: -40px; }
.vc-circle.c2 { width: 100px; height: 100px; bottom: 20px; right: 60px; }

/* Top row */
.vc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.vc-top.reverse { flex-direction: row-reverse; }

.vc-text-block { flex: 1 1; }
.vc-text-block.right { text-align: right; }

.vc-name {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: 0.5px;
}

.vc-occupation {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  font-style: italic;
}

/* Avatar */
.vc-avatar-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.6);
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vc-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vc-avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  width: 100%;
  height: 100%;
}

/* Divider */
.vc-divider {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 14px 0;
}

/* Contacts */
.vc-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vc-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
}

.vc-contact-icon { font-size: 16px; flex-shrink: 0; }

/* Action buttons */
.vc-actions {
  display: flex;
  gap: 16px;
}

.vc-action-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1e293b;
  color: #fff;
  font-size: 20px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s, background 0.2s;
}

.vc-action-btn:hover { transform: scale(1.1); background: #00C853; }

/* Notice */
.vc-notice {
  font-size: 13px;
  color: #64748b;
  text-align: center;
}

.vc-notice button {
  background: none;
  border: none;
  color: #2563eb;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

@media (max-width: 480px) {
  .vc-card { padding: 24px 20px 20px; }
  .vc-name { font-size: 20px; }
  .vc-swatch { width: 44px; height: 32px; }
}

.support-page { min-height: 100vh; background: #f5f5f5; }

.support-header {
  background: var(--gradient);
  padding: 20px 0 28px;
  border-radius: 0 0 24px 24px;
  margin-bottom: 28px;
}

.support-header h1 { color: #fff; font-size: 24px; font-weight: 800; margin-top: 8px; }

.back-btn {
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.support-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.support-card h2 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }

.success-msg {
  background: #E8F5E9;
  color: var(--primary);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.support-form { display: flex; flex-direction: column; gap: 16px; }

.sf-group { display: flex; flex-direction: column; gap: 6px; }

.sf-group label { font-size: 14px; font-weight: 600; }

.sf-group input,
.sf-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.2s;
}

.sf-group input:focus,
.sf-group textarea:focus { border-color: var(--primary); outline: none; }

.btn-submit-support {
  background: var(--gradient);
  color: #fff;
  padding: 14px 48px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  align-self: center;
  box-shadow: 0 4px 12px rgba(0,200,83,0.3);
  transition: opacity 0.2s;
}
.btn-submit-support:disabled { opacity: 0.7; cursor: not-allowed; }

.support-error-msg {
  background: #FFF3F3;
  color: #e53935;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

/* Success Popup Overlay */
.support-success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.2s ease;
}

.support-success-box {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  max-width: 320px;
  width: 90%;
  animation: popIn 0.3s ease;
}

.support-success-icon {
  font-size: 56px;
  margin-bottom: 12px;
}

.support-success-box h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
}

.support-success-box p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.section-title-support {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}

/* Guides */
.guides-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }

.guide-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.guide-icon {
  width: 44px;
  height: 44px;
  background: #E3F2FD;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.guide-info { flex: 1 1; }
.guide-info h4 { font-size: 14px; font-weight: 700; }
.guide-info p { font-size: 12px; color: #888; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; }

.btn-view-guide {
  background: none;
  border: none;
  color: #1565C0;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 40px; }

.faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  gap: 12px;
}

.faq-arrow { font-size: 11px; color: #999; flex-shrink: 0; }

.faq-a {
  padding: 0 16px 16px;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  border-top: 1px solid #f5f5f5;
  padding-top: 12px;
}

.report-note {
  font-size: 13px;
  color: #888;
  margin-top: 16px;
  line-height: 1.6;
}

.btn-submit-report {
  background: #f0f0f0;
  color: #4527A0;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.offers-page {
  min-height: 100vh;
  background: #f8fafc;
  padding: 32px 0 60px;
}

.offers-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
}

.offers-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin: 0 auto 32px;
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 16px;
  gap: 16px;
}

.offer-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #f1f5f9;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.offer-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

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

.offer-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.offer-info {
  padding: 10px 12px 12px;
}

.offer-name {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offer-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.offer-biz {
  font-size: 11px;
  color: #64748b;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offer-price {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2px;
}

@media (max-width: 1024px) {
  .offers-grid { grid-template-columns: repeat(4, 1fr); }
}

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

.refer-page { min-height: 100vh; }

.refer-bg {
  min-height: 100vh;
  background: linear-gradient(180deg, #0A0E27 0%, #1A1040 50%, #0D1B3E 100%);
  position: relative;
  overflow: hidden;
}

.refer-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
}

.refer-inner { position: relative; z-index: 1; padding-bottom: 48px; }

.refer-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0 16px;
  color: #fff;
}

.refer-back {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.refer-topbar h2 { flex: 1 1; font-size: 17px; font-weight: 700; color: #fff; }
.refer-topbar span { font-size: 22px; }

.refer-history-btn {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

.refer-content { display: flex; flex-direction: column; gap: 16px; }

.refer-content h1 { color: #fff; font-size: 22px; font-weight: 800; }
.refer-sub { color: rgba(255,255,255,0.7); font-size: 14px; }

/* Coins Card */
.coins-card {
  background: linear-gradient(135deg, #3D1F8C, #1A3A6E);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.coins-icon {
  width: 56px;
  height: 56px;
  background: #F5A623;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.coins-label { flex: 1 1; color: #fff; font-size: 18px; font-weight: 700; }

.coins-value {
  width: 48px;
  height: 48px;
  background: #F5A623;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

/* Referral Code */
.refer-code-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
}

.refer-code-info { flex: 1 1; }
.refer-code-info p { color: rgba(255,255,255,0.6); font-size: 12px; }
.refer-code-info h3 { color: #fff; font-size: 16px; font-weight: 800; letter-spacing: 2px; }

.copy-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
}

/* Lottery Button */
.btn-lottery {
  border: 2px solid #00C853;
  background: none;
  color: #fff;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  align-self: center;
}

.rewards-title {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Reward Cards */
.reward-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.reward-emoji { font-size: 36px; flex-shrink: 0; }
.reward-info { flex: 1 1; }
.reward-info h4 { color: #fff; font-size: 15px; font-weight: 700; }
.reward-coins { color: #00C853; font-size: 14px; font-weight: 700; margin: 2px 0; }
.reward-desc { color: rgba(255,255,255,0.6); font-size: 12px; line-height: 1.4; }

.btn-redeem {
  background: #00C853;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  align-self: center;
}

/* Grand Gift */
.grand-gift-box {
  background: #FFF3F3;
  border-radius: 12px;
  padding: 16px;
}

.grand-gift-box h3 { color: #7B1FA2; font-size: 16px; font-weight: 800; margin-bottom: 10px; }

.grand-gift-box ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.grand-gift-box li { font-size: 13px; color: #333; }

/* Share Button */
.btn-share-refer {
  background: #00C853;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
}

/* Redeem Modal */
.redeem-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 20px;
}

.redeem-modal {
  background: linear-gradient(135deg, #1A1040, #0D1B3E);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.redeem-emoji { font-size: 56px; display: block; margin-bottom: 12px; }
.redeem-modal h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.redeem-title { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 12px; }

.redeem-msg {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.redeem-auto { color: rgba(255,255,255,0.3); font-size: 11px; }

.msg-page {
  min-height: 100vh;
  background: #f8fafc;
  display: flex;
  height: calc(100vh - 68px);
  overflow: hidden;
}

/* Sidebar */
.msg-sidebar {
  width: 340px;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.msg-sidebar-header {
  padding: 20px 16px 14px;
  border-bottom: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.msg-sidebar-header h2 {
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
}

.msg-conv-list {
  overflow-y: auto;
  flex: 1 1;
}

.msg-conv-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s;
}
.msg-conv-item:hover, .msg-conv-item.active { background: #f0fdf4; }

.msg-conv-avatar {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  overflow: hidden;
}
.msg-conv-avatar img { width: 100%; height: 100%; object-fit: cover; }

.msg-conv-info { flex: 1 1; min-width: 0; }
.msg-conv-name { font-size: 14px; font-weight: 700; color: #1e293b; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.msg-conv-product { font-size: 11px; color: #00C853; font-weight: 600; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.msg-conv-last { font-size: 12px; color: #94a3b8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Chat Area */
.msg-chat {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.msg-chat-header {
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.msg-chat-header-avatar {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #e2e8f0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; overflow: hidden; flex-shrink: 0;
}
.msg-chat-header-avatar img { width: 100%; height: 100%; object-fit: cover; }

.msg-chat-header-info h3 { font-size: 15px; font-weight: 700; color: #1e293b; margin: 0; }
.msg-chat-header-info p { font-size: 12px; color: #00C853; margin: 0; font-weight: 600; }

.msg-messages {
  flex: 1 1;
  overflow-y: auto;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msg-bubble-wrap {
  display: flex;
  flex-direction: column;
}
.msg-bubble-wrap.mine { align-items: flex-end; }
.msg-bubble-wrap.theirs { align-items: flex-start; }

.msg-bubble {
  max-width: 70%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}
.msg-bubble.mine { background: #00C853; color: #fff; border-bottom-right-radius: 4px; }
.msg-bubble.theirs { background: #fff; color: #1e293b; border: 1px solid #e2e8f0; border-bottom-left-radius: 4px; }

.msg-time { font-size: 10px; color: #94a3b8; margin-top: 3px; padding: 0 4px; }

.msg-input-row {
  padding: 12px 16px;
  border-top: 1px solid #e2e8f0;
  background: #fff;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.msg-input {
  flex: 1 1;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 11px 18px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  background: #f8fafc;
}
.msg-input:focus { border-color: #00C853; background: #fff; }

.msg-send-btn {
  width: 44px; height: 44px;
  background: #00C853; color: #fff;
  border: none; border-radius: 50%;
  font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.msg-send-btn:hover { opacity: 0.9; }
.msg-send-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.msg-empty {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  gap: 12px;
}
.msg-empty span { font-size: 56px; }
.msg-empty p { font-size: 15px; }

.msg-login-wall {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #64748b;
}

@media (max-width: 768px) {
  .msg-sidebar { width: 100%; display: none; }
  .msg-sidebar.show { display: flex; }
  .msg-chat { display: none; }
  .msg-chat.show { display: flex; }
}

.asn-page { min-height: 100vh; background: #f8fafc; }

.asn-header {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
}

.asn-back {
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.asn-body {
  display: flex;
  gap: 20px;
  padding: 24px 20px;
  align-items: flex-start;
}

.asn-sidebar {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.asn-tab {
  padding: 14px 18px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
}
.asn-tab:hover { border-color: #2563eb; color: #2563eb; }
.asn-tab.active { background: #2563eb; color: #fff; border-color: #2563eb; }

.asn-content {
  flex: 1 1;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  min-height: 200px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.asn-empty {
  text-align: center;
  padding: 48px;
  color: #94a3b8;
  font-size: 15px;
  font-weight: 600;
}

.asn-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  background: #f8fafc;
}

.asn-card-img { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.asn-card-info { flex: 1 1; }
.asn-card-info h4 { font-size: 15px; font-weight: 700; color: #1e293b; margin: 0 0 4px; }
.asn-card-info p { font-size: 12px; color: #64748b; margin: 0; }
.asn-card-date { margin-top: 4px !important; }

.asn-status {
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  text-transform: capitalize; flex-shrink: 0;
}
.asn-status.pending { background: #fef3c7; color: #92400e; }
.asn-status.approved { background: #dcfce7; color: #166534; }
.asn-status.active, .asn-status.published { background: #dbeafe; color: #1e40af; }
.asn-status.expired { background: #fee2e2; color: #991b1b; }

@media (max-width: 600px) {
  .asn-body { flex-direction: column; }
  .asn-sidebar { width: 100%; flex-direction: row; flex-wrap: wrap; }
  .asn-tab { flex: 1 1; text-align: center; min-width: 120px; }
}

.settings-page { min-height: 100vh; background: #f5f5f5; }

.settings-header {
  background: var(--gradient);
  padding: 20px 0 28px;
  border-radius: 0 0 24px 24px;
  margin-bottom: 24px;
}

.settings-header h1 { color: #fff; font-size: 22px; font-weight: 800; margin-top: 8px; }

.back-btn {
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.settings-toast {
  background: #E8F5E9;
  color: var(--primary);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.settings-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.settings-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 14px; color: #333; }

/* Language */
.lang-options { display: flex; flex-direction: column; }

.lang-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 4px;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.15s;
}

.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: #fafafa; }
.lang-option span:first-child { font-size: 24px; }
.lang-option span:nth-child(2) { flex: 1 1; }

.lang-check { color: var(--primary); font-size: 18px; font-weight: 700; }
.lang-option.selected span:nth-child(2) { color: var(--primary); font-weight: 700; }

/* Policies */
.policy-list { display: flex; flex-direction: column; }

.policy-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 4px;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.15s;
}

.policy-item:last-child { border-bottom: none; }
.policy-item:hover { background: #fafafa; }
.policy-item span:first-child { font-size: 18px; }

.arrow { margin-left: auto; color: #ccc; font-size: 20px; }

/* App Info */
.app-info-list { display: flex; flex-direction: column; gap: 12px; }

.app-info-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #555;
  padding-bottom: 10px;
  border-bottom: 1px solid #f5f5f5;
}

.app-info-row:last-child { border-bottom: none; }
.app-info-row span:first-child { font-weight: 600; color: #333; }

/* Policy Content */
.policy-content {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.policy-content pre {
  white-space: pre-wrap;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}

.sr-search-wrap { position: relative; }

.sr-input {
  flex: 1 1;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  font-size: 15px;
  outline: none;
  width: 100%;
}
.sr-input:focus { border-color: #00C853; }

.sr-search-btn {
  background: #00C853;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.sr-suggestions {
  position: absolute;
  top: 100%;
  margin-top: 4px;
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  z-index: 100;
  overflow: hidden;
}

.sr-sugg-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.15s;
}
.sr-sugg-item:hover { background: #f0fdf4; }
.sr-sugg-item span { font-size: 18px; flex-shrink: 0; }
.sr-sugg-name { font-size: 14px; font-weight: 600; color: #1e293b; margin: 0; }
.sr-sugg-sub { font-size: 12px; color: #94a3b8; margin: 2px 0 0; }

.blog-page { min-height: 100vh; background: #f8fafc; }

.blog-hero {
  text-align: center;
  padding: 48px 24px 32px;
  background: #fff;
}

.blog-hero h1 {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #f97316, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.blog-hero p { font-size: 15px; color: #6b7280; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  gap: 24px;
  padding: 32px 16px 48px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

.blog-card:hover { transform: translateY(-4px); }

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.blog-category {
  background: #eff6ff;
  color: #2563eb;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin: 12px 0 8px;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-read-more {
  background: #2563eb;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.blog-read-more:hover { background: #1d4ed8; }

/* ── Blog Detail ── */
.blog-detail { min-height: 100vh; background: #f8fafc; }

.blog-detail-hero {
  height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.blog-detail-hero-overlay h1 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  line-height: 1.4;
  max-width: 800px;
}

.blog-detail-body { padding: 32px 16px 48px; max-width: 860px; margin: 0 auto; }

.blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.blog-date { font-size: 13px; color: #6b7280; }

.blog-detail-description {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  border-left: 4px solid #2563eb;
}

.blog-detail-description h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.blog-detail-description p { font-size: 15px; color: #374151; line-height: 1.7; }

.blog-detail-content {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 24px;
  line-height: 1.8;
  color: #374151;
  font-size: 15px;
}

.blog-detail-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 24px 0 10px;
}

.blog-detail-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: #2563eb;
  margin: 16px 0 8px;
}

.blog-detail-content p { margin-bottom: 14px; }

.blog-detail-content ul {
  padding-left: 8px;
  margin-bottom: 14px;
  list-style: none;
}

.blog-detail-content ul li { margin-bottom: 8px; }

.blog-back-btn {
  background: #f1f5f9;
  color: #374151;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.blog-back-btn:hover { background: #e2e8f0; }

.blog-not-found {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

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

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-hero h1 { font-size: 24px; }
  .blog-detail-hero { height: 260px; }
  .blog-detail-hero-overlay h1 { font-size: 20px; }
}

.policy-page {
  min-height: 100vh;
  background: #f8fafc;
  padding-bottom: 48px;
}

.policy-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
  padding: 48px 24px 36px;
  text-align: center;
  color: #fff;
}

.policy-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}

.policy-hero p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin: 0;
}

.policy-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 36px 20px 0;
}

.policy-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: #64748b;
  flex-wrap: wrap;
}

.policy-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.policy-section {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 28px 20px;
  margin-bottom: 20px;
}

.policy-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
}

.policy-section-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.policy-section-header h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.policy-section p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.75;
  margin: 0 0 10px;
}

.policy-section p:last-child { margin-bottom: 0; }

.policy-section ul {
  margin: 8px 0 10px 0;
  padding-left: 20px;
}

.policy-section ul li {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 4px;
}

.policy-section ul li strong { color: #1e293b; }

.policy-contact-box {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  padding: 24px 28px;
  margin-top: 8px;
}

.policy-contact-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e40af;
  margin: 0 0 12px;
}

.policy-contact-box p {
  font-size: 0.88rem;
  color: #1e40af;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.policy-contact-box a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 600px) {
  .policy-hero h1 { font-size: 1.5rem; }
  .policy-section { padding: 20px 16px; }
  .policy-container { padding: 24px 12px 0; }
}


/*# sourceMappingURL=main.2afc6704.css.map*/