/* ============================================================
   UNDE MERGI.RO — Main CSS
   Paleta: #FF6B35 portocaliu, #F7F7F5 fundal, #1A1A1A text
   ============================================================ */

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

:root {
  --orange:      #FF6B35;
  --orange-light:#FF8C5A;
  --orange-pale: #FFF3EE;
  --orange-border:#FFD5C0;
  --black:       #1A1A1A;
  --gray:        #6B7280;
  --gray-light:  #E5E5E0;
  --bg:          #F7F7F5;
  --white:       #FFFFFF;
  --radius:      10px;
  --radius-lg:   14px;
  --shadow:      0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.10);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--black);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--orange); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ─── Header ─────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.02em;
}

.logo-ro { color: var(--orange); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.15s;
}

.main-nav a:hover { color: var(--black); }

.btn-nav-login {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 7px 18px;
  border-radius: var(--radius);
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: background 0.15s !important;
}

.btn-nav-login:hover { background: var(--orange-light) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: var(--black);
}

/* ─── Flash messages ─────────────────────────────────── */
.flash {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
}

.flash-success { background: #d1fae5; color: #065f46; }
.flash-error   { background: #fee2e2; color: #991b1b; }
.flash-info    { background: var(--orange-pale); color: #92400e; }
.flash button  { background: none; border: none; cursor: pointer; font-size: 16px; opacity: 0.6; }

/* ─── HERO / Search ──────────────────────────────────── */
.hero {
  background: var(--white);
  padding: 64px 0 52px;
  text-align: center;
  border-bottom: 1px solid var(--gray-light);
}

.hero h1 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero h1 span { color: var(--orange); }

.hero p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.search-wrap {
  max-width: 640px;
  margin: 0 auto 20px;
}

.search-box {
  display: flex;
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: border-color 0.2s;
}

.search-box:focus-within {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(255,107,53,0.15);
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 24px;
  font-size: 15px;
  font-family: inherit;
  color: var(--black);
  background: transparent;
}

.search-box input::placeholder { color: var(--gray); }

.search-box button {
  background: var(--orange);
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  color: var(--white);
  font-size: 20px;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  margin: 5px;
  border-radius: 40px;
}

.search-box button:hover { background: var(--orange-light); }

.search-suggestions {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.search-suggestions span {
  font-size: 13px;
  color: var(--gray);
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 5px 14px;
  border-radius: 20px;
  transition: all 0.15s;
}

.search-suggestions span:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-pale);
}

/* ─── Section ────────────────────────────────────────── */
.section {
  padding: 48px 0;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.02em;
}

.section-link {
  font-size: 14px;
  color: var(--orange);
  font-weight: 500;
}

/* ─── Categorii grid ─────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 20px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.category-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(255,107,53,0.12);
  transform: translateY(-2px);
}

.category-card i {
  font-size: 26px;
  color: var(--orange);
}

.category-card span {
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.3;
}

/* ─── Orase grid ─────────────────────────────────────── */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}

.city-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.city-card:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.city-card i { font-size: 16px; color: var(--orange); }

/* ─── Business card ──────────────────────────────────── */
.business-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.15s, transform 0.15s;
  display: flex;
  flex-direction: column;
}

.business-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.business-card.is-sponsored {
  border-color: var(--orange-border);
}

.business-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: var(--bg);
}

.business-card-img-placeholder {
  width: 100%;
  height: 160px;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 36px;
}

.business-card-body {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.business-card-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.badge {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
}

.badge-sponsored {
  background: var(--orange-pale);
  color: #C74A1A;
  border: 1px solid var(--orange-border);
}

.badge-verified {
  background: #1A1A1A;
  color: #fff;
}

.badge-recommended {
  background: var(--orange-pale);
  color: #C74A1A;
}

.business-card-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}

.business-card-cat {
  font-size: 12px;
  color: var(--gray);
}

