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

/* =============================================
   BHASKAR-STYLE DESIGN SYSTEM
   Primary: Orange #f47216 | Navy: #1a1a2e
   ============================================= */
:root {
  --orange: #f47216;
  --orange-dark: #d4600f;
  --orange-light: #fff4ed;
  --red: #e63946;
  --green: #2a9d8f;
  --navy: #1a1a2e;
  --text: #1a1a1a;
  --text-muted: #666;
  --text-light: #999;
  --bg: #ffffff;
  --white: #fff;
  --border: #e0e0e0;
  --sidebar-w: 220px;
  --header-h: 56px;
  --shadow: 0 1px 4px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, .12);
  --radius: 6px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: inherit;
  font-weight: 600;
}

/* ── HEADER ─────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FAFAFA;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* Top bar */
.header-bar {
  display: flex;
  align-items: center;
  height: var(--header-h);
  padding: 0 16px;
  gap: 16px;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
}

.header-logo .logo-dot {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 12px;
}

.header-logo img {
  max-height: 42px;
  width: auto;
}

.header-nav-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.header-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 10px;
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: .7rem;
  font-weight: 600;
  transition: .2s;
  cursor: pointer;
  text-decoration: none;
  border: none;
  background: none;
}

.header-icon-btn i {
  font-size: 1.3rem;
}

.header-icon-btn:hover {
  color: var(--orange);
  background: var(--orange-light);
}

.header-icon-btn.active {
  color: var(--orange);
}

.header-search-wrap {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 6px 14px;
  gap: 8px;
  min-width: 200px;
  border: 1px solid var(--border);
}

.header-search-wrap input {
  border: none;
  background: none;
  outline: none;
  font-size: .9rem;
  width: 100%;
  font-family: inherit;
}

.header-search-wrap button {
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0;
}

.header-search-wrap button:hover {
  color: var(--orange);
}

/* Breaking ticker */
.breaking-ticker {
  background: #fff;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  height: 38px;
  overflow: hidden;
}

.ticker-label {
  background: var(--orange);
  color: #fff;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  flex-shrink: 0;
  white-space: nowrap;
}

.ticker-label i {
  font-size: .85rem;
}

.ticker-track {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}

.ticker-content {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
  padding: 0 20px;
}

.ticker-item {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
}

.ticker-item:hover {
  color: var(--orange);
}

.ticker-sep {
  color: var(--border);
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Category nav (below ticker) */
.category-nav-bar {
  background: #fff;
  border-top: 2px solid var(--orange);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-nav-bar::-webkit-scrollbar {
  display: none;
}

.category-nav-inner {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0 12px;
}

.cat-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  transition: .2s;
  white-space: nowrap;
  cursor: pointer;
}

.cat-nav-item:hover {
  color: var(--orange);
}

.cat-nav-item.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.cat-nav-item i {
  font-size: .95rem;
}

/* ── BODY LAYOUT ─────────────────────────────── */
.site-body {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
  padding: 16px;
  gap: 16px;
  align-items: flex-start;
}

/* Left Sidebar */
.left-sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--header-h) + 40px);
  max-height: calc(100vh - var(--header-h) - 60px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
}

.left-sidebar::-webkit-scrollbar {
  width: 3px;
}

.left-sidebar::-webkit-scrollbar-thumb {
  background: var(--border);
}

.left-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  transition: .2s;
  border-left: 3px solid transparent;
  margin-bottom: 2px;
}

.left-nav-item:hover {
  background: var(--orange-light);
  color: var(--orange);
  border-left-color: var(--orange);
}

.left-nav-item.active {
  background: var(--orange-light);
  color: var(--orange);
  border-left-color: var(--orange);
  font-weight: 700;
}

.left-nav-item .nav-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  background: var(--orange-light);
  color: var(--orange);
}

/* Main content */
.main-content {
  flex: 1;
  min-width: 0;
}

/* Right sidebar */
.right-sidebar {
  width: 350px;
  flex-shrink: 0;
}

/* ── CARDS ───────────────────────────────────── */
.news-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: .25s;
}

