/* Non-Critical CSS for kiwil.id */

/* Background Animated Blobs */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent-gradient);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: floatBlob 12s infinite alternate ease-in-out;
    will-change: transform; /* Promote blob to its own GPU compositing layer */
    transform: translateZ(0); /* Force initial layer promotion */
}

.blob-1 {
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.blob-2 {
    bottom: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    animation-delay: 3s;
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
}

@keyframes floatBlob {
    0% {
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    }
    100% {
        transform: translate3d(60px, 40px, 0) scale(1.2) rotate(45deg);
    }
}

/* Social Icon Badges */
.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-round);
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.social-btn i {
    font-size: 1.25rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.social-btn[aria-label="Instagram"]:hover {
    color: #e1306c;
    border-color: #e1306c;
    background-color: rgba(225, 48, 108, 0.05);
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.35), inset 0 0 10px rgba(225, 48, 108, 0.15);
}

.social-btn[aria-label="GitHub"]:hover {
    color: #24292f;
    border-color: #24292f;
    background-color: rgba(36, 41, 47, 0.05);
    box-shadow: 0 0 20px rgba(36, 41, 47, 0.2), inset 0 0 10px rgba(36, 41, 47, 0.1);
}

[data-theme="dark"] .social-btn[aria-label="GitHub"]:hover {
    color: #fff;
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.1);
}

.social-btn[aria-label="YouTube"]:hover {
    color: #ff0000;
    border-color: #ff0000;
    background-color: rgba(255, 0, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.35), inset 0 0 10px rgba(255, 0, 0, 0.15);
}

.social-btn[aria-label="Facebook"]:hover {
    color: #1877f2;
    border-color: #1877f2;
    background-color: rgba(24, 119, 242, 0.05);
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.35), inset 0 0 10px rgba(24, 119, 242, 0.15);
}

.social-btn[aria-label="TikTok"]:hover {
    color: #010101;
    border-color: #010101;
    background-color: rgba(1, 1, 1, 0.05);
    box-shadow: 0 0 20px rgba(1, 1, 1, 0.3), inset 0 0 10px rgba(1, 1, 1, 0.1);
}

[data-theme="dark"] .social-btn[aria-label="TikTok"]:hover {
    color: #fff;
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25), inset 0 0 10px rgba(255, 255, 255, 0.1);
}

.social-btn[aria-label*="WhatsApp"]:hover {
    color: #25d366;
    border-color: #25d366;
    background-color: rgba(37, 211, 102, 0.05);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.35), inset 0 0 10px rgba(37, 211, 102, 0.15);
}

/* Tabs Navigation */
.tabs-container {
    display: flex;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 4px;
    gap: 4px;
    backdrop-filter: var(--backdrop-blur);
}

.tab-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-family: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 12px;
    border-radius: calc(var(--radius-md) - 4px);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    background-color: var(--bg-card);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

/* Product Section Card Grid */
.products-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
    opacity: 1;
    transform: translateY(0);
    min-height: 600px; /* Reserve space for dynamically loaded product cards to prevent CLS */
}

@media (max-width: 480px) {
    .products-section {
        gap: 12px;
    }
}

.products-section.fade-out {
    opacity: 0;
    transform: translateY(8px);
}

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

.product-card {
    position: relative;
    background: linear-gradient(145deg, rgba(20, 21, 38, 0.6) 0%, rgba(10, 11, 24, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 28px;
    backdrop-filter: var(--backdrop-blur);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), var(--shadow-sm);
    animation: fadeInUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: calc(var(--card-index, 0) * 0.08s);
}

[data-theme="light"] .product-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.8) 0%, rgba(241, 245, 249, 0.6) 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.9), var(--shadow-sm);
}

.product-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 222, 3, 0.04) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.product-card:hover .product-card-glow {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 222, 3, 0.25);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08), 
                0 15px 35px rgba(0, 0, 0, 0.3), 
                0 0 25px rgba(255, 222, 3, 0.1);
}

[data-theme="light"] .product-card:hover {
    border-color: rgba(202, 138, 4, 0.25);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.95), 
                0 15px 35px rgba(15, 23, 42, 0.05), 
                0 0 25px rgba(202, 138, 4, 0.06);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    z-index: 1;
}

/* Product header right: badge + rating stacked */
.product-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}

/* Free Product Badge */
.product-free-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
    animation: pulseFree 2.5s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes pulseFree {
    0%, 100% { box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 2px 16px rgba(34, 197, 94, 0.7); }
}

/* Free product card special accent */
.product-card--free {
    border-color: rgba(34, 197, 94, 0.15);
}

.product-card--free .product-card-glow {
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.06) 0%, transparent 60%);
}

.product-card--free:hover {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08), 
                0 15px 35px rgba(0, 0, 0, 0.3), 
                0 0 25px rgba(34, 197, 94, 0.12);
}

[data-theme="light"] .product-card--free:hover {
    border-color: rgba(22, 163, 74, 0.3);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.95), 
                0 15px 35px rgba(15, 23, 42, 0.05), 
                0 0 25px rgba(22, 163, 74, 0.08);
}

.product-card--free .product-price {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-title-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-category {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent-primary);
    background: rgba(255, 222, 3, 0.08);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
}

[data-theme="light"] .product-category {
    background: rgba(202, 138, 4, 0.06);
}

.product-category-icon {
    font-size: 0.8rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.4px;
    color: var(--text-primary);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 222, 3, 0.08);
    color: #6366f1;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 700;
    border: 1px solid rgba(255, 222, 3, 0.15);
    transition: all var(--transition-fast);
}

.product-rating i {
    font-size: 0.8rem;
}

.product-downloads {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(6, 182, 212, 0.08);
    color: var(--accent-secondary);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 700;
    border: 1px solid rgba(6, 182, 212, 0.15);
    transition: all var(--transition-fast);
}

.product-downloads i {
    font-size: 0.8rem;
}

.product-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.product-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Product Image Styling */
.product-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

[data-theme="light"] .product-image-container {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(15, 23, 42, 0.02);
}

.product-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Feature Tags Layout */
.product-features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 4px 0;
    position: relative;
    z-index: 1;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 6px 12px;
    border-radius: 12px;
    transition: all var(--transition-fast);
}

[data-theme="light"] .feature-tag {
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.product-card:hover .feature-tag {
    border-color: rgba(255, 222, 3, 0.12);
    background: rgba(255, 222, 3, 0.02);
}

[data-theme="light"] .product-card:hover .feature-tag {
    border-color: rgba(202, 138, 4, 0.1);
    background: rgba(202, 138, 4, 0.02);
}

.feature-icon {
    font-size: 0.72rem;
    color: var(--accent-success);
}

/* Footer & Actions Layout */
.product-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 18px;
    position: relative;
    z-index: 1;
}

[data-theme="light"] .product-footer {
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.product-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.product-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.product-original-price {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 8px;
}

.product-actions .btn {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}

.btn i {
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #0d0e15; /* Slate dark text for high contrast on neon gold/blue gradient */
    box-shadow: 0 4px 12px rgba(255, 222, 3, 0.15);
}

[data-theme="light"] .btn-primary {
    color: #ffffff; /* Keep white text in light mode for readability */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 222, 3, 0.35);
    filter: brightness(1.1);
}

/* Custom Styled Buttons */

/* 1. Live Demo Button (Cyan Theme) */
.btn-demo {
    background-color: rgba(6, 182, 212, 0.04);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: #06b6d4;
}
[data-theme="light"] .btn-demo {
    background-color: rgba(8, 145, 178, 0.03);
    border: 1px solid rgba(8, 145, 178, 0.25);
    color: #0891b2;
}
.btn-demo:hover {
    transform: translateY(-2px);
    border-color: rgba(6, 182, 212, 0.5);
    background-color: rgba(6, 182, 212, 0.1);
    color: #22d3ee;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
}
[data-theme="light"] .btn-demo:hover {
    color: #0891b2;
    background-color: rgba(8, 145, 178, 0.08);
}

/* 2. Download Lambat / Slow Download Button (Amber/Orange Theme) */
.btn-slow {
    background-color: rgba(245, 158, 11, 0.04);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}
[data-theme="light"] .btn-slow {
    background-color: rgba(217, 119, 6, 0.03);
    border: 1px solid rgba(217, 119, 6, 0.25);
    color: #d97706;
}
.btn-slow:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 158, 11, 0.5);
    background-color: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
}
[data-theme="light"] .btn-slow:hover {
    color: #b45309;
    background-color: rgba(217, 119, 6, 0.08);
}

