
        /* ── PAGE HEADER ── */
        .page-header {
            background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
            padding: 120px 24px 56px;
            position: relative;
            overflow: hidden;
        }
        .page-header::before {
            content: ''; position: absolute;
            top: -60px; right: -60px;
            width: 320px; height: 320px;
            background: rgba(243,190,122,0.12);
            border-radius: 50%;
        }
        .page-header::after {
            content: ''; position: absolute;
            bottom: -80px; left: 10%;
            width: 200px; height: 200px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }
        .page-header-inner {
            max-width: 1200px;
            margin: 0 auto;
            position: relative; z-index: 1;
        }
        .breadcrumb {
            display: flex; align-items: center; gap: 8px;
            margin-bottom: 20px; font-size: 13px;
        }
        .breadcrumb a {
            color: rgba(255,255,255,0.7);
            text-decoration: none; transition: color 0.2s;
        }
        .breadcrumb a:hover { color: var(--yellow); }
        .breadcrumb-sep { color: rgba(255,255,255,0.4); }
        .breadcrumb-current { color: var(--yellow); font-weight: 600; }
        .page-header h1 {
            font-size: clamp(28px, 4vw, 44px);
            font-weight: 800; color: var(--white);
            margin-bottom: 12px; letter-spacing: -0.5px;
        }
        .page-header h1 span {
            color: var(--yellow);
            font-family: 'Lora', serif; font-style: italic;
        }
        .page-header p {
            color: rgba(255,255,255,0.8);
            font-size: 16px; max-width: 520px;
            line-height: 1.7; margin-bottom: 32px;
        }
        .header-stats { display: flex; gap: 32px; flex-wrap: wrap; }
        .header-stat { text-align: center; }
        .header-stat-num {
            font-size: 28px; font-weight: 800;
            color: var(--yellow); line-height: 1;
        }
        .header-stat-label {
            font-size: 12px; color: rgba(255,255,255,0.7);
            margin-top: 4px; font-weight: 500;
        }

        /* ── TOOLBAR ── */
        .toolbar {
            background: var(--white);
            border-bottom: 1px solid #e8ecf8;
            padding: 20px 24px;
            position: sticky; top: 68px; z-index: 90;
            box-shadow: 0 2px 12px rgba(56,82,180,0.06);
        }
        .toolbar-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
        }
        .search-wrap {
            flex: 1; min-width: 220px; position: relative;
        }
        .search-wrap input {
            width: 100%;
            padding: 11px 20px 11px 46px;
            border: 2px solid #dde3f5;
            border-radius: 12px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 14px; color: var(--dark);
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
            background: var(--bg);
        }
        .search-wrap input:focus {
            border-color: var(--navy);
            box-shadow: 0 0 0 4px rgba(56,82,180,0.1);
            background: var(--white);
        }
        .search-wrap .search-icon {
            position: absolute; left: 14px; top: 50%;
            transform: translateY(-50%);
            font-size: 18px; pointer-events: none;
        }
        .filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
        .chip {
            padding: 8px 16px; border-radius: 24px;
            border: 2px solid #dde3f5;
            background: var(--white);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 13px; font-weight: 600;
            color: var(--gray);
            cursor: pointer; transition: all 0.2s; white-space: nowrap;
        }
        .chip:hover { border-color: var(--navy); color: var(--navy); background: var(--light); }
        .chip.active {
            background: linear-gradient(135deg, var(--navy), var(--blue));
            border-color: transparent; color: white;
            box-shadow: 0 4px 12px rgba(56,82,180,0.3);
        }
        .sort-select {
            padding: 10px 36px 10px 14px;
            border: 2px solid #dde3f5; border-radius: 12px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 13px; font-weight: 600; color: var(--gray);
            outline: none; cursor: pointer; appearance: none;
            background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a5068' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 12px center;
            transition: border-color 0.2s;
        }
        .sort-select:focus { border-color: var(--navy); }
        .result-count {
            margin-left: auto; font-size: 13px;
            color: var(--gray); font-weight: 500; white-space: nowrap;
        }
        .result-count strong { color: var(--navy); }

        .wilayah-select {
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

        /* ── MAIN ── */
        .main-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 36px 24px 64px;
        }
        .umkm-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 24px;
        }

        /* ── UMKM CARD ── */
        .card-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}
        .umkm-card {
            background: var(--white);
            border-radius: 18px; overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: transform 0.3s cubic-bezier(.25,.8,.25,1), box-shadow 0.3s;
            cursor: pointer;
            display: flex; flex-direction: column;
            border: 1px solid rgba(56,82,180,0.07);
            animation: fadeUp 0.5s ease both;
        }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .umkm-card:nth-child(1)  { animation-delay:.05s; }
        .umkm-card:nth-child(2)  { animation-delay:.08s; }
        .umkm-card:nth-child(3)  { animation-delay:.11s; }
        .umkm-card:nth-child(4)  { animation-delay:.14s; }
        .umkm-card:nth-child(5)  { animation-delay:.17s; }
        .umkm-card:nth-child(6)  { animation-delay:.20s; }
        .umkm-card:nth-child(7)  { animation-delay:.23s; }
        .umkm-card:nth-child(8)  { animation-delay:.26s; }
        .umkm-card:nth-child(9)  { animation-delay:.29s; }
        .umkm-card:nth-child(10) { animation-delay:.32s; }
        .umkm-card:nth-child(11) { animation-delay:.35s; }
        .umkm-card:nth-child(12) { animation-delay:.38s; }
        .umkm-card:nth-child(13) { animation-delay:.41s; }
        .umkm-card:nth-child(14) { animation-delay:.44s; }
        .umkm-card:nth-child(15) { animation-delay:.47s; }
        .umkm-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }

        .card-thumb {
            width: 100%; height: 190px;
            display: flex; align-items: center; justify-content: center;
            font-size: 72px; position: relative; overflow: hidden; flex-shrink: 0;
        }
        .card-thumb-emoji {
            position: relative; z-index: 1;
            filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
            transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
        }
        .umkm-card:hover .card-thumb-emoji { transform: scale(1.15) rotate(-5deg); }
        .card-badge {
            position: absolute; top: 14px; left: 14px;
            padding: 5px 12px; border-radius: 20px;
            font-size: 11px; font-weight: 700;
            letter-spacing: 0.5px; text-transform: uppercase;
            z-index: 2; backdrop-filter: blur(8px);
        }
        .badge-makanan { background: rgba(240,141,57,0.95); color: white; }
        .badge-minuman { background: rgba(56,82,180,0.95);  color: white; }
        .badge-jasa    { background: rgba(94,122,196,0.95); color: white; }
        .badge-alat    { background: rgba(243,190,122,0.95); color: var(--navy); }
        .badge-wilayah { background: rgba(255,255,255,0.95); color: var(--navy); }
        .card-verified {
            position: absolute; top: 14px; right: 14px;
            width: 30px; height: 30px;
            background: var(--white); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 16px; z-index: 2;
            box-shadow: 0 2px 8px rgba(0,0,0,0.12);
        }
        .card-body {
            padding: 22px 22px 18px;
            flex: 1; display: flex; flex-direction: column;
        }
        .card-top {
            display: flex; justify-content: space-between;
            align-items: flex-start; gap: 10px; margin-bottom: 8px;
        }
        .card-name { font-size: 17px; font-weight: 800; color: var(--dark); line-height: 1.3; }
        
        .card-location {
            display: flex; align-items: center; gap: 5px;
            color: var(--gray); font-size: 13px; margin-bottom: 10px;
        }
        .card-desc {
            color: #4a5068; font-size: 13.5px; line-height: 1.65;
            flex: 1; margin-bottom: 18px;
            display: -webkit-box;
            -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
        }
        .card-footer {
            display: flex; align-items: center; gap: 10px;
            padding-top: 16px; border-top: 1px solid #f0f2fb;
        }
        .card-products { font-size: 12px; color: var(--gray); font-weight: 500; }

        /* ✅ Tombol detail → link ke detail-umkm.html */
        .btn-detail {
            margin-left: auto;
            background: linear-gradient(135deg, var(--navy), var(--blue));
            color: white; border: none;
            padding: 9px 20px; border-radius: 10px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 13px; font-weight: 700;
            cursor: pointer; transition: all 0.2s;
            box-shadow: 0 4px 12px rgba(56,82,180,0.25);
            text-decoration: none;
            display: inline-flex; align-items: center; gap: 5px;
        }
        .btn-detail:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 18px rgba(56,82,180,0.35);
            background: linear-gradient(135deg, #2d44a0, var(--navy));
        }

        /* No Result */
        .no-result {
            display: none; grid-column: 1 / -1;
            text-align: center; padding: 80px 24px;
        }
        .no-result-emoji { font-size: 64px; margin-bottom: 16px; }
        .no-result h3 { font-size: 20px; color: var(--dark); margin-bottom: 8px; font-weight: 700; }
        .no-result p  { color: var(--gray); font-size: 14px; }

        /* Pagination */
        .pagination-wrap {
            margin-top: 48px;
            display: flex; justify-content: center; align-items: center; gap: 8px;
        }
        .page-btn {
            width: 40px; height: 40px; border-radius: 10px;
            border: 2px solid #dde3f5; background: var(--white);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 14px; font-weight: 700; color: var(--gray);
            cursor: pointer; display: flex; align-items: center; justify-content: center;
            transition: all 0.2s;
        }
        .page-btn:hover { border-color: var(--navy); color: var(--navy); }
        .page-btn.active {
            background: linear-gradient(135deg, var(--navy), var(--blue));
            border-color: transparent; color: white;
            box-shadow: 0 4px 12px rgba(56,82,180,0.3);
        }
        .page-btn.arrow { font-size: 18px; }

        /* ── MODAL ── */
        .modal-overlay {
            display: none; position: fixed; inset: 0;
            background: rgba(10,14,40,0.65);
            z-index: 1000; backdrop-filter: blur(4px);
            align-items: center; justify-content: center;
            padding: 20px; overflow-y: auto;
        }
        .modal-overlay.open { display: flex; }
        .modal-box {
            background: var(--white); border-radius: 22px;
            max-width: 860px; width: 100%; overflow: hidden;
            position: relative;
            animation: modalIn 0.35s cubic-bezier(.34,1.56,.64,1) both;
        }
        @keyframes modalIn {
            from { opacity: 0; transform: scale(0.9) translateY(30px); }
            to   { opacity: 1; transform: scale(1) translateY(0); }
        }
        .modal-head {
            padding: 32px 32px 28px;
            position: relative; color: white;
        }
        .modal-close {
            position: absolute; top: 20px; right: 20px;
            width: 36px; height: 36px; border-radius: 50%;
            background: rgba(255,255,255,0.2);
            border: none; color: white; font-size: 20px;
            cursor: pointer; display: flex; align-items: center; justify-content: center;
            transition: background 0.2s;
        }
        .modal-close:hover { background: rgba(255,255,255,0.35); }
        .modal-head-badge {
            display: inline-block; padding: 4px 14px; border-radius: 20px;
            background: rgba(255,255,255,0.2); font-size: 12px;
            font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
            margin-bottom: 12px;
        }
        .modal-head h2 { font-size: 26px; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.3px; }
        .modal-head p  { opacity: 0.85; font-size: 14px; }
        .modal-body {
            padding: 32px; max-height: 60vh; overflow-y: auto;
        }
        .modal-section { margin-bottom: 28px; }
        .modal-section:last-child { margin-bottom: 0; }
        .modal-section-title {
            font-size: 15px; font-weight: 800; color: var(--navy);
            margin-bottom: 14px; display: flex; align-items: center;
            gap: 8px; text-transform: uppercase; letter-spacing: 0.4px;
        }
        .modal-section-title::after { content: ''; flex: 1; height: 1px; background: #e8ecf8; }
        .modal-desc { color: var(--gray); font-size: 14.5px; line-height: 1.8; }
        .modal-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
        .modal-info-item {
            background: var(--bg); padding: 14px 16px;
            border-radius: 12px; display: flex; align-items: center; gap: 12px;
        }
        .modal-info-icon {
            width: 36px; height: 36px;
            background: linear-gradient(135deg, var(--navy), var(--blue));
            border-radius: 10px; display: flex; align-items: center;
            justify-content: center; font-size: 16px; flex-shrink: 0;
        }
        .modal-info-label { font-size: 11px; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 3px; }
        .modal-info-value { font-size: 14px; font-weight: 700; color: var(--dark); }
        .product-list { display: flex; flex-direction: column; gap: 12px; }
        .product-item {
            display: flex; gap: 14px; align-items: flex-start;
            background: var(--bg); padding: 14px; border-radius: 12px;
            transition: background 0.2s;
        }
        .product-item:hover { background: var(--light); }
        .product-icon {
            width: 54px; height: 54px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 28px; flex-shrink: 0;
        }
        .product-name  { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
        .product-price { font-size: 14px; font-weight: 800; color: var(--orange); margin-bottom: 6px; }
        .product-desc  { font-size: 13px; color: var(--gray); line-height: 1.6; }
        .social-row { display: flex; flex-wrap: wrap; gap: 10px; }
        .social-pill {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 9px 18px; border-radius: 24px;
            font-size: 13px; font-weight: 700; text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .social-pill:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.15); }
        .s-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: white; }
        .s-fb { background: #1877F2; color: white; }
        .s-wa { background: #25D366; color: white; }
        .s-tt { background: #010101; color: white; }

        /* ✅ Tombol aksi di modal */
        .modal-action-row {
            display: flex; gap: 12px; flex-wrap: wrap;
            margin-top: 24px; padding-top: 22px;
            border-top: 2px solid var(--light);
        }
        .modal-action-row a {
            flex: 1; display: inline-flex;
            align-items: center; justify-content: center;
            gap: 8px; padding: 13px 20px; border-radius: 12px;
            font-weight: 700; font-size: 14px;
            text-decoration: none; transition: all .25s;
            min-width: 140px;
        }
        .mac-detail {
            background: linear-gradient(135deg, var(--navy), var(--blue));
            color: white; box-shadow: 0 4px 14px rgba(56,82,180,.3);
        }
        .mac-detail:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(56,82,180,.4); }
        .mac-register {
            background: linear-gradient(135deg, var(--orange), var(--yellow));
            color: var(--dark); box-shadow: 0 4px 14px rgba(240,141,57,.3);
        }
        .mac-register:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(240,141,57,.4); }

        /* ================= MOBILE UMKM PAGE ================= */
@media (max-width:768px){

/* HEADER */
.page-header{
    padding:100px 18px 45px;
    text-align:center;
}

.page-header h1{
    font-size:30px;
}

.page-header p{
    font-size:14px;
    margin:auto;
}

.breadcrumb{
    justify-content:center;
}

.header-stats{
    justify-content:center;
    gap:20px;
}


/* TOOLBAR */
.toolbar{
    padding:14px;
}

.toolbar-inner{
    flex-direction:column;
    align-items:stretch;
}

.search-wrap{
    width:100%;
}

.filter-chips{
    justify-content:center;
}

.chip{
    padding:8px 12px;
    font-size:12px;
}

.wilayah-select{
    width:100%;
}

.result-count{
    margin:auto;
}


/* GRID CARD */
.main-wrap{
    padding:25px 16px 60px;
}

.umkm-grid{
    grid-template-columns:1fr;
    gap:18px;
}

.card-thumb{
    height:200px;
}

.card-body{
    padding:18px;
}

.card-name{
    font-size:16px;
}

.card-desc{
    font-size:13px;
}

.btn-detail{
    width:100%;
    justify-content:center;
}


/* MODAL */
.modal-box{
    width:100%;
}

.modal-head,
.modal-body{
    padding:22px;
}

.modal-info-grid{
    grid-template-columns:1fr;
}

.modal-action-row{
    flex-direction:column;
}

.modal-action-row a{
    width:100%;
}

}