/* ═══════════════════════════════════════════════════
   Salone Buzz — Scoped CSS (all rules under .buzz-section)
   Inherits SaloneKart Nunito Sans font. No !important on colors.
   ═══════════════════════════════════════════════════ */

/* ── Design tokens ── */
.buzz-section {
  --bz-green:     #0F6E56;
  --bz-green-mid: #1D9E75;
  --bz-green-lt:  #E1F5EE;
  --bz-amber:     #BA7517;
  --bz-amber-lt:  #FAEEDA;
  --bz-red:       #A32D2D;
  --bz-red-lt:    #FCEBEB;
  --bz-navy:      #0C1A2E;
  --bz-wa:        #25D366;
  --bz-bg:        #F8FAF9;
  --bz-txt:       #1A2233;
  --bz-txt2:      #4A5568;
  --bz-bdr:       #E2EAE6;
  --bz-radius:    10px;
  --bz-sh:        0 2px 12px rgba(0,0,0,.08);
  font-family: 'Nunito Sans', sans-serif;
  background: var(--bz-bg);
  color: var(--bz-txt);
}

/* ── Buzz header bar ── */
.buzz-header {
  background: var(--bz-navy);
  color: #fff;
  padding: 0 5%;
}
.buzz-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 58px;
  max-width: 1200px;
  margin: 0 auto;
}
.buzz-logo {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -.3px;
}
.buzz-logo span { color: var(--bz-amber); }
.buzz-flag { font-size: 18px; }
.buzz-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.buzz-nav a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all .18s;
}
.buzz-nav a:hover, .buzz-nav a.active {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.buzz-back {
  color: rgba(255,255,255,.6);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  margin-right: 8px;
}
.buzz-back:hover { color: #fff; }

/* ── Breaking ticker ── */
.buzz-ticker {
  background: var(--bz-red);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 38px;
}
.buzz-ticker-label {
  background: #7A1A1A;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
}
.buzz-ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.buzz-ticker-inner {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: buzz-scroll 40s linear infinite;
  font-size: 13px;
  font-weight: 600;
  padding-left: 24px;
}
@keyframes buzz-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.buzz-ticker-inner:hover { animation-play-state: paused; }

/* ── Layout ── */
.buzz-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}
.buzz-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.buzz-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.buzz-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.buzz-layout-main {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}

/* ── Section title ── */
.buzz-section-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--bz-navy);
  margin: 28px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.buzz-section-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--bz-bdr);
  border-radius: 2px;
}
.buzz-view-all {
  font-size: 12px;
  font-weight: 700;
  color: var(--bz-green);
  text-decoration: none;
  margin-left: 10px;
  white-space: nowrap;
}
.buzz-view-all::after { content: none; }

/* ── News card ── */
.buzz-card {
  background: #fff;
  border-radius: var(--bz-radius);
  box-shadow: var(--bz-sh);
  overflow: hidden;
  transition: transform .18s, box-shadow .18s;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}
.buzz-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
}
.buzz-card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
}
.buzz-card-img.tall { height: 240px; }
.buzz-card-body { padding: 14px 16px 16px; }
.buzz-card-cat {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bz-green);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.buzz-card-cat.red  { color: var(--bz-red); }
.buzz-card-cat.amb  { color: var(--bz-amber); }
.buzz-badge {
  background: var(--bz-red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: .5px;
}
.buzz-badge.trending {
  background: var(--bz-amber);
}
.buzz-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--bz-navy);
  margin: 0 0 8px;
}
.buzz-card-title.lg { font-size: 20px; }
.buzz-card-excerpt {
  font-size: 13px;
  color: var(--bz-txt2);
  line-height: 1.5;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.buzz-card-meta {
  font-size: 11px;
  color: var(--bz-txt2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.buzz-dot { color: #ccc; }

/* ── Hero article ── */
.buzz-hero-article {
  background: #fff;
  border-radius: var(--bz-radius);
  box-shadow: var(--bz-sh);
  overflow: hidden;
}
.buzz-hero-img {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}
.buzz-hero-body { padding: 24px; }

/* ── Sidebar ── */
.buzz-sidebar-box {
  background: #fff;
  border-radius: var(--bz-radius);
  box-shadow: var(--bz-sh);
  padding: 18px;
  margin-bottom: 20px;
}
.buzz-sidebar-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--bz-green);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bz-green-lt);
}
.buzz-trending-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #F0F4F2;
  text-decoration: none;
  color: inherit;
}
.buzz-trending-item:last-child { border: none; }
.buzz-trending-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--bz-green-lt);
  line-height: 1;
  min-width: 28px;
}
.buzz-trending-txt {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--bz-navy);
}
.buzz-trending-views {
  font-size: 11px;
  color: var(--bz-txt2);
  margin-top: 3px;
}