/* 3. Download Cepat / Fast Download Button (Premium Fire Gradient) */
.btn-fast {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: #0d0e15;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
    border: none;
}
[data-theme="light"] .btn-fast {
    background: linear-gradient(135deg, #d97706 0%, #dc2626 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
}
.btn-fast:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.45);
    filter: brightness(1.1);
}

/* 4. WhatsApp Send Message Button (WhatsApp Green Gradient) */
#btn-submit-inquiry {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    border: 1px solid rgba(37, 211, 102, 0.2);
}
#btn-submit-inquiry:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    filter: brightness(1.1);
}

/* Quick Form / Contact Card */
.contact-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: var(--backdrop-blur);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

textarea.form-input {
    resize: vertical;
    min-height: 90px;
}

/* Custom Select Dropdown Styling */
.visually-hidden-select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
    user-select: none;
}

.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.custom-select-trigger:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.custom-select-trigger:hover {
    border-color: var(--border-hover);
}

/* Open/Active State for custom dropdown trigger */
.custom-select-wrapper.open .custom-select-trigger {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.custom-select-text.placeholder {
    color: var(--text-muted);
}

.custom-select-arrow {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}

.custom-select-wrapper.open .custom-select-arrow {
    transform: rotate(180deg);
    color: var(--accent-primary);
}

/* Dropdown Container */
.custom-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    backdrop-filter: var(--backdrop-blur);
    z-index: 10;
    max-height: 250px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
}

.custom-select-wrapper.open .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Scrollbar styles for option container */
.custom-options::-webkit-scrollbar {
    width: 6px;
}

.custom-options::-webkit-scrollbar-track {
    background: transparent;
}

.custom-options::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: var(--radius-sm);
}

.custom-options::-webkit-scrollbar-thumb:hover {
    background-color: var(--accent-primary);
}

/* Dropdown Option Items */
.custom-option {
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.custom-option:first-child {
    border-top-left-radius: var(--radius-md);
    border-top-right-radius: var(--radius-md);
}

.custom-option:last-child {
    border-bottom-left-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
}

.custom-option:hover {
    background-color: rgba(99, 102, 241, 0.1);
    color: var(--text-primary);
    padding-left: 20px; /* Smooth micro-interaction */
}

.custom-option.selected {
    background-color: rgba(99, 102, 241, 0.18);
    color: var(--text-primary);
    font-weight: 700;
    border-left: 3px solid var(--accent-primary);
}

.custom-option.placeholder {
    display: none; /* Hide placeholder from list choices */
}

/* Form Invalid / Error State */
.custom-select-wrapper.invalid .custom-select-trigger {
    border-color: #ef4444 !important;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.2) !important;
}

/* Footer Section */
.footer-text {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 10px;
    line-height: 1.5;
}

.footer-text a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
}

.footer-text a:hover {
    color: var(--accent-primary);
}

/* Success notification toast */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    border: 1px solid var(--accent-success);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    backdrop-filter: var(--backdrop-blur);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast svg {
    color: var(--accent-success);
    width: 18px;
    height: 18px;
}



/* Responsive Overrides */
@media (max-width: 480px) {
    .product-card {
        padding: 20px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        flex: 1 1 100%;
    }
    
    .tab-btn {
        font-size: 0.8rem;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .product-card {
        background: linear-gradient(145deg, rgba(20, 21, 38, 0.95) 0%, rgba(10, 11, 24, 0.92) 100%);
    }
    
    [data-theme="light"] .product-card {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 245, 249, 0.95) 100%);
    }

    /* Stack product buttons vertically on mobile/tablet */
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        flex: 1 1 100%;
        width: 100%;
    }

    /* Disable background animated blobs to save heavy CPU/GPU computation */
    .bg-blobs {
        display: none;
    }
}

/* ============================
   Affiliate Products Section
   ============================ */
.affiliate-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: var(--backdrop-blur);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.affiliate-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.affiliate-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.affiliate-title i {
    font-size: 1.1rem;
    color: var(--accent-primary);
}

.affiliate-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Two-column grid */
.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Individual affiliate product card */
.affiliate-card {
    position: relative;
    background: linear-gradient(145deg, rgba(20, 21, 38, 0.6) 0%, rgba(10, 11, 24, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), var(--shadow-sm);
    animation: fadeInUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: calc(var(--card-index, 0) * 0.08s);
}

[data-theme="light"] .affiliate-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.8) 0%, rgba(241, 245, 249, 0.6) 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.9), var(--shadow-sm);
}

.affiliate-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08),
                0 12px 30px rgba(0, 0, 0, 0.25),
                0 0 20px rgba(34, 197, 94, 0.08);
}

[data-theme="light"] .affiliate-card:hover {
    border-color: rgba(22, 163, 74, 0.25);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.95),
                0 12px 30px rgba(15, 23, 42, 0.06),
                0 0 20px rgba(22, 163, 74, 0.06);
}

/* Thumbnail image */
.affiliate-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.15);
    position: relative;
}

[data-theme="light"] .affiliate-image-container {
    background: rgba(15, 23, 42, 0.03);
}

.affiliate-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-normal);
}

.affiliate-card:hover .affiliate-image {
    transform: scale(1.08);
}

/* Card body */
.affiliate-card-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.affiliate-product-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.2px;
    text-align: center;
}

.affiliate-pricing {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 4px;
}

.affiliate-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-primary);
}

.affiliate-original-price {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Order button — Tokopedia green theme */
.btn-affiliate-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 14px;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    border: none;
    border-radius: calc(var(--radius-md) - 4px);
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
    transition: all var(--transition-fast);
    margin-top: auto;
}

.btn-affiliate-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    filter: brightness(1.1);
}

.btn-affiliate-order i {
    font-size: 0.85rem;
}

/* Responsive: keep 2-column on small screens but reduce spacing */
@media (max-width: 480px) {
    .affiliate-grid {
        gap: 10px;
    }

    .affiliate-card-body {
        padding: 10px;
        gap: 10px;
    }

    .affiliate-product-name {
        font-size: 0.82rem;
    }

    .affiliate-price {
        font-size: 0.85rem;
    }

    .affiliate-original-price {
        font-size: 0.7rem;
    }

    .btn-affiliate-order {
        font-size: 0.68rem;
        padding: 7px 8px;
        gap: 5px;
    }

    .btn-affiliate-order i {
        font-size: 0.65rem;
    }

    .affiliate-section {
        padding: 20px;
    }
}

/* Mobile Performance Optimizations for affiliate */
@media (max-width: 768px) {
    .affiliate-card {
        background: linear-gradient(145deg, rgba(20, 21, 38, 0.95) 0%, rgba(10, 11, 24, 0.92) 100%);
    }

    [data-theme="light"] .affiliate-card {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 245, 249, 0.95) 100%);
    }
}

/* ========================================
   Service Banner Styling (OBS Setup)
   ======================================== */
.service-banner-container {
    width: 100%;
    margin: 10px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    position: relative;
    z-index: 1;
}

.service-banner-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.service-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.service-banner-container:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(99, 102, 241, 0.15);
}

.service-banner-container:hover .service-banner-img {
    transform: scale(1.01);
}

/* ========================================
   Floating Purchase Social Proof Widget
   ======================================== */
.purchase-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 320px;
    box-shadow: var(--shadow-lg), 0 0 20px rgba(99, 102, 241, 0.12);
    backdrop-filter: var(--backdrop-blur);
    z-index: 9999;
    
    /* Animation states */
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), visibility 0.4s ease;
    pointer-events: auto;
}