.business-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.rating-stars { color: #F59E0B; font-size: 13px; }
.rating-val   { font-weight: 600; }
.rating-count { color: var(--gray); }

.business-card-address {
  font-size: 12px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 4px;
}

.business-card-footer {
  padding: 10px 16px;
  border-top: 1px solid var(--gray-light);
  display: flex;
  gap: 8px;
}

.btn-call {
  flex: 1;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.15s;
  text-decoration: none;
}

.btn-call:hover { background: var(--orange-light); color: var(--white); }

.btn-outline {
  flex: 1;
  background: transparent;
  color: var(--black);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.15s;
  text-decoration: none;
}

.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* Ranking transparency */
.ranking-why {
  font-size: 11px;
  color: var(--gray);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px 16px;
  border-top: 1px solid var(--gray-light);
  background: #FAFAFA;
}

.ranking-why span {
  display: flex;
  align-items: center;
  gap: 3px;
}

.ranking-why i { font-size: 12px; color: var(--orange); }

/* ─── Business grid ──────────────────────────────────── */
.businesses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

/* ─── AI Summary box ─────────────────────────────────── */
.ai-summary {
  background: var(--orange-pale);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ai-summary-icon {
  font-size: 20px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.ai-summary-text {
  font-size: 14px;
  color: var(--black);
  line-height: 1.6;
}

.ai-summary-text strong {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

/* ─── Breadcrumb ─────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray);
  padding: 14px 0;
  flex-wrap: wrap;
}

.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-size: 12px; }

/* ─── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  font-family: inherit;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover { background: var(--orange-light); color: var(--white); }

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--gray-light);
}

.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

/* ─── Pagination ─────────────────────────────────────── */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.pagination a, .pagination span {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  background: var(--white);
  transition: all 0.15s;
}

.pagination a:hover { border-color: var(--orange); color: var(--orange); }
.pagination .active { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* ─── Forms ──────────────────────────────────────────── */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--black);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

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

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

/* ─── Card generic ───────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}

/* ─── Page header ────────────────────────────────────── */
.page-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 28px 0;
}

.page-header h1 {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.page-header p {
  font-size: 15px;
  color: var(--gray);
  margin-top: 6px;
}

/* ─── Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  margin-top: 64px;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-company {
  font-size: 12px !important;
  margin-top: 16px !important;
  color: var(--gray-light) !important;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 14px;
}

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

.footer-col a {
  font-size: 14px;
  color: var(--gray);
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--gray-light);
  padding-top: 20px;
  font-size: 12px;
  color: var(--gray);
}

.footer-bottom a { color: var(--orange); }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-brand { grid-column: 1 / -1; }

  .hero { padding: 40px 0 32px; }

  .categories-grid {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  }

  .businesses-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Utilities ──────────────────────────────────────── */
.text-orange  { color: var(--orange); }
.text-gray    { color: var(--gray); }
.text-center  { text-align: center; }
.mt-8         { margin-top: 8px; }
.mt-16        { margin-top: 16px; }
.mt-24        { margin-top: 24px; }
.mb-24        { margin-bottom: 24px; }
.hidden       { display: none; }

/* ─── Hero actualizat ────────────────────────────────── */
.hero {
  background: #FFF3EE !important;
  border-bottom: 1px solid #FFD5C0 !important;
}

.hero-black { color: var(--black); }
.hero-orange { color: var(--orange); }

.search-box {
  background: var(--white) !important;
  border: 1.5px solid #FFD5C0 !important;
  box-shadow: 0 2px 12px rgba(255,107,53,0.10) !important;
}

.search-box:focus-within {
  border-color: var(--orange) !important;
  box-shadow: 0 4px 20px rgba(255,107,53,0.18) !important;
}

/* ─── Section white ──────────────────────────────────── */
.section-white {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
}

/* ─── Cities show more ───────────────────────────────── */
.city-hidden { display: none; }

.show-more-wrap {
  text-align: center;
  margin-top: 14px;
}

.show-more-btn {
  font-size: 13px;
  color: var(--orange);
  font-weight: 500;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--orange-border);
  padding: 7px 20px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: inherit;
  transition: all 0.15s;
}

.show-more-btn:hover {
  background: var(--orange-pale);
}

/* ─── How grid ───────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.how-step {
  text-align: center;
  padding: 16px 8px;
}

.how-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--orange);
  font-size: 20px;
}

.how-step h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.how-step p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
}

/* ─── Stats grid ─────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.stat-card {
  background: var(--orange-pale);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}

.stat-num {
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  color: var(--gray);
  margin-top: 3px;
}

/* ─── EEAT grid ──────────────────────────────────────── */
.eeat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.eeat-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.eeat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
}

.eeat-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.eeat-card p {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
}

/* ─── CTA bar ────────────────────────────────────────── */
.cta-bar {
  background: var(--orange);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-bar h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.cta-bar p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

.cta-bar-btn {
  background: var(--white);
  color: var(--orange);
  padding: 11px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
}

.cta-bar-btn:hover { color: var(--orange); opacity: 0.92; }

/* ─── Responsive actualizat ──────────────────────────── */
@media (max-width: 768px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .eeat-grid { grid-template-columns: 1fr; }
  .cta-bar { flex-direction: column; text-align: center; }
}

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

/* ─── Local search bar ───────────────────────────────── */
.local-search-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 14px 0;
}

.search-box-inline {
  border-radius: var(--radius) !important;
  box-shadow: none !important;
  border: 1.5px solid var(--gray-light) !important;
}

.search-box-inline:focus-within {
  border-color: var(--orange) !important;
}

/* ─── SEO links grid ─────────────────────────────────── */
.seo-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.seo-link-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.15s;
  color: var(--black);
}

.seo-link-card:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.seo-link-card i { color: var(--orange); font-size: 16px; }
.seo-link-arrow { margin-left: auto; font-size: 14px; opacity: 0.5; }

/* ─── Listing layout ─────────────────────────────────── */
.listing-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 40px;
  align-items: start;
}

