body {
  background: #f1f3f6;
}

/* HEADER */
.header {
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
  font-weight: bold;
}

/* NAVBAR DESKTOP */
.desktop-nav {
  background: #111;
  color: #fff;
  padding: 10px 0;
}

.desktop-nav .menu a {
  color: #fff;
  margin-right: 20px;
  text-decoration: none;
}

/* LEFT */
.left-sidebar {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
}

.left-sidebar li {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

/* BLOG (DESKTOP = LONG STYLE) */
.blog-item {
  background: #fff;
  height: 120px;
  margin-bottom: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RIGHT */
.small-card {
  background: #fff;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
}

/* STICKY */
.sticky-box {
  position: sticky;
  top: 100px;
}

/* ================= MOBILE ================= */

.mobile-banner {
  text-align: center;
  padding: 5px;
}

/* CATEGORY SLIDER */
.mobile-cat-slider {
  background: #111;
  position: sticky;
  top: 60px;
  z-index: 999;
}

.mobile-sub-slider {
  background: #444;
  position: sticky;
  top: 100px;
  z-index: 998;
}

.scroll-menu {
  display: flex;
  overflow-x: auto;
  padding: 10px;
}

.scroll-menu a {
  color: #fff;
  padding: 6px 12px;
  margin-right: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
}

.scroll-menu::-webkit-scrollbar {
  display: none;
}

.logo img {
    height: 100px;        /* FIX HEIGHT */
    width: auto;         /* proportion maintain */
    object-fit: contain; /* image stretch na ho */
}