@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

        /* Hide swiper dots globally */
        .swiper-pagination { display: none !important; }

        /* =========================================
        1. PENGATURAN DASAR & FONT
        ========================================= */
        body, input, textarea, button, select {
            font-family: 'Poppins', sans-serif;
        }
        body {
            background-color: #0f172a; /* Slate-900 */
            color: #d1d5db; /* Gray-300 */
            margin: 0;
            padding-bottom: 5rem; /* Ruang untuk Footer Nav */
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden; /* Mencegah scroll samping tidak sengaja */
        }

        :root {
            --color-primary: #dc2626;
            --color-primary-hover: #b91c1c;
        }

        /* =========================================
        2. LAYOUT UTAMA (CANVAS TENGAH)
        ========================================= */
        /* Mobile First: Default tampilan memenuhi layar */
        .main-canvas {
            width: 100%;
            min-height: 100vh;
            background-color: #0f172a;
            margin: 0 auto;
            position: relative;
        }

        /* Tampilan PC/Tablet: Batasi lebar agar seperti Aplikasi */
        @media (min-width: 768px) {
            .main-canvas {
                max-width: 688px; /* Lebar ideal mode aplikasi di PC */
                margin-left: auto;
                margin-right: auto;
                box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
                border-left: 1px solid #1e293b;
                border-right: 1px solid #1e293b;
            }
            
            /* Footer Nav menyesuaikan lebar canvas di PC */
            .footer-nav {
                max-width: 688px;
                margin: 0 auto;
                left: 0;
                right: 0;
            }

            /* Notifikasi Toast menyesuaikan posisi di PC */
            #toast-notification {
                right: calc((100vw - 688px) / 2 + 1.25rem) !important;
            }
        }

        /* =========================================
        3. TOP SEARCH BAR (FIXED)
        ========================================= */
        /* DEFAULT: Hilang di Mobile (Agar tidak mengganggu) */
        .top-search-bar {
            display: none !important;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 60;
            background-color: #1e293b;
            border-bottom: 1px solid #334155;
            max-height: 100vh;
            overflow-y: auto;
        }

        /* PC ONLY: Munculkan Search Bar hanya di layar lebar */
        @media (min-width: 768px) {
            .top-search-bar {
                display: block !important;
                transform: translateY(-100%);
                transition: transform 0.3s ease-in-out;
            }
            .top-search-bar.active {
                transform: translateY(0);
            }
        }

        /* =========================================
        4. BANNER & SLIDER
        ========================================= */
        /* Placeholder Banner agar tidak layout shift */
        #main-banner-container {
            width: 100%;
            aspect-ratio: 3/1 !important; /* Rasio Lebar:Tinggi */
            height: auto !important;
            background-color: #1e293b;
        }
        #main-banner-container .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0.75rem;
        }
        .swiper-banner .swiper-pagination {
            bottom: 10px !important;
        }
        .swiper-banner .swiper-pagination-bullet {
            background-color: transparent !important;
            border: 1px solid white;
            opacity: 0.7;
        }
        .swiper-banner .swiper-pagination-bullet-active {
            background-color: white !important;
            opacity: 1;
        }

        /* =========================================
        5. FLASH SALE (CARD & LAYOUT)
        ========================================= */
        /* Container Flash Sale Premium - running banner */
        .flash-sale-section-glow {
            position: relative;
            padding: 14px 12px 16px;
            border-radius: 22px;
            color: #f8fafc;
            border: 1px solid rgba(248, 113, 113, 0.95);
            background:
                radial-gradient(circle at 18% 12%, rgba(248,113,113,.20), transparent 28%),
                radial-gradient(circle at 92% 82%, rgba(250,204,21,.12), transparent 26%),
                linear-gradient(145deg, rgba(15,23,42,.98), rgba(69,10,10,.50));
            box-shadow: 0 0 18px rgba(220, 38, 38, 0.55), 0 20px 52px rgba(127,29,29,.30), inset 0 1px 0 rgba(255,255,255,.10);
            overflow: hidden;
            animation: pulse-red-glow 2.8s infinite alternate;
        }
        .flash-sale-section-glow::before {
            display: none !important;
        }
        @keyframes pulse-red-glow {
            0% { box-shadow: 0 0 15px rgba(220, 38, 38, 0.42), 0 16px 42px rgba(127,29,29,.24), inset 0 1px 0 rgba(255,255,255,.08); }
            100% { box-shadow: 0 0 26px rgba(220, 38, 38, 0.72), 0 22px 58px rgba(127,29,29,.38), inset 0 1px 0 rgba(255,255,255,.12); }
        }
        @keyframes fsPanelShine { 0%, 30% { transform: translateX(-120%); } 70%, 100% { transform: translateX(120%); } }

        /* Ukuran Slide Flash Sale */
        .swiper-flash-sale {
            width: 100%;
            overflow: hidden !important;
            padding: 4px 0 2px;
        }
        .swiper-flash-sale .swiper-slide {
            width: 260px !important;
            height: auto !important;
            margin-right: 12px !important;
        }
        @media (min-width: 768px) {
            .swiper-flash-sale .swiper-slide { width: 260px !important; }
        }
        .swiper-flash-sale .swiper-wrapper {
            transition-timing-function: linear !important;
            align-items: stretch;
        }

        /* Kartu Flash Sale */
        .fs-card-side {
            background: linear-gradient(180deg, #ffffff 0%, #fff7f7 100%);
            border-radius: 16px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(254, 202, 202, .95);
            box-shadow: 0 12px 26px rgba(2,6,23,.22), inset 0 1px 0 rgba(255,255,255,.9);
            position: relative;
            height: 118px;
            cursor: pointer;
        }
        .fs-card-side::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.50), transparent 62%);
            transform: translateX(-130%);
            animation: fsCardShine 3.2s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes fsCardShine { 0%, 45% { transform: translateX(-130%); } 100% { transform: translateX(130%); } }
        .fs-upper { display: flex; flex-direction: row; height: 88px; position: relative; min-width: 0; }
        .fs-side-img { width: 92px; height: 88px; flex-shrink: 0; position: relative; background: #e5e7eb; overflow: hidden; }
        .fs-side-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .fs-side-img::before { content: none; display: none; }
        .fs-side-badge { position: absolute; top: 6px; left: 6px; background: linear-gradient(135deg,#ef4444,#991b1b); color: white; font-size: 0.62rem; font-weight: 800; padding: 3px 7px; border-radius: 999px; z-index: 10; box-shadow: 0 6px 12px rgba(220,38,38,.28); }
        .fs-side-content { padding: 10px 42px 8px 10px; display: flex; flex-direction: column; justify-content: center; flex-grow: 1; min-width: 0; }
        .fs-side-title { font-size: 0.82rem; font-weight: 900; line-height: 1.18; color: #0f172a; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 5px; text-transform: uppercase; }
        .fs-side-ori { font-size: 0.68rem; color: #94a3b8; text-decoration: line-through; line-height: 1; }
        .fs-side-price { font-size: 1.02rem; font-weight: 950; color: #dc2626; line-height: 1.1; letter-spacing: -0.02em; }
        .fs-discount-percent { display: inline-flex; align-items: center; width: fit-content; border-radius: 999px; background: #ffffff; color: #dc2626; border: 1px solid rgba(254,202,202,.95); padding: 2px 7px; font-size: .6rem; font-weight: 950; line-height: 1; text-shadow:none; box-shadow:0 4px 12px rgba(127,29,29,.2); }
        .fs-hemat-bar { background: linear-gradient(90deg, #7f1d1d, #dc2626, #ef4444, #991b1b); color: #ffffff; font-size: 0.7rem; font-weight: 900; text-align: center; padding: 7px 8px; width: 100%; letter-spacing: 0.3px; margin-top: auto; text-shadow: 0 1px 3px rgba(0,0,0,.25); display:flex; align-items:center; justify-content:center; gap:7px; }
        
        /* Tombol (+) Flash Sale */
        .fs-side-btn {
            position: absolute;
            top: 50%;
            right: 10px;
            transform: translateY(-50%);
            width: 34px;
            height: 34px;
            background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.40), transparent 20%), linear-gradient(145deg,#ef4444,#b91c1c);
            color: #ffffff;
            border-radius: 50%;
            border: 2px solid white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.92rem;
            cursor: pointer;
            z-index: 20;
            box-shadow: 0 8px 18px rgba(220,38,38,.35);
            transition: transform 0.14s ease, filter .14s ease;
        }
        .fs-side-btn:active { transform: translateY(-50%) scale(0.9); filter: brightness(.95); }

        /* Timer Style Premium */
        #discount-timer {
            position: absolute !important;
            top: 12px !important;
            right: 12px !important;
            z-index: 20;
            color: #f8fafc;
        }
        #discount-timer .timer-box {
            position: relative;
            background: linear-gradient(180deg, #ffffff, #fee2e2);
            border-radius: 12px;
            padding: 6px 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-width: 42px;
            border: 1px solid rgba(254,202,202,.95);
            box-shadow: 0 10px 22px rgba(127,29,29,.20), inset 0 1px 0 rgba(255,255,255,.9);
            overflow: hidden;
        }
        #discount-timer .timer-box::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.65), transparent 62%);
            transform: translateX(-120%);
            animation: timerShine 2.6s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes timerShine { 0%, 35% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
        #discount-timer .timer-box .time { font-size: 1.18rem; font-weight: 950; color: #dc2626; line-height: 1; letter-spacing: -0.04em; }
        #discount-timer .timer-box .label { font-size: 0.55rem; color: #b91c1c; line-height: 1; margin-top: 3px; font-weight: 800; }
        #discount-timer .timer-separator { color: #fecaca; font-weight: 900; text-shadow: 0 0 12px rgba(239,68,68,.6); }
        @media (max-width: 420px) {
            #discount-timer .timer-box { min-width: 36px; padding: 5px 6px; border-radius: 10px; }
            #discount-timer .timer-box .time { font-size: 1rem; }
            #discount-timer .timer-box .label { font-size: .48rem; }
        }

        /* =========================================
        6. PRODUK CARD & GRID
        ========================================= */
        #products-container { gap: 0.75rem !important; }
        @media (min-width: 640px) { #products-container { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
        @media (min-width: 768px) { #products-container { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

        .product-card { 
            transition: transform 0.2s, box-shadow 0.2s; 
            border: 1px solid #e2e8f0; 
            background-color: white; 
        }
        .product-card:hover { 
            transform: translateY(-5px); 
            box-shadow: 0 10px 20px rgba(0,0,0,0.08); 
            border-color: #dc2626; 
        }
        .product-card h3 { color: #1e293b; }
        .product-card .original-price { color: #94a3b8; text-decoration: line-through; }
        .product-card .final-price { color: #dc2626; }
        
        /* Efek Glow untuk Produk Free */
        @keyframes pulse-red-glow-free {
            0%, 100% { box-shadow: 0 0 8px rgba(220, 38, 38, 0.4); border-color: rgba(220, 38, 38, 0.6); }
            50% { box-shadow: 0 0 16px rgba(220, 38, 38, 0.8), 0 0 24px rgba(220, 38, 38, 0.5); border-color: rgba(220, 38, 38, 1); }
        }
        .product-card-free-glow { animation: pulse-red-glow-free 2.5s ease-in-out infinite; border: 1px solid #dc2626; }

        /* Tombol Beli Kecil */
        .buy-button-small { background-color: #dc2626; color: white; font-weight: bold; font-size: 12px; padding: 6px 14px; border-radius: 9999px; transition: background-color 0.2s; display: inline-flex; align-items: center; gap: 6px; }
        .buy-button-small:hover { background-color: #b91c1c; }
        .buy-button-small.bouncing { animation: bounce-click 0.4s ease-in-out; }
        
        .buy-button-small-free { background-color: #dc2626; color: white; font-weight: bold; font-size: 12px; padding: 6px 14px; border-radius: 9999px; transition: background-color 0.2s; display: inline-flex; align-items: center; gap: 6px; }
        .buy-button-small-free:hover { background-color: #2563eb; }

        @keyframes bounce-click {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* =========================================
        7. KATEGORI (SCROLLABLE)
        ========================================= */
        #category-container {
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            -ms-overflow-style: none;
            scrollbar-width: none;
            padding: 8px 44px 8px 44px !important;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(15,23,42,.92), rgba(69,10,10,.52));
            border: 1px solid rgba(248,113,113,.24);
            box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 16px 36px rgba(2,6,23,.34);
        }
        #category-container::-webkit-scrollbar { display: none; }
        .category-scroll-shell {
            scrollbar-width: none;
            -ms-overflow-style: none;
            border-radius: 18px;
        }
        .category-scroll-shell::-webkit-scrollbar { display: none; }
        
        .category-pill {
            transition: all 0.3s ease;
            border: 1px solid #dc2626;
            background-color: #1e293b;
            color: #e5e7eb;
            font-weight: 500;
            font-size: 0.68rem; /* Perkecil font agar kategori rapi */
        }
        .category-pill:hover { background-color: #334155; color: #ffffff; }
        .category-pill.active { background-color: #dc2626; color: #ffffff; border-color: #dc2626; font-weight: 600; }
        #scroll-cat-left,
        #scroll-cat-right {
            width: 32px !important;
            height: 32px !important;
            border-radius: 999px !important;
            background:
                radial-gradient(circle at 35% 25%, rgba(255,255,255,.34), transparent 18%),
                linear-gradient(145deg, #ef4444, #991b1b) !important;
            border: 1px solid rgba(248,113,113,.7);
            box-shadow: 0 8px 20px rgba(127,29,29,.36), 0 0 0 5px rgba(239,68,68,.12);
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.9rem !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            color: #ffffff !important;
            font-weight: bold !important;
        }
        #scroll-cat-left { left: 6px !important; }
        #scroll-cat-right { right: 6px !important; }
        #scroll-cat-left::before {
            content: '<' !important;
            font-family: Arial, sans-serif !important;
        }
        #scroll-cat-left i {
            display: none !important;
        }
        #scroll-cat-right::before {
            content: '>' !important;
            font-family: Arial, sans-serif !important;
        }
        #scroll-cat-right i {
            display: none !important;
        }

        /* Reset Filter Button Floating */
        @keyframes float-arrow {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        #floating-arrow { animation: float-arrow 1.5s ease-in-out infinite; }
        
        /* ÃƒÂ°Ã…Â¸Ã¢â‚¬Âº POSITIONING TOMBOL ALL PREMIUM ÃƒÂ°Ã…Â¸Ã¢â‚¬Â */
        /* State Default: Floating di bottom-right */
        #reset-filter-container {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        /* State Saat Filter Aktif: Di atas Cart Button */
        #reset-filter-container.filter-active {
            position: fixed !important;
            bottom: 90px !important;
            right: auto !important;
            left: 50% !important;
            top: auto !important;
            transform: translateX(-50%) !important;
            flex-direction: row !important;
            justify-content: center !important;
            align-items: center !important;
            gap: 8px !important;
            width: auto !important;
            max-width: calc(100% - 32px) !important;
            z-index: 1999 !important;
            pointer-events: auto !important;
        }
        
        #reset-filter-container.filter-active #floating-arrow {
            display: none !important; /* Sembunyikan arrow saat di atas cart */
        }
        
        /* Styling Tombol ALL: dibuat konsisten dengan toast checkout */
        #reset-filter-btn {
            position: relative !important;
            overflow: hidden !important;
            background:
                radial-gradient(circle at 18% 18%, rgba(255,255,255,.38), transparent 18%),
                linear-gradient(145deg, #ef4444 0%, #dc2626 42%, #991b1b 100%) !important;
            color: #ffffff !important;
            font-weight: 900 !important;
            font-size: 12px !important;
            padding: 11px 18px 11px 14px !important;
            border-radius: 16px !important;
            border: 1px solid rgba(254, 202, 202, .9) !important;
            box-shadow: 0 18px 38px rgba(220, 38, 38, 0.5), 0 14px 0 rgba(127,29,29,.22), inset 0 1px 0 rgba(255,255,255,.42), inset 0 -10px 18px rgba(69,10,10,.24) !important;
            transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 8px !important;
            white-space: nowrap !important;
        }
        #reset-filter-btn::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.28), transparent 64%);
            transform: translateX(-115%);
            animation: toastShine 2.1s ease-in-out infinite;
            pointer-events: none;
        }
        #reset-filter-btn:hover:not(.animated) {
            transform: translateY(-2px) !important;
            box-shadow: 0 22px 46px rgba(220, 38, 38, 0.56), 0 14px 0 rgba(127,29,29,.22), inset 0 1px 0 rgba(255,255,255,.48) !important;
        }
        #reset-filter-btn.animated {
            animation: pulse-red-premium 2s ease-in-out infinite !important;
        }
        @keyframes pulse-red-premium {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.04); }
        }
        
        #reset-filter-btn::before {
            content: '\f0ff'; /* Font awesome close icon */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.75rem;
        }

        /* =========================================
        8. FAQ SECTION (PREMIUM ACCORDION)
        ========================================= */
        .faq-shell {
            position: relative;
            padding: 24px 16px 28px;
            border: 1px solid rgba(248, 113, 113, 0.22);
            background:
                linear-gradient(145deg, rgba(127, 29, 29, 0.32), rgba(15, 23, 42, 0.94) 42%),
                radial-gradient(circle at top right, rgba(250, 204, 21, 0.14), transparent 32%);
            box-shadow: 0 18px 50px rgba(2, 6, 23, 0.55), inset 0 1px 0 rgba(255,255,255,0.04);
            border-radius: 24px;
            overflow: hidden;
        }

        .faq-shell::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
            background-size: 26px 26px;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent 70%);
            pointer-events: none;
        }

        .faq-heading-badge {
            width: 42px;
            height: 42px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #facc15;
            background: rgba(127, 29, 29, 0.58);
            border: 1px solid rgba(250, 204, 21, 0.28);
            box-shadow: 0 0 22px rgba(220, 38, 38, 0.24);
            flex-shrink: 0 !important;
            aspect-ratio: 1/1 !important;
        }

        .faq-container {
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 100%;
            max-width: 600px;
            margin: 18px auto 0;
            position: relative;
            z-index: 1;
        }

        .faq-item {
            background: rgba(15, 23, 42, 0.78);
            border: 1px solid rgba(148, 163, 184, 0.18);
            border-radius: 18px;
            overflow: hidden;
            width: 100%;
            transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
            backdrop-filter: blur(10px);
        }

        .faq-toggle {
            width: 100%;
            text-align: left;
            padding: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center; 
            cursor: pointer;
            background: transparent;
            border: none;
            outline: none;
            gap: 12px;
        }

        .faq-question-text {
            font-weight: 700;
            color: #f8fafc;
            font-size: 0.95rem;
            line-height: 1.4;
            flex: 1;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .faq-icon {
            color: #facc15;
            background: rgba(220, 38, 38, 0.18);
            border: 1px solid rgba(248, 113, 113, 0.22);
            border-radius: 999px;
            transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
            font-size: 0.9rem;
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .faq-item:hover {
            transform: translateY(-1px);
            border-color: rgba(250, 204, 21, 0.35);
        }

        .faq-item.open {
            background: linear-gradient(145deg, rgba(30, 41, 59, 0.98), rgba(69, 10, 10, 0.7));
            border-color: rgba(248, 113, 113, 0.62);
            box-shadow: 0 16px 36px rgba(127, 29, 29, 0.24);
        }
        .faq-item.open .faq-question-text { color: #fef2f2; }
        .faq-item.open .faq-icon { transform: rotate(180deg); color: #0f172a; background: #facc15; }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: auto !important;
            user-select: text !important;
        }
        .faq-answer-content {
            padding: 0 16px 16px 16px;
            color: #cbd5e1;
            font-size: 0.85rem;
            line-height: 1.6;
            border-top: 1px solid rgba(250, 204, 21, 0.14);
            margin-top: 5px;
            padding-top: 12px;
            pointer-events: auto !important;
            user-select: text !important;
        }

        /* =========================================
        9. FOOTER & NAVIGATION
        ========================================= */
    /* --- CSS FOOTER "BERKILAU DI BAWAH" (FINAL V3) --- */
        .footer-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            overflow: visible;
            
            display: flex;
            justify-content: space-around;
            align-items: center;
            height: 3rem; 
            
            /* Warna Background Solid & Gelap */
            background:
                radial-gradient(circle at 50% 0%, rgba(239, 68, 68, 0.28), transparent 42%),
                linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.98)); 
            
            /* Bentuk: Melengkung di atas */
            border-top-left-radius: 1rem;
            border-top-right-radius: 1rem;
            
            /* Border halus atas */
            border-top: 1px solid rgba(248, 113, 113, 0.34);
            
            /* Shadow Glow ke atas */
            box-shadow: 0 -14px 36px rgba(127, 29, 29, 0.28), 0 -8px 22px rgba(15, 23, 42, 0.6), inset 0 1px 0 rgba(255,255,255,0.08);
            
            z-index: 1000;
        }

        /* --- EFEK KILAUAN GARIS FOOTER --- */
        .footer-nav::before {
            display: none !important;
        }
        .footer-nav::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(239,68,68,.9), rgba(255,255,255,.9), rgba(239,68,68,.9), transparent);
            background-size: 220% auto;
            animation: shineMove 8s linear infinite;
            z-index: 52;
            pointer-events: none;
        }

        @keyframes shineMove {
            0% { background-position: 200% center; }
            100% { background-position: -200% center; }
        }
        @keyframes footerWhiteShimmer {
            0% { background-position: 220% center; opacity: .45; }
            50% { opacity: 1; }
            100% { background-position: -220% center; opacity: .45; }
        }

        /* --- ICON FOOTER GENERAL --- */
        .footer-icon-btn {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #64748b; /* Warna abu default */
            font-size: 1rem;
            width: 50px;
            height: 100%;
            transition: all 0.3s ease;
        }

        .footer-icon-btn:hover {
            color: #ffffff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
            transform: translateY(-2px);
        }

        /* --- 1. ANIMASI LONCENG BERGERAK ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ¢â‚¬Â --- */
        @keyframes bellRing {
            0%, 100% { transform: rotate(0); }
            10%, 30%, 50%, 70% { transform: rotate(15deg); } /* Miring Kanan */
            20%, 40%, 60% { transform: rotate(-15deg); }    /* Miring Kiri */
            80% { transform: rotate(0); }                   /* Diam sebentar */
        }
        
        /* Terapkan animasi ke icon di dalam tombol ID announcement-btn */
        #announcement-btn i {
            animation: bellRing 4s ease-in-out infinite; /* Goyang setiap 4 detik */
            transform-origin: top center; /* Poros goyang di atas */
            color: #e2e8f0; /* Warna lonceng agak terang */
        }

        /* --- 2. ANIMASI PANAH UP (NAIK TURUN) ÃƒÂ¢Ã‚Â¬Ã¢â‚¬Â ÃƒÂ¯Ã‚Â¸ --- */
        @keyframes hint-pulse {
            0%, 100% { 
                color: #64748b; /* Abu-abu saat diam */
                transform: translateY(0); 
            }
            50% { 
                color: #ef4444; /* Merah menyala saat naik */
                transform: translateY(-5px); 
                text-shadow: 0 0 8px rgba(239, 68, 68, 0.6); 
            }
        }
        .arrow-animated { 
            animation: hint-pulse 2s infinite ease-in-out; 
        }

        /* --- TOMBOL TENGAH (CART) --- */
        #cart-btn {
            width: 4rem; 
            height: 4rem; 
            margin-top: -2.15rem; 
            border-radius: 50% !important;
            
            display: flex; 
            align-items: center; 
            justify-content: center;
            
            border: 3px solid #ffffff !important; 
            transition: all 0.3s ease-in-out; 
            z-index: 1100;
            position: relative; /* Penting untuk badge */
            overflow: visible;
        }
        
        #cart-btn > svg, #cart-btn > i { font-size: 1.75rem; width: 1.75rem; height: 1.75rem; }

        /* State Kosong */
        .cart-empty {
            background-color: #1e293b !important;
            color: #64748b !important;
            box-shadow: 0 0 0 2px rgba(15,23,42,.72), 0 8px 18px rgba(0, 0, 0, 0.35);
            animation: none !important;
        }

        /* State Ada Isi */
        .cart-active {
            background-color: #dc2626 !important;
            color: #ffffff !important;
            box-shadow: 0 0 0 2px rgba(15,23,42,.72), 0 0 22px rgba(220, 38, 38, 0.65) !important;
            animation: pulse-cart 2s ease-in-out infinite !important;
        }

        @keyframes pulse-cart {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
            70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
        }

        /* --- 3. BADGE ANGKA KERANJANG (PUTIH MERAH) ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â´ÃƒÂ¢Ã…Â¡Ã‚Âª --- */
        #cart-count {
            background-color: #ffffff !important; /* Latar Putih */
            color: #dc2626 !important;           /* Angka Merah */
            border: 2px solid #ffffff !important; /* Border Putih */
            
            font-size: 0.75rem !important;
            font-weight: 800 !important;
            
            /* Posisi Badge */
            position: absolute;
            top: -2px;
            right: -2px;
            width: 1.4rem;
            height: 1.4rem;
            border-radius: 50%;
            
            /* Layout Angka Tengah */
            display: flex;
            align-items: center;
            justify-content: center;
            
            box-shadow: 0 2px 5px rgba(0,0,0,0.3);
            z-index: 55;
        }

        /* ÃƒÂ°Ã…Â¸Ã…Â¸Ã‚Â¢ PENTING: Paksa hilang jika kelas 'hidden' ada (Saat item 0) */
        #cart-count.hidden {
            display: none !important;
        }

        /* Tooltip */
        .footer-tooltip {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background-color: #dc2626;
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.65rem;
            font-weight: bold;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.2s;
            pointer-events: none;
            white-space: nowrap;
            margin-bottom: 5px;
        }
        @media (min-width: 768px) {
            .footer-icon-btn:hover .footer-tooltip { opacity: 1; visibility: visible; }
        }

        /* Copyright */
        .footer-copyright {
            text-align: center;
            padding: 2rem 1rem 6rem 1rem;
            font-size: 0.75rem;
            color: #64748b;
            border-top: 1px solid #1e293b;
            margin-top: 2rem;
        }
        .footer-copyright strong { color: #94a3b8; }
        .site-footer {
            padding: 28px 16px 96px;
            margin-top: 32px;
            border-top: 1px solid rgba(148, 163, 184, 0.14);
            background:
                linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(2, 6, 23, 0.96)),
                radial-gradient(circle at top left, rgba(220, 38, 38, 0.16), transparent 34%);
        }
        .footer-panel {
            border: 1px solid rgba(148, 163, 184, 0.16);
            background: rgba(15, 23, 42, 0.78);
            border-radius: 22px;
            padding: 18px;
            box-shadow: 0 18px 45px rgba(2, 6, 23, 0.32);
        }
        .footer-quick-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
        }
        .footer-quick-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 42px;
            border-radius: 12px;
            border: 1px solid rgba(148, 163, 184, 0.18);
            background: rgba(30, 41, 59, 0.78);
            color: #e2e8f0;
            font-size: 12px;
            font-weight: 800;
        }
        .footer-socials {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .footer-socials a {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: #dc2626;
            color: white;
            border: 1px solid rgba(255,255,255,0.12);
            box-shadow: 0 10px 24px rgba(220, 38, 38, 0.22);
        }
        .footer-map-frame {
            width: 100%;
            height: 100%;
            border: 0;
            border-radius: inherit;
            filter: saturate(0.8) contrast(1.05);
        }
        .develop-badge {
            position: relative;
            isolation: isolate;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            overflow: hidden;
            width: fit-content;
            min-width: 178px;
            border-radius: 999px;
            background: linear-gradient(135deg, #ef4444, #dc2626 46%, #991b1b);
            border: 1px solid rgba(254, 202, 202, 0.78);
            box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 16px 34px rgba(220,38,38,0.34), inset 0 1px 0 rgba(255,255,255,0.22);
            color: #ffffff;
            margin-left: auto;
            margin-right: auto;
        }
        .develop-badge::before {
            content: '';
            position: absolute;
            inset: -40% -20%;
            background: linear-gradient(110deg, transparent 36%, rgba(255,255,255,0.92) 48%, rgba(255,255,255,0.5) 52%, transparent 66%);
            transform: translateX(-120%);
            animation: developShine 2.6s ease-in-out infinite;
            z-index: -1;
        }
        .develop-badge i {
            color: #ffffff;
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.95));
            animation: boltBlink .78s steps(2, end) infinite;
        }
        @keyframes developShine {
            0%, 30% { transform: translateX(-120%); }
            55%, 100% { transform: translateX(120%); }
        }
        @keyframes boltBlink {
            0%, 100% { opacity: 1; transform: scale(1) rotate(-5deg); }
            45% { opacity: .42; transform: scale(.92) rotate(4deg); }
            55% { opacity: 1; transform: scale(1.18) rotate(-8deg); }
        }
        .join-spotlight {
            position: relative;
            padding: 24px 16px;
            border-radius: 26px;
            background: linear-gradient(145deg, rgba(127, 29, 29, 0.78), rgba(15, 23, 42, 0.96) 58%);
            border: 1px solid rgba(248, 113, 113, 0.34);
            box-shadow: 0 22px 60px rgba(127, 29, 29, 0.28), inset 0 1px 0 rgba(255,255,255,0.06);
        }
        .join-spotlight::before,
        .affiliate-story-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
            background-size: 24px 24px;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 74%);
            pointer-events: none;
        }
        .affiliate-story-card {
            position: relative;
            background:
                linear-gradient(145deg, rgba(69, 10, 10, 0.96), rgba(15, 23, 42, 0.98) 52%),
                radial-gradient(circle at top right, rgba(239, 68, 68, 0.22), transparent 36%);
            border: 1px solid rgba(248, 113, 113, 0.32);
            border-radius: 28px;
            box-shadow: 0 24px 70px rgba(2, 6, 23, 0.48), inset 0 1px 0 rgba(255,255,255,0.05);
            overflow: hidden;
        }
        .affiliate-system-label {
            display: inline-grid;
            grid-template-columns: 30px 1fr;
            align-items: center;
            gap: 10px;
            border-radius: 16px;
            padding: 8px 14px 8px 8px;
            background: rgba(2, 6, 23, .62);
            border: 1px solid rgba(248, 113, 113, .34);
            color: #fff;
            box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 12px 30px rgba(127,29,29,.22);
            margin-bottom: 16px;
        }
        .affiliate-system-label span:first-child {
            width: 30px;
            height: 30px;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, #ef4444, #991b1b);
            box-shadow: 0 8px 20px rgba(220,38,38,.24);
        }
        .affiliate-system-label span:last-child {
            font-size: 11px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: .16em;
        }
        .json-copy-card {
            border: 1px solid rgba(248, 113, 113, 0.28);
            background: rgba(2, 6, 23, 0.72);
            border-radius: 18px;
            padding: 14px;
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
            color: #fecaca;
            font-size: 12px;
            line-height: 1.7;
        }
        .json-copy-card .key { color: #f87171; }
        .json-copy-card .val { color: #fde68a; }
        .affiliate-feature-card,
        .benefit-card-new {
            display: grid;
            grid-template-columns: 48px 1fr;
            align-items: center;
            gap: 14px;
            background: rgba(15, 23, 42, 0.74);
            border: 1px solid rgba(248, 113, 113, 0.22);
            border-radius: 18px;
            padding: 14px;
        }
        .affiliate-feature-card .icon-box,
        .benefit-card-new .icon-box {
            width: 48px;
            height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            background: linear-gradient(145deg, #dc2626, #7f1d1d);
            color: #ffffff;
            border: 1px solid rgba(248, 113, 113, 0.5);
            box-shadow: 0 10px 24px rgba(220, 38, 38, 0.24);
        }
        .affiliate-flow-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
        }
        .benefit-hook-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 18px;
    background: #ffffff;
    color: #dc2626;
    font-size: 20px;
    font-weight: 1000;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: 3px solid #dc2626;
    box-shadow:
        0 0 0 4px rgba(220,38,38,.15),
        0 12px 28px rgba(220,38,38,.28);

    position: relative;
    overflow: hidden;
}

.benefit-hook-label::before{
    content:'';
    position:absolute;
    inset:0;

    background:
    repeating-linear-gradient(
        -45deg,
        rgba(220,38,38,.08) 0px,
        rgba(220,38,38,.08) 10px,
        transparent 10px,
        transparent 20px
    );

    pointer-events:none;
}

.benefit-subhook {
    display: inline-block;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}
        .jasa-heading-wrap { margin-bottom: 8px; }
        .jasa-heading {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            font-weight: 950;
            letter-spacing: .01em;
            line-height: 1.05;
            text-shadow: 0 12px 30px rgba(127,29,29,.28);
        }
        .jasa-heading i {
            width: 32px;
            height: 32px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, #ef4444, #991b1b);
            color: #fff;
            box-shadow: 0 12px 26px rgba(220,38,38,.32);
        }
        .jasa-pro-badge {
            background: rgba(239,68,68,.14);
            color: #fecaca;
            border: 1px solid rgba(248,113,113,.32);
            box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
        }
        .portfolio-section-card {
            background: linear-gradient(145deg, rgba(69,10,10,.42), rgba(15,23,42,.95) 44%);
            border: 1px solid rgba(248,113,113,.28);
            border-radius: 18px;
            box-shadow: 0 16px 42px rgba(2,6,23,.34), inset 0 1px 0 rgba(255,255,255,.06);
        }
        .case-title-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 11px;
            border-radius: 14px;
            background: rgba(239,68,68,.14);
            border: 1px solid rgba(248,113,113,.28);
            color: #fecaca;
            box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
        }
        .portfolio-proof-premium {
            background:
                radial-gradient(circle at top, rgba(250,204,21,.16), transparent 34%),
                linear-gradient(145deg, rgba(127,29,29,.36), rgba(15,23,42,.92));
            border: 1px solid rgba(250,204,21,.22);
            border-radius: 18px;
            box-shadow: 0 18px 46px rgba(2,6,23,.36), inset 0 1px 0 rgba(255,255,255,.08);
        }
        .portfolio-proof-premium span {
            background: rgba(15,23,42,.72);
            border-color: rgba(250,204,21,.22);
            color: #fde68a;
        }
        #close-portfolio-modal {
            animation: closePulse 1.75s ease-in-out infinite;
        }
        @keyframes closePulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239,68,68,.34), 0 14px 30px rgba(127,29,29,.32); }
            50% { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(239,68,68,0), 0 18px 40px rgba(239,68,68,.42); }
        }
        .hero-role-text {
            color: #f87171;
            font-weight: 900;
            font-size: 12px;
            line-height: 1.05;
            letter-spacing: .02em;
            text-shadow: 0 8px 24px rgba(239,68,68,.22);
        }
        .affiliate-flow-card {
            position: relative;
            overflow: hidden;
            min-height: 104px;
            border: 1px solid rgba(248, 113, 113, 0.26);
            background: rgba(15, 23, 42, 0.72);
            border-radius: 18px;
            padding: 13px 12px;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
            transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
        }
        .affiliate-flow-card:hover {
            transform: translateY(-3px);
            border-color: rgba(248,113,113,.55);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 22px 44px rgba(127,29,29,0.24);
        }
        .affiliate-flow-card::after {
            content: '';
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 0;
            height: 3px;
            border-radius: 999px 999px 0 0;
            background: linear-gradient(90deg, #ef4444, rgba(239,68,68,.22));
        }
        .affiliate-flow-card .step {
            width: 31px;
            height: 31px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, #facc15, #b45309);
            color: #450a0a;
            font-size: 12px;
            font-weight: 900;
            box-shadow: 0 10px 24px rgba(250,204,21,0.18);
            flex-shrink: 0 !important;
            aspect-ratio: 1 / 1 !important;
        }
        .affiliate-flow-card .flow-icon {
            display: none;
        }
        .affiliate-feature-card p { font-style: normal; }
        .affiliate-feature-card p + p { font-style: italic; }
        @media (max-width: 420px) {
            .affiliate-flow-card { padding: 11px 9px; min-height: 112px; }
            .affiliate-flow-card .step { width: 28px; height: 28px; font-size: 11px; flex-shrink: 0 !important; aspect-ratio: 1 / 1 !important; }
        }
        .portfolio-cta-pulse {
            animation: portfolioCtaPulse 1.8s ease-in-out infinite;
        }
        @keyframes portfolioCtaPulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, .45); }
            50% { transform: scale(1.025); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
        }
        .case-study-card {
            position: relative;
            overflow: hidden;
            border-radius: 22px;
            border: 1px solid rgba(248, 113, 113, .28);
            background:
                linear-gradient(145deg, rgba(69, 10, 10, .58), rgba(15, 23, 42, .96) 52%),
                radial-gradient(circle at top right, rgba(239, 68, 68, .18), transparent 38%);
            box-shadow: 0 18px 44px rgba(2, 6, 23, .35), inset 0 1px 0 rgba(255,255,255,.08);
        }
        .case-study-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
            background-size: 22px 22px;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 82%);
            pointer-events: none;
        }
        .case-study-card > * { position: relative; z-index: 1; }
        .threads-preview-card {
            position: relative;
            display: block;
            overflow: hidden;
            border: 1px solid rgba(148, 163, 184, 0.18);
            background: #050505;
            border-radius: 22px;
            padding: 0;
            box-shadow: 0 18px 44px rgba(2,6,23,.34), inset 0 1px 0 rgba(255,255,255,.05);
        }
        .threads-preview-top {
            height: 38px;
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 0 13px;
            border-bottom: 1px solid rgba(255,255,255,.1);
            background: #090909;
        }
        .threads-dot { width: 8px; height: 8px; border-radius: 999px; background: #ef4444; }
        .threads-dot:nth-child(2) { background: #facc15; }
        .threads-dot:nth-child(3) { background: #22c55e; }
        .threads-preview-body {
            padding: 18px;
            display: block;
        }
        .threads-avatar {
            width: 72px;
            height: 72px;
            border-radius: 999px;
            background: linear-gradient(145deg, #ef4444, #111827);
            border: 1px solid rgba(255,255,255,.12);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            overflow: hidden;
        }
        .threads-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .threads-preview-post {
            margin-top: 14px;
            border-radius: 14px;
            border: 1px solid rgba(255,255,255,.1);
            background: rgba(255,255,255,.035);
            padding: 12px;
        }
        .threads-profile-head {
            display: grid;
            grid-template-columns: 1fr 78px;
            gap: 12px;
            align-items: start;
        }
        .threads-follow-btn {
            display: block;
            width: 100%;
            margin-top: 16px;
            text-align: center;
            border-radius: 12px;
            background: #ffffff;
            color: #111827;
            font-size: 12px;
            font-weight: 900;
            padding: 10px 12px;
        }
        .threads-profile-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            margin-top: 12px;
            color: #a3a3a3;
            font-size: 12px;
        }
        .sosmed-card.is-coming-soon {
            background: #1e293b !important;
            border: 1px solid #334155;
            opacity: .62;
            cursor: default;
            filter: grayscale(1);
            pointer-events: none;
        }

        /* =========================================
        10. LOADING ANIMATIONS (Lightning & Energy)
        ========================================= */
    /* =========================================
        10. LOADING ANIMATIONS (Battery Charge & Gold Badge)
        ========================================= */
        
        /* 1. BATTERY LOADER STYLE */
        .battery-loader {
            position: relative;
            width: 60px;
            height: 100px;
            border: 4px solid #94a3b8; /* Warna border abu terang */
            border-radius: 12px;
            background: #0f172a; /* Warna dalam baterai kosong */
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }

        /* Kepala Baterai (Nub) */
        .battery-loader::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 8px;
            background: #94a3b8;
            border-radius: 4px 4px 0 0;
        }

        /* Isi Baterai (Liquid Animation) */
        .battery-fill {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0%;
            /* Gradient Merah ke Orange biar menyala */
            background: linear-gradient(to top, #dc2626, #f87171); 
            animation: chargeBattery 2.5s infinite linear;
            z-index: 1;
            box-shadow: 0 0 15px #dc2626;
        }

        /* Icon Petir di Tengah */
        .battery-bolt-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 2.5rem; /* Ukuran petir */
            color: #ffffff;    /* Warna petir putih */
            z-index: 2;        /* Di atas cairan */
            filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
            animation: pulseBolt 1.25s infinite alternate;
        }

        /* Animasi Mengisi */
        @keyframes chargeBattery {
            0% { height: 0%; opacity: 0.5; }
            20% { height: 20%; opacity: 0.8; }
            50% { height: 50%; opacity: 1; }
            80% { height: 80%; opacity: 1; }
            100% { height: 100%; opacity: 1; }
        }

        /* Animasi Petir Berdenyut */
        @keyframes pulseBolt {
            0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; color: #cbd5e1; }
            100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; color: #ffffff; text-shadow: 0 0 15px #ffffff; }
        }

        /* 2. PREMIUM GOLD BADGE STYLE */
        .gold-badge-premium {
            position: relative;
            display: inline-block;
            margin-top: 15px;
            padding: 10px 20px;
            overflow: hidden;
            
            background:
                linear-gradient(135deg, rgba(127,29,29,.96), rgba(15,23,42,.96)),
                radial-gradient(circle at top left, rgba(250,204,21,.25), transparent 42%);
            background-size: auto;
            
            color: #fef3c7;
            font-weight: 800;
            font-size: 1rem;
            letter-spacing: 0.02em;
            font-family: Georgia, 'Times New Roman', serif;
            font-style: italic;
            border-radius: 18px;
            
            box-shadow: 
                0 0 0 1px rgba(248, 113, 113, 0.28),
                0 14px 34px rgba(127, 29, 29, 0.35),
                inset 0 1px 0 rgba(255,255,255,.12);
                
            animation: asmaGlow 2.6s ease-in-out infinite;
            border: 1px solid rgba(250, 204, 21, 0.22);
        }
        .gold-badge-premium::before {
            display: none;
        }
        .gold-badge-premium::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(105deg, transparent 28%, rgba(255,255,255,.24), transparent 62%);
            transform: translateX(-115%);
            animation: asmaShine 2.7s ease-in-out infinite;
        }

        @keyframes asmaGlow {
            0%, 100% { box-shadow: 0 0 0 1px rgba(248,113,113,.28), 0 14px 34px rgba(127,29,29,.35), inset 0 1px 0 rgba(255,255,255,.12); }
            50% { box-shadow: 0 0 0 1px rgba(250,204,21,.42), 0 18px 42px rgba(220,38,38,.42), inset 0 1px 0 rgba(255,255,255,.18); }
        }
        @keyframes asmaShine {
            0%, 38% { transform: translateX(-115%); }
            70%, 100% { transform: translateX(115%); }
        }
        /* Loading Checkout (Energy Bar) */
        .energy-bar-checkout { width: 250px; height: 12px; background: #1e293b; border: 2px solid #dc2626; border-radius: 20px; position: relative; overflow: hidden; box-shadow: 0 0 20px rgba(220, 38, 38, 0.4); margin-bottom: 20px; }
        .energy-zap-flash { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, transparent 0%, #ef4444 40%, #fee2e2 50%, #ef4444 60%, transparent 100%); transform: translateX(-100%); animation: zapMove 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite; }
        .energy-bar-checkout::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: radial-gradient(circle, #ef4444 1px, transparent 1px); background-size: 10px 10px; opacity: 0.3; }
        @keyframes zapMove { 0% { transform: translateX(-150%); } 100% { transform: translateX(150%); } }

        /* =========================================
        11. MODAL & UTILITIES
        ========================================= */
        .modal-base { opacity: 0; visibility: hidden; transition: opacity 0.3s ease; }
        .modal-base.active { opacity: 1; visibility: visible; }
        body.hide-footer-nav .footer-nav { opacity: 0; visibility: hidden; transform: translateY(110%); pointer-events: none; }
        #initial-loading-modal {
            isolation: isolate;
            overflow: hidden;
            background:
                radial-gradient(circle at 50% 42%, rgba(239,68,68,.24), transparent 18%),
                radial-gradient(circle at 12% 18%, rgba(248,113,113,.14), transparent 28%),
                radial-gradient(circle at 84% 76%, rgba(250,204,21,.10), transparent 24%),
                #020617 !important;
            animation: agencyLoaderDim 1.25s ease-in-out infinite alternate !important;
        }
        #initial-loading-modal::before {
            content:'';
            display:block !important;
            position:absolute;
            inset:-20%;
            z-index:0;
            background:
                linear-gradient(118deg, transparent 0 38%, rgba(239,68,68,.08) 43%, rgba(255,255,255,.78) 45%, rgba(248,113,113,.35) 47%, transparent 52%),
                repeating-linear-gradient(90deg, rgba(248,113,113,.08) 0 1px, transparent 1px 42px);
            opacity:.65;
            transform:translateX(-18%) rotate(-6deg);
            animation: agencyLoaderShine 1.35s cubic-bezier(.4,0,.2,1) infinite;
            pointer-events:none;
        }
        #initial-loading-modal::after {
            display: none !important;
        }
        #initial-loading-modal > * { position:relative; z-index:2; }
        
        /* Premium Phone Battery Charging Loader */
        .battery-outer {
            position: relative;
            width: 72px;
            height: 128px;
            margin: 0 auto 24px;
        }
        .battery-cap {
            position: absolute;
            top: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 22px;
            height: 6px;
            background: #475569; /* slate-600 */
            border-radius: 4px 4px 0 0;
            box-shadow: 0 -2px 10px rgba(239, 68, 68, 0.1);
        }
        .battery-loader {
            display: block !important;
            width: 100%;
            height: 100%;
            border: 3.5px solid #475569; /* Sleek slate-600 */
            border-radius: 16px;
            padding: 4px;
            background: #0f111a;
            box-shadow: 0 12px 36px rgba(0,0,0,0.6), 0 0 15px rgba(239, 68, 68, 0.05);
            overflow: hidden;
            position: relative;
        }
        .battery-fill {
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, #7f1d1d, #dc2626, #f87171); /* Clean red filling */
            border-radius: 9px;
            transform-origin: bottom center;
            animation: batteryChargeFill 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
            box-shadow: 0 -6px 20px rgba(239, 68, 68, 0.8), 0 0 10px rgba(239, 68, 68, 0.4);
        }
        .battery-bolt-icon {
            position: absolute !important;
            top: 50% !important;
            left: 50% !important;
            transform: translate(-50%, -50%) !important;
            z-index: 10 !important;
            font-size: 36px !important;
            color: #ffffff !important;
            text-shadow: 0 0 15px rgba(255,255,255,0.9), 0 0 30px rgba(239,68,68,0.5);
            animation: boltPulseGlow 1.2s ease-in-out infinite alternate;
        }

        @keyframes batteryChargeFill {
            0% { transform: scaleY(0); opacity: 0.4; }
            15% { opacity: 1; }
            85% { transform: scaleY(1); opacity: 1; }
            92% { transform: scaleY(1); opacity: 1; }
            100% { transform: scaleY(0); opacity: 0.4; }
        }
        .brand-loading-title {
            font-size: 32px;
            font-weight: 950;
            color: #ffffff;
            letter-spacing: 0.18em;
            text-shadow: 0 0 20px rgba(239, 68, 68, 0.5), 0 0 40px rgba(239, 68, 68, 0.2);
            margin-bottom: 4px;
            text-align: center;
            text-transform: uppercase;
            animation: brandPulseGlow 2.5s ease-in-out infinite alternate;
        }
        .brand-loading-subtitle {
            font-size: 11px;
            font-weight: 700;
            color: #64748b; /* slate-500 */
            letter-spacing: 0.26em;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 48px;
        }
        @keyframes brandPulseGlow {
            0% { text-shadow: 0 0 15px rgba(239, 68, 68, 0.3); opacity: 0.95; }
            100% { text-shadow: 0 0 25px rgba(239, 68, 68, 0.7); opacity: 1; }
        }
        @keyframes boltPulseGlow {
            0% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.92); }
            100% { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
        }

        /* Bismillah Arabic Style */
        .bismillah-text {
            font-size: 20px;
            font-weight: normal;
            color: #f8fafc;
            margin-top: 15px;
            margin-bottom: 8px;
            text-align: center;
            font-family: 'Times New Roman', serif;
        }

        /* Mohon Tunggu Sebentar Style */
        .mohon-tunggu-text {
            font-size: 10px;
            font-weight: 800;
            color: #991b1b;
            letter-spacing: 0.18em;
            margin-bottom: 20px;
            text-align: center;
        }

        /* Asmaul Husna Pill */
        .loading-quote-container {
            margin-top: 5px;
        }
        .loading-quote-pill {
            display: inline-block;
            background: rgba(153, 27, 27, 0.4) !important;
            border: 1px solid #eab308 !important;
            color: #fef08a !important;
            font-family: 'Georgia', serif;
            font-style: italic;
            font-weight: 700;
            font-size: 13px;
            padding: 6px 20px;
            border-radius: 9999px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
            text-align: center;
        }
        #initial-loading-modal p:first-of-type {
            display: none !important;
        }
        @keyframes agencyLoaderDim {
            0% { filter:brightness(.86) saturate(.9); }
            100% { filter:brightness(1.08) saturate(1.18); }
        }
        @keyframes agencyLoaderShine {
            0%, 20% { opacity:.05; transform:translateX(-42%) rotate(-6deg); }
            48% { opacity:.95; }
            78%, 100% { opacity:.14; transform:translateX(42%) rotate(-6deg); }
        }
        @keyframes agencyBoltPop {
            0%, 100% { opacity:.34; transform:translate(-50%,-57%) scale(.86); }
            38% { opacity:1; transform:translate(-50%,-57%) scale(1.04); }
            54% { opacity:.62; transform:translate(-50%,-57%) scale(.96); }
        }
        
