:root {
            --bg: #fffaf4;
            --panel: #ffffff;
            --panel-soft: #fff3df;
            --primary: #f59e0b;
            --primary-dark: #d97706;
            --accent: #fb7185;
            --success: #22c55e;
            --text: #1f2937;
            --muted: #6b7280;
            --border: rgba(107, 114, 128, 0.15);
            --shadow: 0 18px 45px rgba(31, 41, 55, 0.09);
        }

        * { box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            margin: 0;
            font-family: 'Outfit', sans-serif;
            background: linear-gradient(180deg, #fffaf4 0%, #fff 35%, #fffaf4 100%);
            color: var(--text);
            line-height: 1.6;
        }

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

        a { text-decoration: none; }

        .container {
            width: min(1180px, calc(100% - 32px));
            margin: 0 auto;
        }

        .topbar {
            position: sticky;
            top: 0;
            z-index: 20;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(17, 24, 39, 0.04);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 78px;
            gap: 20px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--primary-dark);
            font-size: 0.9rem;
        }

        .brand-mark {
            width: 42px;
            height: 42px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--primary), #ffd166);
            color: white;
            display: grid;
            place-items: center;
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
            font-size: 1.1rem;
        }

        .nav-links {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 22px;
            color: var(--muted);
            font-weight: 500;
        }

        .nav-links a {
            color: inherit;
            transition: color 0.2s ease;
        }

        .nav-links a:hover { color: var(--primary-dark); }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 22px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--primary), #fbbf24);
            color: white;
            font-weight: 700;
            box-shadow: 0 12px 28px rgba(245, 158, 11, 0.25);
        }

        .hero {
            padding: 56px 0 32px;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            align-items: center;
            gap: 38px;
        }

        .eyebrow {
            display: inline-flex;
            padding: 9px 16px;
            border-radius: 999px;
            background: rgba(245, 158, 11, 0.1);
            color: var(--primary-dark);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        h1 {
            margin: 0;
            font-size: clamp(2.6rem, 5vw, 4.7rem);
            line-height: 1.02;
            letter-spacing: -0.04em;
            color: var(--text);
        }

        h1 .highlight {
            color: var(--primary-dark);
        }

        .hero p {
            margin: 20px 0 28px;
            max-width: 620px;
            color: var(--muted);
            font-size: 1.08rem;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 30px;
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border-radius: 14px;
            padding: 15px 22px;
            font-weight: 700;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .button:hover {
            transform: translateY(-2px);
        }

        .button-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            box-shadow: 0 14px 30px rgba(245, 158, 11, 0.25);
        }

        .button-secondary {
            border: 1px solid var(--border);
            background: rgba(255,255,255,0.8);
            color: var(--text);
        }

        .mini-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .mini-stat {
            min-width: 150px;
            padding: 14px 18px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }

        .mini-stat strong {
            display: block;
            font-size: 1.4rem;
            color: var(--primary-dark);
        }

        .mini-stat span {
            color: var(--muted);
            font-size: 0.9rem;
        }

        .hero-visual {
            position: relative;
            display: grid;
            place-items: center;
        }

        .visual-card {
            width: min(100%, 440px);
            background: linear-gradient(135deg, #fffaf4, #fff0dc 48%, #ffe7c4 100%);
            border: 1px solid rgba(245,158,11,0.15);
            border-radius: 32px;
            padding: 22px;
            box-shadow: 0 24px 55px rgba(215, 119, 6, 0.12);
            position: relative;
            overflow: hidden;
        }

        .visual-card::before,
        .visual-card::after {
            content: "";
            position: absolute;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(255, 209, 102, 0.2);
            filter: blur(20px);
        }

        .visual-card::before { top: -32px; right: 5px; }
        .visual-card::after { bottom: -48px; left: -18px; }

        .product-box {
            position: relative;
            z-index: 1;
            background: rgba(255,255,255,0.65);
            border: 1px solid rgba(255,255,255,0.7);
            border-radius: 28px;
            padding: 24px 22px 18px;
        }

        .product-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 18px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(34, 197, 94, 0.12);
            color: #15803d;
            font-size: 0.72rem;
            font-weight: 700;
        }

        .dish {
            display: block;
            width: 100%;
            min-height: 260px;
            height: 320px;
            border-radius: 20px;
            background: linear-gradient(135deg, #fff5db 0%, #ffdf9a 100%);
            margin-bottom: 18px;
            overflow: hidden;
            border: 1px solid rgba(245, 158, 11, 0.12);
        }

        .dish img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            filter: drop-shadow(0 18px 22px rgba(120, 53, 15, 0.2));
        }

        .flavor-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 18px;
        }

        .flavor-pill {
            display: inline-flex;
            align-items: center;
            padding: 7px 12px;
            border: 1px solid rgba(107,114,128,0.2);
            background: rgba(255,255,255,0.85);
            border-radius: 999px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--muted);
        }

        .product-price {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding-top: 8px;
            border-top: 1px solid rgba(107, 114, 128, 0.12);
        }

        .price-label {
            color: var(--muted);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.07em;
        }

        .price-value {
            font-size: clamp(1.6rem, 3vw, 2.3rem);
            font-weight: 800;
            color: var(--primary-dark);
        }

        section {
            padding: 36px 0;
        }

        .section-header {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 28px;
        }

        .section-header h2 {
            margin: 0;
            font-size: clamp(2rem, 4vw, 2.8rem);
            letter-spacing: -0.04em;
        }

        .section-header p {
            margin: 6px 0 0;
            color: var(--muted);
        }

        .filters {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .filter-chip {
            border: 1px solid rgba(107,114,128,0.2);
            background: rgba(255,255,255,0.8);
            color: var(--text);
            border-radius: 999px;
            padding: 10px 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .filter-chip.active {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border-color: transparent;
            box-shadow: 0 12px 25px rgba(245, 158, 11, 0.22);
        }

        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 18px;
        }

        .catalog-card {
            position: relative;
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 18px 16px 16px;
            box-shadow: var(--shadow);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .catalog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 24px 40px rgba(31, 41, 55, 0.12);
        }

        .catalog-card.highlight {
            border-color: rgba(245, 158, 11, 0.25);
            background: linear-gradient(180deg, #fffdf9 0%, #fff8ee 100%);
        }

        .catalog-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }

        .catalog-badge {
            background: rgba(245, 158, 11, 0.1);
            color: var(--primary-dark);
            font-size: 0.75rem;
            font-weight: 800;
            padding: 7px 10px;
            border-radius: 999px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .catalog-illustration {
            height: 160px;
            display: grid;
            place-items: center;
            border-radius: 18px;
            background: linear-gradient(135deg, #fff1d2, #ffd98a);
            margin-bottom: 16px;
            overflow: hidden;
        }

        .catalog-illustration svg {
            width: 84px;
            height: 84px;
        }

        .product-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .catalog-card h3 {
            margin: 0 0 6px;
            font-size: 1.5rem;
            letter-spacing: -0.03em;
        }

        .catalog-card .small {
            color: var(--muted);
            font-size: 0.92rem;
            margin-bottom: 12px;
        }

        .price-tag {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 8px;
            margin-top: 10px;
        }

        .price-tag strong {
            font-size: 1.7rem;
            color: var(--primary-dark);
            line-height: 1;
        }

        .price-tag span {
            color: var(--muted);
            font-size: 0.82rem;
        }

        .size-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 12px;
        }

        .size-item {
            padding: 6px 9px;
            border-radius: 999px;
            background: #fff7eb;
            border: 1px solid rgba(245, 158, 11, 0.12);
            color: var(--primary-dark);
            font-size: 0.75rem;
            font-weight: 700;
        }

        .size-button {
            border: 1px solid rgba(245, 158, 11, 0.22);
            background: #fff9f1;
            color: var(--primary-dark);
            border-radius: 999px;
            padding: 8px 12px;
            font-size: 0.78rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .size-button.active {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border-color: transparent;
            box-shadow: 0 10px 18px rgba(245, 158, 11, 0.18);
        }

        .card-actions {
            margin-top: 18px;
            width: 100%;
            gap: 8px;
        }

        /* Jika Telegram aktif: WA, Shopee, Telegram turun ke bawah satu-satu */
        .card-actions.has-telegram {
            display: flex;
            flex-direction: column;
        }

        .card-actions.has-telegram .action-btn {
            width: 100%;
            flex: none;
        }

        /* Jika Telegram tidak aktif: WA + Shopee tetap sejajar */
        .card-actions.no-telegram {
            display: flex;
            flex-direction: row;
        }

        .card-actions.no-telegram .action-btn {
            flex: 1 1 0;
            min-width: 0;
        }

        .action-btn {
            min-height: 42px;
            padding: 10px 10px;
            border-radius: 12px;
            border: none;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: center;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .wa-btn {
            background: linear-gradient(135deg, #25D366, #1ebe5d);
            color: white;
            box-shadow: 0 10px 18px rgba(37, 211, 102, 0.18);
        }

        .wa-btn:hover {
            transform: translateY(-1px);
        }

        .shopee-btn {
            background: linear-gradient(135deg, #ff6b3d, #ee4d2d);
            color: white;
            box-shadow: 0 10px 18px rgba(238, 77, 45, 0.18);
        }

        .shopee-btn:hover {
            transform: translateY(-1px);
        }

        .benefits {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
            margin-top: 18px;
        }

        .benefit-card {
            background: rgba(255,255,255,0.82);
            border: 1px solid var(--border);
            border-radius: 22px;
            padding: 24px 20px;
            box-shadow: var(--shadow);
        }

        .benefit-icon {
            width: 52px;
            height: 52px;
            display: grid;
            place-items: center;
            border-radius: 14px;
            background: linear-gradient(135deg, #ffedd5, #fde68a);
            font-size: 1.6rem;
            margin-bottom: 12px;
        }

        .benefit-card h3 {
            margin: 0 0 8px;
            font-size: 1.2rem;
        }

        .benefit-card p {
            margin: 0;
            color: var(--muted);
        }

        .cta-banner {
            margin: 32px 0 48px;
            background: linear-gradient(135deg, #1f2937 0%, #35251d 100%);
            color: white;
            border-radius: 28px;
            padding: 32px 26px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            box-shadow: 0 22px 42px rgba(31,41,55,0.2);
        }

        .cta-banner h3 {
            margin: 0 0 6px;
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            letter-spacing: -0.04em;
        }

        .cta-banner p {
            margin: 0;
            color: rgba(255,255,255,0.78);
        }

        footer {
            padding: 0 0 26px;
            text-align: center;
            color: var(--muted);
            font-size: 0.94rem;
        }

        @media (max-width: 980px) {
            .hero-inner,
            .benefits,
            .catalog-grid {
                grid-template-columns: 1fr 1fr;
            }

            .hero-inner {
                grid-template-columns: 1fr;
            }

            .catalog-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .nav {
                flex-wrap: wrap;
                justify-content: center;
                padding: 16px 0;
            }

            .nav-links {
                justify-content: center;
                gap: 12px 16px;
                font-size: 0.92rem;
            }

            .section-header,
            .cta-banner {
                flex-direction: column;
                align-items: flex-start;
            }

            .catalog-grid,
            .benefits {
                grid-template-columns: 1fr;
            }
        }

/* Native catalog additions */
[hidden]{display:none!important}.telegram-btn{background:linear-gradient(135deg,#229ED9,#168bd0);color:#fff;box-shadow:0 10px 18px rgba(34,158,217,.18)}.telegram-btn:hover{transform:translateY(-1px)}.empty-state{grid-column:1/-1;text-align:center;padding:34px;border:1px dashed var(--border);border-radius:22px;color:var(--muted);background:rgba(255,255,255,.7)}.hero .dish .image-placeholder,.catalog-illustration .image-placeholder{width:100%;height:100%;display:grid;place-items:center;font-size:4rem}.muted-bold{color:var(--muted);font-weight:700}.small-muted{font-size:.8rem;color:var(--muted)}

/* =========================================================
   FIX CARD DESKTOP - BUTTON ORDER + PRODUCT IMAGE
   Telegram aktif  : WA / Shopee / Telegram vertikal
   Telegram nonaktif: WA + Shopee sejajar
========================================================= */
.catalog-card {
    min-width: 0;
    overflow: hidden;
}

.catalog-illustration,
.catalog-illustration.product-photo-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    min-height: 0;
}

.catalog-illustration .product-photo,
.catalog-illustration.product-photo-wrap .product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-actions,
.card-actions.has-telegram,
.card-actions.no-telegram {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.card-actions.has-telegram {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 8px !important;
}

.card-actions.has-telegram .action-btn {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
    box-sizing: border-box !important;
}

.card-actions.no-telegram {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
}

.card-actions.no-telegram .action-btn {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

/* Sedikit lebih lega di desktop agar gambar/card tidak terlihat sempit. */
@media (min-width: 981px) {
    .catalog-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .catalog-illustration,
    .catalog-illustration.product-photo-wrap {
        aspect-ratio: 4 / 3;
    }
}