.news-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #ccc;
}

.news-card .card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.news-card .card-body {
  padding: 12px 14px;
}

.news-card .card-title {
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 6px;
}

.news-card .card-title a:hover {
  color: var(--orange);
}

.news-card .card-meta {
  font-size: .75rem;
  color: var(--text-light);
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Hero card */
.hero-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  opacity: .9;
}

.hero-card .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.hero-card .hero-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

.hero-card .hero-meta {
  color: rgba(255, 255, 255, .7);
  font-size: .75rem;
}

/* Horizontal list card */
.news-row {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

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

.news-row-img {
  width: 110px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.news-row-body {
  flex: 1;
}

.news-row-title {
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-row-title:hover {
  color: var(--orange);
}

.news-row-meta {
  font-size: .72rem;
  color: var(--text-light);
}

/* Section heading */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #fff;
  border-top: 3px solid var(--orange);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.section-head-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-head-title i {
  color: var(--orange);
}

.section-head-more {
  font-size: .78rem;
  color: var(--orange);
  font-weight: 600;
}

.section-head-more:hover {
  text-decoration: underline;
}

/* Widget box */
.widget-box {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 16px;
}

/* ── BADGES ──────────────────────────────────── */
.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--red);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.badge-live::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}

.badge-channel {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
}

.badge-new {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

/* ── TRENDING PILLS ──────────────────────────── */
.trending-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0;
  scrollbar-width: none;
}

.trending-pills::-webkit-scrollbar {
  display: none;
}

.trend-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  transition: .2s;
  flex-shrink: 0;
}

.trend-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-light);
}

.trend-pill i {
  color: var(--orange);
}

/* ── WEB STORIES ─────────────────────────────── */
.stories-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.stories-row::-webkit-scrollbar {
  display: none;
}

.story-item {
  flex-shrink: 0;
  width: 80px;
  text-align: center;
  cursor: pointer;
}

.story-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #ff6b6b);
  padding: 2px;
  margin: 0 auto 6px;
}

.story-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
}

.story-label {
  font-size: .65rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

/* ── SIDEBAR WIDGETS ─────────────────────────── */
.widget-title {
  font-size: .82rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 10px 14px;
  background: var(--navy);
}

.trending-list-item {
  display: flex;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.trending-list-item:last-child {
  border-bottom: none;
}

.trending-num {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--border);
  min-width: 24px;
  line-height: 1;
}

.trending-list-title {
  font-size: .83rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.trending-list-title:hover {
  color: var(--orange);
}

/* ── FOOTER ──────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .8);
  margin-top: 32px;
}

.footer-top {
  padding: 40px 0 32px;
}

.footer-logo-text {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.footer-about {
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
}

.footer-heading {
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, .6);
  font-size: .875rem;
  padding: 5px 0;
  transition: .2s;
}

.footer-link:hover {
  color: #fff;
  padding-left: 6px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  transition: .2s;
}

.footer-social:hover {
  background: var(--orange);
  color: #fff;
}

.footer-bottom {
  background: rgba(0, 0, 0, .3);
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
}

/* ── NEWSLETTER ──────────────────────────────── */
.newsletter-box {
  background: linear-gradient(135deg, var(--orange), #ff8c42);
  border-radius: var(--radius);
  padding: 20px;
  color: #fff;
}

.newsletter-box h5 {
  font-weight: 800;
  margin-bottom: 8px;
}

.newsletter-box .input-row {
  display: flex;
  gap: 0;
  margin-top: 12px;
}

.newsletter-box input {
  flex: 1;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 9px 12px;
  font-size: .875rem;
  outline: none;
}

.newsletter-box button {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 9px 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 700;
  cursor: pointer;
  font-size: .8rem;
}

/* ── MOBILE BOTTOM NAV ───────────────────────── */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  display: none;
  align-items: center;
  height: 58px;
  z-index: 2000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, .1);
}

.mobile-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--text-muted);
  font-size: .62rem;
  font-weight: 700;
  padding: 8px 4px;
}