/* =========================================
   ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂºÃ¢â‚¬â„¢ NOTIFIKASI DI ATAS TOMBOL KERANJANG
   ========================================= */

#toast-notification {
    /* 1. POSISI: Tengah Bawah */
    position: fixed;
    bottom: 90px !important; /* Di atas tombol Cart */
    left: 50% !important;    /* Tengah Horizontal */
    
    /* 2. Reset Posisi Lama */
    top: auto !important;
    right: auto !important;
    
    background:
        radial-gradient(circle at 18% 18%, rgba(255,255,255,.42), transparent 18%),
        linear-gradient(145deg, #4ade80 0%, #22c55e 42%, #15803d 100%) !important;
    color: white;
    font-size: 12px !important; 
    font-weight: 900;
    padding: 11px 18px 11px 14px; 
    border-radius: 16px;
    border: 1px solid rgba(187, 247, 208, .9);
    box-shadow: 0 18px 38px rgba(34, 197, 94, 0.5), 0 14px 0 rgba(20,83,45,.22), inset 0 1px 0 rgba(255,255,255,.42), inset 0 -10px 18px rgba(5,46,22,.24);
    
    /* 4. Layout */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 2000;
    white-space: nowrap; /* Agar teks tidak turun baris */
    pointer-events: none; /* Tembus klik */

    /* 5. Animasi Awal (Geser dari bawah sedikit) */
    opacity: 0;
    transform: translateX(-50%) translateY(24px) scale(.94); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#toast-notification::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(255,255,255,.2);
    border: 1px solid rgba(255,255,255,.45);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex: 0 0 auto;
}
#toast-notification::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.28), transparent 64%);
    transform: translateX(-115%);
    animation: toastShine 2.1s ease-in-out infinite;
    pointer-events: none;
}