.purchase-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.purchase-toast-img {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.purchase-toast-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.purchase-toast-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.purchase-toast-detail {
    font-size: 0.76rem;
    color: var(--text-secondary);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.purchase-toast-time {
    font-size: 0.65rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.purchase-toast-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    margin-left: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.purchase-toast-close:hover {
    color: var(--text-primary);
    transform: scale(1.1);
}

/* Adjust for small mobile screens so it centers or fits nicely */
@media (max-width: 480px) {
    .purchase-toast {
        left: 14px;
        right: 14px;
        width: auto;
        bottom: 14px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(99, 102, 241, 0.15);
    }
}

/* Responsive adjustments for 2-column product catalog on mobile */
@media (max-width: 576px) {
    /* Hide detailed elements in card on mobile */
    .product-card .product-category,
    .product-card .product-rating,
    .product-card .product-tagline,
    .product-card .product-description,
    .product-card .product-features-grid,
    .product-card .product-downloads,
    .product-card .product-actions {
        display: none !important;
    }
    
    .product-card {
        cursor: pointer;
        padding: 12px 12px 16px 12px;
        gap: 10px;
        border-radius: 18px;
    }
    
    .product-card:active {
        transform: scale(0.97);
    }
    
    .product-card .product-title {
        font-size: 0.95rem;
        margin-top: 4px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .product-card .product-footer {
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }
    
    .product-card .product-footer-row {
        justify-content: flex-start;
    }
    
    .product-card .product-price {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-primary);
    }
    
    .product-card .product-original-price {
        font-size: 0.75rem;
        margin-left: 0;
    }

    .product-card .product-pricing,
    .product-detail-expanded .product-pricing {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 2px;
    }

    .product-detail-expanded .product-original-price {
        margin-left: 0;
        font-size: 0.88rem;
    }

    /* Swap image and title positions on card */
    .product-card {
        display: flex;
        flex-direction: column;
    }
    .product-card .product-image-container {
        order: 1;
    }
    .product-card .product-header {
        order: 2;
    }
    .product-card .product-footer {
        order: 3;
    }

    /* Swap image and title positions in popup modal on mobile */
    .product-detail-expanded {
        display: flex;
        flex-direction: column;
    }
    .product-detail-expanded .product-image-container {
        order: 1;
        margin-bottom: 8px;
    }
    .product-detail-expanded .product-header {
        order: 2;
    }
    .product-detail-expanded .product-tagline {
        order: 3;
    }
    .product-detail-expanded .product-description {
        order: 4;
    }
    .product-detail-expanded .product-features-grid {
        order: 5;
    }
    .product-detail-expanded .product-footer {
        order: 6;
        margin-top: 8px;
        padding-top: 12px;
    }
}

/* Product Detail Modal CSS */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-modal.show {
    opacity: 1;
    visibility: visible;
}

.product-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 11, 20, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1;
}

.product-modal-content {
    position: relative;
    width: 90%;
    max-width: 480px;
    max-height: 85vh;
    background: linear-gradient(145deg, rgba(20, 21, 38, 0.9) 0%, rgba(10, 11, 24, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(99, 102, 241, 0.2);
    z-index: 2;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

[data-theme="light"] .product-modal-content {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 245, 249, 0.98) 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1), 0 0 30px rgba(99, 102, 241, 0.05);
}

.product-modal.show .product-modal-content {
    transform: scale(1);
}

.product-modal-close {
    align-self: flex-end;
    margin: 16px 24px 0 24px;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-fast);
}

[data-theme="light"] .product-modal-close {
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.product-modal-close:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.product-modal-body {
    padding: 8px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow-y: auto;
}

/* Scrollbar styling for modal */
.product-modal-content::-webkit-scrollbar {
    width: 6px;
}

.product-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.product-modal-content::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: var(--radius-sm);
}

.product-modal-content::-webkit-scrollbar-thumb:hover {
    background-color: var(--accent-primary);
}

/* Modal Detailed Card structure */
.product-detail-expanded {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.product-detail-expanded .product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    border-bottom: none;
    padding-top: 0;
}

.product-detail-expanded .product-title {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.3;
}

.product-detail-expanded .product-image-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.product-detail-expanded .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-expanded .product-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.product-detail-expanded .product-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.product-detail-expanded .product-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-start;
}

.product-detail-expanded .product-features-grid .feature-tag {
    font-size: 0.72rem;
    padding: 5px 10px;
}

.product-detail-expanded .product-footer {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 4px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.product-detail-expanded .product-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.product-detail-expanded .product-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
}

.product-detail-expanded .product-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.product-detail-expanded .product-actions .btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* ============================
   Supporters Section Styles
   ============================ */
.supporters-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin: 40px auto;
    width: 100%;
    max-width: 1200px;
    backdrop-filter: var(--backdrop-blur);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.supporters-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
@keyframes heartbeat {
    0% { transform: scale(1); }
    15% { transform: scale(1.15); }
    30% { transform: scale(1); }
    45% { transform: scale(1.15); }
    60% { transform: scale(1); }
    100% { transform: scale(1); }
}
.supporters-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 32px auto;
    line-height: 1.6;
}
.supporters-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    justify-content: center;
}
.supporter-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}
.supporter-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-hover);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}
.supporter-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 0 16px var(--accent-glow);
}
.supporter-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}
.supporter-badge {
    font-size: 0.72rem;
    background: rgba(34, 197, 94, 0.15);
    color: var(--accent-success);
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
}
.supporter-date {
    font-size: 0.72rem;
    color: var(--text-muted);
}



/* ── Shared Back Link & Footer (Matches produk.html) ── */
.bridge-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 0;
    margin-top: 10px;
    transition: color var(--transition-fast);
}

.bridge-back:hover {
    color: var(--accent-primary);
}

.bridge-back i {
    font-size: 0.7rem;
}

.bridge-footer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding-top: 8px;
}

.bridge-footer a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
}

.bridge-footer a:hover {
    color: var(--accent-primary);
}

/* Adjust container bottom spacing to match produk.html */
.container {
    padding-bottom: 60px !important;
}
@media (max-width: 480px) {
    .container {
        padding-bottom: 60px !important;
    }
}

/* Centered Layout Page Helper */
body.centered-layout {
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
}
body.centered-layout .container {
    margin: 0 auto;
}

/* ── order.html Styles (Scoped to .order-page) ── */
.order-page .order-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-normal);
    margin-bottom: 24px;
}

.order-page .header-section {
    text-align: center;
    margin-bottom: 28px;
}
.order-page .header-icon {
    width: 56px;
    height: 56px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: var(--accent-success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 16px;
    margin: 0 auto 16px;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
}
.order-page .header-title {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
.order-page .header-title .emoji {
    background: none !important;
    -webkit-text-fill-color: initial !important;
    text-fill-color: initial !important;
    display: inline-block;
}
.order-page .header-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Order Summary Table */
.order-page .summary-box {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 28px;
}
[data-theme="light"] .order-page .summary-box {
    background: rgba(15, 23, 42, 0.02);
}
.order-page .summary-title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.order-page .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.order-page .summary-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.order-page .summary-label {
    color: var(--text-muted);
}
.order-page .summary-val {
    font-weight: 700;
    color: var(--text-primary);
}
.order-page .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}
.order-page .status-paid {
    background: rgba(34, 197, 94, 0.15);
    color: var(--accent-success);
    border: 1px solid rgba(34, 197, 94, 0.2);
}
.order-page .status-pending {
    background: rgba(234, 179, 8, 0.15);
    color: var(--accent-warning);
    border: 1px solid rgba(234, 179, 8, 0.2);
}

/* Action Content Sections */
.order-page .section-box {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}
.order-page .section-box:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.order-page .section-heading {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.order-page .section-heading i {
    color: var(--accent-primary);
}

/* Buttons & Badges */
.order-page .btn-action {
    width: 100%;
    background: var(--accent-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}
.order-page .btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.35);
    background: #5053eb;
}
.order-page .btn-action-secondary {
    width: 100%;
    background: rgba(99, 102, 241, 0.08);
    border: 1px dashed rgba(99, 102, 241, 0.3);
    color: var(--accent-primary);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all var(--transition-fast);
}
.order-page .btn-action-secondary:hover {
    transform: translateY(-2px);
    background: rgba(99, 102, 241, 0.12);
    border-color: var(--accent-primary);
}
.order-page .btn-action-youtube {
    width: 100%;
    background: #ef4444;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}
.order-page .btn-action-youtube:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(239, 68, 68, 0.4);
    background: #dc2626;
}

/* Step List Styling */
.order-page .step-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
.order-page .step-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
}
.order-page .step-num {
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(99, 102, 241, 0.2);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.order-page .step-text strong {
    color: var(--text-primary);
}

/* Skeleton States */
.order-page .skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}
[data-theme="light"] .order-page .skeleton {
    background: linear-gradient(90deg, rgba(0,0,0,0.03) 25%, rgba(0,0,0,0.06) 50%, rgba(0,0,0,0.03) 75%);
    background-size: 200% 100%;
}

