:root {
            --ungu-ovo: #8A2BE2;
            --ungu-ovo-light: #A855F7;
            --ungu-ovo-dark: #6B21A8;
            --ungu-ovo-bg: #F5F0FF;
            --white: #FFFFFF;
            --gray-50: #F9FAFB;
            --gray-100: #F3F4F6;
            --gray-200: #E5E7EB;
            --gray-300: #D1D5DB;
            --gray-400: #9CA3AF;
            --gray-500: #6B7280;
            --gray-600: #4B5563;
            --gray-700: #374151;
            --gray-800: #1F2937;
            --gray-900: #111827;
            --green-100: #D1FAE5;
            --green-700: #047857;
            --red-100: #FEE2E2;
            --red-700: #B91C1C;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
            --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07);
            --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08);
            --radius-xl: 20px;
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-full: 50px;
            --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Quicksand', sans-serif;
            background: linear-gradient(160deg, #FAF8FF 0%, #F3EEFF 30%, #EDE4FF 60%, #F5F0FF 100%);
            min-height: 100vh;
            color: var(--gray-800);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            display: flex;
            justify-content: center;
            padding: 20px;
        }

        .shop-container {
            width: 100%;
            max-width: 500px;
            position: relative;
            z-index: 1;
        }
        
        
body {
    top: 0 !important;
    position: static !important;
}

        /* HEADER */
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--gray-200);
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 10px;
        }
        .header-top .logo {
            font-size: 18px;
            font-weight: 700;
            color: var(--ungu-ovo-dark);
            text-decoration: none;
        }
        .header-top .logo span {
            color: var(--ungu-ovo);
        }
        .header-top .right-section {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        
        /* Google Translate & Currency */
        #google_translate_element {
            display: inline-block !important;
        }
        .goog-te-gadget {
            font-family: 'Quicksand', sans-serif !important;
            font-size: 13px !important;
            display: inline-block !important;
        }
        .goog-te-gadget .goog-te-combo {
            padding: 6px 12px;
            border-radius: 30px;
            border: 1px solid #e5e7eb;
            font-family: 'Quicksand', sans-serif;
            font-size: 13px;
            font-weight: 600;
            background: white;
            cursor: pointer;
            outline: none;
            color: #1F2937;
            max-width: 150px;
            -webkit-appearance: none;
            appearance: none;
        }
        .goog-te-gadget .goog-te-combo:focus {
            border-color: #8A2BE2;
            box-shadow: 0 0 0 3px rgba(138,43,226,0.1);
        }
        .goog-logo-link, .goog-te-gadget span { display: none !important; }
        .goog-te-banner-frame { display: none !important; }
        #goog-gt-tt { display: none !important; }
        .goog-te-balloon-frame { display: none !important; }
        body { top: 0 !important; position: static !important; }

        .currency-switcher-wrapper {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #F9FAFB;
            padding: 4px 10px;
            border-radius: 30px;
            border: 1px solid #e5e7eb;
            font-family: 'Quicksand', sans-serif;
            flex-wrap: nowrap;
            white-space: nowrap;
        }
        .currency-switcher-wrapper select {
            padding: 4px 6px;
            border: none;
            background: transparent;
            font-family: 'Quicksand', sans-serif;
            font-weight: 600;
            font-size: 12px;
            cursor: pointer;
            outline: none;
            color: #1f2937;
            max-width: 110px;
            -webkit-appearance: none;
            appearance: none;
        }

        @media (max-width: 600px) {
            .detail-body { padding: 20px; }
            .product-name-detail { font-size: 22px; }
            .price-final-detail, .price-free-detail { font-size: 26px; }
            .info-grid { grid-template-columns: 1fr; }
            .btn-group { flex-direction: column; }
            .header-top { flex-direction: column; align-items: stretch; gap: 8px; }
            .header-top .right-section { justify-content: center; flex-wrap: wrap; }
            .detail-image .free-badge { font-size: 14px; padding: 8px 20px; }
        }
        
        body {
            top: 0 !important;
            position: static !important;
        }
        
        /* ===== RESPONSIVE ===== */
        @media (max-width: 480px) {
            .header-top {
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
            }
            .header-top .right-section {
                justify-content: center;
                flex-wrap: wrap;
            }
            .goog-te-gadget .goog-te-combo {
                font-size: 12px;
                padding: 4px 8px;
                max-width: 120px;
            }

        /* PROFILE */
        .profile-header {
            text-align: center;
            padding: 32px 20px 24px;
        }
        .profile-avatar {
            width: 80px;
            height: 80px;
            background: var(--ungu-ovo);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            box-shadow: 0 8px 24px rgba(138, 43, 226, 0.3);
        }
        .profile-avatar i {
            font-size: 36px;
            color: white;
        }
        .profile-header h1 {
            font-size: 22px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 4px;
        }
        .profile-header .username {
            font-size: 14px;
            color: var(--gray-500);
            font-weight: 500;
        }
        .profile-bio {
            font-size: 13px;
            color: var(--gray-500);
            margin-top: 8px;
            font-weight: 400;
        }

        /* SEARCH */
        .search-box {
            position: relative;
            margin: 0 0 20px 0;
        }
        .search-box input {
            width: 100%;
            padding: 12px 16px 12px 44px;
            border: 2px solid transparent;
            border-radius: 50px;
            font-family: 'Quicksand', sans-serif;
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-800);
            background: var(--white);
            box-shadow: var(--shadow-md);
            outline: none;
            transition: var(--transition);
        }
        .search-box input:focus {
            border-color: var(--ungu-ovo-light);
            box-shadow: 0 0 0 4px rgba(138, 43, 226, 0.08);
        }
        .search-box input::placeholder {
            color: var(--gray-400);
        }
        .search-box .search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-400);
            pointer-events: none;
        }

        /* PRODUCT GRID */
        .product-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding-bottom: 40px;
        }

        .product-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(138, 43, 226, 0.04);
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            animation: fadeInUp 0.4s ease forwards;
            opacity: 0;
        }
        
        .product-card:active {
            transform: scale(0.97);
        }
        .product-card:nth-child(1) { animation-delay: 0.05s; }
        .product-card:nth-child(2) { animation-delay: 0.08s; }
        .product-card:nth-child(3) { animation-delay: 0.11s; }
        .product-card:nth-child(4) { animation-delay: 0.14s; }
        .product-card:nth-child(5) { animation-delay: 0.17s; }
        .product-card:nth-child(6) { animation-delay: 0.20s; }
        .product-card:nth-child(7) { animation-delay: 0.23s; }
        .product-card:nth-child(8) { animation-delay: 0.26s; }
        .product-card:nth-child(9) { animation-delay: 0.29s; }
        .product-card:nth-child(10) { animation-delay: 0.32s; }
      
        /* Tambahan style untuk thumbnail gambar */
        .product-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            background: var(--gray-100, #f3f4f6);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            border-radius: 12px 12px 0 0;
        }
        .product-image img.product-thumb {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }
        .product-card:hover .product-image img.product-thumb {
            transform: scale(1.05);
        }
        .product-image .icon-fallback {
            font-size: 48px;
            color: #8A2BE2;
            opacity: 0.6;
        }
        .product-image .image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f5f0ff 0%, #ede4ff 100%);
        }
        .status-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 4px 12px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 10;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }       
        .badge-ready {
            background: var(--green-100);
            color: var(--green-700);
        }
        .badge-habis {
            background: var(--red-100);
            color: var(--red-700);
        }

        .product-info {
            padding: 12px 14px 14px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .product-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--gray-900);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 36px;
            margin-bottom: 6px;
        }
        .product-meta {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-top: auto;
        }
        .product-price {
            display: flex;
            flex-direction: column;
        }
        .price-final {
            font-weight: 700;
            color: var(--ungu-ovo-dark);
            font-size: 15px;
        }
        .price-original {
            font-size: 11px;
            color: var(--gray-400);
            text-decoration: line-through;
        }
        .product-date {
            font-size: 10px;
            color: var(--gray-400);
            font-weight: 500;
        }
        .product-date i {
            font-size: 9px;
            margin-right: 3px;
        }

        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: var(--gray-500);
            grid-column: 1 / -1;
        }
        .empty-state i {
            font-size: 64px;
            color: var(--gray-300);
            margin-bottom: 16px;
            display: block;
        }
        .empty-state h3 {
            font-weight: 700;
            color: var(--gray-700);
            margin-bottom: 4px;
        }

        .scroll-trigger {
            text-align: center;
            padding: 20px 0 40px;
            color: var(--gray-400);
            font-size: 13px;
            font-weight: 500;
            grid-column: 1 / -1;
        }
        .scroll-trigger .loader {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid var(--gray-200);
            border-top-color: var(--ungu-ovo);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin-right: 10px;
            vertical-align: middle;
        }
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .scroll-trigger .hidden {
            display: none;
        }

        .shop-footer {
            text-align: center;
            padding: 20px 20px 30px;
            color: var(--gray-400);
            font-size: 12px;
            font-weight: 500;
            grid-column: 1 / -1;
        }
        .shop-footer strong {
            color: var(--ungu-ovo);
            font-weight: 700;
        }

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

        @media (max-width: 480px) {
            .shop-container { padding: 0; }
            .product-grid { gap: 10px; }
            .product-info { padding: 10px 12px 12px; }
            .product-name { font-size: 12px; min-height: 32px; }
            .price-final { font-size: 14px; }
            .header-top { flex-direction: column; align-items: stretch; gap: 8px; }
            .header-top .right-section { justify-content: space-between; }
        }
        @media (max-width: 380px) {
            .product-grid { gap: 8px; }
            .product-info { padding: 8px 10px 10px; }
            .product-name { font-size: 11px; min-height: 28px; }
            .price-final { font-size: 13px; }
            .price-original { font-size: 10px; }
        }