/* Mobile-First Layout Redesign */

:root {
  /* Colors */
  --brand-red: #b91c1c; /* Deep elegant red */
  --brand-navy: #1e3a8a;
  --brand-blue: #2563eb;
  
  /* Typography Scale */
  --text-xs: 10px;
  --text-sm: 12px;
  --text-base: 14px;
  --text-md: 16px;
  --text-lg: 20px;
  --text-xl: 24px;
  
  /* Spacing Scale (4pt Grid) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  
  /* Border Radius */
  --rad-sm: 8px;
  --rad-md: 16px; /* Smooth rounded corners */
  --rad-lg: 24px; /* More rounded */
  --rad-pill: 99px;
}

/* === DUAL HEADER SYSTEM === */
/* By default (pages without mobile-layout), hide the mobile header */
.header-mobile { display: none !important; }

/* Inside .mobile-layout container, show mobile header and hide glass header */
.mobile-layout .header-mobile { display: flex !important; }
.mobile-layout .header-glass { display: none !important; }

body {
  font-family: 'Outfit', 'Inter', sans-serif;
  background-color: #f3f4f6; /* light gray background outside mobile container */
}

.mobile-layout {
  max-width: 100%;
  margin: 0;
  background-color: #ffffff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Header native app */
.header-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s ease;
}

.header-mobile.scrolled {
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-left, .header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #374151;
  cursor: pointer;
  padding: 4px;
}

.brand-logo-text {
  font-size: 24px;
  font-weight: 800;
  color: #1f2937;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.notification-dot {
  position: absolute;
  top: 4px;
  right: 6px;
  width: 6px;
  height: 6px;
  background-color: #ef4444;
  border-radius: 50%;
}

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

.user-avatar-btn img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

/* Kategori Tabs Nav */
.nav-tabs-wrapper {
  padding: 0 var(--sp-4);
  margin-bottom: var(--sp-3);
  background-color: #ffffff;
}

.nav-tabs-scroll {
  display: flex;
  overflow-x: auto;
  gap: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid #f3f4f6;
  scrollbar-width: none;
}
.nav-tabs-scroll::-webkit-scrollbar { display: none; }

.nav-tab {
  font-size: var(--text-base);
  font-weight: 600;
  color: #4b5563;
  text-decoration: none;
  white-space: nowrap;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--rad-pill);
  transition: all 0.2s;
}

.nav-tab.active {
  background-color: var(--brand-red);
  color: #ffffff;
}

/* Banner & UMKM Dynamic Layer */
.banner-umkm-section {
  padding: 0 var(--sp-4) var(--sp-4);
}

.banner-container {
  border-radius: var(--rad-md);
  overflow: hidden;
  box-shadow: 0 4px var(--sp-3) rgba(0,0,0,0.1);
  background-color: #f3f4f6;
}

.umkm-carousel {
  padding: 8px 0 !important; /* Adjust padding for mobile gap */
}

.banner-section {
  padding: 0 var(--sp-4) var(--sp-4);
}

.banner-card {
  position: relative;
  border-radius: var(--rad-md);
  overflow: hidden;
  box-shadow: 0 4px var(--sp-3) rgba(0,0,0,0.1);
  background-color: #f3f4f6;
  height: 230px;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.banner-text-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Align to bottom for mobile */
  align-items: flex-start;
  padding: var(--sp-4);
  text-align: left;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%); /* Soft gradient on bottom only */
}

.banner-text-overlay h2 {
  color: #ffffff;
  font-size: var(--text-xl);
  font-weight: 900;
  margin-bottom: var(--sp-1);
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.banner-text-overlay p {
  color: #e5e7eb;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--sp-3);
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.banner-icons {
  display: flex;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
  width: 100%;
}

.banner-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
}

.b-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--text-base);
}

.banner-icon-item span {
  font-size: var(--text-xs);
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  white-space: nowrap;
}

.btn-banner {
  background-color: var(--brand-red);
  color: white;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--rad-pill);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(211, 47, 47, 0.3);
}

/* Pengaduan Card */
.pengaduan-section {
  padding: 0 var(--sp-4);
  margin-bottom: 0px; /* Attach to ticker entirely */
}

.pengaduan-card {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  border-radius: var(--rad-md) var(--rad-md) 0 0;
  padding: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  text-decoration: none;
  color: white;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.pengaduan-icon {
  font-size: 32px;
  background: rgba(255,255,255,0.2);
  width: 48px; height: 48px;
  display: flex; justify-content: center; align-items: center;
  border-radius: var(--rad-sm);
}

.pengaduan-text h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: var(--sp-1);
}

.pengaduan-text p {
  font-size: var(--text-sm);
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.3;
}