.listing-sidebar { position: sticky; top: 76px; }

.filter-box {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.filter-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--black);
}

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

.filter-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.filter-options { display: flex; flex-direction: column; gap: 6px; }

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
}

.filter-option input { accent-color: var(--orange); }

.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
  margin-bottom: 6px;
}

.filter-check input { accent-color: var(--orange); }

.sidebar-links { display: flex; flex-direction: column; gap: 6px; }

.sidebar-link {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  transition: color 0.15s;
}

.sidebar-link:hover { color: var(--orange); }
.sidebar-link i { font-size: 15px; color: var(--orange); }

/* ─── Business card horizontal ───────────────────────── */
.biz-card-h {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 0;
  overflow: hidden;
  margin-bottom: 14px;
  transition: box-shadow 0.15s;
}

.biz-card-h:hover { box-shadow: var(--shadow-md); }
.biz-card-h.is-sponsored { border-color: var(--orange-border); }

.biz-card-h-img {
  width: 180px;
  flex-shrink: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.biz-card-h-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.biz-card-h-placeholder {
  width: 100%;
  height: 100%;
  min-height: 140px;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 36px;
}

.biz-sponsor-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

.biz-card-h-body {
  flex: 1;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.biz-card-h-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.biz-card-h-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 4px; }

.biz-card-h-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}

.biz-card-h-name a { color: var(--black); }
.biz-card-h-name a:hover { color: var(--orange); }

.biz-card-h-meta {
  font-size: 12px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.biz-sep { opacity: 0.4; }

.biz-card-h-rating { text-align: center; flex-shrink: 0; }

.rating-big {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.rating-stars-row { margin: 4px 0 2px; }

.rating-count-sm { font-size: 11px; color: var(--gray); }

.biz-card-h-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.biz-card-h-why {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--gray);
  padding-top: 6px;
  border-top: 1px solid var(--gray-light);
}

.why-label { font-weight: 500; color: var(--black); }

.why-tag {
  background: var(--bg);
  border: 1px solid var(--gray-light);
  padding: 2px 8px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.why-sponsored {
  background: var(--orange-pale);
  border-color: var(--orange-border);
  color: #C74A1A;
}

.biz-card-h-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }

.btn-sm { padding: 7px 14px; font-size: 13px; }

/* ─── Empty state ────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
}

.empty-state i { font-size: 48px; color: var(--gray-light); margin-bottom: 16px; display: block; }
.empty-state h3 { font-size: 18px; color: var(--black); margin-bottom: 8px; }
.empty-state p { margin-bottom: 20px; }

/* ─── Badge extra ────────────────────────────────────── */
.badge-open   { background: #d1fae5; color: #065f46; }
.badge-closed { background: #fee2e2; color: #991b1b; }

/* ─── Business profile ───────────────────────────────── */
.biz-cover { height: 280px; overflow: hidden; position: relative; background: var(--orange-pale); }
.biz-cover-img { width: 100%; height: 100%; object-fit: cover; }
.biz-cover-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #FFF3EE 0%, #FFD5C0 100%); }

.biz-profile-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: 60px;
  z-index: 90;
}

.biz-profile-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 12px;
  flex-wrap: wrap;
}

.biz-profile-identity { display: flex; align-items: center; gap: 16px; }

.biz-logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--gray-light);
  background: var(--white);
  flex-shrink: 0;
}

.biz-logo img { width: 100%; height: 100%; object-fit: cover; }

.biz-logo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 28px;
}

.biz-profile-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 4px; }

.biz-profile-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.biz-profile-meta {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.rating-inline { display: flex; align-items: center; gap: 4px; }

.biz-profile-ctas { display: flex; gap: 8px; flex-wrap: wrap; flex-shrink: 0; }

.biz-tabs {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--gray-light);
  overflow-x: auto;
  scrollbar-width: none;
}

.biz-tabs::-webkit-scrollbar { display: none; }

.biz-tab {
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.15s;
  cursor: pointer;
}

.biz-tab:hover { color: var(--black); }
.biz-tab.active { color: var(--orange); border-bottom-color: var(--orange); }

/* ─── Business content ───────────────────────────────── */
.biz-content-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 48px;
  align-items: start;
}

.biz-tab-panel { display: none; }
.biz-tab-panel.active { display: block; }

.card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0;
}