.mobile-nav-item i {
  font-size: 1.3rem;
}

.mobile-nav-item.active {
  color: var(--orange);
}

/* ── ARTICLE PAGE ────────────────────────────── */
.article-title {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--navy);
}

.article-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 12px 0;
}

.article-meta span {
  font-size: .78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.article-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #2d2d2d;
}

.article-content p {
  margin-bottom: 1.2em;
}

.article-content h2,
.article-content h3 {
  font-weight: 800;
  margin: 1.4em 0 .5em;
  color: var(--navy);
}

.article-content img {
  border-radius: var(--radius);
  margin: 1em 0;
}

#readingProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--orange);
  z-index: 9999;
  width: 0%;
  transition: width .1s;
}

/* ── SHARE BUTTONS ───────────────────────────── */
.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .85rem;
  border: none;
  cursor: pointer;
}

.share-fb {
  background: #1877f2;
}

.share-tw {
  background: #000;
}

.share-wa {
  background: #25d366;
}

.share-copy {
  background: var(--text-muted);
}

/* ── PAGINATION ──────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 24px 0;
}

.page-link {
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .85rem;
  transition: .2s;
}

.page-item.active .page-link {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

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

/* ── UTILITY ─────────────────────────────────── */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.text-orange {
  color: var(--orange) !important;
}

.bg-orange {
  background: var(--orange) !important;
}

.fw-800 {
  font-weight: 800 !important;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width:1100px) {
  .right-sidebar {
    display: none;
  }
}

@media (max-width:768px) {
  .site-body {
    padding: 8px;
    gap: 8px;
  }

  .left-sidebar {
    display: none;
  }

  .main-content {
    width: 100%;
  }

  .mobile-bottom-nav {
    display: flex;
  }

  body {
    padding-bottom: 60px;
  }

  .header-bar {
    padding: 0 12px;
  }

  .header-icon-btn span {
    display: none;
  }

  .header-search-wrap {
    display: none;
  }

  .article-title {
    font-size: 1.25rem;
  }

  .hero-card .hero-title {
    font-size: 1rem;
  }
}

@media (max-width:480px) {
  .breaking-ticker {
    height: 36px;
  }

  .ticker-label {
    padding: 0 10px;
    font-size: .65rem;
  }
}

@media (max-width: 768px) {
  .site-body {
    padding: 8px;
    gap: 8px;
  }

  .article-wrapper {
    padding: 12px;
    border-radius: 8px;
  }

  .site-container {
    padding-top: 0 !important;
  }
}

/* ── MOBILE SCROLLING NAVS ─────────────────── */
.mobile-top-navs {
  background: #FAFAFA;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0px;
}

.mobile-cat-scroll {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  padding: 12px 16px 0;
  gap: 20px;
  -webkit-overflow-scrolling: touch;
}

.mobile-cat-scroll::-webkit-scrollbar {
  display: none;
}

.mobile-cat-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #444;
  text-decoration: none;
  position: relative;
  padding: 0 2px 10px;
  transition: .2s;
  flex-shrink: 0;
}

.mobile-cat-item img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.mobile-cat-item i {
  font-size: 0.95rem;
}

.mobile-cat-item.active {
  color: #000;
}

.mobile-cat-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #333;
  z-index: 2;
}

.mobile-trending-wrap {
  overflow: hidden;
  background: #fff;
  padding: 8px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.trending-label {
  color: var(--red);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.mobile-trending-scroll {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.trending-fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 80%);
  pointer-events: none;
  z-index: 5;
}

.trending-track {
  display: flex;
  gap: 15px;
  animation: mobile-ticker 40s linear infinite;
  width: max-content;
}

.trending-track:hover {
  animation-play-state: paused;
}

@keyframes mobile-ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.mobile-trending-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  background: #f8f9fa;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-trending-item i {
  font-size: 0.65rem;
  color: #999;
}

/* ── MOBILE SEARCH OVERLAY ──────────────────── */
.mobile-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 3000;
  display: none;
  flex-direction: column;
}