/* State Muncul */
#toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1); /* Posisi Normal */
}
@keyframes toastShine {
    0%, 38% { transform: translateX(-115%); }
    72%, 100% { transform: translateX(115%); }
}

/* Khusus PC (Agar tetap di tengah aplikasi, bukan monitor) */
@media (min-width: 768px) {
    #toast-notification {
        /* Karena aplikasi di PC lebarnya 688px dan di tengah layar,
           left: 50% sudah benar (tengah window).
           Tidak perlu penyesuaian khusus kecuali layout app Anda bergeser. */
    }
}

/* =========================================
   ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥ SOCIAL PROOF FINAL: POSISI PAS & WARNA TERANG ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥
   ========================================= */

#social-proof-container {
    position: fixed;
    z-index: 990;
    
    /* 1. POSISI TURUN (Pas di atas footer) */
    bottom: 54px !important; 
    
    /* 2. POJOK KIRI */
    left: 10px !important;   
    right: auto !important;
    transform: none !important;
    
    /* 3. ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥ KUNCI LEBAR KETAT (Agar tidak kena Keranjang) ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥ */
    width: auto !important;
    max-width: 200px !important; /* Maksimal 200px (Dijamin aman) */
    
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;
    pointer-events: none;
}

/* KHUSUS PC */
@media (min-width: 768px) {
    #social-proof-container {
        left: 50% !important;
        transform: translateX(-334px) !important; 
        bottom: 54px !important; 
    }
}

.social-proof-popup {
    pointer-events: auto !important;
    cursor: pointer;
    background:
        linear-gradient(135deg, rgba(127, 29, 29, .98), rgba(15, 23, 42, .96)) !important;
    border: 1px solid rgba(248, 113, 113, .55) !important;
    box-shadow: 0 12px 28px rgba(127, 29, 29, .34), inset 0 1px 0 rgba(255,255,255,.12) !important;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.social-proof-popup::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,.14), transparent 52%);
    transform: translateX(-120%);
    animation: proofShine 2.4s ease-in-out infinite;
    pointer-events: none;
}
.social-proof-popup .proof-thumb {
    border-color: rgba(248, 113, 113, .72) !important;
    background: #0f172a !important;
}
.social-proof-popup .proof-product {
    color: #fecaca !important;
}
@keyframes proofShine {
    0%, 42% { transform: translateX(-120%); }
    72%, 100% { transform: translateX(120%); }
}

.social-proof-popup.show {
    opacity: 1;
    transform: translateY(0);
}