.biz-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.biz-contact-list { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }

.biz-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.biz-contact-item i { color: var(--orange); font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.biz-contact-item a { color: var(--black); }
.biz-contact-item a:hover { color: var(--orange); }

.biz-hours { display: flex; flex-direction: column; gap: 6px; margin-top: 10px; }

.biz-hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 4px 0;
  border-bottom: 1px solid var(--gray-light);
}

.biz-hour-row.today { font-weight: 600; color: var(--black); }
.biz-hour-row.today .day-name { color: var(--orange); }
.day-name { color: var(--gray); }

.biz-map-wrap { margin-top: 12px; }

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

.biz-photo {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ─── Ranking card ───────────────────────────────────── */
.ranking-card { margin-top: 16px; }
.ranking-factors { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }

.rank-factor {
  background: var(--bg);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 120px;
}

.rank-factor i { font-size: 20px; color: var(--orange); }
.rank-factor strong { display: block; font-size: 15px; }
.rank-factor span { font-size: 11px; color: var(--gray); }
.rank-factor-sponsored { border-color: var(--orange-border); background: var(--orange-pale); }

/* ─── Items (servicii/produse/meniu) ─────────────────── */
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.item-card {
  background: var(--bg);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 12px;
}

.item-img { width: 100%; height: 100px; object-fit: cover; border-radius: 6px; margin-bottom: 8px; }
.item-name { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.item-desc { font-size: 12px; color: var(--gray); margin-bottom: 6px; line-height: 1.5; }
.item-price { font-size: 13px; font-weight: 600; color: var(--orange); }

.menu-cat-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin: 18px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.menu-items { display: flex; flex-direction: column; gap: 1px; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
  gap: 12px;
}

/* ─── Recenzii ───────────────────────────────────────── */
.reviews-list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }

.review-item {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-light);
}

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

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange-pale);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.review-author { font-size: 13px; font-weight: 600; }
.review-date   { font-size: 11px; color: var(--gray); }
.review-rating { margin-left: auto; }
.review-text   { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ─── Articole preview ───────────────────────────────── */
.articles-list { display: flex; flex-direction: column; gap: 12px; margin-top: 12px; }

.article-preview {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-light);
  color: var(--black);
}

.article-preview img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.article-preview-title { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.article-preview-date  { font-size: 11px; color: var(--gray); margin-bottom: 4px; }
.article-preview-excerpt { font-size: 12px; color: var(--gray); line-height: 1.5; }

/* ─── Similar list ───────────────────────────────────── */
.similar-list { display: flex; flex-direction: column; gap: 2px; margin-top: 10px; }

.similar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 13px;
  color: var(--black);
  transition: color 0.15s;
}

.similar-item:hover { color: var(--orange); }
.similar-name { font-weight: 500; }
.similar-rating { display: flex; align-items: center; gap: 3px; font-size: 12px; color: var(--gray); }

.biz-sidebar { position: sticky; top: 180px; }

.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }

/* ─── Responsive listing + business ─────────────────── */
@media (max-width: 900px) {
  .listing-layout {
    grid-template-columns: 1fr;
  }
  .listing-sidebar { position: static; }

  .biz-content-wrap {
    grid-template-columns: 1fr;
  }
  .biz-sidebar { position: static; order: -1; }

  .biz-info-grid { grid-template-columns: 1fr; }

  .biz-card-h-img { width: 120px; }

  .biz-cover { height: 200px; }
  .biz-profile-bar { position: static; }
  .biz-profile-bar-inner { flex-direction: column; align-items: flex-start; }
  .biz-profile-ctas { width: 100%; }
}

@media (max-width: 600px) {
  .biz-card-h { flex-direction: column; }
  .biz-card-h-img { width: 100%; height: 160px; }
  .biz-card-h-top { flex-direction: column; }
  .biz-photos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Auth pages ─────────────────────────────────────── */
.auth-wrap {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--bg);
}

.auth-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 100%;
  max-width: 420px;
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.auth-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.auth-sub {
  font-size: 14px;
  color: var(--gray);
  text-align: center;
  margin-bottom: 24px;
}

.form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-label-link {
  font-size: 12px;
  color: var(--orange);
  font-weight: 400;
}

.input-password-wrap {
  position: relative;
}

.input-password-wrap .form-input {
  padding-right: 44px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  font-size: 16px;
  padding: 4px;
}

.auth-terms {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.auth-terms a { color: var(--orange); }

.auth-footer {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-light);
}

.auth-footer a { color: var(--orange); font-weight: 500; }

/* ─── Dashboard ──────────────────────────────────────── */
.dash-page-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 20px 0;
}

.dash-page-header h1 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.dash-page-header p  { font-size: 14px; color: var(--gray); margin-top: 4px; }