/* ── Poll widget ── */
.buzz-poll-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--bz-navy);
  margin: 0 0 14px;
  line-height: 1.4;
}
.buzz-poll-opt {
  margin-bottom: 10px;
  cursor: pointer;
}
.buzz-poll-bar-wrap {
  background: var(--bz-green-lt);
  border-radius: 20px;
  overflow: hidden;
  height: 32px;
  position: relative;
  border: 1px solid rgba(15,110,86,.15);
  transition: opacity .2s;
}
.buzz-poll-bar-wrap:hover { opacity: .85; }
.buzz-poll-bar {
  background: linear-gradient(90deg, var(--bz-green) 0%, var(--bz-green-mid) 100%);
  height: 100%;
  border-radius: 20px;
  transition: width .6s ease;
  min-width: 4px;
}
.buzz-poll-bar-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--bz-navy);
  pointer-events: none;
}
.buzz-poll-pct { font-weight: 800; color: var(--bz-green); }
.buzz-poll-total {
  font-size: 11px;
  color: var(--bz-txt2);
  margin-top: 10px;
  text-align: center;
}
.buzz-poll-voted { opacity: .6; cursor: not-allowed; }

/* ── Video card ── */
.buzz-video-card {
  background: #fff;
  border-radius: var(--bz-radius);
  box-shadow: var(--bz-sh);
  overflow: hidden;
  cursor: pointer;
  transition: transform .18s;
}
.buzz-video-card:hover { transform: translateY(-2px); }
.buzz-video-thumb {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
}
.buzz-play-btn {
  position: absolute;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
  transition: transform .18s;
}
.buzz-video-card:hover .buzz-play-btn { transform: scale(1.1); }
.buzz-video-dur {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0,0,0,.7);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}
.buzz-video-body { padding: 10px 12px 12px; }
.buzz-video-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--bz-navy);
  line-height: 1.4;
  margin: 0 0 4px;
}
.buzz-video-meta {
  font-size: 11px;
  color: var(--bz-txt2);
  display: flex;
  gap: 8px;
}

/* ── Job card ── */
.buzz-job-card {
  background: #fff;
  border-radius: var(--bz-radius);
  box-shadow: var(--bz-sh);
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .18s;
}
.buzz-job-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.12); }
.buzz-job-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--bz-navy);
  margin: 0 0 4px;
}
.buzz-job-company { font-size: 13px; color: var(--bz-green); font-weight: 600; }
.buzz-job-meta { font-size: 12px; color: var(--bz-txt2); margin-top: 6px; display: flex; gap: 10px; flex-wrap: wrap; }
.buzz-tag {
  background: var(--bz-green-lt);
  color: var(--bz-green);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
}
.buzz-tag.red { background: var(--bz-red-lt); color: var(--bz-red); }
.buzz-tag.amb { background: var(--bz-amber-lt); color: var(--bz-amber); }
.buzz-job-salary {
  font-size: 14px;
  font-weight: 800;
  color: var(--bz-green);
  white-space: nowrap;
}

/* ── Listing card ── */
.buzz-listing-card {
  background: #fff;
  border-radius: var(--bz-radius);
  box-shadow: var(--bz-sh);
  padding: 16px;
  transition: transform .18s;
}
.buzz-listing-card:hover { transform: translateY(-2px); }
.buzz-listing-emoji {
  font-size: 32px;
  margin-bottom: 10px;
}
.buzz-listing-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--bz-navy);
  margin: 0 0 6px;
  line-height: 1.3;
}
.buzz-listing-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--bz-green);
  margin-bottom: 6px;
}
.buzz-listing-meta {
  font-size: 11px;
  color: var(--bz-txt2);
  margin-bottom: 12px;
}