.social-proof-popup:active {
    transform: scale(0.95);
    opacity: 0.8;
}
        .cart-fly-item {
            position: fixed;
            width: 44px;
            height: 44px;
            border-radius: 999px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            background:
                radial-gradient(circle at 35% 30%, rgba(255,255,255,.9), transparent 18%),
                linear-gradient(145deg, #ef4444, #991b1b);
            border: 2px solid #ffffff;
            box-shadow: 0 16px 36px rgba(239,68,68,.48), 0 0 0 8px rgba(239,68,68,.12);
            z-index: 2200;
            pointer-events: none;
            animation: cartFly .9s cubic-bezier(.22,.8,.25,1) forwards;
        }
        @keyframes cartFly {
            0% { transform: translate3d(var(--start-x), var(--start-y), 0) scale(.72); opacity: 0; filter: blur(1px); }
            12% { opacity: 1; }
            52% { transform: translate3d(var(--mid-x), var(--mid-y), 0) scale(1.08); opacity: 1; filter: blur(0); }
            82% { transform: translate3d(var(--end-x), var(--end-y), 0) scale(.96); opacity: 1; }
            100% { transform: translate3d(var(--end-x), var(--end-y), 0) scale(.18); opacity: 0; }
        }

/* --- STYLE KARTU POPUP --- */
.social-proof-popup {
    pointer-events: auto !important; /* Bisa diklik */
    cursor: pointer;
    
    /* State Awal (Sebelum Muncul) */
    opacity: 0;
    transform: translateY(20px); /* Geser ke bawah dikit */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Animasi membal halus */
}

/* State Muncul (Ditambah via JS) */
.social-proof-popup.show {
    opacity: 1;
    transform: translateY(0); /* Posisi normal */
}

/* Efek Klik */
.social-proof-popup:active {
    transform: scale(0.95);
    opacity: 0.8;
}
        /* Form Styles */
        .form-field-disabled { background-color: #334155; border-color: #7f1d1d; color: #94a3b8; cursor: not-allowed; opacity: 0.7; }
        .form-field-enabled { background-color: #1e293b; border-color: #475569; color: #e5e7eb; cursor: text; opacity: 1; }
        .whatsapp-input-special { border-width: 1px; transition: all 0.3s ease-in-out; padding: 0.5rem 0.75rem; color: #e5e7eb; }
        .whatsapp-input-special:focus { outline: none; border-color: #dc2626; box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.4); background-color: #0f172a; }

        /* Voucher & Quantity Input */
        .voucher-container-checkout { border: 1px dashed #dc2626; padding: 1rem; border-radius: 0.5rem; background: linear-gradient(145deg, #1e293b, #334155); box-shadow: 0 0 15px rgba(220, 38, 38, 0.2); }
        .voucher-container-checkout #voucher-input-checkout { background-color: #1e293b; border-color: #475569; }
        .voucher-container-checkout #apply-voucher-btn-checkout { background-color: #dc2626; transition: background-color 0.2s; }
        .voucher-container-checkout #apply-voucher-btn-checkout:hover { background-color: #b91c1c; }
        .quantity-input { width: 40px; text-align: center; border: none; color: #e5e7eb; background: transparent; -moz-appearance: textfield; }
        .quantity-input::-webkit-outer-spin-button, .quantity-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

        /* Pagination */
        .pagination-arrow-btn { display: flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; background-color: #dc2626; color: #ffffff; border-radius: 9999px; font-size: 1.25rem; font-weight: 600; transition: background-color 0.2s ease-in-out; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
        .pagination-arrow-btn:hover { background-color: #b91c1c; }
        .pagination-arrow-btn:disabled { background-color: #475569; color: #9ca3af; cursor: not-allowed; box-shadow: none; }

        /* =========================================
        12. JASA & WEBINAR & PORTFOLIO
        ========================================= */
        /* Tombol Portfolio (About Me) */
        #portfolio-btn {
            position: relative;
            overflow: hidden;
            background: linear-gradient(120deg, rgba(15, 23, 42, 0.8) 30%, rgba(220, 38, 38, 0.4) 40%, rgba(239, 68, 68, 0.8) 50%, rgba(220, 38, 38, 0.4) 60%, rgba(15, 23, 42, 0.8) 70%) !important;
            background-size: 200% auto !important;
            border: 1.5px solid rgba(239, 68, 68, 0.6) !important;
            color: white !important;
            z-index: 1;
            font-weight: 800 !important;
            letter-spacing: 0.5px;
            box-shadow: 0 0 10px rgba(220, 38, 38, 0.25) !important;
            animation: mdsShimmerSweep 3s linear infinite, mdsPulseGlow 2s ease-in-out infinite alternate !important;
            transition: transform 0.2s, border-color 0.3s, box-shadow 0.3s;
        }
        #portfolio-btn::before {
            display: none !important;
        }
        #portfolio-btn:hover {
            background: #dc2626 !important;
            border-color: #ef4444 !important;
            box-shadow: 0 0 25px rgba(239, 68, 68, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.4) !important;
            transform: scale(1.06) !important;
            animation: none !important;
        }
        @keyframes mdsShimmerSweep {
            0% { background-position: 200% center; }
            100% { background-position: -200% center; }
        }
        @keyframes mdsPulseGlow {
            0% {
                box-shadow: 0 0 8px rgba(220, 38, 38, 0.25), inset 0 0 4px rgba(239, 68, 68, 0.1);
                transform: scale(1);
            }
            100% {
                box-shadow: 0 0 18px rgba(239, 68, 68, 0.5), inset 0 0 8px rgba(239, 68, 68, 0.3);
                transform: scale(1.03);
            }
        }

        /* Section Jasa */
        .swiper-jasa .swiper-slide { width: 280px; }
        .jasa-card { background-color: white; border-radius: 0.75rem; overflow: hidden; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
        .jasa-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
        .jasa-card-image { flex-shrink: 0; }
        .jasa-card-image img { width: 100%; height: 100%; object-fit: cover; }
        .jasa-card-content { padding: 1rem; flex-grow: 1; display: flex; flex-direction: column; }
        .jasa-card-title { font-size: 1.125rem; font-weight: 600; color: #1e293b; line-height: 1.4; }
        .jasa-card-description { font-size: 0.76rem; color: #64748b; margin-top: 0.25rem; flex-grow: 1; font-style: italic; line-height: 1.28; }
        .jasa-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; }
        .jasa-card-pricing { display: flex; flex-direction: column; align-items: flex-start; }
        .jasa-card-pricing .original-price { text-decoration: line-through; color: #94a3b8; font-size: 0.8rem; }
        .jasa-card-pricing .final-price { font-size: 1.25rem; font-weight: 700; color: #dc2626; line-height: 1; }
        .jasa-card-pricing .final-price.is-free-label { display:inline-flex; align-items:center; gap:6px; background:rgba(220,38,38,.1); border:1px solid rgba(220,38,38,.24); color:#dc2626; border-radius:999px; padding:7px 12px; font-size:.9rem; font-weight:900; }
        .jasa-detail-btn { background-color: #dc2626; color: white; padding: 0.5rem 1rem; border-radius: 0.5rem; font-weight: 600; font-size: 0.875rem; text-align: center; transition: background-color 0.2s; white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; }
        .jasa-detail-btn:hover { background-color: #b91c1c; }

        /* Section Webinar */
        .swiper-webinar .swiper-wrapper { display: flex; align-items: stretch; }
        .swiper-webinar .swiper-slide { width: 100%; height: auto; flex-shrink: 0; }
        .webinar-card { text-align: center; display: flex; flex-direction: column; height: 100%; }
        .webinar-card .webinar-image-container { aspect-ratio: 3 / 4; width: 100%; background-color: #334155; overflow: hidden; }
        .webinar-card .webinar-image-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
        .webinar-card:hover .webinar-image-container img { transform: scale(1.05); }
        .webinar-card .btn-daftar { background-color: #dc2626; color: #ffffff; font-weight: 700; text-align: center; padding: 0.75rem; border-radius: 0.5rem; transition: background-color 0.2s; }
        .webinar-card .btn-daftar:hover { background-color: #b91c1c; }
        .swiper-webinar .swiper-pagination-bullet { background-color: #475569; opacity: 0.8; }
        .swiper-webinar .swiper-pagination-bullet-active { background-color: #dc2626; opacity: 1; }
        .webinar-nav { color: #dc2626; background-color: rgba(30, 41, 59, 0.7); width: 36px; height: 36px; border-radius: 50%; top: 45%; transition: background-color 0.2s; }
        .webinar-nav:hover { background-color: rgba(51, 65, 85, 0.9); }
        .webinar-nav::after { font-size: 16px; font-weight: bold; }
        .swiper-button-prev.webinar-nav { left: 8px; }
        .swiper-button-next.webinar-nav { right: 8px; }

        /* Deskripsi Produk */
        .product-description-content p { margin-bottom: 1rem; }
        .product-description-content mark { background-color: #fef08a; color: inherit; padding: 0.1em 0.3em; border-radius: 4px; }
        .product-description-content s, .product-description-content del { color: #fca5a5; text-decoration-color: #ef4444; }
        .fill-red { background-color: #fecaca; color: #b91c1c; font-weight: bold; padding: 0.1em 0.3em; border-radius: 4px; }
        .fill-green { background-color: #bbf7d0; color: #166534; padding: 0.1em 0.3em; border-radius: 4px; }
        .fill-black { background-color: #333; color: white; padding: 0.1em 0.3em; border-radius: 4px; }
        .fill-blue { background-color: #dbeafe; color: #2563eb; padding: 0.1em 0.3em; border-radius: 4px; }
        .fill-yellow { background-color: #fef9c3; color: #a16207; font-weight: bold; padding: 0.1em 0.3em; border-radius: 4px; }
        .embedded-video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 0.5rem; margin: 1rem 0; }
        .embedded-video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
        .embedded-image { width: 100%; height: auto; border-radius: 0.5rem; margin: 1rem 0; }

        /* Testimoni & Checkout Button */
        .checkout-addon-btn { animation: pulse-simple 2s ease-in-out infinite; }
        @keyframes pulse-simple {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.15); }
        }
        #testimonials .swiper-slide { width: 80%; max-width: 340px; }
        @media (min-width: 640px) { #testimonials .swiper-slide { width: 180px; } }

        .testimonial-video-grid {
            display: grid;
            grid-auto-flow: column;
            grid-auto-columns: minmax(150px, 1fr);
            gap: 12px;
            overflow-x: auto;
            padding-bottom: 6px;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
        }
        .testimonial-video-grid::-webkit-scrollbar { display: none; }
        @media (min-width: 640px) {
            .testimonial-video-grid { grid-auto-columns: minmax(170px, 1fr); }
        }
        .testimonial-video-card { scroll-snap-align: start; }
        .testimonial-video-frame {
            position: relative;
            aspect-ratio: 9 / 16;
            background: #020617;
            border-radius: 16px 16px 0 0;
            overflow: hidden;
        }
        .testimonial-video-frame iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* =========================================
        ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥ CSS MODAL KEREN (Announcement & Sosmed) ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥
        ========================================= */

        /* 1. Base Modal Card (Glassmorphism) */
        .modern-modal-card {
            background: rgba(30, 41, 59, 0.95); /* Slate-800 transparan */
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            /* Animasi Masuk */
            animation: modalPopUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @keyframes modalPopUp {
            from { opacity: 0; transform: scale(0.9) translateY(20px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }

        .announcement-modal-card {
            background:
                radial-gradient(circle at 50% 0%, rgba(239, 68, 68, 0.34), transparent 36%),
                linear-gradient(160deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96) 48%, rgba(69, 10, 10, 0.9));
            border: 1px solid rgba(248, 113, 113, 0.42);
            border-radius: 1.5rem;
            box-shadow: 0 28px 80px rgba(0, 0, 0, 0.62), 0 0 38px rgba(239, 68, 68, 0.2);
            animation: modalPopUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .announcement-hero-icon {
            background: linear-gradient(135deg, #fb7185, #dc2626 58%, #991b1b);
            box-shadow: 0 16px 42px rgba(239, 68, 68, 0.48);
        }
        .announcement-item {
            position: relative;
            overflow: hidden;
            border-radius: 1rem;
            padding: 1.1rem;
            background: linear-gradient(145deg, rgba(15, 23, 42, 0.94), rgba(127, 29, 29, 0.4));
            border: 1px solid rgba(248, 113, 113, 0.32);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 16px 36px rgba(2, 6, 23, 0.38);
        }
        .announcement-item::before {
            content: "";
            position: absolute;
            inset: 0 auto 0 0;
            width: 4px;
            background: linear-gradient(#fb7185, #ef4444, #facc15);
        }
        .announcement-item::after {
            content: "";
            position: absolute;
            width: 120px;
            height: 120px;
            right: -60px;
            top: -60px;
            background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 62%);
            pointer-events: none;
        }
        .announcement-title {
            color: #fecaca;
            font-weight: 900;
            letter-spacing: 0.01em;
            font-size: 1.05rem;
        }
        .announcement-body {
            color: #e2e8f0;
            font-size: 0.84rem;
            line-height: 1.55;
            margin-top: 0.45rem;
            font-weight: 650;
            font-style: italic;
        }
        .announcement-date {
            display: inline-flex;
            align-items: center;
            gap: 0.38rem;
            color: #fca5a5;
            background: rgba(248, 113, 113, 0.12);
            border: 1px solid rgba(248, 113, 113, 0.22);
            border-radius: 999px;
            padding: 0.3rem 0.58rem;
            margin-top: 0.8rem;
            font-size: 0.72rem;
            font-weight: 800;
        }

        /* 3. Style Kartu Sosmed */
        .sosmed-card {
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            border-radius: 1rem;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.2);
        }

        .sosmed-card:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        .sosmed-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin-right: 1rem;
            /* Icon agak miring dikit biar dinamis */
            transform: rotate(-5deg);
            transition: transform 0.3s;
        }
        
        .sosmed-card:hover .sosmed-icon {
            transform: rotate(0deg) scale(1.1);
        }

        .sosmed-arrow {
            width: 30px;
            height: 30px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s;
        }

        .sosmed-card:hover .sosmed-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        /* Animasi Mantul Lambat untuk Icon Pengumuman */
        @keyframes bounce-slow {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        .animate-bounce-slow {
            animation: bounce-slow 3s infinite ease-in-out;
        }

        /* Custom Scrollbar untuk Modal */
        .custom-scrollbar::-webkit-scrollbar { width: 6px; }
        .custom-scrollbar::-webkit-scrollbar-track { background: #1e293b; }
        .custom-scrollbar::-webkit-scrollbar-thumb { background: #475569; border-radius: 3px; }
        .custom-scrollbar::-webkit-scrollbar-thumb:hover { background: #64748b; }

        /* --- CSS BARU UNTUK CHECKOUT KEREN --- */

    /* Kartu QRIS yang menonjol */
    .qris-card-container {
        background: white; /* Wajib putih agar QR terbaca */
        border-radius: 1rem;
        padding: 1.5rem;
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.1), inset 0 0 20px rgba(0,0,0,0.05);
        border: 4px solid #dc2626; /* Frame merah */
        position: relative;
        overflow: hidden;
    }

    /* Label 'Scan Me' di pojok QRIS */
    .qris-badge {
        position: absolute;
        top: 0;
        right: 0;
        background: #dc2626;
        color: white;
        font-size: 0.6rem;
        font-weight: bold;
        padding: 4px 10px;
        border-bottom-left-radius: 10px;
    }

    /* Kartu Bank Manual */
    .bank-transfer-card {
        background: linear-gradient(145deg, #1e293b, #0f172a);
        border: 1px solid #334155;
        border-radius: 0.75rem;
        padding: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.2s ease;
        margin-bottom: 0.75rem;
    }
    .bank-transfer-card:hover {
        border-color: #dc2626;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    /* Tombol Copy Spesial */
    .btn-copy-rekening {
        background-color: #334155;
        color: #94a3b8;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
        border: 1px solid #475569;
        cursor: pointer;
    }
    .btn-copy-rekening:hover {
        background-color: #dc2626;
        color: white;
        border-color: #dc2626;
    }
    .btn-copy-rekening:active {
        transform: scale(0.9);
    }
    .btn-copy-rekening.copied {
        background-color: #16a34a; /* Hijau Sukses */
        color: white;
        border-color: #16a34a;
    }

    /* --- FIX: BACKGROUND NOTA SOLID (ANTI TRANSPARAN) --- */
    .invoice-container {
        /* Warna Latar Solid (Biru Gelap Slate-800) */
        background-color: #1e293b !important; 
        
        /* Tambahan Gradient sedikit biar mewah (Opsional, kalau gak suka hapus baris ini) */
        background-image: linear-gradient(to bottom, #1e293b, #0f172a) !important;

        /* Border dan Shadow agar nota terlihat "Melayang" di atas background */
        border: 1px solid #334155 !important;
        border-radius: 12px !important;
        box-shadow: 0 0 0 1000px rgba(0,0,0,0.5), 0 20px 50px rgba(0,0,0,0.8) !important;
        
        /* Pastikan konten tidak bocor */
        position: relative;
        overflow: hidden;
        z-index: 100; /* Pastikan di atas elemen lain */
    }

    /* Pastikan Text di dalam nota berwarna terang */
    .invoice-container p, 
    .invoice-container h2, 
    .invoice-container span {
        opacity: 1 !important; /* Pastikan text tidak transparan */
    }

    /* Memperbaiki Tombol Close (X) agar pas di pojok nota */
    #close-receipt-btn {
        position: absolute !important;
        top: -10px !important;
        right: -10px !important;
        background-color: #ef4444 !important; /* Merah */
        color: white !important;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 2px solid #1e293b;
        z-index: 110;
        box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    }

    /* --- TAMBAHAN CSS CHECKOUT MODERN --- */
    .input-modern-group { position: relative; margin-bottom: 1rem; }
    .input-modern-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: #94a3b8; transition: 0.3s; }
    .input-modern { width: 100%; background: #1e293b; border: 1px solid #334155; color: white; padding: 0.75rem 1rem 0.75rem 2.8rem; border-radius: 0.75rem; font-size: 0.9rem; transition: all 0.3s; }
    .input-modern:focus { outline: none; border-color: #dc2626; background: #0f172a; box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2); }
    .input-modern:focus + .input-modern-icon { color: #dc2626; }

    /* Sticky Footer Total */
    .checkout-sticky-footer {
        position: sticky; bottom: 0; left: 0; right: 0;
        background: rgba(15, 23, 42, 0.95); /* Gelap Transparan */
        backdrop-filter: blur(10px);
        border-top: 1px solid #334155;
        padding: 1rem; z-index: 50;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
        margin-top: auto; /* Dorong ke bawah */
    }
    /* Hilangkan padding default modal agar sticky pas */
    #checkout-modal .overflow-y-auto { padding-bottom: 0 !important; }
    #checkout-modal form { padding-bottom: 120px !important; } /* Beri ruang scroll */

    /* 2. Input WhatsApp dengan Prefix +62 */
    .input-wa-wrapper {
        display: flex;
        align-items: center;
        background-color: #1e293b;
        border: 1px solid #334155;
        border-radius: 0.75rem;
        overflow: hidden;
        transition: all 0.3s;
    }
    .input-wa-wrapper:focus-within {
        border-color: #22c55e; /* Hijau WA */
        box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
    }
    .wa-prefix {
        background-color: #0f172a;
        color: #94a3b8;
        padding: 0.75rem 1rem;
        font-weight: bold;
        font-size: 0.9rem;
        border-right: 1px solid #334155;
    }
    .wa-input-field {
        flex-grow: 1;
        background: transparent;
        border: none;
        color: white;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        outline: none;
    }

    /* --- CSS TAMBAHAN: VOUCHER & DESKRIPSI PUTIH --- */

    /* 1. Canvas Putih untuk Deskripsi */
    .description-white-canvas {
        background-color: #ffffff; /* Putih Bersih */
        color: #1e293b; /* Teks Gelap (Slate-800) agar terbaca */
        border-radius: 0.75rem;
        padding: 1.25rem;
        border: 1px solid #e2e8f0;
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.05); /* Shadow dalam halus */
        line-height: 1.7; /* Jarak antar baris lega */
    }
    /* Style text di dalam canvas putih */
    .description-white-canvas p { margin-bottom: 0.75rem; }
    .description-white-canvas strong { color: #dc2626; } /* Bold jadi Merah */
    .description-white-canvas ul { list-style-type: disc; margin-left: 1.25rem; margin-bottom: 0.75rem; }

    /* --- CSS TAMBAHAN UNTUK VOUCHER & FORM --- */

    /* Tombol Voucher Gold */
    .btn-voucher-gold-pulse {
        background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
        color: #000; /* Teks Hitam agar kontras */
        font-weight: 800;
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        animation: pulse-gold 1.5s infinite;
        border: 1px solid #FFD700;
    }

    @keyframes pulse-gold {
        0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); transform: scale(1); }
        70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); transform: scale(1.02); }
        100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); transform: scale(1); }
    }

    /* Form Input Keren (Neon/Dark Theme) */
    .input-cool-wrapper {
        position: relative;
        background: #0f172a; /* Slate 950 */
        border: 1px solid #334155;
        border-radius: 12px;
        padding: 0;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .input-cool-wrapper:focus-within {
        border-color: #dc2626; /* Merah */
        box-shadow: 0 0 10px rgba(220, 38, 38, 0.2);
    }

    .input-cool-icon {
        padding: 12px 16px;
        background: #1e293b;
        color: #94a3b8;
        border-right: 1px solid #334155;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        width: 50px;
        transition: color 0.3s;
    }

    .input-cool-wrapper:focus-within .input-cool-icon {
        color: #dc2626;
        background: #281010; /* Merah sangat gelap */
    }

    .input-cool-field {
        width: 100%;
        background: transparent;
        border: none;
        color: white;
        padding: 12px 16px;
        font-size: 0.95rem;
        outline: none;
    }

    .input-cool-field:disabled {
        background-color: #1e293b;
        color: #64748b;
        cursor: not-allowed;
    }

    .input-cool-label {
        position: absolute;
        top: -10px;
        left: 10px;
        background: #0f172a;
        padding: 0 5px;
        font-size: 0.75rem;
        color: #dc2626;
        font-weight: bold;
        display: none; /* Muncul via JS logic kalau mau, atau statis */
    }

    /* 4. Tombol Voucher (State: Active/Gold) */
    .btn-voucher-gold {
        background: linear-gradient(135deg, #d4af37, #aa771c); /* Emas Premium */
        color: #ffffff;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
        animation: pulseGold 2s infinite;
    }
    @keyframes pulseGold {
        0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
        70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
        100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
    }

    /* --- FORMATTING TEXT DI DESKRIPSI --- */

    /* 1. BOLD (Tebal) */
    .description-white-canvas b, 
    .description-white-canvas strong {
        font-weight: 800; /* Sangat tebal */
        color: #0f172a;   /* Hitam pekat */
    }

    /* 2. ITALIC (Miring) */
    .description-white-canvas i, 
    .description-white-canvas em {
        font-style: italic;
        font-family: serif; /* Font latin biar estetik */
        color: #475569;     /* Abu-abu elegan */
        letter-spacing: 0.5px;
    }

    /* 3. CORET (Strikethrough) */
    .description-white-canvas s, 
    .description-white-canvas del {
        text-decoration: line-through;
        text-decoration-color: #ef4444; /* Garis coret warna MERAH */
        text-decoration-thickness: 2px; /* Garis agak tebal */
        color: #94a3b8; /* Teksnya abu pudar */
    }

    /* --- CSS FORMAT DESKRIPSI --- */
    .fill-red { background-color: #fee2e2; color: #991b1b; padding: 2px 6px; border-radius: 4px; font-weight: bold; }
    .fill-green { background-color: #dcfce7; color: #166534; padding: 2px 6px; border-radius: 4px; font-weight: bold; }
    .fill-yellow { background-color: #fef9c3; color: #854d0e; padding: 2px 6px; border-radius: 4px; font-weight: bold; }
    .text-red { color: #dc2626; font-weight: bold; }


    /* --- TAMPILAN PREMIUM CHECKOUT (QRIS & BANK) --- */

    /* 1. Bingkai QRIS Besar & Mewah */
    .qris-premium-frame {
        width: 260px; /* Ukuran Lebih Besar */
        height: 260px;
        margin: 0 auto 20px auto;
        padding: 10px;
        background-color: white;
        border-radius: 16px;
        position: relative;
        /* Efek Border Merah Tebal dengan Glow Emas Luar */
        border: 6px solid #7f1d1d; /* Merah Marun */
        box-shadow: 
            0 0 0 3px #b45309, /* Ring Emas Tipis */
            0 0 25px rgba(180, 83, 9, 0.6); /* Glow Orange/Emas */
    }

    .qris-premium-frame img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* 2. Tombol Download Emas */
    .btn-gold-gradient {
        background: linear-gradient(180deg, #d4af37 0%, #b45309 100%);
        color: white;
        font-weight: bold;
        border: 1px solid #78350f;
        box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        text-shadow: 0 1px 1px rgba(0,0,0,0.5);
        border-radius: 50px; /* Bulat lonjong */
        padding: 10px 24px;
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: transform 0.1s;
    }
    .btn-gold-gradient:active { transform: scale(0.96); }

    /* 3. Kartu Transfer Manual (Tema Dark Red & Gold) */
    .bank-card-premium {
        /* Background Gradient Merah Gelap ke Hitam */
        background: linear-gradient(90deg, #450a0a 0%, #601515 50%, #450a0a 100%);
        border: 2px solid #b45309; /* Border Emas */
        border-radius: 12px;
        padding: 16px;
        display: flex;
        align-items: center;
        gap: 15px;
        position: relative;
        box-shadow: inset 0 0 30px rgba(0,0,0,0.6);
        margin-bottom: 12px;
        overflow: hidden;
    }

    /* Efek Kilau Halus di Kartu */
    .bank-card-premium::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255,215,0,0.05), transparent);
        transform: rotate(45deg);
        pointer-events: none;
    }

    /* Kotak Logo Bank (Emas) */
    .bank-logo-gold-box {
        width: 60px;
        height: 45px;
        background: linear-gradient(135deg, #fcd34d 0%, #d97706 100%); /* Emas Mengkilap */
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        color: #450a0a; /* Teks BNI gelap */
        font-size: 16px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.4);
        border: 1px solid rgba(255,255,255,0.4);
        flex-shrink: 0;
    }

    /* Tombol Copy (Emas Transparan) */
    .btn-copy-gold {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid #d97706;
        color: #fcd34d;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
        flex-shrink: 0;
    }
    .btn-copy-gold:hover {
        background: #d97706;
        color: white;
    }

    /* --- NOTA PREMIUM STABIL (DOWNLOAD SAFE) --- */
    .invoice-container-v2 {
        background:
            radial-gradient(circle at top right, rgba(220,38,38,.20), transparent 34%),
            linear-gradient(145deg, #1f0808, #0f172a 46%, #020617); 
        border: 2px solid #ef4444;
        border-radius: 22px;
        padding: 24px;
        position: relative;
        color: #f8fafc;
        width: 100%;
        max-width: 400px; /* Lebar fix agar proporsional */
        margin: 0 auto;
        font-family: 'Poppins', sans-serif;
        box-shadow: 0 18px 44px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,.08);
    }

    /* Header */
    .invoice-header-v2 {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        border-bottom: 2px dashed rgba(248,113,113,.35);
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .invoice-title-v2 {
        font-size: 20px;
        font-weight: 900;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 8px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

    /* Info Customer Box */
    .customer-box-v2 {
        background-color: rgba(15,23,42,.78);
        border: 1px solid rgba(248,113,113,.22);
        border-radius: 14px;
        padding: 12px;
        margin-bottom: 20px;
    }

    /* List Item Table */
    .item-table-v2 {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 16px;
    }
    .item-table-v2 td {
        padding: 6px 0;
        vertical-align: top;
        font-size: 13px;
        color: #cbd5e1;
    }
    .item-table-v2 tr {
        border-bottom: 1px solid #1e293b;
    }
    .item-price-v2 {
        text-align: right;
        font-weight: bold;
        color: white;
    }

    /* Total Block (Merah) */
    .total-block-v2 {
        background: linear-gradient(90deg, #7f1d1d 0%, #991b1b 100%);
        border: 2px solid #b45309;
        border-radius: 10px;
        padding: 12px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    .total-label-v2 {
        font-size: 10px;
        color: #fcd34d;
        text-transform: uppercase;
        font-weight: bold;
        display: block;
        margin-bottom: 2px;
    }

    .total-value-v2 {
        font-size: 24px;
        font-weight: 900;
        color: white;
    }

    .footer-note-v2 {
        text-align: center;
        font-size: 10px;
        color: #64748b;
        margin-top: 16px;
        font-weight: 500;
    }



/* =========================================
   ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥ CSS VARIAN FINAL (SOLID RED & COMPACT) ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥
   ========================================= */

.variant-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Kolom */
    gap: 8px;
    margin-top: 5px;
}

.variant-radio-input { display: none; }

/* --- TAMPILAN KARTU NORMAL (BELUM DIPILIH) --- */
.variant-card-modern {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #cbd5e1; 
    border-radius: 8px;
    padding: 8px 10px; /* Padding pas */
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    min-height: 50px;
}

.variant-card-modern:hover {
    border-color: #94a3b8;
    background-color: #f8fafc;
}

/* --- TAMPILAN SAAT DIPILIH (ACTIVE) --- */
.variant-radio-input:checked + .variant-card-modern {
    background-color: #dc2626 !important; /* MERAH FULL */
    border-color: #dc2626 !important;
    transform: scale(0.98); /* Efek tekan sedikit */
}

/* --- UBAH WARNA TEKS SAAT DIPILIH --- */

/* 1. Nama Varian jadi Putih */
.variant-radio-input:checked + .variant-card-modern .var-name {
    color: #ffffff !important;
}

/* 2. Harga Final jadi Putih */
.variant-radio-input:checked + .variant-card-modern .var-price-final {
    color: #ffffff !important;
}

/* 3. Harga Coret jadi Putih Transparan */
.variant-radio-input:checked + .variant-card-modern .var-price-coret {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* 4. Stok Badge menyesuaikan */
.variant-radio-input:checked + .variant-card-modern .var-stock-badge {
    background-color: rgba(255,255,255,0.2) !important;
    color: white !important;
}

/* 5. Hilangkan garis pemisah saat merah */
.variant-radio-input:checked + .variant-card-modern .var-price-container {
    border-left-color: rgba(255,255,255,0.3);
}

/* 6. Label input donasi saat merah */
.variant-radio-input:checked + .variant-card-modern .var-input-label {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* --- STYLE ELEMEN DALAM KARTU --- */
.var-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1; 
    margin-right: 5px;
}

.var-name {
    font-size: 10px;
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.var-price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    border-left: 1px dashed #e2e8f0;
    padding-left: 8px;
    margin-left: 4px;
    min-width: 55px;
}

.var-price-final {
    font-size: 11px;
    font-weight: 800;
    color: #dc2626;
}

.var-price-coret {
    font-size: 9px;
    color: #94a3b8;
    text-decoration: line-through;
}

/* Badge Stok */
.var-stock-badge {
    font-size: 8px;
    font-weight: 600;
    padding: 1px 4px;
    border-radius: 3px;
    display: inline-block;
}

/* Centang Putih (Hanya muncul saat dipilih) */
.variant-checkmark-badge {
    position: absolute;
    top: 0; right: 0;
    width: 0; height: 0;
    background: white;
    border-bottom-left-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; z-index: 10;
}
.variant-radio-input:checked + .variant-card-modern .variant-checkmark-badge {
    width: 18px; height: 18px;
}
.variant-checkmark-badge i {
    color: #dc2626; font-size: 9px; opacity: 0; transform: translate(2px, -2px);
}
.variant-radio-input:checked + .variant-card-modern .variant-checkmark-badge i {
    opacity: 1;
}

/* State Habis */
.variant-radio-input:disabled + .variant-card-modern {
    opacity: 0.5; background-color: #f1f5f9; cursor: not-allowed; filter: grayscale(100%);
}


/* =====================================================
   PATCH UI V2: FAQ SINGLE HTML + ABOUT + TESTIMONI + CATEGORY
   ===================================================== */
/* Profile / About header: foto lebih besar, frame transparan kiri */
.main-canvas > section.relative.flex.items-end {
    min-height: 260px !important;
    align-items: center !important;
    padding-top: 2.5rem !important;
    padding-bottom: 2.2rem !important;
}
.main-canvas > section.relative.flex.items-end .relative.z-10.flex.items-center {
    align-items: center !important;
    gap: 16px !important;
    transform: none !important;
}
.main-canvas > section.relative.flex.items-end img[alt="Profile Picture"] {
    width: 132px !important;
    height: 132px !important;
    border-radius: 26px !important;
    border: 1px solid rgba(255,255,255,.28) !important;
    background: rgba(15,23,42,.20) !important;
    padding: 6px !important;
    box-shadow: 0 22px 55px rgba(220,38,38,.28), inset 0 1px 0 rgba(255,255,255,.25) !important;
    backdrop-filter: blur(12px);
}
@media (max-width: 460px) {
    .main-canvas > section.relative.flex.items-end img[alt="Profile Picture"] { width: 112px !important; height: 112px !important; }
    .main-canvas > section.relative.flex.items-end h3 { font-size: 1.45rem !important; }
}

/* About modal: profile kiri besar dengan frame kaca transparan */
#portfolio-modal .animate-fade-in-up {
    align-items: center !important;
    gap: 22px !important;
    padding: 16px !important;
    border: 1px solid rgba(248,113,113,.22);
    background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(127,29,29,.18), rgba(15,23,42,.65));
    border-radius: 28px;
    box-shadow: 0 22px 60px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
}
#portfolio-modal .animate-fade-in-up > .relative.group {
    flex: 0 0 auto;
    padding: 10px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.26);
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 44px rgba(220,38,38,.25);
}
#portfolio-modal .animate-fade-in-up > .relative.group > div:first-child {
    width: 180px !important;
    height: 220px !important;
    border-radius: 24px !important;
    padding: 0 !important;
    background: transparent !important;
}
#portfolio-modal #portfolio-photo {
    border-radius: 22px !important;
    border: 1px solid rgba(255,255,255,.22) !important;
    object-fit: cover !important;
}
#portfolio-modal .animate-fade-in-up .absolute.bottom-2.right-2 {
    bottom: 16px !important;
    right: 16px !important;
}
@media (max-width: 767px) {
    #portfolio-modal .animate-fade-in-up { flex-direction: row !important; text-align: left !important; gap: 14px !important; }
    #portfolio-modal .animate-fade-in-up > .relative.group > div:first-child { width: 132px !important; height: 170px !important; }
    #portfolio-modal .animate-fade-in-up h2 { font-size: 1.55rem !important; }
    #portfolio-modal .animate-fade-in-up p { font-size: .8rem !important; }
}

/* Bidang keahlian & layanan tersedia */
.portfolio-skill-service > div {
    position: relative;
    overflow: hidden;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(248,113,113,.22);
    background: radial-gradient(circle at top right, rgba(239,68,68,.16), transparent 35%), rgba(15,23,42,.72);
    box-shadow: 0 16px 38px rgba(2,6,23,.36), inset 0 1px 0 rgba(255,255,255,.06);
}
.portfolio-skill-service ul { display: grid; gap: 9px; }
.portfolio-skill-service li {
    padding: 10px 12px;
    border-radius: 15px;
    border: 1px solid rgba(148,163,184,.16);
    background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.portfolio-skill-service li i {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(220,38,38,.18);
    margin-top: -1px !important;
}

/* Testimoni video: 1 baris = 1 video, vertikal */
.testimonial-video-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    overflow: visible !important;
    padding-bottom: 0 !important;
}
.testimonial-video-card {
    width: 100% !important;
    min-width: 0 !important;
    border-radius: 22px !important;
    background: linear-gradient(145deg, rgba(15,23,42,.95), rgba(69,10,10,.58)) !important;
    border-color: rgba(248,113,113,.36) !important;
}
.testimonial-video-frame {
    aspect-ratio: 3 / 4 !important;
    border-radius: 18px 18px 0 0 !important;
}
#testimonial-comments-group .swiper-wrapper { transition-timing-function: linear !important; }
#testimonial-comments-group .testimonial-comment-slide > div {
    background: linear-gradient(145deg, #ffffff, #f8fafc) !important;
    border-left-color: #dc2626 !important;
    box-shadow: 0 16px 38px rgba(2,6,23,.18) !important;
}

/* Kategori: tombol < > selalu tampil */
#scroll-cat-left, #scroll-cat-right {
    opacity: 1 !important;
    z-index: 20 !important;
}
#category-container { padding-left: 44px !important; padding-right: 44px !important; }
.category-pill[data-category="all"] {
    background: linear-gradient(145deg, #22c55e, #15803d) !important;
    border-color: rgba(187,247,208,.75) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 28px rgba(34,197,94,.22) !important;
}

/* Tombol ALL floating: icon centang */
#reset-filter-btn::before {
    content: '\f058' !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
}
#reset-filter-btn {
    text-transform: uppercase;
}

    

/* === PATCH v1.1: Testimoni portrait 1-per-row, Flashsale marquee, Toast welcome === */
#testimonial-video-group .testimonial-video-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    overflow: visible !important;
    padding-bottom: 0 !important;
}
#testimonial-video-group .testimonial-video-card {
    width: min(360px, 100%) !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    border-radius: 24px !important;
}
#testimonial-video-group .testimonial-video-frame {
    aspect-ratio: 3 / 4 !important;
    border-radius: 20px 20px 0 0 !important;
    min-height: 420px;
}
@media (max-width: 480px) {
    #testimonial-video-group .testimonial-video-card { width: min(310px, 100%) !important; }
    #testimonial-video-group .testimonial-video-frame { min-height: 480px; }
}
.swiper-flash-sale .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: stretch !important;
}
.swiper-flash-sale .swiper-slide {
    flex-shrink: 0 !important;
}
.flash-sale-section-glow .swiper-flash-sale {
    cursor: grab;
}

/* 1) Profil halaman utama kembali bulat seperti awal */
.main-canvas > section.relative.flex.items-end img[alt="Profile Picture"]{
    width: 96px !important;
    height: 96px !important;
    border-radius: 9999px !important;
    border: 4px solid #b91c1c !important;
    padding: 0 !important;
    background: #0f172a !important;
    box-shadow: 0 14px 35px rgba(220,38,38,.28) !important;
    object-fit: cover !important;
}
.main-canvas > section.relative.flex.items-end{
    min-height: 230px !important;
    align-items: end !important;
    padding-top: 0 !important;
    padding-bottom: 1.5rem !important;
}
.main-canvas > section.relative.flex.items-end .relative.z-10.flex.items-center{
    gap: 12px !important;
    transform: translateY(.5rem) !important;
}

/* 2) About Me: foto kiri, nama + penjelasan menyatu di sisi foto */
#portfolio-modal .animate-fade-in-up{
    display: grid !important;
    grid-template-columns: 170px minmax(0,1fr) !important;
    align-items: center !important;
    gap: 18px !important;
    text-align: left !important;
    padding: 18px !important;
    border-radius: 28px !important;
    background:
      radial-gradient(circle at 0% 50%, rgba(220,38,38,.25), transparent 34%),
      linear-gradient(135deg, rgba(255,255,255,.07), rgba(15,23,42,.82)) !important;
    border: 1px solid rgba(248,113,113,.28) !important;
}
#portfolio-modal .animate-fade-in-up > .relative.group{
    width: 170px !important;
    height: 210px !important;
    padding: 10px !important;
    border-radius: 30px !important;
    background: rgba(255,255,255,.045) !important;
    border: 1px solid rgba(255,255,255,.22) !important;
    box-shadow: 0 20px 55px rgba(220,38,38,.23), inset 0 1px 0 rgba(255,255,255,.12) !important;
}
#portfolio-modal .animate-fade-in-up > .relative.group > div:first-child{
    width: 100% !important;
    height: 100% !important;
    border-radius: 24px !important;
    background: transparent !important;
    padding: 0 !important;
}
#portfolio-modal #portfolio-photo{
    width: 100% !important;
    height: 100% !important;
    border-radius: 22px !important;
    border: 1px solid rgba(255,255,255,.22) !important;
    object-fit: cover !important;
}
#portfolio-modal .animate-fade-in-up > .text-center{
    text-align: left !important;
}
#portfolio-modal .animate-fade-in-up .justify-center{
    justify-content: flex-start !important;
}
#portfolio-modal .about-inline-desc{
    margin-top: 12px;
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.7;
    max-width: 520px;
}
#portfolio-modal .about-inline-principle{
    margin-top: 12px;
    padding: 11px 13px;
    border-radius: 16px;
    background: rgba(15,23,42,.72);
    border: 1px dashed rgba(248,113,113,.35);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    font-style: italic;
}
#portfolio-modal .about-profile-card-old{ display:none !important; }
@media (max-width:640px){
    #portfolio-modal .animate-fade-in-up{ grid-template-columns: 130px minmax(0,1fr) !important; gap: 12px !important; padding: 14px !important; }
    #portfolio-modal .animate-fade-in-up > .relative.group{ width:130px !important; height:165px !important; }
    #portfolio-modal .animate-fade-in-up h2{ font-size:1.45rem !important; }
    #portfolio-modal .animate-fade-in-up p{ font-size:.76rem !important; }
    #portfolio-modal .about-inline-desc{ font-size:11.5px; line-height:1.55; }
}

/* 3) Kategori ALL merah sesuai tema + icon centang */
.category-pill[data-category="all"], #reset-filter-btn{
    background: linear-gradient(145deg, #ef4444 0%, #dc2626 48%, #991b1b 100%) !important;
    border-color: rgba(254,202,202,.78) !important;
    color:#fff !important;
    box-shadow: 0 14px 32px rgba(220,38,38,.32), inset 0 1px 0 rgba(255,255,255,.32) !important;
}
#reset-filter-btn::before,
.category-pill[data-category="all"]::before{
    content:'\f058' !important;
    font-family:'Font Awesome 6 Free' !important;
    font-weight:900 !important;
    margin-right:6px !important;
}
#reset-filter-btn{ min-width: auto !important; }

/* 4) FAQ paksa tampil sebagai section single HTML */
#faq{ display:block !important; visibility:visible !important; opacity:1 !important; }
#faq .faq-shell{ margin-top: 10px !important; }

/* 5) Testimoni video: vertikal, 1 baris 1 video */
#testimonial-video-group{ display:block !important; }
#testimonial-video-group.hidden{ display:none !important; }
#testimonial-video-group .testimonial-video-grid{
    display:flex !important;
    flex-direction:column !important;
    grid-auto-flow: unset !important;
    grid-auto-columns: unset !important;
    overflow:visible !important;
    gap:16px !important;
    padding:0 !important;
}
#testimonial-video-group .testimonial-video-card{
    width:100% !important;
    min-width:0 !important;
    max-width:100% !important;
    scroll-snap-align: unset !important;
}
#testimonial-video-group .testimonial-video-frame{
    aspect-ratio:16/9 !important;
}

/* 6) Komentar testimoni bergerak terus */
#testimonial-comments-group{ overflow:hidden !important; }
#testimonial-comments-group .swiper-wrapper{
    transition-timing-function: linear !important;
    align-items: stretch !important;
}
#testimonial-comments-group .swiper-slide{ height:auto !important; }

/* V4: profil utama tetap bulat */
.main-canvas > section.relative.flex.items-end img[alt="Profile Picture"]{
    width: 112px !important;
    height: 112px !important;
    border-radius: 9999px !important;
    padding: 0 !important;
    border: 4px solid rgba(220,38,38,.86) !important;
    background: transparent !important;
    box-shadow: 0 18px 42px rgba(220,38,38,.28) !important;
}

/* V4: About Me digabung foto + nama + profil singkat */
#portfolio-modal .animate-fade-in-up{
    display: grid !important;
    grid-template-columns: 180px minmax(0,1fr) !important;
    align-items: center !important;
    text-align: left !important;
    gap: 22px !important;
}
#portfolio-modal .animate-fade-in-up > .relative.group{
    width: 180px !important;
    min-width: 180px !important;
    height: 230px !important;
}
#portfolio-modal .animate-fade-in-up > .relative.group > div:first-child{
    width: 100% !important;
    height: 100% !important;
    border-radius: 28px !important;
}
#portfolio-modal #portfolio-photo{
    border-radius: 26px !important;
    object-fit: cover !important;
}
#portfolio-modal .about-combined-profile-text,
#portfolio-modal .about-inline-desc{
    margin-top: 12px !important;
    padding: 14px !important;
    border-radius: 18px !important;
    color: #cbd5e1 !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
    border: 1px solid rgba(248,113,113,.22) !important;
    background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(220,38,38,.10), rgba(15,23,42,.62)) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08) !important;
}
#portfolio-modal .about-combined-profile-text span{ color:#fca5a5; font-weight:900; }
#portfolio-modal .about-combined-profile-text div,
#portfolio-modal .about-inline-principle{
    margin-top: 10px !important;
    padding: 10px 12px !important;
    border-radius: 14px !important;
    background: rgba(15,23,42,.78) !important;
    border: 1px dashed rgba(248,113,113,.38) !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
}
#portfolio-modal .about-profile-card-old{ display:none !important; }
@media(max-width:640px){
    #portfolio-modal .animate-fade-in-up{ grid-template-columns: 128px minmax(0,1fr) !important; gap: 12px !important; padding: 12px !important; }
    #portfolio-modal .animate-fade-in-up > .relative.group{ width:128px !important; min-width:128px !important; height:170px !important; }
    #portfolio-modal .animate-fade-in-up h2{ font-size:1.35rem !important; line-height:1.05 !important; }
    #portfolio-modal .about-combined-profile-text, #portfolio-modal .about-inline-desc{ font-size:11px !important; padding:10px !important; }
}

/* V4: Video testimoni portrait, 1 baris 1 video */
#testimonial-video-group .testimonial-video-grid{
    display:flex !important;
    flex-direction:column !important;
    gap:18px !important;
    overflow:visible !important;
    padding:0 !important;
}
#testimonial-video-group .testimonial-video-card{
    width:100% !important;
    max-width:430px !important;
    margin:0 auto !important;
    border-radius:24px !important;
    overflow:hidden !important;
}
#testimonial-video-group .testimonial-video-frame{
    width:100% !important;
    aspect-ratio:3/4 !important;
    height:auto !important;
    border-radius:22px 22px 0 0 !important;
    background:#020617 !important;
}
#testimonial-video-group .testimonial-video-frame iframe{
    width:100% !important;
    height:100% !important;
}

/* V4: ALL kategori 1 icon saja, warna merah */
.category-pill[data-category="all"]{
    background: linear-gradient(145deg,#ef4444,#dc2626 48%,#991b1b) !important;
    border-color: rgba(254,202,202,.78) !important;
    color:#fff !important;
    box-shadow:0 14px 32px rgba(220,38,38,.32), inset 0 1px 0 rgba(255,255,255,.32) !important;
}
.category-pill[data-category="all"] i{ display:none !important; }
.category-pill[data-category="all"]::before{
    content:'\f058' !important;
    font-family:'Font Awesome 6 Free' !important;
    font-weight:900 !important;
    margin-right:7px !important;
}
#reset-filter-btn{
    background: linear-gradient(145deg,#ef4444,#dc2626 48%,#991b1b) !important;
    color:#fff !important;
    border-color: rgba(254,202,202,.78) !important;
    min-width: 132px !important;
}
#reset-filter-btn::before{
    content:'\f00a' !important;
    font-family:'Font Awesome 6 Free' !important;
    font-weight:900 !important;
    margin-right:7px !important;
}

/* V4: saat filter aktif, area produk enak dibaca */
.product-filter-focus #products-container{
    scroll-margin-top: 92px;
}