.dash-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}

.dash-sidebar {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 76px;
}

.dash-user-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--gray-light);
}

.dash-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange-pale);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.dash-user-name  { font-size: 14px; font-weight: 600; }
.dash-user-email { font-size: 11px; color: var(--gray); }

.dash-biz-preview {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-light);
  background: var(--bg);
}

.dash-biz-name   { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.dash-biz-cat    { font-size: 11px; color: var(--gray); margin-bottom: 4px; }
.dash-biz-rating { font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 4px; margin-bottom: 6px; }
.dash-biz-link   { font-size: 12px; color: var(--orange); display: flex; align-items: center; gap: 4px; }

.dash-nav { padding: 8px 0; }

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  transition: all 0.15s;
  border-left: 3px solid transparent;
}

.dash-nav-item:hover { color: var(--black); background: var(--bg); }
.dash-nav-item.active { color: var(--orange); border-left-color: var(--orange); background: var(--orange-pale); }
.dash-nav-item i { font-size: 16px; }

.dash-sidebar-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--gray-light);
}

.dash-logout {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  transition: color 0.15s;
}

.dash-logout:hover { color: #E24B4A; }

.dash-main { min-height: 400px; }

/* ─── Dashboard stats ────────────────────────────────── */
.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.dash-stat-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 16px;
  text-align: center;
}

.dash-stat-icon {
  font-size: 22px;
  color: var(--orange);
  margin-bottom: 8px;
}

.dash-stat-val   { font-size: 26px; font-weight: 700; color: var(--black); letter-spacing: -0.02em; }
.dash-stat-label { font-size: 12px; color: var(--gray); margin-top: 3px; }

.dash-section { margin-bottom: 24px; }
.dash-section-title { font-size: 16px; font-weight: 600; margin-bottom: 14px; }
.dash-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }

.dash-no-business {
  text-align: center;
  padding: 60px 20px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
}

.dash-no-biz-icon {
  font-size: 48px;
  color: var(--orange);
  margin-bottom: 16px;
}

.dash-no-business h2 { font-size: 20px; margin-bottom: 8px; }
.dash-no-business p  { color: var(--gray); margin-bottom: 20px; }

.dash-sub-badge {
  background: #d1fae5;
  color: #065f46;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-upgrade-box {
  background: var(--orange-pale);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dash-upgrade-box strong { font-size: 14px; display: block; margin-bottom: 3px; }
.dash-upgrade-box p { font-size: 13px; color: var(--gray); }

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

.dash-quick-btn {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  transition: all 0.15s;
  cursor: pointer;
}

.dash-quick-btn i { font-size: 22px; color: var(--orange); }
.dash-quick-btn:hover { border-color: var(--orange); color: var(--orange); }

.dash-articles-list { display: flex; flex-direction: column; gap: 1px; }

.dash-article-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  margin-bottom: 6px;
}

.dash-article-title { font-size: 13px; font-weight: 500; }
.dash-article-meta  { font-size: 11px; color: var(--gray); margin-top: 2px; }