/* Responsive Settings */
@media (max-width: 576px) {
    .order-page .order-card {
        padding: 24px 16px;
    }
    .order-page .header-title {
        font-size: 20px;
    }
}


/* ── license.html Styles (Scoped to .license-page) ── */
/* ── Core Design System (Matches kiwil.id) ── */body.license-page {
            --bg-primary: #070b14;
            --bg-secondary: rgba(15, 23, 42, 0.65);
            --bg-card: rgba(17, 25, 40, 0.72);
            --bg-card-hover: rgba(25, 35, 55, 0.85);
            --bg-input: rgba(10, 16, 28, 0.9);

            --border-color: rgba(255, 255, 255, 0.08);
            --border-hover: rgba(99, 102, 241, 0.4);

            --text-primary: #f8fafc;
            --text-secondary: #cbd5e1;
            --text-muted: #64748b;

            --accent-primary: #6366f1;      /* Indigo */
            --accent-secondary: #06b6d4;    /* Cyan */
            --accent-success: #22c55e;
            --accent-warning: #eab308;
            --accent-danger: #ef4444;

            --accent-gradient: linear-gradient(
                135deg,
                #6366f1 0%,
                #8b5cf6 50%,
                #06b6d4 100%
            );
            --accent-glow: rgba(99, 102, 241, 0.28);

            --shadow-sm: 0 4px 12px rgba(0,0,0,.25);
            --shadow-md: 0 12px 32px rgba(0,0,0,.4);
            --shadow-lg: 0 24px 60px rgba(0,0,0,.55);
            --shadow-glow: 0 0 32px rgba(99,102,241,.15);

            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 32px;
            --radius-round: 50%;

            --transition-fast: .2s cubic-bezier(.4,0,.2,1);
            --transition-normal: .35s cubic-bezier(.4,0,.2,1);
        }[data-theme="light"] .license-page {
            --bg-primary: #f8fafc;
            --bg-secondary: rgba(255, 255, 255, 0.75);
            --bg-card: rgba(255, 255, 255, 0.8);
            --bg-card-hover: rgba(255, 255, 255, 0.95);
            --bg-input: rgba(255, 255, 255, 0.9);

            --border-color: rgba(15, 23, 42, 0.08);
            --border-hover: rgba(99, 102, 241, 0.25);

            --text-primary: #0f172a;
            --text-secondary: #334155;
            --text-muted: #64748b;

            --shadow-sm: 0 4px 12px rgba(15,23,42,0.05);
            --shadow-md: 0 12px 32px rgba(15,23,42,0.08);
            --shadow-lg: 0 24px 60px rgba(15,23,42,0.12);
            --shadow-glow: 0 0 32px rgba(99,102,241,0.08);
        }.license-page * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }body.license-page {
            background: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Plus Jakarta Sans', sans-serif;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            overflow-x: hidden;
            position: relative;
            transition: background var(--transition-normal);
        }/* ── Background Blobs ── */.license-page .bg-blobs {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }.license-page .blob {
            position: absolute;
            border-radius: var(--radius-round);
            filter: blur(120px);
            opacity: 0.15;
            animation: floatBlob 12s infinite alternate ease-in-out;
            will-change: transform;
            transform: translateZ(0);
        }.license-page .blob-1 {
            width: 400px;
            height: 400px;
            background: var(--accent-primary);
            top: -50px;
            left: -100px;
            animation-delay: 0s;
        }.license-page .blob-2 {
            width: 450px;
            height: 450px;
            background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
            bottom: -50px;
            right: -100px;
            animation-delay: 3s;
        }@keyframes floatBlob {
            0% {
                transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
            }
            100% {
                transform: translate3d(60px, 40px, 0) scale(1.15) rotate(45deg);
            }
        }/* ── Container ── */body.license-page .container {
            width: 100%;
            max-width: 650px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 40px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-lg), var(--shadow-glow);
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
            position: relative;
            margin-bottom: 28px !important;
        }.license-page .container:hover {
            border-color: rgba(255, 255, 255, 0.12);
            box-shadow: var(--shadow-lg), var(--shadow-glow), 0 0 40px rgba(99, 102, 241, 0.1);
        }/* ── Header ── */.license-page .header {
            text-align: center;
            margin-bottom: 35px;
        }.license-page .logo-box {
            display: inline-flex;
            width: 72px;
            height: 72px;
            border-radius: 22px;
            background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
            align-items: center;
            justify-content: center;
            color: #0d0e15;
            font-size: 32px;
            margin-bottom: 20px;
            box-shadow: 0 12px 32px rgba(245, 158, 11, 0.4);
            position: relative;
        }.license-page .logo-box::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 26px;
            border: 1px solid #f59e0b;
            opacity: 0.4;
            animation: pulseGlow 2.5s infinite;
        }[data-theme="light"] .license-page .logo-box {
            background: linear-gradient(135deg, #d97706 0%, #dc2626 100%);
            color: #ffffff;
            box-shadow: 0 12px 32px rgba(217, 119, 6, 0.3);
        }[data-theme="light"] .license-page .logo-box::after {
            border-color: #d97706;
        }@keyframes pulseGlow {
            0% { transform: scale(1); opacity: 0.4; }
            50% { transform: scale(1.08); opacity: 0.1; }
            100% { transform: scale(1); opacity: 0.4; }
        }.license-page .header h1 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }.license-page .header p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.5;
        }/* ── Search Form ── */.license-page .search-section {
            margin-bottom: 30px;
        }.license-page .input-group {
            display: flex;
            position: relative;
            align-items: stretch;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            background: var(--bg-input);
            overflow: hidden;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }.license-page .input-group:focus-within {
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
        }.license-page .input-icon {
            display: flex;
            align-items: center;
            padding-left: 18px;
            color: var(--text-muted);
            font-size: 16px;
        }.license-page .input-field {
            flex: 1;
            padding: 16px 14px;
            background: transparent;
            border: none;
            color: var(--text-primary);
            outline: none;
            font-family: inherit;
            font-size: 14px;
        }.license-page .input-field::placeholder {
            color: var(--text-muted);
        }/* Prevent autofill from changing input background */.license-page .input-field:-webkit-autofill, .license-page .input-field:-webkit-autofill:hover, .license-page .input-field:-webkit-autofill:focus, .license-page .input-field:-webkit-autofill:active, .license-page .form-input:-webkit-autofill, .license-page .form-input:-webkit-autofill:hover, .license-page .form-input:-webkit-autofill:focus, .license-page .form-input:-webkit-autofill:active {
            -webkit-box-shadow: 0 0 0 1000px var(--bg-input) inset !important;
            -webkit-text-fill-color: var(--text-primary) !important;
            transition: background-color 5000s ease-in-out 0s;
        }.license-page .btn-search {
            background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
            border: none;
            border-radius: 0;
            color: #0d0e15;
            padding: 0 28px;
            font-weight: 700;
            cursor: pointer;
            font-family: inherit;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: opacity 0.2s ease, filter 0.2s ease;
            will-change: opacity, filter;
        }.license-page .btn-search:hover {
            opacity: 0.92;
            filter: brightness(1.08);
        }[data-theme="light"] .license-page .btn-search {
            background: linear-gradient(135deg, #d97706 0%, #dc2626 100%);
            color: #ffffff;
        }/* ── Alert boxes ── */.license-page .alert {
            border-radius: var(--radius-sm);
            padding: 16px;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 24px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            animation: fadeIn .3s ease;
        }.license-page .alert-info {
            background: rgba(99, 102, 241, 0.05);
            border: 1px solid rgba(99, 102, 241, 0.2);
            color: var(--text-secondary);
        }.license-page .alert-info i {
            color: var(--accent-primary);
            font-size: 18px;
        }.license-page .alert-error {
            background: rgba(239, 68, 68, 0.06);
            border: 1px solid rgba(239, 68, 68, 0.2);
            color: var(--text-secondary);
        }.license-page .alert-error i {
            color: var(--accent-danger);
            font-size: 18px;
        }/* ── Order cards ── */.license-page .order-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 24px;
            margin-bottom: 20px;
            animation: fadeIn .35s ease;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }.license-page .order-card:hover {
            border-color: var(--border-hover);
        }.license-page .order-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 12px;
        }.license-page .product-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
        }.license-page .order-id {
            font-size: 11px;
            color: var(--text-muted);
            font-family: monospace;
            background: rgba(15, 23, 42, 0.35);
            padding: 2px 6px;
            border-radius: 4px;
        }[data-theme="light"] .license-page .order-id {
            background: rgba(15, 23, 42, 0.05);
        }.license-page .order-meta {
            font-size: 13px;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 18px;
        }.license-page .meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }.license-page .meta-item i {
            color: var(--text-muted);
            width: 16px;
            text-align: center;
        }/* ── Generated Licenses Area ── */.license-page .licenses-wrapper {
            margin-top: 15px;
            border-top: 1px solid var(--border-color);
            padding-top: 15px;
        }.license-page .licenses-title {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--text-muted);
            font-weight: 800;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }.license-page .license-item {
            background: rgba(15, 23, 42, 0.35);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 14px 18px;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            gap: 12px;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
            will-change: border-color, transform, box-shadow;
        }[data-theme="light"] .license-page .license-item {
            background: rgba(15, 23, 42, 0.04);
        }.license-page .license-item:hover {
            border-color: rgba(34, 197, 94, 0.25);
            box-shadow: 0 6px 16px rgba(34, 197, 94, 0.04);
            transform: translateY(-1px);
        }.license-page .license-key-wrapper {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }.license-page .license-key {
            font-family: monospace;
            font-weight: 700;
            color: var(--accent-success);
            word-break: break-all;
            font-size: 14px;
            letter-spacing: 0.03em;
        }.license-page .license-device {
            font-size: 11px;
            color: var(--text-muted);
        }.license-page .btn-copy-mini {
            background: transparent;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease;
            padding: 4px;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            will-change: transform;
        }.license-page .btn-copy-mini:hover {
            color: var(--text-primary);
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.08);
        }[data-theme="light"] .license-page .btn-copy-mini:hover {
            background: rgba(15, 23, 42, 0.05);
        }/* ── Generator Claim Form inside card ── */.license-page .claim-form {
            background: rgba(99, 102, 241, 0.03);
            border: 1px solid rgba(99, 102, 241, 0.08);
            border-radius: 12px;
            padding: 20px;
            margin-top: 15px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }[data-theme="light"] .license-page .claim-form {
            background: rgba(99, 102, 241, 0.05);
            border-color: rgba(99, 102, 241, 0.12);
        }.license-page .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }@media (max-width: 480px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }.license-page .claim-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--text-muted);
            font-weight: 600;
            margin-bottom: 4px;
            display: block;
        }.license-page .form-input {
            width: 100%;
            background: var(--bg-input);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-primary);
            padding: 10px 12px;
            font-family: inherit;
            font-size: 13px;
            outline: none;
            transition: var(--transition-fast);
        }.license-page .form-input:focus {
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
        }.license-page .device-input {
            font-family: monospace;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }.license-page .device-input::placeholder {
            font-family: 'Plus Jakarta Sans', sans-serif;
            letter-spacing: normal;
            font-weight: normal;
            text-transform: none;
        }.license-page .duration-select {
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 16px;
            padding-right: 36px !important;
        }.license-page .duration-select:focus {
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        }.license-page .duration-select option {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: inherit;
        }.license-page .product-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 10px;
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 0.06em;
            padding: 4px 10px;
            border-radius: 20px;
            background: rgba(99, 102, 241, 0.08);
            color: var(--accent-primary);
            border: 1px solid rgba(99, 102, 241, 0.15);
            margin-bottom: 10px;
        }.license-page .btn-generate {
            background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
            border: none;
            color: #0d0e15;
            padding: 10px 16px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 13px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform, box-shadow;
            width: 100%;
            align-self: flex-end;
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
        }.license-page .btn-generate:hover {
            box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
            transform: translateY(-1px);
            filter: brightness(1.08);
        }[data-theme="light"] .license-page .btn-generate {
            background: linear-gradient(135deg, #d97706 0%, #dc2626 100%);
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
        }[data-theme="light"] .license-page .btn-generate:hover {
            box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35);
        }/* ── Modal success output ── */.license-page .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(7, 11, 20, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--transition-fast);
            padding: 20px;
        }.license-page .modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }.license-page .modal-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 40px 32px;
            width: 100%;
            max-width: 480px;
            transform: scale(0.9);
            transition: transform var(--transition-normal);
            box-shadow: var(--shadow-lg), var(--shadow-glow);
            text-align: center;
        }.license-page .modal-overlay.active .modal-card {
            transform: scale(1);
        }.license-page .success-icon {
            font-size: 60px;
            color: var(--accent-success);
            margin-bottom: 20px;
            filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.3));
        }.license-page .modal-card h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 12px;
        }.license-page .modal-card p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 24px;
            line-height: 1.5;
        }.license-page .license-box {
            background: var(--bg-input);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 24px;
            box-shadow: inset 0 2px 6px rgba(0,0,0,0.5);
        }.license-page .license-display-text {
            font-family: monospace;
            font-size: 16px;
            font-weight: 700;
            color: var(--accent-secondary);
            word-break: break-all;
            text-align: left;
            letter-spacing: 0.05em;
        }.license-page .btn-copy-modal {
            padding: 8px 14px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-primary);
            cursor: pointer;
            transition: var(--transition-fast);
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            white-space: nowrap;
        }.license-page .btn-copy-modal:hover {
            background: var(--text-primary);
            color: var(--bg-primary);
            border-color: var(--text-primary);
        }[data-theme="light"] .license-page .btn-copy-modal {
            background: rgba(15, 23, 42, 0.04);
        }[data-theme="light"] .license-page .btn-copy-modal:hover {
            background: rgba(15, 23, 42, 0.08);
        }.license-page .btn-close {
            width: 100%;
            padding: 14px;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-fast);
        }.license-page .btn-close:hover {
            background: rgba(255,255,255,0.1);
        }[data-theme="light"] .license-page .btn-close {
            background: rgba(15, 23, 42, 0.04);
        }[data-theme="light"] .license-page .btn-close:hover {
            background: rgba(15, 23, 42, 0.08);
        }.license-page .toast {
            background: var(--accent-success);
            color: #fff;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            opacity: 0;
            z-index: 10000;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
            box-shadow: 0 8px 24px rgba(34, 197, 94, 0.25);
            display: flex;
            align-items: center;
            gap: 8px;
        }.license-page .toast.active {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }/* ── Loading Spinner ── */.license-page .spinner {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 0.8s linear infinite;
        }@keyframes spin {
            to { transform: rotate(360deg); }
        }/* Animations */@keyframes fadeIn {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }/* ── Duration Badge Display (Read Only) ── */.license-page .duration-badge-display {
            width: 100%;
            background: rgba(99, 102, 241, 0.07);
            border: 1px solid rgba(99, 102, 241, 0.15);
            border-radius: 8px;
            color: var(--accent-primary);
            padding: 10px 14px;
            font-size: 13px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            box-sizing: border-box;
        }.license-page .duration-badge-display i {
            font-size: 14px;
            color: var(--accent-primary);
        }/* ── Custom Select Dropdown Styling ── */.license-page .custom-select-wrapper {
            position: relative;
            width: 100%;
            user-select: none;
        }.license-page .custom-select-trigger {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 10px 14px;
            background-color: var(--bg-input);
            border: 1px solid var(--border-color);
            border-radius: 8px; /* Match form-input border-radius */
            color: var(--text-primary);
            font-family: inherit;
            font-size: 13px;
            cursor: pointer;
            transition: all var(--transition-fast);
        }.license-page .custom-select-trigger:focus {
            outline: none;
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
        }.license-page .custom-select-trigger:hover {
            border-color: var(--border-hover);
        }.license-page .custom-select-wrapper.open .custom-select-trigger {
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
        }.license-page .custom-select-arrow {
            font-size: 0.8rem;
            color: var(--text-muted);
            transition: transform var(--transition-fast);
        }.license-page .custom-select-wrapper.open .custom-select-arrow {
            transform: rotate(180deg);
            color: var(--accent-primary);
        }.license-page .custom-options {
            position: absolute;
            top: calc(100% + 6px);
            left: 0;
            right: 0;
            background: var(--bg-input);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            box-shadow: var(--shadow-lg), var(--shadow-glow);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 10;
            max-height: 200px;
            overflow-y: auto;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
        }.license-page .custom-select-wrapper.open .custom-options {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }.license-page .custom-options::-webkit-scrollbar {
            width: 6px;
        }.license-page .custom-options::-webkit-scrollbar-track {
            background: transparent;
        }.license-page .custom-options::-webkit-scrollbar-thumb {
            background-color: var(--border-color);
            border-radius: 4px;
        }.license-page .custom-options::-webkit-scrollbar-thumb:hover {
            background-color: var(--accent-primary);
        }.license-page .custom-option {
            padding: 10px 14px;
            font-size: 13px;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition-fast);
            text-align: left;
        }.license-page .custom-option:first-child {
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
        }.license-page .custom-option:last-child {
            border-bottom-left-radius: 8px;
            border-bottom-right-radius: 8px;
        }.license-page .custom-option:hover {
            background-color: rgba(99, 102, 241, 0.1);
            color: var(--text-primary);
            padding-left: 18px;
        }.license-page .custom-option.selected {
            background-color: rgba(99, 102, 241, 0.18);
            color: var(--text-primary);
            font-weight: 700;
            border-left: 3px solid var(--accent-primary);
        }/* ── Responsive Mobile Overrides ── */@media (max-width: 768px) {
            body.centered-layout {
                align-items: flex-start !important;
                justify-content: flex-start !important;
                padding-top: 160px !important;
            }
            .container {
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                background: rgba(17, 25, 40, 0.95);
                padding: 32px 24px;
            }
            [data-theme="light"] .container {
                background: rgba(248, 250, 252, 0.98);
            }
            .lang-dropdown, .custom-options, .toast {
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
            }
        }@media (max-width: 576px) {
            .form-row {
                grid-template-columns: 1fr !important;
                gap: 12px;
            }
        }@media (max-width: 480px) {
            body {
                padding: 20px 10px;
            }
            .container {
                padding: 28px 16px;
                border-radius: var(--radius-md);
            }

            .logo-box {
                width: 60px;
                height: 60px;
                font-size: 26px;
                border-radius: 18px;
                margin-bottom: 15px;
            }
            .header h1 {
                font-size: 22px;
            }
            .header p {
                font-size: 13px;
            }
            .btn-search {
                padding: 0 18px;
                font-size: 13px;
            }
            .input-field {
                padding: 12px 10px;
                font-size: 13px;
            }
            .order-card {
                padding: 16px;
            }
            .order-header {
                flex-direction: column;
                gap: 6px;
                align-items: flex-start;
            }
            .order-id {
                align-self: flex-start;
            }
            .license-item {
                padding: 10px 12px;
                gap: 8px;
            }
            .license-key {
                font-size: 11px;
            }
            .license-device {
                font-size: 10px;
            }
            .btn-copy-mini {
                width: 24px;
                height: 24px;
                font-size: 12px;
            }
            .claim-form {
                padding: 14px;
            }
            .modal-card {
                padding: 30px 20px;
            }
            .license-box {
                padding: 12px;
            }
            .license-display-text {
                font-size: 13px;
            }
            .btn-copy-modal {
                padding: 6px 10px;
                font-size: 11px;
            }
        }