/* V1.2: paksa video testimoni portrait 3:4, 1 video per baris */
#testimonial-video-group .testimonial-video-grid{
    display:flex !important;
    flex-direction:column !important;
    grid-template-columns:1fr !important;
    gap:20px !important;
    overflow:visible !important;
    padding:0 !important;
}
#testimonial-video-group .testimonial-video-card{
    width:100% !important;
    max-width:430px !important;
    min-width:0 !important;
    margin:0 auto !important;
    border-radius:24px !important;
    overflow:hidden !important;
}
#testimonial-video-group .testimonial-video-frame{
    width:100% !important;
    aspect-ratio:3/4 !important;
    height:auto !important;
    min-height:0 !important;
    border-radius:22px 22px 0 0 !important;
    background:#020617 !important;
}
#testimonial-video-group .testimonial-video-frame iframe{
    width:100% !important;
    height:100% !important;
}

/* V1.2: hook benefit dibuat lebih besar dan menonjol seperti police line */
#benefits .benefit-hook-label{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:10px !important;
    padding:12px 18px !important;
    border-radius:16px !important;
    border:2px dashed rgba(250,204,21,.95) !important;
    background:
        repeating-linear-gradient(135deg, rgba(250,204,21,.22) 0 10px, rgba(127,29,29,.35) 10px 20px),
        linear-gradient(145deg, rgba(127,29,29,.96), rgba(15,23,42,.96)) !important;
    box-shadow:0 0 0 4px rgba(250,204,21,.08), 0 14px 38px rgba(220,38,38,.32), inset 0 1px 0 rgba(255,255,255,.16) !important;
    color:#fff7ed !important;
    transform:rotate(-1deg) !important;
}
#benefits .benefit-hook-label span{
    font-size:clamp(1.05rem, 3.2vw, 1.65rem) !important;
    line-height:1.1 !important;
    font-weight:1000 !important;
    letter-spacing:.02em !important;
    text-transform:uppercase !important;
    text-shadow:0 2px 0 rgba(0,0,0,.35), 0 0 18px rgba(250,204,21,.18) !important;
}
#benefits .benefit-hook-label i{
    width:34px !important;
    height:34px !important;
    border-radius:999px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    background:#dc2626 !important;
    border:1px solid rgba(254,202,202,.8) !important;
    color:#fef3c7 !important;
    box-shadow:0 0 18px rgba(220,38,38,.5) !important;
}
#benefits .benefit-subhook{
    font-size:clamp(1rem, 2.5vw, 1.35rem) !important;
}