.dash-article-status {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

.status-published      { background: #d1fae5; color: #065f46; }
.status-pending_review { background: #FFF3EE; color: #C74A1A; }
.status-approved       { background: #dbeafe; color: #1e40af; }
.status-rejected       { background: #fee2e2; color: #991b1b; }
.status-draft          { background: var(--bg); color: var(--gray); }

.dash-notifs { display: flex; flex-direction: column; gap: 8px; }

.dash-notif-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
}

.dash-notif-item i { color: var(--orange); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.dash-notif-title  { font-size: 13px; font-weight: 500; }
.dash-notif-msg    { font-size: 12px; color: var(--gray); margin-top: 2px; }
.dash-notif-time   { font-size: 11px; color: var(--gray); margin-top: 4px; }

/* ─── Responsive dashboard ───────────────────────────── */
@media (max-width: 900px) {
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { position: static; }
  .dash-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-quick-actions { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .auth-card { padding: 24px 18px; }
  .dash-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════
   HOMEPAGE FIXES
═══════════════════════════════════════════ */

/* Scapa de section-white borders urate */
.section-white {
  background: var(--white) !important;
  border-bottom: none !important;
  border-top: none !important;
}

/* Sectiuni homepage fara border */
.home-section {
  padding: 44px 0;
  background: var(--white);
}

.home-section-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

/* Divider frumos - subtil, centrat, portocaliu pal */
.home-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: var(--white);
}

.home-divider span {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 107, 53, 0.15) 20%,
    rgba(255, 107, 53, 0.25) 50%,
    rgba(255, 107, 53, 0.15) 80%,
    transparent 100%
  );
}

/* Footer fix - nu se mai ridica */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-footer {
  margin-top: auto !important;
}

/* Asigura ca main content ia tot spatiul */
.site-header ~ * {
  flex: 1 0 auto;
}

.site-footer {
  flex-shrink: 0;
}


/* ── Footer sticky bottom fix ── */
html { height: 100%; }
body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.site-header { flex-shrink: 0; }
.site-footer  { flex-shrink: 0; margin-top: auto !important; }

/* Tot ce e intre header si footer creste */
.site-header + * { flex: 1; }

/* ── Scapa de toate border-urile vechi de sectiuni ── */
.section { border-top: none !important; border-bottom: none !important; }
.section-white { border-top: none !important; border-bottom: none !important; }
[style*="border-top: 1px solid var(--gray-light)"] { border-top: none !important; }


/* ── Subcategorie links in sidebar ── */
.filter-subcat-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.filter-subcat-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  transition: all 0.15s;
  text-decoration: none;
}

.filter-subcat-link:hover {
  background: var(--orange-pale);
  color: var(--orange);
}

.filter-subcat-link.active {
  background: var(--orange-pale);
  color: var(--orange);
  border-left: 3px solid var(--orange);
  padding-left: 7px;
}

.filter-subcat-link i {
  font-size: 14px;
  flex-shrink: 0;
}

/* ── Listing layout fix aliniere ── */
.listing-layout {
  align-items: start !important;
  padding-top: 20px !important;
}

.listing-sidebar {
  position: sticky;
  top: 76px;
  align-self: start;
}

.listing-main {
  min-width: 0;
}

/* AI summary margin fix */
.container > .ai-summary {
  margin-bottom: 0;
}

/* Elimina spatiul extra de deasupra layout-ului */
.container.listing-layout {
  margin-top: 0;
}

/* ══════════════════════════════════════════
   MOBILE LISTING - Subcategory slider + Filter drawer
══════════════════════════════════════════ */

/* Ascunde sidebar pe mobil */
@media (max-width: 768px) {
  .listing-sidebar { display: none !important; }
  .listing-layout {
    grid-template-columns: 1fr !important;
    padding-top: 0 !important;
    gap: 0 !important;
  }
  .listing-main { padding-top: 0; }
}

/* ── Subcategory slider (doar mobil) ── */
.mobile-subcat-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-subcat-bar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px 16px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-subcat-bar::-webkit-scrollbar { display: none; }

  .mobile-subcat-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    border: 1.5px solid var(--gray-light);
    background: var(--white);
    color: var(--gray);
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.15s;
  }

  .mobile-subcat-pill.active {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
  }

  .mobile-subcat-pill i { font-size: 14px; }
}

/* ── Filter FAB button (doar mobil) ── */
.mobile-filter-fab {
  display: none;
}

@media (max-width: 768px) {
  .mobile-filter-fab {
    display: flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 200;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255,107,53,0.4);
    transition: all 0.2s;
  }

  .mobile-filter-fab:active { transform: scale(0.96); }
  .mobile-filter-fab i { font-size: 18px; }
}

/* ── Filter drawer overlay ── */
.filter-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 300;
  opacity: 0;
  transition: opacity 0.3s;
}

.filter-drawer-overlay.open {
  opacity: 1;
}

/* ── Filter drawer panel ── */
.filter-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 301;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  padding: 0 0 40px;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 88vh;
  overflow-y: auto;
}

.filter-drawer.open {
  transform: translateY(0);
}

.filter-drawer-handle {
  width: 40px;
  height: 4px;
  background: var(--gray-light);
  border-radius: 2px;
  margin: 14px auto 0;
}

.filter-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--gray-light);
}

.filter-drawer-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.filter-drawer-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gray);
}

.filter-drawer-body {
  padding: 16px 20px;
}

.filter-drawer-section {
  margin-bottom: 22px;
}

.filter-drawer-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  display: block;
}

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

.drawer-subcat-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  transition: all 0.15s;
  border: 1.5px solid transparent;
}

.drawer-subcat-link:hover {
  background: var(--orange-pale);
  color: var(--orange);
}

.drawer-subcat-link.active {
  background: var(--orange-pale);
  color: var(--orange);
  border-color: var(--orange-border);
  font-weight: 600;
}

.drawer-subcat-link i { font-size: 16px; flex-shrink: 0; }

.drawer-rating-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.drawer-rating-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-light);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s;
}

.drawer-rating-opt input { accent-color: var(--orange); }
.drawer-rating-opt:has(input:checked) {
  border-color: var(--orange);
  background: var(--orange-pale);
  color: var(--orange);
}

.drawer-toggle-opts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-light);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s;
}

.drawer-toggle input { accent-color: var(--orange); transform: scale(1.2); }