/* ── produk.html Styles (Scoped to .produk-page) ── */
/* ========================================
           Bridge Page — Download dan Rekomendasi
           ======================================== *//* Override body to center content */body.produk-page {
            align-items: center;
            min-height: 100vh;
        }/* Bridge Container */.produk-page .bridge-container {
            width: 100%;
            max-width: 580px;
            padding: 30px 20px 60px 20px;
            display: flex;
            flex-direction: column;
            gap: 24px;
            animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
        }/* ── Header ── */.produk-page .bridge-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding-bottom: 8px;
        }.produk-page .bridge-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 6px;
        }/* ── Thank You Card ── */.produk-page .bridge-thankyou {
            text-align: center;
            padding: 24px 20px;
            background: linear-gradient(145deg, rgba(34, 197, 94, 0.08) 0%, rgba(6, 182, 212, 0.06) 100%);
            border: 1px solid rgba(34, 197, 94, 0.15);
            border-radius: var(--radius-lg);
            backdrop-filter: var(--backdrop-blur);
            animation: fadeInUp 0.6s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
        }[data-theme="light"] .produk-page .bridge-thankyou {
            background: linear-gradient(145deg, rgba(34, 197, 94, 0.06) 0%, rgba(6, 182, 212, 0.04) 100%);
            border: 1px solid rgba(34, 197, 94, 0.12);
        }.produk-page .thankyou-icon {
            font-size: 2.2rem;
            margin-bottom: 10px;
            display: block;
            background: linear-gradient(135deg, #22c55e, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: pulseIcon 2s infinite ease-in-out;
        }@keyframes pulseIcon {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.08); }
        }.produk-page .thankyou-title {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 6px;
        }.produk-page .thankyou-subtitle {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }.produk-page .thankyou-product-name {
            font-weight: 700;
            color: var(--accent-primary);
        }/* ── Countdown Card ── */.produk-page .bridge-countdown-card {
            position: relative;
            background: linear-gradient(145deg, rgba(20, 21, 38, 0.6) 0%, rgba(10, 11, 24, 0.4) 100%);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            backdrop-filter: var(--backdrop-blur);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            overflow: hidden;
            box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), var(--shadow-md);
            animation: fadeInUp 0.6s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
        }[data-theme="light"] .produk-page .bridge-countdown-card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.8) 0%, rgba(241, 245, 249, 0.6) 100%);
            border: 1px solid rgba(15, 23, 42, 0.06);
            box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.9), var(--shadow-md);
        }/* Glow behind the card */.produk-page .bridge-countdown-card::before {
            content: '';
            position: absolute;
            top: -40%;
            left: -20%;
            width: 140%;
            height: 140%;
            background: radial-gradient(circle at center, rgba(99, 102, 241, 0.06) 0%, transparent 65%);
            pointer-events: none;
            z-index: 0;
        }.produk-page .countdown-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-secondary);
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 8px;
        }.produk-page .countdown-label i {
            color: var(--accent-primary);
            animation: spin 3s linear infinite;
        }@keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }/* SVG Circular Countdown */.produk-page .countdown-ring-wrapper {
            position: relative;
            width: 160px;
            height: 160px;
            z-index: 1;
        }.produk-page .countdown-svg {
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
        }.produk-page .countdown-bg {
            fill: none;
            stroke: rgba(255, 255, 255, 0.06);
            stroke-width: 6;
        }[data-theme="light"] .produk-page .countdown-bg {
            stroke: rgba(15, 23, 42, 0.06);
        }.produk-page .countdown-progress {
            fill: none;
            stroke: url(#countdown-gradient);
            stroke-width: 6;
            stroke-linecap: round;
            stroke-dasharray: 439.82; /* 2 * PI * 70 */
            stroke-dashoffset: 0;
            transition: stroke-dashoffset 1s linear;
            filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.4));
        }.produk-page .countdown-number {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
        }.produk-page .countdown-digits {
            font-size: 3rem;
            font-weight: 800;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            letter-spacing: -2px;
        }.produk-page .countdown-unit {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }/* ── Fast Download CTA ── */.produk-page .bridge-fast-cta {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            width: 100%;
        }.produk-page .btn-bridge-fast {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 14px 20px;
            font-family: inherit;
            font-size: 0.92rem;
            font-weight: 700;
            border: none;
            border-radius: var(--radius-md);
            cursor: pointer;
            text-decoration: none;
            background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
            color: #0d0e15;
            box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
            transition: all var(--transition-fast);
            animation: pulseCTA 2.5s infinite ease-in-out;
        }[data-theme="light"] .produk-page .btn-bridge-fast {
            background: linear-gradient(135deg, #d97706 0%, #dc2626 100%);
            color: #ffffff;
        }@keyframes pulseCTA {
            0%, 100% { 
                box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3); 
                transform: scale(1);
            }
            50% { 
                box-shadow: 0 6px 30px rgba(245, 158, 11, 0.5), 0 0 40px rgba(239, 68, 68, 0.2);
                transform: scale(1.02);
            }
        }.produk-page .btn-bridge-fast:hover {
            animation: none;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 30px rgba(239, 68, 68, 0.5);
            filter: brightness(1.1);
        }.produk-page .fast-cta-hint {
            font-size: 0.75rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 6px;
        }.produk-page .fast-cta-hint i {
            color: var(--accent-secondary);
            font-size: 0.7rem;
        }/* ── Slow Download Section (Hidden initially) ── */.produk-page .bridge-download-ready {
            display: none;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            width: 100%;
            z-index: 1;
            position: relative;
        }.produk-page .bridge-download-ready.visible {
            display: flex;
            animation: slideUpReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
        }@keyframes slideUpReveal {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }.produk-page .download-ready-badge {
            display: none;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            font-weight: 700;
            color: #22c55e;
            background: rgba(34, 197, 94, 0.08);
            border: 1px solid rgba(34, 197, 94, 0.2);
            padding: 10px 20px;
            border-radius: var(--radius-md);
            cursor: pointer;
            font-family: inherit;
            transition: all var(--transition-fast);
            text-decoration: none;
        }.produk-page .download-ready-badge:hover {
            background: rgba(34, 197, 94, 0.16);
            border-color: rgba(34, 197, 94, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
        }.produk-page .download-ready-badge:active {
            transform: translateY(0);
        }.produk-page .download-ready-badge.visible {
            display: inline-flex;
            animation: celebrateBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
        }@keyframes celebrateBounce {
            0% { transform: scale(0); }
            60% { transform: scale(1.15); }
            100% { transform: scale(1); }
        }/* Animated bouncing arrow icon */.produk-page .badge-arrow-icon {
            animation: bounceDown 1.2s infinite ease-in-out;
        }@keyframes bounceDown {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(5px); }
        }.produk-page .btn-bridge-slow {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 14px 20px;
            font-family: inherit;
            font-size: 0.92rem;
            font-weight: 700;
            border: none;
            border-radius: var(--radius-md);
            cursor: pointer;
            text-decoration: none;
            background-color: rgba(245, 158, 11, 0.06);
            border: 1px solid rgba(245, 158, 11, 0.25);
            color: #f59e0b;
            transition: all var(--transition-fast);
        }[data-theme="light"] .produk-page .btn-bridge-slow {
            background-color: rgba(217, 119, 6, 0.04);
            border: 1px solid rgba(217, 119, 6, 0.25);
            color: #d97706;
        }.produk-page .btn-bridge-slow:hover {
            transform: translateY(-2px);
            border-color: rgba(245, 158, 11, 0.5);
            background-color: rgba(245, 158, 11, 0.15);
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
        }/* ── Countdown Complete State ── */.produk-page .bridge-countdown-card.completed {
            border-color: rgba(34, 197, 94, 0.2);
        }.produk-page .bridge-countdown-card.completed .countdown-progress {
            stroke: #22c55e;
            filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.4));
        }.produk-page .bridge-countdown-card.completed .countdown-digits {
            background: linear-gradient(135deg, #22c55e, #06b6d4);
            -webkit-background-clip: text;
            background-clip: text;
        }.produk-page .bridge-countdown-card.completed .countdown-label {
            color: #22c55e;
        }.produk-page .bridge-countdown-card.completed .countdown-label i {
            display: none;
        }/* Confetti particles */.produk-page .confetti-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: 2;
        }.produk-page .confetti {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 2px;
            opacity: 0;
        }.produk-page .confetti.active {
            animation: confettiFall 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }@keyframes confettiFall {
            0% {
                opacity: 1;
                transform: translateY(-20px) rotate(0deg) scale(0);
            }
            20% {
                opacity: 1;
                transform: translateY(10px) rotate(120deg) scale(1);
            }
            100% {
                opacity: 0;
                transform: translateY(200px) rotate(720deg) scale(0.4);
            }
        }/* ── Affiliate Section ── */.produk-page .bridge-affiliate-section {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 24px;
            backdrop-filter: var(--backdrop-blur);
            display: flex;
            flex-direction: column;
            gap: 16px;
            animation: fadeInUp 0.6s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
        }.produk-page .bridge-affiliate-header {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }.produk-page .bridge-affiliate-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }.produk-page .bridge-affiliate-title i {
            font-size: 1rem;
            color: var(--accent-primary);
        }.produk-page .bridge-affiliate-subtitle {
            font-size: 0.8rem;
            color: var(--text-secondary);
            line-height: 1.4;
        }/* ── Theme Toggle / Floating controls ── *//* Will style via style.css floating controls styles *//* ── Shimmer loading effect for waiting ── */.produk-page .shimmer-bar {
            height: 4px;
            width: 100%;
            border-radius: 4px;
            background: linear-gradient(
                90deg,
                rgba(99, 102, 241, 0.05) 0%,
                rgba(99, 102, 241, 0.2) 50%,
                rgba(99, 102, 241, 0.05) 100%
            );
            background-size: 200% 100%;
            animation: shimmer 2s infinite linear;
            position: relative;
            z-index: 1;
        }.produk-page .bridge-countdown-card.completed .shimmer-bar {
            background: rgba(34, 197, 94, 0.15);
            animation: none;
        }@keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }/* ── Responsive ── */@media (max-width: 480px) {
            .bridge-container {
                padding: 20px 14px 50px 14px;
                gap: 18px;
            }

            .bridge-countdown-card {
                padding: 24px 16px;
            }

            .countdown-ring-wrapper {
                width: 130px;
                height: 130px;
            }

            .countdown-digits {
                font-size: 2.5rem;
            }

            .bridge-affiliate-section {
                padding: 18px;
            }
        }@media (max-width: 768px) {
            .bridge-countdown-card {
                background: linear-gradient(145deg, rgba(20, 21, 38, 0.95) 0%, rgba(10, 11, 24, 0.92) 100%);
            }

            [data-theme="light"] .bridge-countdown-card {
                background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 245, 249, 0.95) 100%);
            }

            .bg-blobs {
                display: none;
            }
        }/* Skeleton Loading Styling */.produk-page .skeleton-card {
            position: relative;
            overflow: hidden;
            pointer-events: none;
        }.produk-page .skeleton-card .skeleton-badge, .produk-page .skeleton-card .skeleton-text, .produk-page .skeleton-card .skeleton-image, .produk-page .skeleton-card .skeleton-tag, .produk-page .skeleton-card .skeleton-price, .produk-page .skeleton-card .skeleton-downloads, .produk-page .skeleton-card .skeleton-btn {
            background: rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-sm);
        }[data-theme="light"] .produk-page .skeleton-card .skeleton-badge, [data-theme="light"] .produk-page .skeleton-card .skeleton-text, [data-theme="light"] .produk-page .skeleton-card .skeleton-image, [data-theme="light"] .produk-page .skeleton-card .skeleton-tag, [data-theme="light"] .produk-page .skeleton-card .skeleton-price, [data-theme="light"] .produk-page .skeleton-card .skeleton-downloads, [data-theme="light"] .produk-page .skeleton-card .skeleton-btn {
            background: rgba(15, 23, 42, 0.05);
        }/* Shimmer Animation effect */.produk-page .skeleton-card .skeleton-badge::after, .produk-page .skeleton-card .skeleton-text::after, .produk-page .skeleton-card .skeleton-image::after, .produk-page .skeleton-card .skeleton-tag::after, .produk-page .skeleton-card .skeleton-price::after, .produk-page .skeleton-card .skeleton-downloads::after, .produk-page .skeleton-card .skeleton-btn::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            transform: translateX(-100%);
            background: linear-gradient(
                90deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.03) 20%,
                rgba(255, 255, 255, 0.08) 60%,
                rgba(255, 255, 255, 0) 100%
            );
            animation: skeleton-shimmer 1.5s infinite;
        }[data-theme="light"] .produk-page .skeleton-card .skeleton-badge::after, [data-theme="light"] .produk-page .skeleton-card .skeleton-text::after, [data-theme="light"] .produk-page .skeleton-card .skeleton-image::after, [data-theme="light"] .produk-page .skeleton-card .skeleton-tag::after, [data-theme="light"] .produk-page .skeleton-card .skeleton-price::after, [data-theme="light"] .produk-page .skeleton-card .skeleton-downloads::after, [data-theme="light"] .produk-page .skeleton-card .skeleton-btn::after {
            background: linear-gradient(
                90deg,
                rgba(0, 0, 0, 0) 0%,
                rgba(0, 0, 0, 0.02) 20%,
                rgba(0, 0, 0, 0.05) 60%,
                rgba(0, 0, 0, 0) 100%
            );
        }@keyframes skeleton-shimmer {
            100% {
                transform: translateX(100%);
            }
        }.produk-page .affiliate-image-container {
            aspect-ratio: 1 / 1;
        }