/* V1.3: kategori ALL mengikuti state aktif seperti tombol kategori lain */
.category-pill[data-category="all"]{
    background:#1e293b !important;
    border-color:#dc2626 !important;
    color:#e5e7eb !important;
    box-shadow:none !important;
}
.category-pill[data-category="all"]::before{ content:none !important; display:none !important; }
.category-pill.active,
.category-pill[data-category="all"].active{
    background:#dc2626 !important;
    border-color:#ef4444 !important;
    color:#fff !important;
    box-shadow:0 8px 20px rgba(220,38,38,.26) !important;
}

/* V1.3: flash sale marquee stabil, tanpa akselerasi/lompat saat item terakhir habis */
.swiper-flash-sale .swiper-wrapper{
    will-change: transform;
}
.swiper-flash-sale .swiper-slide{
    width:260px !important;
    margin-right:12px !important;
    flex-shrink:0 !important;
}
@media(max-width:480px){
    .swiper-flash-sale .swiper-slide{ width:260px !important; }
}
@keyframes mdsFlashSaleMarquee{
    from{ transform:translate3d(0,0,0); }
    to{ transform:translate3d(-50%,0,0); }
}

/* V1.3: testimoni lebih lega dan judul video dihapus */
#testimonial-comments-group .testimonial-comment-slide{
    margin-right:22px !important;
}
#testimonial-comments-group .swiper-wrapper{
    gap:0 !important;
}
#testimonial-video-group > .mb-3{
    display:none !important;
}

/* V1.3: webinar 16:9 dengan frame landscape */
.swiper-webinar .swiper-wrapper{
    justify-content:center !important;
}
.swiper-webinar .swiper-slide{
    width:280px !important;
    max-width:280px !important;
}
.webinar-card{
    max-width:260px !important;
    margin:0 auto !important;
}
.webinar-card .webinar-image-container{
    aspect-ratio:3/4 !important;
    height:auto !important;
    max-height:none !important;
}

/* V1.3: heading jasa lebih bersih */
.jasa-heading-wrap{
    margin-bottom:2px !important;
}
.jasa-heading > i{
    display:none !important;
}
#jasa-subtitle{
    color: #94a3b8 !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
    margin-top: 4px !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
}

/* V1.3: notifikasi di atas keranjang dibuat flat, tanpa kilau/3D */
#toast-notification{
    background:#16a34a !important;
    border:1px solid rgba(187,247,208,.56) !important;
    box-shadow:0 8px 18px rgba(2,6,23,.28) !important;
    border-radius:12px !important;
    transform:translateX(-50%) translateY(14px) !important;
    transition:opacity .25s ease, transform .25s ease !important;
}
#toast-notification.show{
    transform:translateX(-50%) translateY(0) !important;
}
#toast-notification::after{
    display:none !important;
    animation:none !important;
}
#toast-notification::before{
    background:transparent !important;
    border:0 !important;
    width:auto !important;
    height:auto !important;
}
.social-proof-popup{
    background:rgba(30,41,59,.96) !important;
    border:1px solid rgba(100,116,139,.58) !important;
    box-shadow:0 8px 18px rgba(2,6,23,.28) !important;
    transform:translateY(10px) !important;
    transition:opacity .25s ease, transform .25s ease !important;
}
.social-proof-popup.show{
    transform:translateY(0) !important;
}
.social-proof-popup::before{
    display:none !important;
    animation:none !important;
}
.social-proof-popup:active{
    transform:translateY(0) !important;
    opacity:.92 !important;
}
#reset-filter-btn{
    background:#dc2626 !important;
    border:1px solid rgba(254,202,202,.52) !important;
    border-radius:12px !important;
    box-shadow:0 8px 18px rgba(2,6,23,.28) !important;
    transform:none !important;
    animation:none !important;
}
#reset-filter-btn::after{
    display:none !important;
    animation:none !important;
}
#reset-filter-btn.animated{
    animation:none !important;
}
#reset-filter-btn:hover{
    transform:none !important;
    box-shadow:0 8px 18px rgba(2,6,23,.28) !important;
}

/* V1.4: marquee flash sale dan testimoni nyambung stabil */
.category-scroll-shell{
    width:calc(100% - 92px) !important;
    max-width:calc(100% - 92px) !important;
    flex:0 0 calc(100% - 92px) !important;
    margin:0 auto !important;
    padding:0 8px !important;
    overflow-x:auto !important;
    border-radius:18px !important;
    background:linear-gradient(135deg, rgba(15,23,42,.92), rgba(69,10,10,.52)) !important;
    border:1px solid rgba(248,113,113,.42) !important;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.07), 0 16px 36px rgba(2,6,23,.34) !important;
    box-sizing:border-box !important;
}
#category-container{
    width:max-content !important;
    min-width:max-content !important;
    border:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    border-radius:0 !important;
    padding:8px 0 !important;
}
#scroll-cat-left{ left:0 !important; }
#scroll-cat-right{ right:0 !important; }
.swiper-flash-sale{
    overflow:hidden !important;
}
.swiper-flash-sale .swiper-wrapper,
#testimonial-wrapper,
.agency-portfolio-grid{
    will-change:transform;
}
.swiper-flash-sale .swiper-wrapper,
.swiper-agency-portfolio .swiper-wrapper,
#testimonial-comments-group .swiper-wrapper {
    transition-timing-function: linear !important;
}
.swiper-flash-sale .swiper-slide{
    width:260px !important;
    min-width:260px !important;
    margin-right:12px !important;
    flex-shrink:0 !important;
}
#testimonial-comments-group .testimonial-comment-slide{
    width:260px !important;
    min-width:260px !important;
    margin-right:22px !important;
    flex-shrink:0 !important;
}
@keyframes mdsCommentMarquee{
    from{ transform:translate3d(0,0,0); }
    to{ transform:translate3d(-50%,0,0); }
}