/* Ticker */
.ticker-wrapper {
  background-color: var(--brand-navy);
  color: white;
  margin: 0 var(--sp-4) var(--sp-5);
  border-radius: 0 0 var(--rad-md) var(--rad-md);
  display: flex;
  align-items: center;
  padding: 10px var(--sp-3);
  font-size: var(--text-sm);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.3);
}

.ticker-icon {
  background-color: rgba(255,255,255,0.2);
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--rad-sm);
  margin-right: var(--sp-3);
  font-size: var(--text-xs);
  z-index: 2;
  flex-shrink: 0;
}

.ticker-text-container {
  flex: 1;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.ticker-text-scroll {
  display: inline-block;
  animation: ticker-anim 20s linear infinite;
}

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

.ticker-item {
  font-weight: 500;
}

.divider {
  height: 6px;
  background-color: #f3f4f6;
  width: 100%;
}

/* Berita Terkini */
.berita-section {
  padding: var(--sp-4);
}

.section-title-red {
  display: inline-block;
  background-color: var(--brand-red);
  color: white;
  font-weight: 800;
  font-size: var(--text-md);
  padding: 6px var(--sp-4);
  border-radius: var(--rad-sm);
  margin-bottom: var(--sp-4);
}

.berita-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.berita-item {
  display: flex;
  gap: var(--sp-3);
  text-decoration: none;
  align-items: center;
}

.berita-img {
  width: 90px;
  height: 70px;
  border-radius: var(--rad-sm);
  object-fit: cover;
  flex-shrink: 0;
  background-color: #e5e7eb;
}

.berita-content {
  flex: 1;
}

.berita-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: #1f2937;
  line-height: 1.4;
  margin-bottom: var(--sp-1);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.berita-meta {
  font-size: var(--text-xs);
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.view-all-link {
  text-align: right;
  margin-top: var(--sp-2);
}

.view-all-link a {
  font-size: var(--text-sm);
  color: #6b7280;
  font-weight: 600;
  text-decoration: none;
}

/* Produk Terlaris */
.produk-section {
  padding: var(--sp-5) var(--sp-4);
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-4);
}

.section-title-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-red);
}

.section-title-text span {
  color: #1f2937;
}

.view-all-text {
  font-size: var(--text-sm);
  color: #6b7280;
  font-weight: 600;
  text-decoration: none;
}

.produk-scroll {
  display: flex;
  gap: var(--sp-3);
  overflow-x: auto;
  padding-bottom: var(--sp-3);
  scrollbar-width: none;
}
.produk-scroll::-webkit-scrollbar { display: none; }

.produk-card {
  min-width: 140px;
  background-color: white;
  border-radius: var(--rad-md);
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.produk-card a {
  text-decoration: none;
}

.produk-img, .produk-img-placeholder {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.produk-img-placeholder {
  background-color: #f3f4f6;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #9ca3af;
  font-size: var(--text-xl);
}

.produk-info {
  padding: var(--sp-2);
}

.produk-name {
  font-size: var(--text-base);
  font-weight: 800;
  color: #1f2937;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: var(--sp-1);
}

.produk-price {
  font-size: var(--text-sm);
  color: #4b5563;
  margin-bottom: var(--sp-2);
}

.produk-action {
  padding: 0 var(--sp-1) var(--sp-2);
}

.chat-btn {
  display: block;
  text-align: center;
  background-color: #eff6ff;
  color: var(--brand-blue);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  padding: var(--sp-1);
  border-radius: var(--rad-pill);
  border: 1px solid #bae6fd;
}

.spacer-bottom {
  height: 100px;
}

/* Bottom Nav Circular Icons */
.nav-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--sp-1);
  transition: transform 0.2s;
}

.nav-icon-circle i {
  color: inherit;
  font-size: var(--text-lg); /* Overrides existing style */
}