.filter-drawer-apply {
  position: sticky;
  bottom: 0;
  background: var(--white);
  padding: 12px 20px 20px;
  border-top: 1px solid var(--gray-light);
}

.filter-drawer-apply .btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
  border-radius: 50px;
}

/* Active filters badge pe FAB */
.fab-badge {
  background: var(--white);
  color: var(--orange);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
}
.fab-badge.show { display: flex; }

/* ── AI Summary animatie + spacing ── */
@keyframes summaryAppear {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ai-summary {
  animation: summaryAppear 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: 0.15s;
  opacity: 0;
}

@media (max-width: 768px) {
  .listing-main .ai-summary {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
}

/* ── Category AI Overview ── */
.cat-ai-overview {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  animation: summaryAppear 0.45s cubic-bezier(0.4,0,0.2,1) both;
  animation-delay: 0.1s;
  opacity: 0;
}

.cat-ai-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 20px;
  flex-shrink: 0;
}

.cat-ai-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.cat-ai-text {
  font-size: 15px;
  color: var(--black);
  line-height: 1.65;
  margin-bottom: 8px;
}

.cat-ai-cta {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

/* ── Category articles grid ── */
.cat-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.cat-article-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s, transform 0.15s;
  text-decoration: none;
  color: var(--black);
}

.cat-article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

.cat-article-placeholder {
  width: 100%;
  height: 160px;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 36px;
}

.cat-article-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.cat-article-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--black);
}

.cat-article-excerpt {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

.cat-article-meta {
  font-size: 11px;
  color: var(--gray);
  margin-top: auto;
}

/* ══════════════════════════════════════════
   BLOG
══════════════════════════════════════════ */

/* Featured card */
.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  text-decoration: none;
  color: var(--black);
  transition: box-shadow 0.15s;
}

.blog-featured-card:hover { box-shadow: var(--shadow-md); color: var(--black); }

.blog-featured-img { position: relative; min-height: 280px; overflow: hidden; }
.blog-featured-img img { width:100%; height:100%; object-fit:cover; }
.blog-featured-placeholder { width:100%; height:100%; min-height:280px; background:var(--orange-pale); display:flex; align-items:center; justify-content:center; color:var(--orange); font-size:48px; }

.blog-featured-body { padding: 32px; display:flex; flex-direction:column; justify-content:center; }

.blog-meta { display:flex; gap:14px; flex-wrap:wrap; font-size:12px; color:var(--gray); margin-bottom:12px; }
.blog-meta span { display:flex; align-items:center; gap:4px; }
.blog-meta i { font-size:13px; }

.blog-featured-title { font-size:22px; font-weight:700; letter-spacing:-.02em; line-height:1.3; margin-bottom:12px; }
.blog-featured-excerpt { font-size:14px; color:var(--gray); line-height:1.7; }

/* Blog type badge */
.blog-type-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--black);
  transition: box-shadow 0.15s, transform 0.15s;
}

.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); color: var(--black); }

.blog-card-img { position: relative; height: 180px; overflow: hidden; }
.blog-card-img img { width:100%; height:100%; object-fit:cover; }
.blog-card-placeholder { width:100%; height:100%; background:var(--orange-pale); display:flex; align-items:center; justify-content:center; color:var(--orange); font-size:32px; }

.blog-card-body { padding: 16px; flex:1; display:flex; flex-direction:column; gap:6px; }
.blog-meta-sm { font-size:11px; color:var(--gray); display:flex; gap:10px; flex-wrap:wrap; }
.blog-card-title { font-size:15px; font-weight:600; line-height:1.4; }
.blog-card-excerpt { font-size:13px; color:var(--gray); line-height:1.5; flex:1; }

/* ── Article page ── */
.blog-article-wrap { padding-top: 0; padding-bottom: 48px; }

.blog-article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
  padding-top: 8px;
}

.blog-article-header { margin-bottom: 24px; }
.blog-article-title { font-size: clamp(22px, 4vw, 32px); font-weight: 700; letter-spacing: -.03em; line-height: 1.2; margin-bottom: 14px; }

.blog-article-meta { display:flex; gap:16px; flex-wrap:wrap; font-size:13px; color:var(--gray); }
.blog-article-meta span { display:flex; align-items:center; gap:5px; }

.blog-article-cover { width:100%; max-height:420px; object-fit:cover; border-radius:var(--radius-lg); margin-bottom:28px; }

.blog-article-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--black);
}