/* V1.4: webinar card lebih terasa sebagai slider */
.webinar-showcase .webinar-shell{
    background:linear-gradient(145deg, rgba(15,23,42,.98), rgba(30,64,105,.82)) !important;
    border:1px solid rgba(96,165,250,.28) !important;
    border-radius:22px !important;
    padding:18px 14px 20px !important;
    box-shadow:0 18px 46px rgba(2,6,23,.38), inset 0 1px 0 rgba(255,255,255,.08) !important;
    overflow:hidden !important;
}
.webinar-slider-wrap{
    overflow:visible !important;
    width:100% !important;
    max-width:640px !important;
    margin:0 auto !important;
    padding:0 !important;
    box-sizing:border-box !important;
    transform:translateX(clamp(28px, 8vw, 54px)) !important;
}
.swiper-webinar{
    overflow:visible !important;
    padding:8px 0 8px !important;
}
.swiper-webinar .swiper-wrapper{
    justify-content:flex-start !important;
    align-items:center !important;
    transition-timing-function:cubic-bezier(.28,.82,.24,1) !important;
}
.swiper-webinar .swiper-slide{
    width:280px !important;
    max-width:280px !important;
    opacity:.4;
    transform:scale(.78);
    transform-origin:center center;
    transition:opacity .65s ease, transform .82s cubic-bezier(.22,.86,.28,1), filter .65s ease;
    filter:saturate(.52) blur(.2px);
}
.swiper-webinar .swiper-slide-active{
    opacity:1;
    transform:scale(1);
    filter:saturate(1);
    z-index:5;
}
.swiper-webinar .swiper-slide-prev,
.swiper-webinar .swiper-slide-next{
    opacity:.72;
    transform:scale(.86);
    filter:saturate(.76);
    z-index:2;
}
.webinar-card{
    max-width:260px !important;
    margin:0 auto !important;
    border-radius:22px !important;
    overflow:hidden !important;
    border:1px solid rgba(147,197,253,.32) !important;
    background:#0f172a !important;
    box-shadow:0 20px 42px rgba(2,6,23,.34) !important;
}
.webinar-card .webinar-image-container{
    border-radius:0 !important;
    background:linear-gradient(145deg,#0f172a,#1e3a5f) !important;
}
.webinar-card-body{
    background:linear-gradient(180deg,#f8fbff,#dbeafe) !important;
    padding:14px !important;
    border-top:1px solid rgba(15,23,42,.08) !important;
}
.webinar-live-badge{
    position:absolute;
    top:12px;
    left:12px;
    z-index:10;
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:6px 10px;
    border-radius:999px;
    background:linear-gradient(135deg,#ef4444,#991b1b);
    color:#fff;
    font-size:11px;
    font-weight:950;
    letter-spacing:.04em;
    border:1px solid rgba(254,202,202,.55);
    box-shadow:0 10px 24px rgba(153,27,27,.36);
}
.webinar-live-badge i{
    color:#fde68a;
    font-size:10px;
}
.webinar-nav{
    display:none !important;
}
.webinar-nav::after{
    font-size:14px !important;
    font-weight:900 !important;
}
.swiper-button-prev.webinar-nav{ left:4px !important; }
.swiper-button-next.webinar-nav{ right:4px !important; }
@media(max-width:480px){
    .category-scroll-shell{
        width:calc(100% - 82px) !important;
        max-width:calc(100% - 82px) !important;
        flex-basis:calc(100% - 82px) !important;
    }
    .webinar-slider-wrap{ width:100% !important; padding:0 !important; transform:none !important; }
    .swiper-webinar .swiper-slide{ width:100% !important; max-width:100% !important; min-width:100% !important; }
    .swiper-button-prev.webinar-nav{ left:0 !important; }
    .swiper-button-next.webinar-nav{ right:0 !important; }
}

/* V2.3: detail CTA selalu tampil, tema terang/gelap, dan menu Akun */
.product-share-btn{
    display:inline-flex;
    align-items:center;
    gap:7px;
    min-height:34px;
    border-radius:999px;
    padding:0 12px;
    color:#fff;
    font-size:12px;
    font-weight:950;
    border:1px solid rgba(254,202,202,.38);
    background:radial-gradient(circle at 25% 10%, rgba(255,255,255,.32), transparent 26%), linear-gradient(135deg,#ef4444,#991b1b);
    box-shadow:0 10px 24px rgba(153,27,27,.32), inset 0 1px 0 rgba(255,255,255,.18);
}
.product-share-btn:hover{ transform:translateY(-1px); box-shadow:0 14px 30px rgba(153,27,27,.42); }
.product-detail-sticky-actions{
    display:flex;
    align-items:center;
    gap:12px;
    width:100%;
    padding:0;
}
.product-detail-sticky-actions > button,
.product-detail-sticky-actions > a{
    min-height:42px;
    border-radius:10px;
}
.product-detail-back-btn{
    flex:1;
    background:#2e3b4e;
    color:#ffffff;
    border:1px solid #3d4a5e;
    font-size:13px;
    font-weight:700;
    text-transform:none;
    letter-spacing:.02em;
    border-radius:12px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: background 0.2s ease, border-color 0.2s ease;
}
.product-detail-back-btn:hover{ background:#3e4d66; color:#fff; border-color:#4e5e78; }
.account-login-card::before{
    content:'';
    position:absolute;
    inset:-1px;
    background:linear-gradient(120deg, transparent, rgba(255,255,255,.32), transparent);
    transform:translateX(-120%);
    transition:transform .65s ease;
}
.account-login-card:hover::before{ transform:translateX(120%); }
#social-card-login.account-login-card{
    background:linear-gradient(135deg,#ef4444 0%,#991b1b 48%,#1f2937 100%) !important;
    border:1px solid rgba(248,113,113,.48) !important;
    box-shadow:0 16px 34px rgba(127,29,29,.28), inset 0 1px 0 rgba(255,255,255,.12) !important;
}
#social-card-login.account-login-card .sosmed-icon{
    color:#ffffff !important;
    text-shadow:0 0 12px rgba(255,255,255,.22);
}
#social-card-login.account-login-card .sosmed-arrow{
    background:rgba(15,23,42,.45) !important;
    color:#ffffff !important;
    border:1px solid rgba(255,255,255,.12);
}
#product-finder-btn i{
    color:#e5e7eb;
    filter:drop-shadow(0 0 8px rgba(248,113,113,.25));
}
.product-finder-card{
    height:min(86vh, 720px);
    max-height:86vh;
    min-height:420px;
    border-radius:22px;
    background:linear-gradient(180deg,#1f2937 0%,#111827 56%,#0f172a 100%);
    border:1px solid rgba(248,113,113,.24);
    box-shadow:0 26px 80px rgba(0,0,0,.48), 0 0 38px rgba(220,38,38,.14);
}
.product-finder-head{
    flex-shrink:0;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:14px;
    padding:22px 22px 12px;
    border-bottom:1px solid rgba(148,163,184,.16);
}
.product-finder-kicker{
    margin:0 0 4px;
    font-size:10px;
    font-weight:950;
    letter-spacing:.2em;
    text-transform:uppercase;
    color:#f87171;
}
.product-finder-head h3{
    margin:0;
    font-size:26px;
    line-height:1;
    font-weight:950;
    color:#fff;
}
.product-finder-close{
    width:40px;
    height:40px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#cbd5e1;
    background:rgba(15,23,42,.68);
    border:1px solid rgba(148,163,184,.16);
    transition:.2s ease;
}
.product-finder-close:hover{
    color:#fff;
    background:#dc2626;
}
.product-finder-search{
    flex-shrink:0;
    display:flex;
    align-items:center;
    gap:10px;
    margin:16px 22px 12px;
    padding:0 14px;
    height:48px;
    border-radius:16px;
    background:#0f172a;
    border:1px solid rgba(148,163,184,.22);
    color:#f87171;
}
.product-finder-search input{
    width:100%;
    min-width:0;
    background:transparent;
    border:0;
    outline:0;
    color:#fff;
    font-size:14px;
    font-weight:700;
}
.product-finder-search input::placeholder{ color:#64748b; }
.product-finder-list{
    flex:1 1 auto;
    min-height:0;
    display:flex;
    flex-direction:column;
    gap:10px;
    padding:0 22px 16px;
    overflow-y:auto;
    overscroll-behavior:contain;
}
.product-finder-empty{
    margin:8px 0 4px;
    padding:24px;
    border-radius:16px;
    text-align:center;
    color:#94a3b8;
    background:rgba(15,23,42,.72);
    border:1px dashed rgba(148,163,184,.25);
    font-weight:700;
}
.product-finder-item{
    display:grid;
    grid-template-columns:54px minmax(0,1fr) 42px;
    align-items:center;
    gap:12px;
    padding:10px;
    border-radius:16px;
    background:linear-gradient(135deg,rgba(15,23,42,.92),rgba(30,41,59,.78));
    border:1px solid rgba(148,163,184,.18);
    cursor:pointer;
    transition:transform .18s ease, border-color .18s ease, background .18s ease;
}
.product-finder-item:hover{
    transform:translateY(-1px);
    border-color:rgba(248,113,113,.45);
    background:linear-gradient(135deg,rgba(127,29,29,.34),rgba(15,23,42,.92));
}
.product-finder-thumb{
    width:54px;
    height:54px;
    border-radius:14px;
    overflow:hidden;
    background:#0f172a;
    border:1px solid rgba(148,163,184,.18);
}
.product-finder-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.product-finder-info{
    min-width:0;
}
.product-finder-meta{
    display:flex;
    gap:6px;
    flex-wrap:wrap;
    margin-bottom:3px;
}
.product-finder-meta span{
    padding:2px 7px;
    border-radius:999px;
    background:rgba(220,38,38,.18);
    color:#fecaca;
    font-size:9px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.03em;
}
.product-finder-info h4{
    margin:0;
    color:#fff;
    font-size:13px;
    line-height:1.2;
    font-weight:950;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.product-finder-info p{
    margin:3px 0 4px;
    color:#94a3b8;
    font-size:11px;
    line-height:1.2;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.product-finder-info strong{
    color:#f87171;
    font-size:12px;
    line-height:1;
}
.product-finder-add{
    width:40px;
    height:40px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#ef4444,#dc2626);
    color:#fff;
    border:2px solid rgba(255,255,255,.72);
    box-shadow:0 10px 24px rgba(220,38,38,.28);
    transition:transform .18s ease, background .18s ease;
}
.product-finder-add:hover{
    transform:scale(1.06);
    background:linear-gradient(135deg,#f87171,#dc2626);
}
.product-finder-add.is-added{
    background:linear-gradient(135deg,#16a34a,#22c55e);
    box-shadow:0 10px 24px rgba(34,197,94,.24);
}
.member-login-step{
    padding:18px 22px 8px;
    display:flex;
    flex-direction:column;
    gap:12px;
}
.member-catalog-subtitle{
    margin:8px 0 0;
    color:#94a3b8;
    font-size:12px;
    line-height:1.35;
    font-weight:700;
}
.member-wa-label{
    color:#bfdbfe;
    font-size:10px;
    font-weight:950;
    letter-spacing:.14em;
    text-transform:uppercase;
}
.member-wa-box{
    display:grid;
    grid-template-columns:68px 1fr;
    overflow:hidden;
    border-radius:16px;
    background:#0f172a;
    border:1px solid rgba(248,113,113,.28);
}
.member-wa-box span{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#22c55e;
    font-weight:950;
    border-right:1px solid rgba(148,163,184,.18);
    background:rgba(15,23,42,.76);
}
.member-wa-box input{
    min-width:0;
    border:0;
    outline:0;
    background:transparent;
    color:#fff;
    padding:14px 14px;
    font-weight:900;
}
.member-login-btn{
    border-radius:16px;
    padding:14px 16px;
    color:#fff;
    font-size:13px;
    font-weight:950;
    background:linear-gradient(135deg,#ef4444,#991b1b);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 16px 34px rgba(127,29,29,.28);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    transition:.2s ease;
}
.member-login-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 18px 38px rgba(220,38,38,.34);
}
.member-login-status{
    min-height:34px;
    margin:0;
    color:#94a3b8;
    font-size:11px;
    font-weight:700;
    line-height:1.35;
    padding:10px 12px;
    border-radius:14px;
    background:rgba(15,23,42,.65);
    border:1px solid rgba(148,163,184,.14);
}
.member-login-status[data-type="error"]{
    color:#fecaca;
    border-color:rgba(248,113,113,.34);
    background:rgba(127,29,29,.22);
}
.member-catalog-step{
    min-height:0;
    display:flex;
    flex-direction:column;
    flex:1 1 auto;
}
.member-catalog-step.hidden,
.member-login-step.hidden{
    display:none;
}
.member-header-search{
    display:flex;
    align-items:center;
    gap:8px;
    width:100%;
    flex:1 1 auto;
    min-width:0;
    height:40px;
    padding:0 12px;
    border-radius:13px;
    background:#ffffff;
    border:1px solid rgba(220,38,38,.18);
    color:#dc2626;
    box-shadow:0 10px 24px rgba(15,23,42,.06);
}
.member-header-search input{
    width:100%;
    min-width:0;
    border:0;
    outline:0;
    background:transparent;
    color:#111827;
    font-size:13px;
    font-weight:800;
}
.member-header-search input::placeholder{ color:#94a3b8; }
.member-search-panel{
    display:none;
    width:100%;
    min-width:0;
}
.member-search-title{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    margin-bottom:0;
}
.member-home-btn{
    width:auto !important;
    min-width:84px;
    padding:0 12px !important;
    gap:8px;
    font-size:12px;
    font-weight:950;
}
.member-price-save{
    display:inline-flex;
    margin-top:5px;
    color:#fde68a;
    font-size:10px;
    font-weight:900;
}
.member-floating-cart{
    position:fixed;
    right:max(18px, calc((100vw - 688px) / 2 + 18px));
    bottom:22px;
    z-index:1570;
    width:64px;
    height:64px;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    background:linear-gradient(135deg,#ef4444,#991b1b);
    border:2px solid rgba(255,255,255,.72);
    box-shadow:0 20px 48px rgba(127,29,29,.42),0 0 28px rgba(239,68,68,.24);
    transition:transform .18s ease, filter .18s ease;
}
.member-floating-cart:hover{ transform:translateY(-2px) scale(1.03); filter:brightness(1.08); }
.member-floating-cart.hidden{ display:none; }
.member-floating-cart i{ font-size:24px; }
.member-floating-cart span{
    position:absolute;
    top:-8px;
    right:-8px;
    min-width:24px;
    height:24px;
    padding:0 6px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#dc2626;
    border:2px solid #dc2626;
    font-size:11px;
    font-weight:950;
}
.member-checkout-identity{
    display:flex;
    align-items:center;
    gap:13px;
    padding:15px;
    border-radius:18px;
    background:linear-gradient(135deg,rgba(127,29,29,.28),rgba(15,23,42,.92));
    border:1px solid rgba(248,113,113,.26);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.04),0 18px 38px rgba(2,6,23,.22);
}
.member-checkout-icon{
    width:46px;
    height:46px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#ef4444,#991b1b);
    color:#fff;
    box-shadow:0 12px 26px rgba(127,29,29,.34);
    flex-shrink:0;
}
.member-checkout-label{
    margin:0 0 3px;
    color:#fecaca;
    font-size:10px;
    font-weight:950;
    letter-spacing:.14em;
    text-transform:uppercase;
}
.member-checkout-identity h4{
    margin:0;
    color:#fff;
    font-size:16px;
    line-height:1.15;
    font-weight:950;
}
.member-checkout-identity p:last-child{
    margin:3px 0 0;
    color:#94a3b8;
    font-size:12px;
    font-weight:800;
}
.member-main-site-link{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    border-radius:14px;
    padding:13px 16px;
    background:#1e293b;
    color:#cbd5e1;
    border:1px solid rgba(148,163,184,.22);
    font-size:12px;
    font-weight:950;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.checkout-product-row{
    background:linear-gradient(135deg,rgba(15,23,42,.96),rgba(30,41,59,.86));
    border:1px solid rgba(148,163,184,.18);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.04),0 12px 28px rgba(2,6,23,.22);
}
.checkout-product-title{
    letter-spacing:.01em;
}
.checkout-qty-pill{
    border-color:rgba(248,113,113,.28) !important;
    background:#020617 !important;
}
.checkout-qty-pill button{
    min-width:30px;
}
.checkout-remove-btn{
    width:30px;
    height:30px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(15,23,42,.72);
    border:1px solid rgba(148,163,184,.12);
}
.product-finder-foot{
    flex-shrink:0;
    padding:14px 22px 20px;
    border-top:1px solid rgba(148,163,184,.16);
}
.product-finder-foot button{
    width:100%;
    border-radius:14px;
    padding:13px 16px;
    background:#1e293b;
    color:#cbd5e1;
    border:1px solid rgba(148,163,184,.22);
    font-size:12px;
    font-weight:950;
    letter-spacing:.08em;
    text-transform:uppercase;
    transition:.2s ease;
}
.product-finder-foot button:hover{
    color:#fff;
    background:#334155;
}
body.modal-scroll-lock{
    overflow:hidden !important;
    overscroll-behavior:none;
}
#product-finder-modal{
    align-items:stretch !important;
    justify-content:center !important;
    padding:0 !important;
    overflow:hidden !important;
    z-index:1900 !important;
}
#product-finder-modal .product-finder-card{
    width:100% !important;
    max-width:688px !important;
    height:100dvh !important;
    max-height:100dvh !important;
    min-height:0 !important;
    border-radius:0 !important;
    border-left:1px solid rgba(248,113,113,.18);
    border-right:1px solid rgba(248,113,113,.18);
}
#receipt-modal > div,
#receipt-to-download{
    max-width:450px !important;
}
#checkout-modal{
    align-items:stretch !important;
    justify-content:center !important;
    padding:0 !important;
    overflow:hidden !important;
}
#checkout-modal > div{
    width:100% !important;
    max-width:688px !important;
    height:100dvh !important;
    max-height:100dvh !important;
    border-radius:0 !important;
    border-left:1px solid rgba(248,113,113,.18) !important;
    border-right:1px solid rgba(248,113,113,.18) !important;
}
#checkout-modal .overflow-y-auto{
    min-height:0;
    overscroll-behavior:contain;
}
#product-detail-modal,
#portfolio-modal{
    align-items:stretch !important;
    justify-content:center !important;
    padding:0 !important;
    overflow:hidden !important;
}
#product-detail-modal > div,
#portfolio-modal > div{
    width:100% !important;
    max-width:688px !important;
    height:100dvh !important;
    max-height:100dvh !important;
    min-height:0 !important;
    border-radius:0 !important;
    border-left:1px solid rgba(248,113,113,.18) !important;
    border-right:1px solid rgba(248,113,113,.18) !important;
}
#product-detail-content-wrapper,
#portfolio-modal > div > .overflow-y-auto{
    flex:1 1 auto !important;
    min-height:0 !important;
    overscroll-behavior:contain;
}
@media (max-width: 767px){
    #product-finder-modal .product-finder-card{
        max-width:none !important;
        border-left:0 !important;
        border-right:0 !important;
    }
    #checkout-modal > div{
        max-width:none !important;
        border-left:0 !important;
        border-right:0 !important;
    }
    #product-detail-modal > div,
    #portfolio-modal > div{
        max-width:none !important;
        border-left:0 !important;
        border-right:0 !important;
    }
}
.member-catalog-route #member-catalog-modal{
    align-items:stretch !important;
    justify-content:center !important;
    padding:0 !important;
    background:#f8fafc !important;
}
.member-catalog-route .member-catalog-card{
    width:100% !important;
    max-width:688px !important;
    height:100dvh !important;
    max-height:100dvh !important;
    min-height:0 !important;
    border-radius:0 !important;
    border-left:1px solid rgba(220,38,38,.14) !important;
    border-right:1px solid rgba(220,38,38,.14) !important;
    background:#f8fafc !important;
    box-shadow:0 0 0 1px rgba(15,23,42,.04), 0 30px 80px rgba(15,23,42,.16) !important;
}
.member-catalog-route .member-catalog-card .product-finder-head{
    padding:22px clamp(18px,4vw,48px) 14px;
    background:#ffffff;
    border-bottom:1px solid rgba(15,23,42,.08);
}
.member-catalog-route #member-catalog-modal.catalog-unlocked .member-catalog-card .product-finder-head{
    align-items:stretch;
    display:block;
    padding:12px clamp(14px,3vw,24px);
}
.member-catalog-route #member-catalog-modal.catalog-unlocked .member-catalog-card .member-title-block{
    display:none;
}
.member-catalog-route #member-catalog-modal.catalog-unlocked .member-catalog-card .member-search-panel{
    display:block;
}
.member-catalog-route #member-catalog-modal.catalog-unlocked .member-catalog-card .member-home-btn{
    height:40px;
    min-width:76px;
    border-radius:13px;
    background:#fff5f5;
}
.member-catalog-route #member-catalog-modal.catalog-unlocked .member-catalog-card .member-login-home{
    display:none !important;
}
.member-catalog-route .member-catalog-step{
    flex:1 1 auto;
    min-height:0;
    background:#f8fafc;
}
.member-catalog-route #member-catalog-list{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
    align-content:start;
    gap:12px;
    padding:18px clamp(18px,4vw,48px) 92px;
    background:#f8fafc;
}
.member-catalog-route .member-product-item{
    cursor:default;
    grid-template-columns:58px minmax(0,1fr) 46px;
    padding:12px;
    background:#ffffff;
    border:1px solid rgba(15,23,42,.08);
    box-shadow:0 12px 28px rgba(15,23,42,.06);
}
.member-catalog-route .member-floating-cart{
    position:absolute !important;
    right:18px !important;
    left:auto !important;
    bottom:18px !important;
}
.member-catalog-route .member-login-step{
    width:min(520px,calc(100% - 36px));
    margin:30px auto 0;
    background:#ffffff;
    border:1px solid rgba(15,23,42,.08);
    border-radius:22px;
    box-shadow:0 16px 38px rgba(15,23,42,.08);
}
.member-catalog-route .product-finder-foot{
    display:none !important;
}
.member-catalog-route .product-finder-kicker{ color:#dc2626; }
.member-catalog-route .product-finder-head h3{ color:#111827; }
.member-catalog-route .member-catalog-subtitle{ color:#64748b; }
.member-catalog-route .product-finder-close{
    background:#fee2e2;
    color:#dc2626;
    border-color:#fecaca;
}
.member-catalog-route .product-finder-search input{ color:#111827; }
.member-catalog-route .product-finder-search input::placeholder{ color:#94a3b8; }
.member-catalog-route .product-finder-thumb{
    position:relative;
    background:#f1f5f9;
    border-color:rgba(15,23,42,.08);
}
.member-discount-badge{
    position:absolute;
    top:-6px;
    right:-6px;
    min-width:32px;
    height:20px;
    padding:0 7px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#dc2626;
    color:#ffffff;
    border:2px solid #ffffff;
    box-shadow:0 8px 18px rgba(220,38,38,.26);
    font-size:9px;
    font-weight:950;
    letter-spacing:.02em;
}
.member-catalog-route .product-finder-info h4{ color:#111827; }
.member-catalog-route .product-finder-info p{ color:#64748b; }
.member-catalog-route .product-finder-info strong{ color:#dc2626; }
.member-catalog-route .product-finder-meta span{
    background:#f8fafc;
    color:#991b1b;
    border:1px solid #fee2e2;
    font-size:8px;
    letter-spacing:.04em;
}
.member-catalog-route .member-price-save{
    color:#64748b;
    font-weight:800;
    font-size:9px;
    display:block;
    margin:5px 0 2px;
}
.member-price-old.is-struck{
    text-decoration:line-through;
    text-decoration-thickness:2px;
    text-decoration-color:#ef4444;
    color:#94a3b8;
}
.member-catalog-route .member-main-site-link{
    background:#111827;
    color:#ffffff;
    border-color:#111827;
}
.member-catalog-route .product-finder-empty{
    background:#ffffff;
    color:#64748b;
    border-color:rgba(220,38,38,.18);
}
.mds-agency-about-card{
    position:relative;
    overflow:hidden;
    border:1px solid rgba(248,113,113,.24);
    border-radius:24px;
    background:
        radial-gradient(circle at 18% 12%, rgba(239,68,68,.22), transparent 32%),
        linear-gradient(145deg, rgba(69,10,10,.56), rgba(15,23,42,.94) 48%, rgba(2,6,23,.98));
    box-shadow:0 24px 70px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mds-agency-about-card:hover {
    border-color: rgba(248, 113, 113, 0.45);
    box-shadow: 0 30px 80px rgba(220, 38, 38, 0.18), inset 0 1px 0 rgba(255,255,255,0.12);
}
.mds-agency-about-card::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size:28px 28px;
    mask-image:linear-gradient(to bottom, rgba(0,0,0,.62), transparent 78%);
    pointer-events:none;
}
.mds-agency-cover-frame{
    position:relative;
    z-index:1;
    aspect-ratio:16/9;
    overflow:hidden;
    border-bottom:1px solid rgba(248,113,113,.18);
    background:#020617;
}
.mds-agency-cover-frame img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.mds-agency-about-card:hover .mds-agency-cover-frame img {
    transform: scale(1.05);
}
.mds-agency-copy{
    position:relative;
    z-index:1;
    padding:18px;
}
.mds-agency-kicker{
    margin:0 0 8px;
    color:#f87171;
    font-size:10px;
    font-weight:950;
    letter-spacing:.28em;
    text-transform:uppercase;
    display: inline-block;
    background: rgba(220, 38, 38, 0.15);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(220, 38, 38, 0.25);
}
.mds-agency-copy h3 {
    background: linear-gradient(135deg, #ffffff 35%, #fca5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 950;
    letter-spacing: -0.02em;
    font-size:clamp(22px, 5vw, 34px);
    line-height:1.05;
    margin:0;
}
.agency-service-head h3{
    color:#fff;
    font-size:clamp(22px, 5vw, 34px);
    line-height:1.05;
    font-weight:950;
    margin:0;
}
.mds-agency-copy p:not(.mds-agency-kicker),
#agency-portfolio-subtitle{
    color:#cbd5e1;
    font-size:14px;
    line-height:1.7;
    margin-top:12px;
}
.mds-agency-points{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:16px;
}
.mds-agency-points span{
    display:inline-flex;
    align-items:center;
    gap:8px;
    border:1px solid rgba(248,113,113,.26);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(220, 38, 38, 0.08));
    color:#f1f5f9;
    border-radius:12px;
    padding:8px 12px;
    font-size:11px;
    font-weight:800;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.mds-agency-points span:hover {
    transform: translateY(-2px);
    border-color: rgba(248,113,113,.62);
    box-shadow: 0 8px 20px rgba(220,38,38,.18), inset 0 1px 0 rgba(255,255,255,0.1);
}
.mds-agency-points i{
    color:#f87171;
    font-size: 12px;
    transition: transform 0.25s ease;
}
.mds-agency-points span:hover i {
    transform: scale(1.15) rotate(-5deg);
}
.mds-agency-stats{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:9px;
    margin-top:16px;
}
.mds-agency-stats div{
    border:1px solid rgba(148,163,184,.14);
    background: linear-gradient(145deg, rgba(15,23,42,.85), rgba(2,6,23,.95));
    border-radius: 16px;
    padding: 12px 10px;
    text-align: center;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.mds-agency-stats div:hover {
    border-color: rgba(248, 113, 113, 0.35);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.08);
}
.mds-agency-stats strong{
    display:block;
    color:#fff;
    font-size:22px;
    font-weight:950;
    line-height:1;
    text-shadow: 0 2px 8px rgba(220,38,38,0.2);
}
.mds-agency-stats span{
    display:block;
    color:#94a3b8;
    font-size:10px;
    font-weight:800;
    line-height:1.3;
    margin-top:5px;
    text-transform:uppercase;
}
.agency-service-portfolio{
    border:1px solid rgba(148,163,184,.16);
    border-radius:24px;
    padding:18px;
    background:linear-gradient(145deg, rgba(15,23,42,.96), rgba(2,6,23,.98));
}

.about-youtube-section{
    border:1px solid rgba(248,113,113,.22);
    background:linear-gradient(145deg, rgba(15,23,42,.94), rgba(69,10,10,.42));
    border-radius:24px;
    padding:16px;
}
.about-youtube-card{
    max-width:360px;
    margin:0 auto;
}
.about-youtube-frame,
.testimonial-video-portrait .testimonial-video-frame{
    aspect-ratio:3 / 4;
}
.testimonial-video-landscape .testimonial-video-frame{
    aspect-ratio:16 / 9;
    min-height:auto !important;
}
.about-youtube-frame iframe,
.testimonial-video-landscape .testimonial-video-frame iframe,
.testimonial-video-portrait .testimonial-video-frame iframe{
    width:100%;
    height:100%;
}
.agency-service-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:14px;
    margin-bottom:16px;
}
#agency-portfolio-subtitle{
    max-width:310px;
    margin:0;
    font-size:12px;
}
.agency-portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
}
.agency-portfolio-card{
    overflow:hidden;
    border:1px solid rgba(248,113,113,.18);
    border-radius:18px;
    background:rgba(15,23,42,.82);
    box-shadow:0 16px 42px rgba(0,0,0,.26);
}
.agency-portfolio-image{
    aspect-ratio:4/3;
    overflow:hidden;
    background:#020617;
}
.agency-portfolio-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .35s ease;
}
.agency-portfolio-card:hover .agency-portfolio-image img{ transform:scale(1.04); }
.agency-portfolio-body{
    padding:13px;
}
.agency-portfolio-body > span{
    display:inline-flex;
    width:max-content;
    max-width:100%;
    border:1px solid rgba(248,113,113,.24);
    border-radius:999px;
    padding:4px 8px;
    color:#fecaca;
    background:rgba(127,29,29,.28);
    font-size:9px;
    font-weight:950;
    text-transform:uppercase;
    letter-spacing:.06em;
}
.agency-portfolio-body h4{
    color:#fff;
    font-size:15px;
    line-height:1.2;
    font-weight:950;
    margin:10px 0 6px;
}
.agency-portfolio-body p{
    color:#94a3b8;
    font-size:11px;
    line-height:1.55;
    margin:0 0 12px;
}
.agency-portfolio-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    width:100%;
    min-height:36px;
    border-radius:12px;
    background:#dc2626;
    color:#fff;
    font-size:11px;
    font-weight:950;
    box-shadow:0 12px 28px rgba(220,38,38,.22);
}
.agency-portfolio-link:hover{ background:#ef4444; }
@media (max-width: 767px){
    .agency-service-head{
        align-items:flex-start;
        flex-direction:column;
    }
    #agency-portfolio-subtitle{ max-width:none; }
    .agency-portfolio-grid{
        grid-template-columns:1fr;
    }
    .mds-agency-stats{
        grid-template-columns:1fr;
    }
    .member-home-btn{ min-width:46px; padding:0 12px !important; }
    .member-home-btn span{ display:none; }
    .member-catalog-route .member-catalog-card{
        max-width:none !important;
        border-left:0 !important;
        border-right:0 !important;
    }
}
@media (max-height: 560px){
    .product-finder-card{
        height:calc(100vh - 28px);
        min-height:0;
    }
    .product-finder-head{ padding:16px 18px 10px; }
    .product-finder-search{ margin:12px 18px 10px; }
    .product-finder-list{ padding:0 18px 12px; }
    .product-finder-foot{ padding:12px 18px 14px; }
}

/* Approved About/Admin polish 2026-05-22 */
#main-banner-container{
    margin-top:10px !important;
    margin-bottom:10px !important;
    background:transparent !important;
    aspect-ratio: 2.85 / 1 !important;
}
#main-banner-container .swiper-slide img{
    object-fit:contain !important;
    opacity:1 !important;
    filter:none !important;
    background:#111827 !important;
}
.hero-role-text{
    color:#ff3b3b !important;
    font-weight:900 !important;
}
.main-canvas > section.relative.flex.items-end{
    min-height:230px !important;
    padding-bottom:18px !important;
}
.main-canvas > section.relative.flex.items-end + section,
.main-canvas #main-banner-container + .swiper-pagination{
    margin-top:8px !important;
}
#category-container{
    padding-top:6px !important;
    padding-bottom:6px !important;
}
#portfolio-modal .animate-fade-in-up{
    grid-template-columns: 158px minmax(0,1fr) !important;
    align-items:center !important;
    gap:18px !important;
    padding:18px !important;
    border:1px solid rgba(248,113,113,.20) !important;
    border-radius:24px !important;
    background:linear-gradient(145deg, rgba(15,23,42,.92), rgba(127,29,29,.20)) !important;
}
#portfolio-modal .animate-fade-in-up > .relative.group{
    width:158px !important;
    min-width:158px !important;
    height:176px !important;
    padding:8px !important;
    border-radius:28px !important;
}
#portfolio-modal .animate-fade-in-up > .relative.group > div:first-child,
#portfolio-modal #portfolio-photo{
    border-radius:22px !important;
}
#portfolio-modal .animate-fade-in-up > .text-center{
    padding-top:0 !important;
}
#portfolio-modal .animate-fade-in-up h2{
    font-size:clamp(28px, 4.8vw, 40px) !important;
    line-height:1.02 !important;
    margin-bottom:6px !important;
}
#portfolio-modal .animate-fade-in-up .text-red-500{
    color:#ff3b3b !important;
    font-size:clamp(13px, 2vw, 17px) !important;
    margin-bottom:12px !important;
}
#portfolio-modal .animate-fade-in-up .flex-wrap{
    display:none !important;
}
#portfolio-modal .about-combined-profile-text{
    grid-column:auto !important;
    margin-top:0 !important;
    padding:14px 16px !important;
    font-size:13px !important;
    line-height:1.6 !important;
}
#portfolio-modal .about-inline-desc,
#portfolio-modal .about-inline-principle,
#portfolio-modal .about-profile-card-old{
    display:none !important;
}
#portfolio-modal [data-proof-item],
#portfolio-modal #hidden-testis > div{
    aspect-ratio:3 / 4 !important;
}
#portfolio-modal [data-proof-item] img,
#portfolio-modal #hidden-testis img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
}
#agency-service-portfolio{
    overflow:hidden !important;
}
#agency-service-portfolio .agency-service-head{
    display:grid !important;
    grid-template-columns:minmax(0, .9fr) minmax(220px, .8fr) !important;
    align-items:end !important;
    gap:16px !important;
    margin-bottom:14px !important;
}
#agency-service-portfolio .agency-service-head h3{
    font-size:clamp(24px, 4vw, 34px) !important;
    line-height:1.06 !important;
}
#agency-service-portfolio #agency-portfolio-subtitle{
    max-width:280px !important;
    font-size:12px !important;
    line-height:1.55 !important;
    color:#dbeafe !important;
}
#agency-service-portfolio .agency-portfolio-grid.is-live{
    display:flex !important;
    grid-template-columns:none !important;
    gap:14px !important;
}
#agency-service-portfolio .agency-jasa-card{
    flex:0 0 220px !important;
    width:220px !important;
}
#agency-service-portfolio .agency-portfolio-image{
    aspect-ratio:1 / 1 !important;
}
#agency-service-portfolio .agency-portfolio-link{
    border:0;
    cursor:pointer;
}
@keyframes aboutJasaMarquee{
    from{ transform:translateX(0); }
    to{ transform:translateX(-33.333%); }
}
@media(max-width:640px){
    #portfolio-modal .animate-fade-in-up{
        grid-template-columns:116px minmax(0,1fr) !important;
        gap:12px !important;
        padding:12px !important;
    }
    #portfolio-modal .animate-fade-in-up > .relative.group{
        width:116px !important;
        min-width:116px !important;
        height:136px !important;
    }
    #portfolio-modal .animate-fade-in-up h2{ font-size:20px !important; }
    #portfolio-modal .about-combined-profile-text{ font-size:11px !important; line-height:1.5 !important; }
    #agency-service-portfolio .agency-service-head{
        grid-template-columns:1fr !important;
    }
    #agency-service-portfolio #agency-portfolio-subtitle{
        max-width:none !important;
    }
}
/* #portfolio-btn styling is handled in the main styles block */
#testimonial-video-group .testimonial-video-landscape .testimonial-video-frame{
    aspect-ratio:16 / 9 !important;
    min-height:0 !important;
    height:auto !important;
}
#testimonial-video-group .testimonial-video-portrait .testimonial-video-frame{
    aspect-ratio:3 / 4 !important;
    min-height:0 !important;
    height:auto !important;
}