/* ── Event card ── */
.buzz-event-card {
  background: #fff;
  border-radius: var(--bz-radius);
  box-shadow: var(--bz-sh);
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform .18s;
}
.buzz-event-card:hover { transform: translateY(-2px); }
.buzz-event-emoji {
  font-size: 36px;
  min-width: 48px;
  text-align: center;
}
.buzz-event-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--bz-navy);
  margin: 0 0 4px;
}
.buzz-event-date {
  font-size: 13px;
  color: var(--bz-green);
  font-weight: 700;
  margin-bottom: 4px;
}
.buzz-event-venue {
  font-size: 12px;
  color: var(--bz-txt2);
}
.buzz-event-price {
  font-size: 13px;
  font-weight: 800;
  color: var(--bz-amber);
  margin-top: 6px;
}

/* ── Buttons ── */
.buzz-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .18s;
  min-height: 44px;
}
.buzz-btn-green {
  background: var(--bz-green);
  color: #fff;
}
.buzz-btn-green:hover { background: var(--bz-green-mid); color: #fff; }
.buzz-btn-wa {
  background: var(--bz-wa);
  color: #fff;
}
.buzz-btn-wa:hover { filter: brightness(1.08); color: #fff; }
.buzz-btn-outline {
  background: transparent;
  color: var(--bz-green);
  border: 2px solid var(--bz-green);
}
.buzz-btn-outline:hover { background: var(--bz-green-lt); }
.buzz-btn-sm { padding: 7px 14px; font-size: 12px; min-height: 36px; }

/* ── WhatsApp sticky CTA ── */
.buzz-wa-sticky {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.buzz-wa-btn {
  background: var(--bz-wa);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  text-decoration: none;
  transition: transform .18s;
}
.buzz-wa-btn:hover { transform: scale(1.1); }
.buzz-wa-label {
  background: var(--bz-navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ── Page intro ── */
.buzz-page-intro {
  background: linear-gradient(135deg, var(--bz-navy) 0%, #1A3A52 100%);
  color: #fff;
  padding: 36px 5%;
}
.buzz-page-intro h1 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
}
.buzz-page-intro p {
  font-size: 14px;
  opacity: .8;
  margin: 0;
}

/* ── Filter pills ── */
.buzz-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0 16px;
}
.buzz-pill {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid var(--bz-bdr);
  background: #fff;
  color: var(--bz-txt2);
  cursor: pointer;
  transition: all .15s;
}
.buzz-pill.active, .buzz-pill:hover {
  border-color: var(--bz-green);
  color: var(--bz-green);
  background: var(--bz-green-lt);
}

/* ── Advertise pricing ── */
.buzz-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.buzz-pricing-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--bz-sh);
  padding: 28px 24px;
  text-align: center;
  border: 2px solid var(--bz-bdr);
  transition: border-color .2s, transform .2s;
}
.buzz-pricing-card:hover { border-color: var(--bz-green); transform: translateY(-4px); }
.buzz-pricing-card.featured {
  border-color: var(--bz-green);
  background: linear-gradient(135deg, #fff 0%, var(--bz-green-lt) 100%);
}
.buzz-pricing-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bz-green);
  margin-bottom: 6px;
}
.buzz-pricing-price {
  font-size: 32px;
  font-weight: 900;
  color: var(--bz-navy);
  margin: 10px 0;
}
.buzz-pricing-price small { font-size: 14px; font-weight: 600; color: var(--bz-txt2); }
.buzz-pricing-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  text-align: left;
}
.buzz-pricing-list li {
  font-size: 13px;
  color: var(--bz-txt2);
  padding: 5px 0;
  border-bottom: 1px solid var(--bz-bdr);
  display: flex;
  align-items: center;
  gap: 8px;
}
.buzz-pricing-list li::before { content: '✓'; color: var(--bz-green); font-weight: 800; }

/* ── Footer ── */
.buzz-footer {
  background: var(--bz-navy);
  color: rgba(255,255,255,.7);
  padding: 32px 5%;
  margin-top: 48px;
  font-size: 13px;
}
.buzz-footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.buzz-footer a:hover { color: #fff; }
.buzz-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .buzz-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .buzz-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .buzz-layout-main { grid-template-columns: 1fr; }
  .buzz-pricing-grid { grid-template-columns: 1fr; }
  .buzz-nav { display: none; }
}
@media (max-width: 600px) {
  .buzz-grid-3 { grid-template-columns: 1fr; }
  .buzz-grid-2 { grid-template-columns: 1fr; }
  .buzz-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .buzz-page-intro h1 { font-size: 22px; }
  .buzz-hero-img { height: 200px; font-size: 60px; }
}