/* ── order.html inline cleanups ── */
.order-page #loading-state {
    padding: 20px 0;
}
.order-page .skeleton-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin: 0 auto 20px;
}
.order-page .skeleton-title {
    width: 200px;
    height: 24px;
    margin: 0 auto 12px;
}
.order-page .skeleton-subtitle {
    width: 320px;
    height: 16px;
    margin: 0 auto 40px;
}
.order-page .skeleton-box {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    margin-bottom: 30px;
}
.order-page .skeleton-label {
    width: 120px;
    height: 18px;
    margin-bottom: 12px;
}
.order-page .skeleton-button {
    width: 100%;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 24px;
}
.order-page #content-state {
    display: none;
}
.order-page #val-orderid {
    font-family: monospace;
}
.order-page .download-hint {
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-secondary);
}
.order-page .tutorial-desc {
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--text-secondary);
}
.order-page .download-empty {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}
.order-page .download-empty-icon {
    margin-right: 4px;
}
.order-page .alert-error {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.order-page .alert-icon {
    font-size: 24px;
}
.order-page .alert-message {
    font-size: 14px;
    font-weight: 600;
}

/* ── license.html inline helper cleanups ── */
.license-page .alert-info-margin {
    margin-top: 15px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Shared Affiliate Skeleton styles (index & produk pages) ── */
.affiliate-grid .skeleton-image {
    width: 100%;
    aspect-ratio: 1 / 1;
}
.affiliate-grid .affiliate-card-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.affiliate-grid .skeleton-text.width-80 {
    width: 80%;
    height: 16px;
    margin: 0 auto;
}
.affiliate-grid .skeleton-text.width-50 {
    width: 50%;
    height: 16px;
    margin: 0 auto;
}
.affiliate-grid .skeleton-btn {
    width: 100%;
    height: 38px;
}

/* ── Homepage Product Skeleton styles ── */
.products-section .skeleton-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.products-section .skeleton-badge {
    height: 24px;
}
.products-section .skeleton-badge.width-100 {
    width: 100px;
}
.products-section .skeleton-badge.width-50 {
    width: 50px;
}
.products-section .skeleton-text.height-28 {
    width: 60%;
    height: 28px;
}
.products-section .skeleton-text.height-18 {
    width: 80%;
    height: 18px;
}
.products-section .skeleton-text.height-50 {
    width: 95%;
    height: 50px;
}
.products-section .skeleton-image {
    width: 100%;
    aspect-ratio: 600 / 362;
}
.products-section .skeleton-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.products-section .skeleton-tag {
    height: 28px;
}
.products-section .skeleton-tag.width-110 { width: 110px; }
.products-section .skeleton-tag.width-90 { width: 90px; }
.products-section .skeleton-tag.width-120 { width: 120px; }
.products-section .skeleton-tag.width-100 { width: 100px; }

.products-section .skeleton-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 18px;
}
.products-section .skeleton-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.products-section .skeleton-price {
    width: 100px;
    height: 24px;
}
.products-section .skeleton-downloads {
    width: 60px;
    height: 24px;
}
.products-section .skeleton-actions {
    display: flex;
    gap: 8px;
    flex-direction: column;
}
.products-section .skeleton-btn {
    width: 100%;
    height: 45px;
}

/* Supporters section heart icon */
.supporters-section .heart-icon {
    color: var(--accent-primary);
    animation: heartbeat 1.5s infinite;
}

/* license.html dynamic form date group margin */
.license-page .form-group.custom-date-group {
    margin-top: 4px;
}

/* ── Shared Controls, Theme Switcher & Language Selector ── */

/* Floating Controls Container */
.floating-controls {
    position: fixed;
    top: 30px;
    right: 30px;
    display: flex;
    gap: 12px;
    z-index: 100;
}

/* Base Control Button Style */
.control-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-round);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, border-color, color;
}
.control-btn:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
    color: var(--accent-primary);
}