.mobile-search-overlay.active {
  display: flex;
}

.search-overlay-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.search-overlay-header .back-btn {
  border: none;
  background: none;
  font-size: 1.4rem;
  color: #333;
  padding: 0;
  cursor: pointer;
}

.search-overlay-form {
  flex: 1;
  display: flex;
  align-items: center;
  background: #f2f2f2;
  border-radius: 8px;
  padding: 2px 4px;
}

.search-overlay-form input {
  flex: 1;
  border: none;
  background: none;
  padding: 8px 12px;
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
}

.search-overlay-form .search-submit-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: linear-gradient(135deg, #f47216, #ff8c42);
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
}

.search-overlay-content {
  padding: 20px 16px;
  flex: 1;
  overflow-y: auto;
}

.trending-section .trending-title {
  color: var(--red);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.trending-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trending-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  transition: .2s;
  text-decoration: none;
}

.trending-tag i {
  font-size: 0.75rem;
  color: #999;
}

.trending-tag:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ── SIDEBAR APP DOWNLOAD + FOLLOW SECTION ───── */
.sidebar-app-section {
  margin: 0 8px 12px;
  padding: 16px 12px;
  background: #f9f9f9;
  border-radius: 10px;
  border: 1px solid var(--border);
  text-align: center;
}

.sidebar-app-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.sidebar-store-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.sidebar-store-btn {
  display: flex;
  flex: 1;
  justify-content: center;
  transition: transform .2s, opacity .2s;
  line-height: 0;
}

.sidebar-store-btn:hover {
  transform: scale(1.03);
  opacity: .9;
}

.sidebar-store-btn img {
  border-radius: 6px;
  width: 100%;
  max-width: 110px;
  height: 36px;
  object-fit: contain;
}

.sidebar-social-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.sidebar-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

.sidebar-social-btn:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
  color: #fff;
}

/* ══════════════════════════════════════════════
   PREMIUM FOOTER STYLES
   ══════════════════════════════════════════════ */

/* Brand Strip */
.footer-brand-strip {
  background: var(--orange);
  padding: 14px 0;
}
.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}
.footer-strip-social {
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer-strip-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  transition: transform .2s, opacity .2s;
  text-decoration: none;
}
.footer-strip-icon:hover {
  transform: scale(1.15);
  opacity: 0.9;
  color: #fff;
}

/* Footer Body */
.footer-body {
  padding: 40px 0 32px;
}

/* App Section in Footer */
.footer-app-section {
  margin-top: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-app-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.footer-app-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-store-btn {
  display: flex;
  flex: 1;
  min-width: 110px;
  transition: transform .2s, opacity .2s;
  line-height: 0;
}
.footer-store-btn:hover {
  transform: scale(1.04);
  opacity: 0.9;
}
.footer-store-btn img {
  width: 100%;
  height: 38px;
  object-fit: contain;
  border-radius: 6px;
}

/* Footer heading override for new design */
.footer-body .footer-heading {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Footer link override for new design */
.footer-body .footer-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  padding: 4px 0;
  transition: .2s;
  text-decoration: none;
}
.footer-body .footer-link i {
  font-size: 0.65rem;
  color: var(--orange);
  flex-shrink: 0;
}
.footer-body .footer-link:hover {
  color: #fff;
  padding-left: 4px;
}

/* Newsletter Form */
.footer-newsletter-form {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  padding: 10px 14px;
  color: #fff;
  font-size: 0.85rem;
  outline: none;
  font-family: inherit;
}
.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.footer-newsletter-form button {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  transition: .2s;
}
.footer-newsletter-form button:hover {
  background: var(--orange-dark);
}

/* Tag-style More Links */
.footer-tag-link {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 600;
  transition: .2s;
  text-decoration: none;
}
.footer-tag-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  background: rgba(0, 0, 0, 0.35);
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom-bar strong {
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-brand-strip .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-body {
    padding: 24px 0 20px;
  }
  .footer-app-btns {
    flex-direction: row;
  }
  .footer-bottom-bar .container {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
}