.nav-item.active .nav-icon-circle {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Overwrite existing bottom-nav a little */
.bottom-nav {
  /* Let it span the mobile layout container width only */
}

@media (min-width: 481px) {
  .bottom-nav {
    max-width: 480px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* === NEW REDESIGN STYLES === */
.btn-masuk-header {
  background-color: var(--brand-red);
  color: white;
  padding: 6px 12px;
  border-radius: var(--rad-pill);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
}

/* Banner */
.hero-banner-section {
  position: relative;
  background-color: #ffffff;
}
.banner-scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.banner-scroll-container::-webkit-scrollbar { display: none; }
.banner-item {
  min-width: 100%;
  height: 220px;
  position: relative;
  scroll-snap-align: center;
  border-radius: var(--rad-md);
  overflow: hidden;
}
.banner-text-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 20px 30px 20px;
  color: white;
}
.banner-text-overlay h2 {
  font-size: 24px; font-weight: 800; line-height: 1.2; margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}
.banner-text-overlay p {
  font-size: 13px; font-weight: 500; opacity: 1; margin-bottom: 16px; color: #e5e7eb;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.btn-banner-red {
  background-color: var(--brand-red);
  color: white;
  padding: 10px 20px;
  border-radius: var(--rad-pill);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  width: max-content;
  box-shadow: 0 4px 10px rgba(185, 28, 28, 0.4);
}
.banner-dots {
  display: flex; justify-content: center; gap: 6px; position: absolute; bottom: 12px; width: 100%;
}
.dot {
  width: 8px; height: 8px; background-color: rgba(255,255,255,0.5); border-radius: 50%;
}
.dot.active { background-color: white; }

/* UMKM Layer */
.umkm-layer-section { padding: 16px; background-color: #ffffff; }
.section-header-flex { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 12px; }
.section-title-wrap { display: flex; gap: 12px; align-items: center; flex: 1; min-width: 0; }
.section-title-wrap div { min-width: 0; }
.icon-box-red { width: 40px; height: 40px; background-color: #fef2f2; color: var(--brand-red); border-radius: 10px; display: flex; justify-content: center; align-items: center; font-size: 18px; }
.icon-box-red.is-outline { background-color: transparent; border: 1px solid var(--brand-red); }
.title-bold { font-size: 18px; font-weight: 800; color: #1f2937; margin-bottom: 2px; }
.subtitle-text { font-size: 12px; color: #6b7280; font-weight: 500; }
.link-lihat-semua { font-size: 13px; color: var(--brand-red); font-weight: 600; text-decoration: none; white-space: nowrap; flex-shrink: 0; margin-left: 12px; }

.filter-kategori-scroll { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; margin-bottom: 12px; }
.filter-kategori-scroll::-webkit-scrollbar { display: none; }
.filter-pill { padding: 6px 14px; background-color: #f3f4f6; color: #4b5563; border-radius: var(--rad-pill); font-size: 12px; font-weight: 600; text-decoration: none; white-space: nowrap; border: 1px solid #e5e7eb; display: flex; align-items: center; gap: 6px;}
.filter-pill.active { background-color: var(--brand-red); color: white; border-color: var(--brand-red); }

.umkm-grid-2col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 16px; }
.umkm-product-card { background: white; border-radius: 12px; border: 1px solid #e5e7eb; overflow: hidden; display: flex; flex-direction: column; }
.product-img-wrapper { position: relative; width: 100%; height: 140px; }
.product-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.badge-kategori { position: absolute; top: 8px; left: 8px; background-color: #10b981; color: white; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; }
.product-info-box { padding: 10px; flex: 1; display: flex; flex-direction: column; }
.product-title { font-size: 14px; font-weight: 700; color: #1f2937; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-owner { font-size: 11px; color: #6b7280; margin-bottom: 4px; }
.product-location { font-size: 11px; color: #6b7280; margin-bottom: 8px; }
.product-price-row { margin-top: auto; }
.price-text { font-size: 14px; font-weight: 800; color: var(--brand-red); }
.product-action-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #f3f4f6; }
.btn-icon-cart, .btn-icon-wa { display: flex; justify-content: center; align-items: center; padding: 8px; color: #4b5563; font-size: 16px; text-decoration: none; transition: background 0.2s;}
.btn-icon-wa { color: #10b981; border-left: 1px solid #f3f4f6; }

.benefit-badges-container { display: flex; gap: 8px; background-color: #f9fafb; padding: 12px; border-radius: 12px; overflow-x: auto; scrollbar-width: none; }
.benefit-item { display: flex; align-items: center; gap: 8px; min-width: 140px; }
.benefit-item h4 { font-size: 11px; font-weight: 700; color: #1f2937; margin-bottom: 2px; }
.benefit-item p { font-size: 10px; color: #6b7280; }

/* CTA Jualan */
.cta-jualan-section { padding: 0 16px 16px; }
.cta-banner-red { background: linear-gradient(135deg, #d32f2f, #991b1b); border-radius: 16px; padding: 16px; display: flex; justify-content: space-between; align-items: center; color: white; }
.cta-content { display: flex; gap: 12px; align-items: center; }
.cta-icon { background: rgba(255,255,255,0.2); width: 40px; height: 40px; border-radius: 10px; display: flex; justify-content: center; align-items: center; font-size: 20px; }
.cta-text h3 { font-size: 16px; font-weight: 800; margin-bottom: 2px; }
.cta-text p { font-size: 11px; font-weight: 500; opacity: 0.9; }
.btn-cta-white { background: white; color: var(--brand-red); font-size: 12px; font-weight: 700; padding: 8px 12px; border-radius: var(--rad-pill); text-decoration: none; white-space: nowrap; }

/* Berita Layer */
.berita-layer-section { padding: 0 16px 16px; background-color: #ffffff; }
.berita-list-container { display: flex; flex-direction: column; gap: 16px; }
.berita-list-card { display: flex; gap: 12px; text-decoration: none; }
.berita-img-wrapper { position: relative; width: 110px; height: 80px; flex-shrink: 0; border-radius: 8px; overflow: hidden; background: #f3f4f6; }
.berita-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.badge-kategori-berita { position: absolute; top: 4px; left: 4px; background-color: rgba(0,0,0,0.6); color: white; font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 4px; backdrop-filter: blur(4px); }
.berita-list-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.berita-list-title { font-size: 14px; font-weight: 700; color: #1f2937; line-height: 1.3; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.berita-list-summary { font-size: 11px; color: #6b7280; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 6px; }
.berita-list-meta { font-size: 10px; color: #9ca3af; display: flex; align-items: center; gap: 6px; }

/* Bottom Nav Fix for FAB */
.bottom-nav { 
  display: flex; justify-content: space-around; align-items: center;
  position: fixed; bottom: 0; width: 100%; background: white;
  padding: 10px 0; border-top: 1px solid #e5e7eb; z-index: 100;
}
.nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: #6b7280; font-size: 10px; font-weight: 600; gap: 4px; width: 60px;}
.nav-icon { font-size: 20px; }
.nav-item.active { color: var(--brand-red); }
.nav-item-fab-wrapper { display: flex; flex-direction: column; align-items: center; position: relative; top: -15px; width: 70px;}
.nav-fab-btn {
  background-color: var(--brand-red);
  color: white;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(185, 28, 28, 0.2);
  text-decoration: none;
  border: 4px solid white;
}
.fab-label { font-size: 10px; font-weight: 600; color: var(--brand-red); margin-top: 4px; }

/* Mobile Side Menu */
.mobile-side-menu {
  position: fixed; top: 0; left: -100%; width: 280px; height: 100vh;
  background: white; z-index: 1000; box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  transition: left 0.3s ease; display: flex; flex-direction: column;
}
.mobile-side-menu.active { left: 0 !important; }
.menu-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid #f3f4f6; }
.menu-links { list-style: none; padding: 20px; margin: 0; }
.menu-links li { margin-bottom: 16px; }
.menu-links a { text-decoration: none; font-size: 16px; color: #4b5563; font-weight: 600; display: flex; align-items: center; gap: 12px; }
.menu-links i { color: #d32f2f; width: 20px; text-align: center; font-size: 18px; }

/* === DESKTOP RESPONSIVENESS === */
@media (min-width: 768px) {
  /* Restore Desktop Header */
  .mobile-layout .header-mobile { display: none !important; }
  .mobile-layout .header-glass { display: flex !important; }
  
  /* Hide Bottom Navigation on Desktop */
  .bottom-nav { display: none !important; }
  body { padding-bottom: 0 !important; }
  .mobile-layout { padding-bottom: 40px; }
  
  /* Make content sections 1200px max and centered */
  .umkm-layer-section, .berita-layer-section, .cta-mitra-section, .cta-jualan-section, .ad-banner-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
  }

  
  /* Expand Grids */
  .umkm-grid-2col {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  
  /* Layout Berita for Desktop */
  .berita-list-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .berita-list-card {
    margin-bottom: 0;
  }
  
  /* Banner adjustments for Desktop */
  .hero-banner-section {
    max-width: 1200px;
    margin: 0 auto 24px;
    padding: 24px 24px 0 24px;
  }
  .banner-scroll-container {
    scroll-snap-type: none;
    overflow-x: hidden;
  }
  .banner-item {
    min-width: 100%;
    height: 380px; /* Taller on desktop */
    border-radius: var(--rad-lg);
  }
  .banner-text-overlay {
    left: 0;
    right: auto;
    width: 100%;
    height: 100%;
    padding-left: 40px; 
    padding-bottom: 40px;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 80%);
  }
  .banner-text-overlay::before {
    display: none;
  }
  .banner-text-overlay h2 {
    font-size: 42px;
    margin-bottom: 16px;
  }
  .banner-text-overlay p {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .banner-dots {
    display: none; /* Hide dots if it's full width static */
  }
}

@media (min-width: 1024px) {
  .umkm-grid-2col {
    grid-template-columns: repeat(5, 1fr);
  }
  .berita-list-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Footer Redesign */
.footer-section {
  background: #ffffff !important;
  color: #4b5563 !important;
  border-top: 1px solid #e5e7eb !important;
  padding: 40px 20px 100px !important;
}

.footer-heading {
  color: #111827 !important;
}

.footer-links a, .footer-social a {
  color: #6b7280 !important;
}

.footer-desc {
  color: #6b7280 !important;
}

.footer-bottom {
  border-top: 1px solid #f3f4f6 !important;
}

.footer-copyright, .footer-policy-links a {
  color: #9ca3af !important;
}