/* Final mobile polish: hero, banner, category, FAQ, and detail footer */
.main-canvas > section.relative.flex.items-end{
    min-height:210px !important;
    padding:18px 18px 16px !important;
}
.main-canvas > section.relative.flex.items-end > .absolute.inset-0{
    opacity:1 !important;
    filter:none !important;
    background-size:cover !important;
    background-position:center !important;
}
.main-canvas > section.relative.flex.items-end::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(15,23,42,.58), rgba(15,23,42,.14) 54%, rgba(15,23,42,.22));
    pointer-events:none;
}
.main-canvas > section.relative.flex.items-end > .relative{
    z-index:2 !important;
}
.hero-role-text{
    color:#ff2d2d !important;
}
.main-canvas > .w-full.mb-10.mt-4{
    margin-top:8px !important;
    margin-bottom:22px !important;
}
.main-canvas > .w-full.mb-10.mt-4 > div{
    padding:5px !important;
    background:rgba(71,85,105,.42) !important;
    border-color:rgba(148,163,184,.30) !important;
    box-shadow:0 14px 32px rgba(2,6,23,.22) !important;
}
#main-banner-container{
    width:100% !important;
    aspect-ratio:2.85 / 1 !important;
    border-radius:14px !important;
}
#main-banner-container .swiper-slide img{
    object-fit:cover !important;
    opacity:1 !important;
    filter:none !important;
}
.category-pill{
    font-size:12px !important;
    padding:.48rem .82rem !important;
    line-height:1 !important;
}
#category-container{
    gap:7px !important;
}
.mt-6 > h2.text-xl{
    font-size:1.08rem !important;
    margin-bottom:.72rem !important;
}
.product-card h3,
.product-name,
#products-container h3{
    font-size:.84rem !important;
    line-height:1.15 !important;
}
#portfolio-modal #close-portfolio-modal{
    top:10px !important;
    right:10px !important;
    width:42px !important;
    height:42px !important;
    padding:0 !important;
}
#portfolio-modal #close-portfolio-modal i{
    width:42px !important;
    height:42px !important;
    font-size:17px !important;
}
#faq{
    padding-top:22px !important;
    padding-bottom:28px !important;
}
#faq .faq-shell{
    padding:22px 16px !important;
    border-radius:22px !important;
}
#faq .faq-toggle{
    min-height:58px !important;
    padding:14px 14px !important;
}
#faq .faq-question-text{
    font-size:14px !important;
    line-height:1.25 !important;
}
#product-detail-modal .p-4.border-t.sticky.bottom-0{
    padding:8px 12px calc(8px + env(safe-area-inset-bottom, 0px)) !important;
    background:rgba(15,23,42,.94) !important;
    border-top-color:rgba(248,113,113,.20) !important;
    transform:translateY(115%);
    opacity:0;
    pointer-events:none;
    transition:transform .24s ease, opacity .24s ease;
}
#product-detail-modal .p-4.border-t.sticky.bottom-0:has(#sticky-footer-cta.is-visible){
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
}
.product-detail-sticky-actions{
    gap:8px !important;
}
.product-detail-sticky-actions > button,
.product-detail-sticky-actions > a{
    min-height:38px !important;
    border-radius:10px !important;
    padding-top:8px !important;
    padding-bottom:8px !important;
}
.product-detail-back-btn{
    max-width:35% !important;
}
@media(max-width:640px){
    .main-canvas > section.relative.flex.items-end{
        min-height:238px !important;
        padding:14px 18px 22px !important;
    }
    .main-canvas > section.relative.flex.items-end > .relative{
        align-items:flex-end !important;
        gap:14px !important;
        transform:none !important;
    }
    .main-canvas > section.relative.flex.items-end img[alt="Profile Picture"]{
        width:112px !important;
        height:112px !important;
        border-width:4px !important;
        box-shadow:0 16px 42px rgba(220,38,38,.30) !important;
    }
    .main-canvas > section.relative.flex.items-end h3{
        font-size:1.45rem !important;
        line-height:1.05 !important;
    }
    .main-canvas > section.relative.flex.items-end .hero-role-text{
        font-size:.8rem !important;
        line-height:1.15 !important;
    }
    .main-canvas > .px-4.py-4{
        padding-top:10px !important;
        padding-bottom:10px !important;
    }
    #portfolio-btn{
        padding:.48rem 1.25rem !important;
        border-radius:12px !important;
        font-size:.86rem !important;
    }
    #main-banner-container{
        aspect-ratio:2.55 / 1 !important;
    }
    .main-canvas > .w-full.mb-10.mt-4 > div{
        padding:8px !important;
        border-radius:16px !important;
    }
    #portfolio-modal .animate-fade-in-up{
        grid-template-columns:112px minmax(0,1fr) !important;
        align-items:center !important;
        gap:12px !important;
        padding:14px !important;
    }
    #portfolio-modal .animate-fade-in-up > .relative.group{
        width:112px !important;
        min-width:112px !important;
        height:132px !important;
    }
    #portfolio-modal .animate-fade-in-up h2{
        font-size:22px !important;
        line-height:1.08 !important;
        text-align:left !important;
    }
    #portfolio-modal .animate-fade-in-up .text-red-500{
        font-size:12px !important;
        line-height:1.35 !important;
        text-align:left !important;
        margin-bottom:0 !important;
    }
    #portfolio-modal .about-combined-profile-text{
        grid-column:1 / -1 !important;
        width:100% !important;
        margin-top:2px !important;
        font-size:12px !important;
        line-height:1.55 !important;
        padding:13px !important;
    }
    .affiliate-flow-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .affiliate-flow-card {
        padding: 14px 16px !important;
        min-height: auto !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    #agency-service-portfolio .agency-service-head h3{
        font-size:25px !important;
    }
    #agency-service-portfolio #agency-portfolio-subtitle{
        font-size:12px !important;
        line-height:1.45 !important;
    }
    #webinar-section{
        margin-top:22px !important;
        margin-bottom:26px !important;
    }
    .webinar-showcase .webinar-shell{
        padding:18px 14px 20px !important;
        border-radius:22px !important;
        overflow:hidden !important;
    }
    .webinar-showcase .webinar-shell h2{
        font-size:1.38rem !important;
        line-height:1.1 !important;
    }
    .webinar-slider-wrap{
        width:100% !important;
        padding:0 !important;
        transform:none !important;
        overflow:hidden !important;
    }
    .swiper-webinar{
        width:100% !important;
        overflow:hidden !important;
        padding:4px 0 22px !important;
    }
    .swiper-webinar .swiper-wrapper{
        justify-content:flex-start !important;
        align-items:center !important;
    }
    .swiper-webinar .swiper-slide{
        width:100% !important;
        max-width:none !important;
        display:flex !important;
        justify-content:center !important;
        opacity:0 !important;
        transform:scale(.92) !important;
        transition:transform .55s ease, opacity .55s ease !important;
        pointer-events:none;
    }
    .swiper-webinar .swiper-slide-active{
        opacity:1 !important;
        transform:scale(1) !important;
        pointer-events:auto;
    }
    .swiper-webinar .webinar-card{
        width:calc(100vw - 64px) !important;
        max-width:310px !important;
        margin:0 auto !important;
        box-shadow:0 22px 46px rgba(2,6,23,.36), 0 0 0 1px rgba(96,165,250,.20) !important;
    }
    .swiper-webinar .webinar-card .webinar-image-container{
        aspect-ratio:3 / 4 !important;
        max-height:none !important;
    }
    #webinar-section .webinar-slider-wrap,
    #webinar-section .swiper-webinar,
    #webinar-section .swiper-container{
        width:100% !important;
        max-width:100% !important;
        overflow:hidden !important;
        transform:none !important;
    }
    #webinar-section .swiper-webinar .swiper-wrapper{
        justify-content:flex-start !important;
        align-items:stretch !important;
    }
    #webinar-section .swiper-webinar .swiper-slide{
        /* Center animation slides on mobile */
    }
    #webinar-section .swiper-webinar .webinar-card{
        /* Handled above */
    }
}

#portfolio-sticky-cta {
    padding: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    opacity: 0;
    border-top: 0 !important;
    overflow: hidden !important;
    transform: translateY(100%);
    transition: opacity .25s ease, transform .25s ease, padding .25s ease, height .25s ease;
}
#portfolio-sticky-cta.is-visible {
    height: auto !important;
    padding: 12px !important;
    opacity: 1;
    border-top: 1px solid rgba(255,255,255,.08) !important;
    overflow: visible !important;
    transform: translateY(0);
}
#product-detail-content-wrapper {
    padding-bottom: 16px !important;
}
#product-detail-modal.detail-footer-visible #product-detail-content-wrapper {
    padding-bottom: 80px !important;
}

@media(max-width:640px){
    .main-canvas > .w-full.mb-10.mt-4{
        padding:0 !important;
        margin-top: 0 !important;
    }
    .main-canvas > .w-full.mb-10.mt-4 > div{
        padding: 3px 12px !important;
        border-radius:0 !important;
        border-left: none !important;
        border-right: none !important;
        background:rgba(71,85,105,.42) !important;
        border-top:1px solid rgba(148,163,184,.30) !important;
        border-bottom:1px solid rgba(148,163,184,.30) !important;
    }
    #main-banner-container{
        aspect-ratio:2.85 / 1 !important;
        border-radius:12px !important;
        background:transparent !important;
    }
    #main-banner-container .swiper-slide{
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        height: 100% !important;
        background:transparent !important;
    }
    #main-banner-container .swiper-slide img{
        width:100% !important;
        height:100% !important;
        object-fit:cover !important;
        object-position:center !important;
        background:#111827 !important;
        border-radius:12px !important;
    }
    #portfolio-modal .animate-fade-in-up{
        display:flex !important;
        flex-direction:column !important;
        align-items:center !important;
        text-align:center !important;
        gap:10px !important;
        padding:18px 16px !important;
    }
    #portfolio-modal .animate-fade-in-up > .relative.group{
        width:132px !important;
        min-width:132px !important;
        height:132px !important;
        padding:0 !important;
        border-radius:999px !important;
        background:transparent !important;
        box-shadow:none !important;
    }
    #portfolio-modal .animate-fade-in-up > .relative.group > div:first-child{
        width:132px !important;
        height:132px !important;
        padding:0 !important;
        border-radius:999px !important;
        background:transparent !important;
    }
    #portfolio-modal #portfolio-photo{
        border:0 !important;
        border-radius:999px !important;
        box-shadow:0 18px 42px rgba(0,0,0,.36), 0 0 0 3px rgba(248,113,113,.30) !important;
    }
    #portfolio-modal .animate-fade-in-up .absolute.bottom-2{
        display:none !important;
    }
    #portfolio-modal .animate-fade-in-up h2,
    #portfolio-modal .animate-fade-in-up .text-red-500{
        text-align:center !important;
    }
    #portfolio-modal .animate-fade-in-up h2{
        font-size:24px !important;
    }
    #portfolio-modal .about-combined-profile-text{
        text-align:left !important;
        margin-top:6px !important;
        border-radius:18px !important;
    }
    #product-detail-modal .p-4.border-t.sticky.bottom-0{
        padding:0 !important;
        height:0 !important;
        min-height:0 !important;
        border-top:0 !important;
        overflow:hidden !important;
    }
    #product-detail-modal .p-4.border-t.sticky.bottom-0:has(#sticky-footer-cta.is-visible){
        height:auto !important;
        padding:8px 12px calc(8px + env(safe-area-inset-bottom, 0px)) !important;
        border-top:1px solid rgba(248,113,113,.20) !important;
        overflow:visible !important;
    }
    #faq .faq-shell{
        padding:20px 16px !important;
    }
    #portfolio-sticky-cta #btn-kerjasama{
        width:min(86%, 340px) !important;
        padding-top:12px !important;
        padding-bottom:12px !important;
    }
    #announcement-modal-content {
        background-color: #ffffff !important;
        background-image: none !important;
    }
    .whatsapp-bubble {
        border-top-left-radius: 4px !important;
        border-left: 4px solid #ef4444 !important;
    }
    .whatsapp-bubble-right {
        border-top-right-radius: 4px !important;
        border-right: 4px solid #ef4444 !important;
    }
}