.blog-article-content h2 { font-size:22px; font-weight:700; margin:32px 0 14px; letter-spacing:-.02em; }
.blog-article-content h3 { font-size:18px; font-weight:600; margin:24px 0 10px; }
.blog-article-content p  { margin-bottom:16px; }
.blog-article-content ul, .blog-article-content ol { margin:0 0 16px 24px; }
.blog-article-content li { margin-bottom:8px; line-height:1.7; }
.blog-article-content strong { font-weight:600; }
.blog-article-content a { color:var(--orange); text-decoration:underline; }
.blog-article-content a:hover { opacity:0.8; }
.blog-article-content img { max-width:100%; border-radius:var(--radius); margin:16px 0; }

.blog-article-sponsor {
  margin-top: 32px;
  padding: 14px 18px;
  background: var(--bg);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-article-sponsor a { color: var(--orange); font-weight: 500; }

/* ── Blog sidebar ── */
.blog-article-sidebar { position: sticky; top: 76px; }

.blog-sidebar-biz {
  background: var(--white);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin-bottom: 16px;
}

.blog-sidebar-biz-title { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--orange); margin-bottom:10px; }
.blog-sidebar-biz-name  { font-size:15px; font-weight:600; color:var(--black); display:block; margin-bottom:4px; }
.blog-sidebar-biz-name:hover { color:var(--orange); }
.blog-sidebar-biz-cat   { font-size:12px; color:var(--gray); margin-bottom:8px; }
.blog-sidebar-biz-rating { font-size:13px; display:flex; align-items:center; gap:5px; }

.blog-sidebar-related { background:var(--white); border:1px solid var(--gray-light); border-radius:var(--radius-lg); padding:18px; }
.blog-sidebar-title    { font-size:14px; font-weight:600; margin-bottom:14px; }

.blog-sidebar-related-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-light);
  text-decoration: none;
  color: var(--black);
  transition: color 0.15s;
}

.blog-sidebar-related-item:last-child { border-bottom: none; }
.blog-sidebar-related-item:hover { color: var(--orange); }

.blog-sidebar-related-item img,
.blog-sidebar-related-placeholder {
  width: 56px; height: 44px; object-fit: cover; border-radius: 6px; flex-shrink: 0;
}

.blog-sidebar-related-placeholder { background:var(--orange-pale); display:flex; align-items:center; justify-content:center; color:var(--orange); font-size:18px; }
.blog-sidebar-related-title { font-size:12px; font-weight:500; line-height:1.4; }
.blog-sidebar-related-date  { font-size:11px; color:var(--gray); margin-top:2px; }

/* ── Responsive blog ── */
@media (max-width: 900px) {
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-img  { min-height: 200px; }
  .blog-article-layout { grid-template-columns: 1fr; }
  .blog-article-sidebar { position: static; }
}

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

/* ── Reviews Slider ── */
.reviews-slider-wrap {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  overflow: hidden;
}

.reviews-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.reviews-slider { position: relative; min-height: 120px; }

.review-slide {
  display: none;
  animation: fadeInSlide 0.4s ease;
}

.review-slide.active { display: block; }

@keyframes fadeInSlide {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}

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

.review-slide-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  font-style: italic;
}

.reviews-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.slider-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--gray-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gray);
  transition: all 0.15s;
}

.slider-btn:hover { background: var(--orange-pale); color: var(--orange); border-color: var(--orange-border); }

.slider-dots { display: flex; gap: 6px; align-items: center; }

.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-light);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.slider-dot.active { background: var(--orange); width: 20px; border-radius: 4px; }

/* ── AI Verdict cards ── */
.biz-verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
}

.biz-trust-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray);
  margin-bottom: 8px;
}

.biz-trust-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--black);
}

.biz-trust-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.biz-trust-stat {
  background: var(--bg);
  border-radius: 8px;
  padding: 10px 12px;
}

.biz-trust-stat-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray);
  margin-bottom: 4px;
}

.biz-trust-stat-val {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.biz-verdict-alege {
  background: #f0fdf4;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 10px;
}

.biz-verdict-alege-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #16A34A;
  margin-bottom: 6px;
}

.biz-verdict-alege p { font-size: 13px; color: #1A1A1A; line-height: 1.6; }

.biz-verdict-verif {
  background: #fffbeb;
  border-radius: 8px;
  padding: 12px 14px;
}

.biz-verdict-verif-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #92400e;
  margin-bottom: 6px;
}

.biz-verdict-verif p { font-size: 13px; color: #1A1A1A; line-height: 1.6; }

/* Tab link inline */
.biz-tab-link {
  font-size: 13px;
  color: var(--orange);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Responsive verdict */
@media (max-width: 768px) {
  .biz-verdict-grid { grid-template-columns: 1fr; }
  .biz-trust-stats  { grid-template-columns: 1fr 1fr; }
}

/* ── Social media links ── */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--gray-light);
  background: var(--white);
  font-size: 12px;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  transition: all 0.15s;
}

.social-link:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-pale); }
.social-link i { font-size: 16px; }
