.filter-wrap { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn { padding: 8px 18px; border-radius: 20px; border: 2px solid #ddd; background: white; color: #555; text-decoration: none; font-size: 0.875rem; font-weight: 600; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { border-color: var(--hijau); background: var(--hijau); color: white; }

.umkm-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 24px; }
.umkm-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.08); transition: transform 0.2s; }
.umkm-card:hover { transform: translateY(-4px); }
.umkm-img-wrap { display: block; }
.umkm-img-wrap img { width: 100%; height: 200px; object-fit: cover; }
.umkm-no-img { width: 100%; height: 200px; background: linear-gradient(135deg, #fff8e1, #ffecb3); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.umkm-body { padding: 16px; }
.umkm-body h3 { margin: 8px 0 6px; font-size: 1rem; }
.umkm-body h3 a { color: var(--teks); text-decoration: none; }
.umkm-body h3 a:hover { color: var(--hijau); }
.umkm-body .pemilik { font-size: 0.82rem; color: #888; margin-bottom: 4px; }
.umkm-body .harga { font-size: 0.9rem; font-weight: 700; color: var(--hijau); margin-bottom: 10px; }
.btn-wa { display: inline-flex; align-items: center; gap: 6px; background: #25d366; color: white; padding: 7px 14px; border-radius: 8px; font-size: 0.82rem; font-weight: 600; text-decoration: none; }
.btn-wa:hover { background: #128c7e; }

.umkm-detail-layout { display: grid; grid-template-columns: 1fr 350px; gap: 32px; }
.content-card { background: white; border-radius: 12px; padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.content-card h2 { font-size: 1.1rem; color: var(--hijau); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid #e8f5e9; }
.related-umkm { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid #f0f0f0; text-decoration: none; color: var(--teks); }
.related-umkm img { width: 50px; height: 50px; object-fit: cover; border-radius: 8px; }
.related-umkm:hover { color: var(--hijau); }

@media (max-width: 768px) {
    .umkm-detail-layout { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, #005580 0%, #0077b6 50%, #00a8e8 100%);
    color: white;
    padding: 70px 20px 50px;
    text-align: center;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(245,166,35,0.12) 0%, transparent 45%);
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40px;
    background: white;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: scale(1.3);
}
.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.page-hero-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--kuning);
    margin-bottom: 16px;
    backdrop-filter: blur(6px);
}
.page-hero h1 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.page-hero p {
    opacity: 0.85;
    font-size: 1rem;
    line-height: 1.6;
}
.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
}
.page-hero-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}
.page-hero-breadcrumb a:hover { color: var(--kuning); }

@media (max-width: 768px) {
    .page-hero { padding: 56px 20px 40px; }
    .page-hero h1 { font-size: 1.5rem; }
    .page-hero p { font-size: 0.875rem; }
}