.control-btn svg, .control-btn i {
    font-size: 20px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Dark/Light Icons showing based on active theme */
[data-theme="light"] .theme-dark-icon { display: inline-flex !important; }
[data-theme="light"] .theme-light-icon { display: none !important; }
.theme-dark-icon { display: none !important; }
.theme-light-icon { display: inline-flex !important; }

/* Language Selector Dropdown Wrapper */
.lang-selector-wrapper {
    position: relative;
    display: inline-block;
}

/* Custom button width and padding for the language trigger button */
#lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    width: auto;
    min-width: 44px;
    border-radius: var(--radius-md);
}
.lang-btn-text {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* Lang Dropdown Panel Overlay */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    width: 220px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.95);
    transition: opacity var(--transition-normal), 
                transform var(--transition-normal), 
                visibility var(--transition-normal);
}
.lang-selector-wrapper.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Language Selection Options */
.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: calc(var(--radius-md) - 6px);
    cursor: pointer;
    transition: background-color 0.15s ease, 
                color 0.15s ease, 
                padding-left 0.15s ease;
    position: relative;
}
.lang-option:hover {
    background-color: rgba(99, 102, 241, 0.1);
    color: var(--text-primary);
    padding-left: 20px;
}
.lang-name {
    font-weight: 500;
    white-space: nowrap;
}
.lang-check-icon {
    margin-left: auto;
    color: var(--accent-success);
    font-size: 0.75rem;
    opacity: 0;
    transform: scale(0.7);
    transition: all var(--transition-fast);
}
.lang-option.active {
    background-color: rgba(99, 102, 241, 0.15);
    color: var(--text-primary);
    font-weight: 700;
}
.lang-option.active .lang-check-icon {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 480px) {
    .floating-controls {
        top: 20px;
        right: 20px;
        gap: 8px;
    }
    .lang-dropdown {
        width: 200px;
        top: calc(100% + 10px);
    }
}