/* ============================================
   Print.id — Landing Page Styles
   ============================================ */

/* ----- CSS Variables ----- */
:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --secondary: #1e40af;
    --accent: #f97316;
    --accent-hover: #ea580c;
    --accent-gradient: linear-gradient(135deg, #f97316, #ef4444);
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text: #1e293b;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ----- Reset & Base ----- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ----- Accessibility: Skip to content ----- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 8px;
    background: var(--accent);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 600;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 8px;
}

/* ----- Focus visible for keyboard users ----- */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
input:focus:not(:focus-visible) {
    outline: none;
}

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal, .reveal-left, .reveal-right {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ----- Utilities ----- */
.text-accent { color: var(--accent); }
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    padding: 12px 24px;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    border-radius: var(--radius);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}
.btn-outline-dark:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
}
.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}



.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}

.nav-logo i {
    font-size: 1.6rem;
    color: var(--accent);
}

.nav-logo span {
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    font-size: 1.5rem;
    color: #fff;
}

/* ===== NAVBAR SCROLL EFFECT ===== */
.navbar.scrolled {
    background: rgba(15, 23, 42, 0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}


/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: var(--primary);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: #3b82f6;
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: #8b5cf6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 12s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero .container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title-sm {
    font-size: 2.8rem;
    max-width: 700px;
}

.hero-content-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content-center .hero-desc {
    text-align: center;
}

.hero-content-center .hero-cta {
    justify-content: center;
}

.hero-simple {
    min-height: auto;
    padding: 140px 0 60px;
}

.hero-simple .container {
    grid-template-columns: 1fr;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 36px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-desc-sm {
    max-width: 580px;
    font-size: 1.05rem;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

/* Steps 3 (Simple theme) */
.steps-3 .step-card {
    max-width: 280px;
}

/* Simple theme product cards as links */
.theme-simple .product-card {
    cursor: pointer;
}

.theme-simple .product-card:hover .product-name {
    color: var(--accent);
}

.stat-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 2px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    width: 100%;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.15);
}

/* Hero Illustration */
.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
}

.il-circle {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(249, 115, 22, 0.1), rgba(30, 64, 175, 0.05));
    border: 1px solid rgba(249, 115, 22, 0.15);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 1; }
}

.il-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 14px 22px;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    animation: cardFloat 6s ease-in-out infinite;
}

.il-card:hover {
    background: rgba(255,255,255,0.15);
    transform: scale(1.05) !important;
}

.il-card i {
    font-size: 1.4rem;
    color: var(--accent);
}

.il-card-1 {
    top: 5%;
    right: 5%;
    animation-delay: 0s;
}

.il-card-2 {
    top: 35%;
    left: 0;
    animation-delay: 1.5s;
}

.il-card-3 {
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
}

.il-card-4 {
    bottom: 5%;
    left: 15%;
    animation-delay: 4.5s;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-wave .shape-fill {
    fill: var(--bg-light);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-tag {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
    padding: 100px 0;
    background: var(--bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.product-card:hover::before {
    opacity: 1;
}

.product-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: var(--accent);
    transition: var(--transition);
}

.product-card:hover .product-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features {
    margin-bottom: 24px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.product-features li i {
    color: #10b981;
    font-size: 0.75rem;
}

.product-cta {
    width: 100%;
}

/* ============================================
   HOW TO ORDER
   ============================================ */
.how-to-order {
    padding: 100px 0;
    background: var(--bg-light);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    text-align: center;
    flex: 1;
    max-width: 240px;
    padding: 32px 20px;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-8px);
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.step-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--accent);
    transition: var(--transition);
}

.step-card:hover .step-icon {
    border-color: var(--accent);
    background: rgba(249, 115, 22, 0.05);
    transform: scale(1.1);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    color: var(--text-lighter);
    font-size: 1.2rem;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits {
    padding: 100px 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.benefit-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    transform: translateY(-4px);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--accent);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1) rotateY(180deg);
}

.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonial-carousel {
    max-width: 640px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 40px 36px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-author h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    text-align: left;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
    text-align: left;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1rem;
}

.carousel-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.carousel-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 5px;
}

/* ============================================
   CTA
   ============================================ */
.cta {
    padding: 100px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(249, 115, 22, 0.1), transparent 60%),
                radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.08), transparent 50%);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 36px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary i {
    font-size: 1.2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0c1222;
    color: rgba(255,255,255,0.8);
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.3), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.footer-logo i {
    font-size: 1.6rem;
    color: var(--accent);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
}

.footer-sosmed {
    display: flex;
    gap: 12px;
}

.sosmed-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    transition: var(--transition);
}

.sosmed-link:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links-group h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.footer-links-group ul li {
    margin-bottom: 10px;
}

.footer-links-group ul li a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-group ul li a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact ul li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.footer-contact ul li i {
    color: var(--accent);
    margin-top: 4px;
    min-width: 16px;
}

.footer-contact ul li a {
    color: rgba(255,255,255,0.5);
}

.footer-contact ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-payments img {
    height: 20px;
    opacity: 0.6;
    filter: brightness(0) invert(1);
}

.footer-payments i {
    font-size: 1.4rem;
    opacity: 0.5;
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
    padding: 140px 0 60px;
    background: var(--primary);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(249,115,22,0.1), transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(59,130,246,0.08), transparent 50%);
}

.page-header .container { position: relative; z-index: 1; }

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    margin: 0 auto;
}

.page-header-sm { padding: 120px 0 40px; }
.page-header-sm h1 { font-size: 2rem; }

/* ============================================
   PAGE SECTION
   ============================================ */
.page-section {
    padding: 80px 0;
}

.page-section.bg-light {
    background: var(--bg-light);
}

.page-section.bg-primary {
    background: var(--primary);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-bar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    font-size: 0.85rem;
    margin-top: 70px;
}

.breadcrumb-bar .container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-bar a {
    color: var(--text-light);
}

.breadcrumb-bar a:hover {
    color: var(--accent);
}

.breadcrumb-bar i {
    font-size: 0.65rem;
    color: var(--text-lighter);
}

.breadcrumb-bar span {
    color: var(--text);
    font-weight: 500;
}

/* ============================================
   PRODUCT FILTER
   ============================================ */
.product-filter-section {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.product-filter-bar {
    display: flex;
    gap: 20px;
    align-items: center;
}

.filter-search {
    flex: 1;
    position: relative;
    max-width: 320px;
}

.filter-search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-lighter);
}

.filter-search input {
    width: 100%;
    padding: 10px 14px 10px 42px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.filter-search input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}

.filter-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--bg-white);
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* ============================================
   PRODUCT CARD (FULL - for produk page)
   ============================================ */
.products-grid-page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-card-full {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-full:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.pcf-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e9ecef;
}

.pcf-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-full:hover .pcf-image img {
    transform: scale(1.07);
}

.pcf-image .pcf-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.product-card-full:hover .pcf-image .pcf-overlay {
    opacity: 1;
}

.pcf-image .pcf-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(255,255,255,0.95);
    color: var(--primary);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    z-index: 2;
}

.product-card-full:hover .pcf-image .pcf-view-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.pcf-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(4px);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.pcf-home-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #f97316, #dc2626);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(249,115,22,0.3);
}

.pcf-body {
    padding: 20px;
}

.pcf-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    line-height: 1.4;
}

.pcf-body .pcf-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pcf-body .pcf-price-area {
    margin-bottom: 4px;
}

.pcf-body .pcf-price-area .pcf-price-label {
    font-size: 0.72rem;
    color: var(--text-lighter);
    font-weight: 500;
}

.pcf-body .pcf-price-area .pcf-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.pcf-body .pcf-price-area .pcf-price small {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-light);
}

.pcf-body .pcf-discount {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fef2f2;
    color: #dc2626;
    padding: 5px 11px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-top: 6px;
    line-height: 1.3;
}

.pcf-body .pcf-discount i {
    font-size: 0.65rem;
}

/* Fade-in animation for product cards */
.pcf-fade {
    opacity: 0;
    transform: translateY(24px);
    animation: pcfFadeUp 0.5s ease forwards;
}
.pcf-fade:nth-child(1) { animation-delay: 0.05s; }
.pcf-fade:nth-child(2) { animation-delay: 0.1s; }
.pcf-fade:nth-child(3) { animation-delay: 0.15s; }
.pcf-fade:nth-child(4) { animation-delay: 0.2s; }
.pcf-fade:nth-child(5) { animation-delay: 0.25s; }
.pcf-fade:nth-child(6) { animation-delay: 0.3s; }
.pcf-fade:nth-child(7) { animation-delay: 0.35s; }
.pcf-fade:nth-child(8) { animation-delay: 0.4s; }
.pcf-fade:nth-child(9) { animation-delay: 0.45s; }
.pcf-fade:nth-child(10) { animation-delay: 0.5s; }
.pcf-fade:nth-child(11) { animation-delay: 0.55s; }
.pcf-fade:nth-child(12) { animation-delay: 0.6s; }

@keyframes pcfFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.products-empty {
    text-align: center;
    padding: 60px 20px;
}

.products-empty i {
    font-size: 3rem;
    color: var(--text-lighter);
    margin-bottom: 16px;
}

.products-empty h3 {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 8px;
}

.products-empty p {
    color: var(--text-light);
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.pd-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.pd-highlight-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 12px;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-light);
}

.pd-highlight-item i {
    display: block;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 6px;
}

.pd-category-badge {
    display: inline-block;
    background: rgba(249,115,22,0.1);
    color: var(--accent);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.pd-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.pd-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ============================================
   FORM STYLES
   ============================================ */
.pd-form .form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.radio-card {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
}

.radio-card:hover {
    border-color: var(--accent);
}

.radio-card.active {
    border-color: var(--accent);
    background: rgba(249,115,22,0.06);
    color: var(--accent);
}

.radio-card input { display: none; }

/* Quantity Input */
.qty-input {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--bg-light);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}

.qty-btn:hover {
    background: var(--accent);
    color: #fff;
}

.qty-input input {
    width: 72px;
    height: 44px;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font);
    outline: none;
}

.qty-input input::-webkit-inner-spin-button,
.qty-input input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

/* Design Options */
.design-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.design-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.design-option:hover {
    border-color: var(--accent);
}

.design-option.active {
    border-color: var(--accent);
    background: rgba(249,115,22,0.04);
}

.design-option input { display: none; }

.design-option i {
    font-size: 1.6rem;
    color: var(--accent);
    width: 40px;
    text-align: center;
}

.design-option strong {
    display: block;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.design-option small {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* File Upload */
.file-upload-area {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.file-upload-area:hover,
.file-upload-area.dragover {
    border-color: var(--accent);
    background: rgba(249,115,22,0.04);
}

.file-upload-area i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.file-upload-area p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.file-upload-area p span {
    color: var(--accent);
    font-weight: 600;
}

.file-upload-area small {
    font-size: 0.75rem;
    color: var(--text-lighter);
}

/* Textarea */
.pd-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    resize: vertical;
    transition: var(--transition);
}

.pd-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}

/* Price Card */
.pd-price-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}

.pd-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.pd-price-row span:last-child {
    font-weight: 600;
    color: var(--text);
}

.pd-price-discount {
    color: #10b981;
}
.pd-price-discount span:last-child {
    font-weight: 700;
}

.pd-price-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}

.pd-price-total span {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
}

.pd-price-total span:last-child {
    color: var(--accent);
    font-size: 1.4rem;
}

.btn-block {
    width: 100%;
}

.pd-form-footer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-lighter);
    margin-top: 16px;
}

.pd-form-footer a {
    color: var(--accent);
    font-weight: 600;
}

.pd-form-footer a:hover {
    text-decoration: underline;
}

/* ============================================
   AUTH PAGES (Login / Register)
   ============================================ */
.auth-section {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    padding: 100px 0 60px;
}

.auth-card {
    width: 100%;
    max-width: 460px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
}

.auth-card-sm {
    max-width: 420px;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.auth-logo i {
    font-size: 1.4rem;
    color: var(--accent);
}

.auth-logo span {
    color: var(--accent);
}

.auth-header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.auth-header p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-form .form-group {
    margin-bottom: 0;
}

.input-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon > i:first-child {
    position: absolute;
    left: 14px;
    color: var(--text-lighter);
    font-size: 0.9rem;
    z-index: 1;
}

.input-icon input,
.input-icon select {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.input-icon input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}

.toggle-password {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-lighter);
    font-size: 1rem;
    padding: 4px;
    z-index: 1;
}

.toggle-password:hover {
    color: var(--text);
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
    cursor: pointer;
}

.link {
    color: var(--accent);
    font-weight: 500;
}

.link:hover {
    text-decoration: underline;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    font-size: 0.8rem;
    color: var(--text-lighter);
    white-space: nowrap;
}

.auth-social {
    display: flex;
    gap: 12px;
}

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-white);
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-social:hover {
    background: var(--bg-light);
}

.btn-google {
    color: #ea4335;
}

.btn-facebook {
    color: #1877f2;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--accent);
    font-weight: 600;
}

.footer-auth {
    padding: 30px 0 0;
}

/* Password Strength */
.password-strength {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.ps-bar {
    flex: 1;
    height: 4px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.ps-fill {
    height: 100%;
    width: 0%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.password-strength span {
    font-size: 0.75rem;
    color: var(--text-lighter);
    white-space: nowrap;
}

/* Auth Success (forgot password) */
.auth-icon-big {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(249,115,22,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--accent);
    margin: 0 auto 20px;
}

.auth-success {
    text-align: center;
}

.success-icon {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 16px;
}

.auth-success h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.auth-success p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* ============================================
   ORDER FLOW OVERVIEW
   ============================================ */
.order-flow-overview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.ofo-step {
    text-align: center;
    padding: 20px 28px;
    position: relative;
}

.ofo-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    margin: 0 auto 12px;
    box-shadow: 0 4px 10px rgba(249,115,22,0.25);
}

.ofo-step i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;
}

.ofo-step h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.ofo-arrow {
    font-size: 1.5rem;
    color: var(--text-lighter);
}

/* ============================================
   STEP DETAIL
   ============================================ */
.step-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}

.step-detail:last-child { margin-bottom: 0; }

.step-detail-reverse {
    direction: ltr;
    grid-template-columns: 1fr 1fr;
}

.step-detail-reverse > * {
    direction: ltr;
}

.step-detail-reverse > .sdi-placeholder {
    order: 2;
}

.step-detail-reverse > .sdi-content {
    order: 1;
}

.sdi-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255,255,255,0.85);
}

.step-detail-number {
    display: inline-block;
    background: rgba(249,115,22,0.1);
    color: var(--accent);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-detail-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.step-detail-content > p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-detail-list {
    margin-bottom: 24px;
}

.step-detail-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.step-detail-list li i {
    color: #10b981;
    font-size: 1rem;
}

.step-option-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.soc-card {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.soc-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.soc-card i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.soc-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.soc-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.pm-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
}

.pm-item i {
    color: var(--accent);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Timeline Demo */
.timeline-demo {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.timeline-demo::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--border);
}

.tl-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    position: relative;
}

.tl-dot {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--bg-white);
    position: relative;
    z-index: 1;
}

.tl-dot-done {
    border-color: var(--accent);
    background: var(--accent);
}

.tl-dot.tl-done {
    border-color: #10b981;
    background: #10b981;
}

.tl-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text);
}

.tl-item small {
    font-size: 0.75rem;
    color: var(--text-lighter);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(249,115,22,0.3);
}

.faq-item.active {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--bg-white);
    border: none;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    gap: 12px;
}

.faq-question i {
    font-size: 0.8rem;
    color: var(--text-lighter);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 18px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   SIMPLE CTA
   ============================================ */
.simple-cta {
    text-align: center;
}

.simple-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.simple-cta p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.simple-cta-light h2 {
    color: #fff;
}

.simple-cta-light p {
    color: rgba(255,255,255,0.65);
}

/* ============================================
   Responsive — New Components
   ============================================ */
@media (max-width: 1100px) {
    .hero-cards { display: none; }
}
@media (max-width: 1024px) {
    .products-grid-page { grid-template-columns: repeat(3, 1fr); }
    .product-detail-layout { grid-template-columns: 1fr; }
    .step-detail { grid-template-columns: 1fr; gap: 32px; }
    .step-detail-reverse { direction: ltr; }
}

@media (max-width: 768px) {
    .hero-title-sm { font-size: 2rem; }
    .hero-simple { padding: 120px 0 40px; }
    .hero-desc-sm { font-size: 0.95rem; }
    .page-header h1 { font-size: 1.8rem; }
    .product-filter-bar { flex-direction: column; align-items: stretch; }
    .filter-search { max-width: 100%; }
    .filter-categories { overflow-x: auto; padding-bottom: 4px; }
    .products-grid-page { grid-template-columns: repeat(2, 1fr); }
    .pd-title { font-size: 1.5rem; }
    .order-flow-overview { flex-wrap: wrap; gap: 8px; }
    .ofo-arrow { display: none; }
    .step-option-cards { grid-template-columns: 1fr; }
    .payment-methods { grid-template-columns: 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
    .auth-card { padding: 32px 24px; }
    .radio-group { flex-direction: column; }
}

@media (max-width: 480px) {
    .hero-title-sm { font-size: 1.6rem; }
    .hero-simple { padding: 100px 0 30px; }
    .pd-highlights { grid-template-columns: 1fr; }
    .pd-price-total span:last-child { font-size: 1.2rem; }
    .auth-social { flex-direction: column; }
}

/* ============================================
   ADMIN DASHBOARD
   ============================================ */
.admin-body {
    background: #f1f5f9;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

/* ---- Sidebar ---- */
.admin-sidebar {
    width: 260px;
    min-width: 260px;
    background: #0f172a;
    color: #fff;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.admin-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
}

.admin-logo i { color: var(--accent); font-size: 1.4rem; }
.admin-logo span { color: var(--accent); }

.admin-sidebar-toggle {
    background: rgba(255,255,255,0.06);
    border: none;
    color: rgba(255,255,255,0.6);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.admin-sidebar-toggle:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.admin-sidebar-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.asu-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
}

.asu-avatar.sm {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 0.75rem;
    border-radius: 50%;
}

.asu-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.asu-info small {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
}

/* ---- Navigation ---- */
.admin-nav {
    padding: 16px 12px;
    flex: 1;
}

.admin-nav-label {
    display: block;
    padding: 8px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.3);
    margin-top: 12px;
}

.admin-nav-label:first-child { margin-top: 0; }

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 2px;
    transition: var(--transition);
    position: relative;
}

.admin-nav-link i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.admin-nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.admin-nav-link.active {
    color: #fff;
    background: rgba(249,115,22,0.15);
}

.admin-nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 24px;
    border-radius: 0 3px 3px 0;
    background: var(--accent);
}

.admin-badge {
    margin-left: auto;
    background: #ef4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 50px;
    min-width: 22px;
    text-align: center;
}

.admin-nav-logout {
    margin-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 16px;
}

.admin-nav-logout:hover {
    color: #ef4444 !important;
}

/* ---- Overlay ---- */
.admin-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
}

/* ---- Main Content ---- */
.admin-main {
    flex: 1;
    margin-left: 260px;
    padding: 24px 32px 40px;
    min-height: 100vh;
}

/* ---- Top Bar ---- */
.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.admin-page-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.admin-date {
    font-size: 0.85rem;
    color: var(--text-lighter);
}

.admin-topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    position: relative;
    transition: var(--transition);
}

.admin-icon-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.admin-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    position: absolute;
    top: 10px;
    right: 10px;
}

.admin-topbar-user {
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* ---- Stat Cards ---- */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.admin-stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    transition: var(--transition);
}

.admin-stat-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.admin-stat-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.admin-stat-info {
    flex: 1;
}

.admin-stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.admin-stat-label {
    font-size: 0.8rem;
    color: var(--text-lighter);
    margin-top: 2px;
    display: block;
}

.admin-stat-change {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 2px;
}

.admin-stat-change.up { color: #10b981; }
.admin-stat-change.down { color: #ef4444; }

/* ---- Cards ---- */
.admin-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.admin-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 12px;
}

.admin-card-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.admin-card-subtitle {
    font-size: 0.8rem;
    color: var(--text-lighter);
}

.admin-card-body {
    padding: 24px;
}

.admin-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ---- Select ---- */
/* ---- Admin Form Elements ---- */
.admin-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.admin-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--bg-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.admin-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}

textarea.admin-input {
    resize: vertical;
    min-height: 80px;
}

.admin-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--text);
}

.admin-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
    cursor: pointer;
}

.admin-select-sm {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.85rem;
    color: var(--text);
    background: var(--bg-white);
    cursor: pointer;
}

.admin-select-sm:focus {
    outline: none;
    border-color: var(--accent);
}

/* ---- Search Small ---- */
.admin-search-sm {
    position: relative;
}

.admin-search-sm i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-lighter);
    font-size: 0.85rem;
}

.admin-search-sm input {
    padding: 8px 12px 8px 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.85rem;
    width: 200px;
    transition: var(--transition);
}

.admin-search-sm input:focus {
    outline: none;
    border-color: var(--accent);
}

/* ---- Chart Bars ---- */
.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    height: 200px;
}

.chart-bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.chart-bar-wrapper {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.chart-bar {
    width: 100%;
    max-width: 48px;
    background: var(--accent-gradient);
    border-radius: 6px 6px 0 0;
    transition: height 0.6s ease;
    min-height: 8px;
    position: relative;
    cursor: pointer;
}

.chart-bar:hover {
    opacity: 0.85;
}

.chart-bar::after {
    content: attr(data-value);
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
}

.chart-bar:hover::after {
    opacity: 1;
}

.chart-bar-label {
    font-size: 0.75rem;
    color: var(--text-lighter);
}

/* ---- Donut Chart ---- */
.status-donut {
    display: flex;
    align-items: center;
    gap: 32px;
}

.donut-ring {
    position: relative;
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}

.donut-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.donut-center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.donut-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.donut-legend-item span {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

/* ---- Grid Layouts ---- */
.admin-grid-2 {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.admin-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ---- Table ---- */
.admin-table-card .admin-card-body {
    padding: 0;
}

.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    text-align: left;
    padding: 14px 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.admin-table td {
    padding: 14px 20px;
    font-size: 0.88rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background: rgba(249,115,22,0.02);
}

.order-code {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--primary);
    background: var(--bg-light);
    padding: 4px 8px;
    border-radius: 4px;
}

.table-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tu-avatar {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

.table-user strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.table-user small {
    font-size: 0.75rem;
    color: var(--text-lighter);
}

.table-price {
    font-weight: 700;
    color: var(--primary);
}

.table-date {
    font-size: 0.82rem;
    color: var(--text-lighter);
}

.table-action {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.82rem;
}

.table-action:hover {
    text-decoration: underline;
}

/* ---- Status Badges ---- */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-pending {
    background: rgba(249,115,22,0.1);
    color: #f97316;
}
.status-pending::before { background: #f97316; }

.status-paid {
    background: rgba(16,185,129,0.1);
    color: #10b981;
}
.status-paid::before { background: #10b981; }

.status-processing {
    background: rgba(59,130,246,0.1);
    color: #3b82f6;
}
.status-processing::before { background: #3b82f6; }

.status-done {
    background: rgba(99,102,241,0.1);
    color: #6366f1;
}
.status-done::before { background: #6366f1; }

.status-cancelled {
    background: rgba(239,68,68,0.1);
    color: #ef4444;
}
.status-cancelled::before { background: #ef4444; }

/* ---- Mini Stats ---- */
.admin-mini-stat {
    margin-bottom: 12px;
}

.admin-mini-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.admin-mini-list span {
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
    color: var(--text-light);
}

.admin-progress {
    height: 6px;
    background: var(--border);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 6px;
}

.admin-progress-bar {
    height: 100%;
    border-radius: 6px;
    transition: width 0.6s ease;
}

/* ---- Rating ---- */
.admin-rating {
    text-align: center;
}

.rating-big {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.rating-stars i {
    color: #f59e0b;
    font-size: 1.1rem;
    margin: 0 1px;
}

.rating-count {
    display: block;
    font-size: 0.8rem;
    color: var(--text-lighter);
    margin-top: 4px;
}

/* ---- Responsive Admin ---- */
@media (max-width: 1200px) {
    .admin-stats { grid-template-columns: repeat(2, 1fr); }
    .admin-grid-2 { grid-template-columns: 1fr; }
    .admin-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }
    .admin-sidebar.open {
        transform: translateX(0);
    }
    .admin-sidebar-toggle {
        display: flex;
    }
    .admin-overlay.active {
        display: block;
    }
    .admin-main {
        margin-left: 0;
        padding: 20px 16px 32px;
    }
    .admin-stats { grid-template-columns: repeat(2, 1fr); }
    .admin-grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .admin-stats { grid-template-columns: 1fr; }
    .admin-topbar-left .admin-date { display: none; }
    .admin-card-actions { flex-direction: column; align-items: stretch; }
    .admin-search-sm input { width: 100%; }
    .admin-table th:nth-child(6),
    .admin-table td:nth-child(6) { display: none; }
}

/* ============================================
   CUSTOMER DASHBOARD
   ============================================ */
.customer-body {
    background: #f1f5f9;
}

.customer-layout {
    display: flex;
    min-height: 100vh;
    padding-top: 70px;
    position: relative;
}

/* ---- Customer Sidebar ---- */
.customer-sidebar {
    width: 260px;
    min-width: 260px;
    background: var(--bg-white);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    bottom: 0;
    z-index: 500;
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.cs-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 24px 20px;
    border-bottom: 1px solid var(--border);
}

.cs-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.cs-info strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
}

.cs-info small {
    font-size: 0.78rem;
    color: var(--text-lighter);
}

.cs-nav {
    padding: 16px 12px;
    flex: 1;
}

.cs-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2px;
    transition: var(--transition);
    text-decoration: none;
}

.cs-link:hover {
    background: var(--bg-light);
    color: var(--text);
}

.cs-link.active {
    background: rgba(249,115,22,0.08);
    color: var(--accent);
    font-weight: 600;
}

.cs-link i {
    width: 20px;
    text-align: center;
    font-size: 1.05rem;
}

.cs-badge {
    margin-left: auto;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 50px;
    min-width: 22px;
    text-align: center;
}

.cs-footer {
    padding: 12px;
    border-top: 1px solid var(--border);
}

.cs-logout {
    color: #ef4444 !important;
}
.cs-logout:hover {
    background: rgba(239,68,68,0.06) !important;
}

.cs-close {
    display: none;
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-light);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-light);
    align-items: center;
    justify-content: center;
}

.cs-toggle {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 600;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(249,115,22,0.35);
    transition: var(--transition);
    align-items: center;
    justify-content: center;
}

.cs-toggle:hover {
    transform: scale(1.1);
}

.cs-toggle.show {
    display: flex;
}

.cs-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 499;
}

/* ---- Main Content ---- */
.customer-main {
    flex: 1;
    margin-left: 260px;
    padding: 24px 32px 80px;
    min-height: 100vh;
}

/* ---- Tabs ---- */
.cs-tab {
    display: none;
}

.cs-tab.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- Top Bar ---- */
.cs-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.cs-page-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.cs-welcome {
    font-size: 0.9rem;
    color: var(--text-light);
}

.cs-welcome strong {
    color: var(--text);
}

.cs-date {
    font-size: 0.85rem;
    color: var(--text-lighter);
}

.cs-topbar-right {
    text-align: right;
}

/* ---- Stat Cards ---- */
.cs-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.cs-stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.cs-stat-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.cs-stat-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.cs-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.cs-stat-label {
    font-size: 0.8rem;
    color: var(--text-lighter);
    margin-top: 2px;
    display: block;
}

/* ---- Grid Layouts ---- */
.cs-grid-2 {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
}

/* ---- Cards ---- */
.cs-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cs-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 8px;
}

.cs-card-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cs-card-body {
    padding: 24px;
}

.cs-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    border-top: 1px solid var(--border);
}

.cs-link-more {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--accent);
    cursor: pointer;
    transition: var(--transition);
    background: none;
    border: none;
    font-family: var(--font);
}

.cs-link-more:hover {
    text-decoration: underline;
}

/* ---- Order Items (Dashboard) ---- */
.cs-order-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.cs-order-item:last-child { border-bottom: none; }

.cs-oi-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.cs-oi-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 6px;
}

.cs-oi-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ---- Action Cards ---- */
.cs-action-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.cs-action-card:last-child { margin-bottom: 0; }

.cs-action-card:hover {
    border-color: var(--accent);
    background: rgba(249,115,22,0.02);
    transform: translateX(4px);
}

.cs-action-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.cs-action-card strong {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.cs-action-card small {
    font-size: 0.78rem;
    color: var(--text-lighter);
}

/* ---- Tables ---- */
.cs-table-wrapper {
    overflow-x: auto;
}

.cs-table {
    width: 100%;
    border-collapse: collapse;
}

.cs-table th {
    text-align: left;
    padding: 14px 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.cs-table td {
    padding: 14px 20px;
    font-size: 0.88rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.cs-table tr:last-child td {
    border-bottom: none;
}

.cs-table tr:hover td {
    background: rgba(249,115,22,0.02);
}

/* ---- Filter Bar ---- */
.cs-filter-bar {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.cs-search {
    flex: 1;
    position: relative;
    min-width: 200px;
    max-width: 320px;
}

.cs-search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-lighter);
}

.cs-search input {
    width: 100%;
    padding: 10px 14px 10px 42px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.cs-search input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}

.cs-filter-group {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.cs-filter-btn {
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--bg-white);
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.cs-filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.cs-filter-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* ---- Pagination ---- */
.cs-pagination {
    display: flex;
    gap: 4px;
}

/* ---- Profile Form ---- */
.cs-form .form-group {
    margin-bottom: 18px;
}

.cs-form .form-group:last-child {
    margin-bottom: 0;
}

/* Make select in cs-form consistent with .input-icon input */
.cs-form select,
.cs-card-body select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--bg-white);
    cursor: pointer;
    transition: var(--transition);
    appearance: auto;
}

.cs-form select:focus,
.cs-card-body select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}

/* Make textarea in cs-card-body consistent */
.cs-card-body textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    resize: vertical;
    transition: var(--transition);
    min-height: 80px;
}

.cs-card-body textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}

/* ---- Info Grid (Profile) ---- */
.cs-info-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cs-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
}

.cs-info-item span:first-child {
    color: var(--text-lighter);
}

/* ---- Upload Area ---- */
.cs-upload-area {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.cs-upload-area:hover,
.cs-upload-area.dragover {
    border-color: var(--accent);
    background: rgba(249,115,22,0.04);
}

.cs-upload-area i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;
}

.cs-upload-area p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.cs-upload-area p span {
    color: var(--accent);
    font-weight: 600;
}

.cs-upload-area small {
    font-size: 0.75rem;
    color: var(--text-lighter);
}

/* ---- Upload Preview ---- */
.cs-upload-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cs-upload-preview-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    animation: fadeIn 0.3s ease;
}

.cs-upload-preview-item i {
    font-size: 1.8rem;
}

.cs-upload-preview-item .file-info {
    flex: 1;
}

.cs-upload-preview-item .file-info strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text);
}

.cs-upload-preview-item .file-info small {
    font-size: 0.75rem;
    color: var(--text-lighter);
}

.cs-upload-preview-item .btn {
    flex-shrink: 0;
}

/* ---- File List ---- */
.cs-file-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cs-file-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.cs-file-item:hover {
    border-color: rgba(249,115,22,0.3);
}

.cs-file-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.cs-file-info {
    flex: 1;
    min-width: 0;
}

.cs-file-info strong {
    display: block;
    font-size: 0.85rem;
    color: var(--primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cs-file-info small {
    font-size: 0.75rem;
    color: var(--text-lighter);
}

.cs-file-status {
    margin-right: 8px;
}

/* ---- Guidelines ---- */
.cs-guidelines {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cs-guideline {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}

.cs-guideline i {
    margin-top: 2px;
    font-size: 1rem;
}

.cs-guideline strong {
    color: var(--text);
}

/* ---- Detail Layout ---- */
.cs-detail-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 28px;
    align-items: start;
}

.cs-detail-main { min-width: 0; }
.cs-detail-side { position: sticky; top: 100px; }

/* ---- Timeline (Detail) ---- */
.cd-timeline {
    position: relative;
    padding-left: 28px;
}

.cd-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--border);
}

.cd-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
}

.cd-timeline-item:last-child { margin-bottom: 0; }

.cd-dot {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--border);
    position: relative;
    z-index: 1;
    margin-top: 3px;
}

.cd-active .cd-dot {
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(249,115,22,0.15);
}

.cd-current .cd-dot {
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(249,115,22,0.15); }
    50% { box-shadow: 0 0 0 8px rgba(249,115,22,0.1); }
}

.cd-content strong {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.cd-content .table-date {
    font-size: 0.78rem;
}

.cd-content p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 4px;
    line-height: 1.5;
}

.cd-timeline-item:not(.cd-active) .cd-content p {
    display: none;
}

/* ---- Specs Grid (Detail) ---- */
.cd-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cd-spec-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cd-spec-item span {
    font-size: 0.78rem;
    color: var(--text-lighter);
}

.cd-spec-item strong {
    font-size: 0.9rem;
    color: var(--text);
}

/* ---- Price Rows (Detail) ---- */
.cd-price-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cd-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--text-light);
}

.cd-price-row span:last-child {
    font-weight: 600;
    color: var(--text);
}

.cd-price-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

.cd-price-total span {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
}

.cd-price-total span:last-child {
    font-size: 1.2rem;
}

/* ---- File Card (Detail) ---- */
.cd-file-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.cd-file-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.cd-file-info {
    flex: 1;
}

.cd-file-info strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text);
}

.cd-file-info small {
    font-size: 0.75rem;
    color: var(--text-lighter);
}

/* ---- Shipping Info (Detail) ---- */
.cd-shipping-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cd-shipping-info > div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}

.cd-shipping-info i {
    color: var(--accent);
    margin-top: 3px;
    min-width: 16px;
}

/* ============================================
   ORDER BUAT PAGE (order-buat.html)
   ============================================ */
.ob-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    align-items: start;
}

.ob-main { min-width: 0; }
.ob-sidebar { position: sticky; top: 100px; }

/* ---- Progress Steps ---- */
.ob-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    padding: 20px 16px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.ob-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-lighter);
    white-space: nowrap;
}

.ob-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-lighter);
}

.ob-step-done .ob-step-num {
    background: #10b981;
    color: #fff;
    font-size: 0.75rem;
}

.ob-step-active .ob-step-num {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(249,115,22,0.15);
}

.ob-step-active span {
    color: var(--accent);
    font-weight: 600;
}

.ob-step-connector {
    width: 60px;
    height: 2px;
    background: var(--border);
    margin: 0 8px;
    margin-bottom: 24px;
}

.ob-step-done + .ob-step-connector {
    background: #10b981;
}

/* ---- Main Cards ---- */
.ob-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
}

.ob-card-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
}

.ob-card-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ob-card-body {
    padding: 24px;
}

/* ---- Product Review ---- */
.ob-product-review {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 16px;
}

.ob-pr-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: rgba(255,255,255,0.9);
}

.ob-pr-info {
    flex: 1;
    min-width: 0;
}

.ob-pr-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.ob-pr-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
}

.ob-pr-spec {
    font-size: 0.82rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.ob-pr-spec i {
    color: #10b981;
    font-size: 0.7rem;
}

.ob-pr-price {
    text-align: right;
    white-space: nowrap;
}

.ob-change-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 500;
}

.ob-change-link:hover {
    text-decoration: underline;
}

/* ---- Design Options ---- */
.ob-design-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ob-design-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.ob-design-option:hover {
    border-color: var(--accent);
}

.ob-design-option.active {
    border-color: var(--accent);
    background: rgba(249,115,22,0.04);
    box-shadow: 0 0 0 2px rgba(249,115,22,0.1);
}

.ob-design-option input { display: none; }

.ob-do-radio {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.ob-design-option.active .ob-do-radio {
    border-color: var(--accent);
}

.ob-design-option.active .ob-do-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

.ob-design-option i {
    font-size: 1.4rem;
    color: var(--accent);
    width: 32px;
    text-align: center;
}

.ob-do-info {
    flex: 1;
}

.ob-do-info strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text);
    margin-bottom: 2px;
}

.ob-do-info small {
    font-size: 0.78rem;
    color: var(--text-lighter);
}

/* ---- File Upload (Buat Order) ---- */
.ob-file-upload {
    margin-left: 66px;
    margin-top: 8px;
}

.ob-upload-area {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.ob-upload-area:hover,
.ob-upload-area.dragover {
    border-color: var(--accent);
    background: rgba(249,115,22,0.04);
}

.ob-upload-area i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;
}

.ob-upload-area p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.ob-upload-area p span {
    color: var(--accent);
    font-weight: 600;
}

.ob-upload-area small {
    font-size: 0.75rem;
    color: var(--text-lighter);
}

.ob-upload-preview {
    margin-top: 12px;
}

.ob-upload-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    animation: fadeIn 0.3s ease;
}

.ob-upload-item i {
    font-size: 1.6rem;
}

.ob-upload-item-info {
    flex: 1;
}

.ob-upload-item-info strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text);
}

.ob-upload-item-info small {
    font-size: 0.75rem;
    color: var(--text-lighter);
}

.ob-upload-remove {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--text-lighter);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.85rem;
}

.ob-upload-remove:hover {
    border-color: #ef4444;
    color: #ef4444;
}

/* ---- Request Notes ---- */
.ob-request-notes {
    margin-left: 66px;
    margin-top: 8px;
}

.ob-request-notes label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.ob-request-notes textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    resize: vertical;
    transition: var(--transition);
    min-height: 100px;
}

.ob-card-body textarea:not(.input-icon textarea) {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    resize: vertical;
    transition: var(--transition);
}

.ob-card-body textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}

.ob-request-notes textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}

.ob-design-examples {
    margin-top: 12px;
    padding: 14px 16px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.ob-design-examples p {
    font-size: 0.82rem;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 6px;
}

.ob-design-examples ul {
    padding-left: 0;
}

.ob-design-examples li {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 4px;
    padding-left: 16px;
    position: relative;
    list-style: none;
}

.ob-design-examples li::before {
    content: '›';
    position: absolute;
    left: 4px;
    color: var(--accent);
    font-weight: 700;
}

/* ---- Address ---- */
.ob-saved-addresses {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.ob-address-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.ob-address-option:hover {
    border-color: var(--accent);
}

.ob-address-option.active {
    border-color: var(--accent);
    background: rgba(249,115,22,0.04);
    box-shadow: 0 0 0 2px rgba(249,115,22,0.1);
}

.ob-address-option input { display: none; }

.ob-ao-radio {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.ob-address-option.active .ob-ao-radio {
    border-color: var(--accent);
}

.ob-address-option.active .ob-ao-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

.ob-ao-info {
    flex: 1;
    min-width: 0;
}

.ob-ao-info strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 2px;
}

.ob-ao-info small {
    display: block;
    font-size: 0.78rem;
    color: var(--text-lighter);
    line-height: 1.5;
}

.ob-address-form {
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ob-address-form .input-icon textarea {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    resize: vertical;
    transition: var(--transition);
    min-height: 80px;
}

.ob-address-form .input-icon textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}

/* ---- Actions ---- */
.ob-actions {
    margin-top: 24px;
}

.ob-secure {
    text-align: center;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-lighter);
}

.ob-secure i {
    color: #10b981;
    margin-right: 4px;
}

/* ---- Summary Sidebar ---- */
.ob-summary-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.ob-summary-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.ob-summary-product {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.ob-summary-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.ob-summary-product strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 2px;
}

.ob-summary-product small {
    font-size: 0.75rem;
    color: var(--text-lighter);
    line-height: 1.4;
}

.ob-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ob-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-light);
}

.ob-summary-row span:last-child {
    font-weight: 600;
    color: var(--text);
}

.ob-summary-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

.ob-summary-total span {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--accent);
}

.ob-summary-total span:last-child {
    font-size: 1.15rem;
}

/* ---- Info Card ---- */
.ob-info-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
}

.ob-info-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ob-info-card h4 i {
    color: var(--text-lighter);
}

.ob-info-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
}

.ob-payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0;
}

.ob-pm-icon {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-light);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.ob-pm-icon i {
    color: var(--accent);
}

.ob-pm-secure {
    font-size: 0.75rem !important;
    color: var(--text-lighter) !important;
}

.ob-pm-secure i {
    color: #10b981;
    margin-right: 4px;
}

/* ---- Help Links ---- */
.ob-help-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ob-help-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.ob-help-link:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}

.ob-help-link > i:first-child {
    font-size: 1.4rem;
    color: var(--accent);
    width: 28px;
    text-align: center;
}

.ob-help-link > i:last-child {
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--text-lighter);
}

.ob-help-link strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text);
}

.ob-help-link small {
    font-size: 0.75rem;
    color: var(--text-lighter);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .ob-layout { grid-template-columns: 1fr; }
    .ob-sidebar { position: static; }
    .ob-steps { overflow-x: auto; justify-content: flex-start; gap: 4px; padding: 16px 12px; }
    .ob-step-connector { width: 32px; }
}

@media (max-width: 768px) {
    .ob-product-review { flex-wrap: wrap; }
    .ob-pr-price { width: 100%; text-align: left; }
    .ob-file-upload { margin-left: 0; }
    .ob-request-notes { margin-left: 0; }
}

/* ============================================
   PEMBAYARAN PAGE
   ============================================ */
.pm-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 28px;
    align-items: start;
}

.pm-main { min-width: 0; }
.pm-sidebar { position: sticky; top: 100px; }

.pm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
}

.pm-order-info h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.pm-order-code {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pm-expiry {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(249,115,22,0.06);
    border: 1px solid rgba(249,115,22,0.2);
    border-radius: var(--radius);
}

.pm-expiry i {
    font-size: 1.5rem;
    color: var(--accent);
}

.pm-expiry small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-lighter);
}

.pm-expiry strong {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

/* ---- Methods ---- */
.pm-methods h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.pm-method-group {
    margin-bottom: 20px;
}

.pm-method-header {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    padding-left: 4px;
}

.pm-method {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 6px;
    background: var(--bg-white);
}

.pm-method:last-child { margin-bottom: 0; }

.pm-method:hover {
    border-color: var(--accent);
    background: rgba(249,115,22,0.02);
}

.pm-method.active {
    border-color: var(--accent);
    background: rgba(249,115,22,0.04);
    box-shadow: 0 0 0 2px rgba(249,115,22,0.1);
}

.pm-method input { display: none; }

.pm-method-radio {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.pm-method.active .pm-method-radio {
    border-color: var(--accent);
}

.pm-method.active .pm-method-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

.pm-method-icon {
    width: 28px;
    text-align: center;
    font-size: 1.3rem;
    color: var(--accent);
}

.pm-method-name {
    flex: 1;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.pm-method-desc {
    font-size: 0.75rem;
    color: var(--text-lighter);
    display: block;
    width: 100%;
    margin-left: 62px;
    margin-top: -4px;
    margin-bottom: 4px;
}

/* ---- Payment Actions ---- */
.pm-actions {
    margin-top: 24px;
}

.pm-secure {
    text-align: center;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-lighter);
}

.pm-secure i {
    color: #10b981;
    margin-right: 4px;
}

/* ---- Summary Sidebar ---- */
.pm-summary-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.pm-summary-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.pm-summary-product {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.pm-summary-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.pm-summary-product strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
}

.pm-summary-product small {
    font-size: 0.78rem;
    color: var(--text-lighter);
}

.pm-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pm-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-light);
}

.pm-summary-row span:last-child {
    font-weight: 600;
    color: var(--text);
}

.pm-summary-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

.pm-summary-total span {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--accent);
}

.pm-summary-total span:last-child {
    font-size: 1.15rem;
}

/* ---- Info Card ---- */
.pm-info-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
}

.pm-info-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pm-info-card h4 i {
    color: var(--text-lighter);
}

.pm-info-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ---- Modal ---- */
.pm-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fadeIn 0.2s ease;
}

.pm-modal {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.pm-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.pm-modal-header i {
    font-size: 1.4rem;
    color: var(--accent);
}

.pm-modal-header h3 {
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.pm-modal-close {
    background: var(--bg-light);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.pm-modal-close:hover {
    background: var(--border);
    color: var(--text);
}

.pm-modal-body {
    padding: 24px;
}

.pm-modal-status {
    text-align: center;
    padding: 20px 0;
}

.pm-modal-loader {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.pm-modal-status p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ---- Nav User Dropdown ---- */
.nav-user-dropdown {
    position: relative;
}

.nav-user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 6px 14px 6px 6px;
    cursor: pointer;
    font-family: var(--font);
    transition: var(--transition);
    color: #fff;
}

.nav-user-btn:hover {
    background: rgba(255,255,255,0.12);
}

.nub-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: #fff;
}

.nub-name {
    font-size: 0.85rem;
    font-weight: 500;
    display: none;
}

.nub-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    color: inherit;
    padding: 4px 0 4px 8px;
    display: flex;
    align-items: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.nub-toggle:hover {
    color: #fff;
}

.nav-user-btn.open .nub-toggle {
    transform: rotate(180deg);
}

.nub-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
}

.nub-link:hover {
    opacity: 1;
    cursor: pointer;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    z-index: 100;
    overflow: hidden;
}

.nav-dropdown-menu.open {
    display: block;
    animation: fadeIn 0.15s ease;
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--text);
    transition: var(--transition);
}

.nav-dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--accent);
}

.nav-dropdown-menu a i {
    width: 18px;
    text-align: center;
    color: var(--text-lighter);
}

.nav-dropdown-menu a:hover i {
    color: var(--accent);
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

/* ---- Footer Customer ---- */
.footer-customer {
    padding: 30px 0 0;
}

/* ---- Responsive Customer ---- */
@media (max-width: 1100px) {
    .cs-stats { grid-template-columns: repeat(2, 1fr); }
    .cs-grid-2 { grid-template-columns: 1fr; }
    .cs-detail-layout { grid-template-columns: 1fr; }
    .cs-detail-side { position: static; }
    .pm-layout { grid-template-columns: 1fr; }
    .pm-sidebar { position: static; }
}

@media (max-width: 900px) {
    .customer-sidebar {
        transform: translateX(-100%);
    }
    .customer-sidebar.open {
        transform: translateX(0);
    }
    .cs-close { display: flex; }
    .cs-toggle { display: flex; }
    .cs-overlay.active { display: block; }
    .customer-main {
        margin-left: 0;
        padding: 20px 16px 80px;
    }
    .cs-stats { grid-template-columns: repeat(2, 1fr); }
    .cs-topbar { flex-direction: column; align-items: flex-start; gap: 8px; }
    .cs-date { display: none; }
    .cs-filter-bar { flex-direction: column; align-items: stretch; }
    .cs-search { max-width: 100%; }
    .cd-specs { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .cs-stats { grid-template-columns: 1fr; }
    .cs-table th:nth-child(4),
    .cs-table td:nth-child(4) { display: none; }
}

@media (min-width: 900px) {
    .nub-name { display: inline; }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-4px);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2rem; }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { flex-wrap: wrap; gap: 24px; }
    .step-card { max-width: 45%; }
    .step-connector { display: none; }
}

@media (max-width: 768px) {
    .navbar .btn-sm { display: none; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 8px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .menu-toggle {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-desc { margin: 0 auto 36px; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; flex-wrap: wrap; }
    .hero-title { font-size: 2.2rem; }
    .hero-visual { display: none; }
    .hero-wave svg { height: 40px; }

    .section-title { font-size: 1.8rem; }
    .products-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .step-card { max-width: 100%; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .cta-title { font-size: 1.8rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; max-width: 360px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-stats { gap: 16px; }
    .stat-number { font-size: 1.5rem; }
    .container { padding: 0 16px; }
    .testimonial-card { padding: 28px 20px; }
}


/* ============================================
   MODERN LAYOUT (Navy Theme)
   ============================================ */

/* Hero Split */
.hero-split .container { display: block; }

.hero-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-split-left { position: relative; z-index: 2; }

.hero-split-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-split .hero-visual { position: relative; width: 100%; max-width: 400px; }

.hero-split .hero-illustration {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

.hero-split .hero-stats { margin-bottom: 0; }

/* Products Horizontal Carousel */
.products-carousel-section { padding: 100px 0 60px; }

.products-carousel-wrapper { position: relative; padding: 0 24px; }

.products-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 4px 24px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--border);
}

.products-carousel::-webkit-scrollbar { height: 6px; }
.products-carousel::-webkit-scrollbar-track { background: var(--border); border-radius: 3px; }
.products-carousel::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

.product-card-modern {
    min-width: 280px;
    max-width: 300px;
    scroll-snap-align: start;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.product-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.pcm-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border-radius: var(--radius);
    margin-bottom: 18px;
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.product-card-modern:hover .pcm-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

.pcm-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.pcm-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.pcm-features { margin-bottom: 18px; }

.pcm-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 6px;
}

.pcm-features li i { color: #10b981; font-size: 0.7rem; }

.pcm-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    transition: var(--transition);
}

.product-card-modern:hover .pcm-cta { gap: 12px; }

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.carousel-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1rem;
}

.carousel-nav-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* Steps Horizontal Modern */
.steps-horizontal { gap: 16px; align-items: stretch; }

.step-card-modern {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    transition: var(--transition);
}

.step-card-modern:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.step-card-modern .step-number { margin-bottom: 16px; }
.step-card-modern .step-icon { margin-bottom: 16px; }

.steps-horizontal .step-connector {
    padding-top: 100px;
    color: var(--accent);
    font-size: 1.5rem;
}

/* FAQ Accordion (Modern) */
.faq-section { padding: 80px 0; background: var(--bg-light); }

.faq-accordion { max-width: 720px; margin: 0 auto; }

.faq-item.faq-active { border-color: var(--accent); }

.faq-item.faq-active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-item.faq-active .faq-answer { max-height: 300px; }

/* Responsive Modern */
@media (max-width: 768px) {
    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-split-left .hero-cta { justify-content: center; }
    .hero-split-left .hero-stats { justify-content: center; }
    .hero-split-right { order: -1; }
    .hero-split .hero-visual { max-width: 300px; margin: 0 auto; }
    .steps-horizontal { flex-direction: column; align-items: center; }
    .steps-horizontal .step-connector { padding-top: 0; transform: rotate(90deg); }
    .product-card-modern { min-width: 260px; }
}

/* ============================================
   CATALOG STYLE (Forest Theme — No Hero)
   ============================================ */

.catalog-header {
    padding: 120px 0 20px;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.catalog-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(249,115,22,0.08), transparent 60%);
}

.catalog-header-content {
    position: relative;
    text-align: center;
}

.catalog-badge {
    display: inline-block;
    background: rgba(249,115,22,0.15);
    border: 1px solid rgba(249,115,22,0.3);
    color: var(--accent);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.catalog-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-top: 12px;
    letter-spacing: -0.5px;
}

.catalog-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    margin-top: 8px;
}

.catalog-products {
    padding: 40px 0 60px;
}

.products-grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

.catalog-card {
    display: flex;
    gap: 24px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    align-items: flex-start;
}

.catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.catalog-card-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249,115,22,0.1);
    border-radius: var(--radius);
    font-size: 1.6rem;
    color: var(--accent);
    transition: var(--transition);
}

.catalog-card:hover .catalog-card-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.05) rotate(-5deg);
}

.catalog-card-body {
    flex: 1;
    min-width: 0;
}

.catalog-card-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.catalog-card-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.catalog-card-features {
    margin-bottom: 16px;
}

.catalog-card-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.catalog-card-features li i {
    color: #10b981;
    font-size: 0.75rem;
}

.catalog-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    transition: var(--transition);
}

.catalog-card:hover .catalog-card-btn {
    gap: 10px;
}

/* Catalog How To */
.catalog-howto {
    padding: 40px 0 60px;
    background: var(--bg-light);
}

.catalog-howto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.catalog-howto-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.catalog-howto-num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.catalog-howto-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.catalog-howto-item p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Catalog CTA */
.catalog-cta {
    padding: 60px 0;
    background: var(--primary);
}

.catalog-cta-content {
    text-align: center;
}

.catalog-cta-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.catalog-cta-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 24px;
}

/* Responsive Catalog */
@media (max-width: 768px) {
    .products-grid-2col { grid-template-columns: 1fr; }
    .catalog-card { flex-direction: column; gap: 16px; }
    .catalog-card-icon { width: 48px; height: 48px; min-width: 48px; font-size: 1.2rem; }
    .catalog-howto-grid { grid-template-columns: 1fr; }
}

/* ============================================
   HERO IMAGE STYLE (Navy Theme)
   ============================================ */

.hero-image-full {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0f172a;
    overflow: hidden;
    padding: 120px 0;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-image-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(37,99,235,0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(99,102,241,0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(249,115,22,0.15) 0%, transparent 50%);
    animation: heroImagePulse 8s ease-in-out infinite alternate;
}

@keyframes heroImagePulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.5) 50%, rgba(15,23,42,0.85) 100%);
}

.hero-image-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.5;
}

.hero-image-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}

.hero-image-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-image-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-image-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto 36px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-image-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-image-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.his-item {
    text-align: center;
}

.his-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.his-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
}

.his-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}

@media (max-width: 768px) {
    .hero-image-title { font-size: 2.2rem; }
    .hero-image-desc { font-size: 0.95rem; }
    .hero-image-stats { gap: 20px; flex-wrap: wrap; }
    .his-number { font-size: 1.4rem; }
}

/* ============================================
   WARM SHOP STYLE (Forest — Toko Hangat)
   ============================================ */

.ws-hero {
    background: var(--primary);
    padding: 130px 0 60px;
    position: relative;
    overflow: hidden;
}

.ws-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(249,115,22,0.08), transparent 60%);
}

.ws-hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.ws-hero-text { z-index: 2; }

.ws-hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.ws-hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.ws-hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

.ws-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ws-hero-visual {
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ws-visual-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 12px 20px;
    color: #fff;
    font-weight: 500;
    font-size: 0.85rem;
    animation: wsFloat 5s ease-in-out infinite;
}

.ws-visual-card i { font-size: 1.3rem; color: var(--accent); }
.ws-vc-1 { top: 20%; right: 20%; animation-delay: 0s; }
.ws-vc-2 { top: 50%; left: 10%; animation-delay: 1.5s; }
.ws-vc-3 { bottom: 10%; right: 30%; animation-delay: 3s; }

@keyframes wsFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Warm Shop Product Cards */
.ws-product-card {
    text-decoration: none;
    color: inherit;
}

.ws-product-card .product-icon {
    background: rgba(249,115,22,0.08);
    color: var(--accent);
}

.ws-product-card:hover .product-icon {
    background: var(--accent);
    color: #fff;
}

.ws-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.ws-product-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
}

.ws-product-order {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.ws-product-card:hover .ws-product-order {
    color: var(--accent);
    gap: 8px;
}

/* Warm Shop How To */
.ws-howto {
    padding: 60px 0;
    background: var(--bg-light);
}

.ws-howto-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.ws-step {
    text-align: center;
    padding: 28px 24px;
    flex: 1;
    max-width: 260px;
}

.ws-step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--bg-white);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.ws-step:hover .ws-step-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1);
}

.ws-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.ws-step p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.ws-step-arrow {
    color: var(--accent);
    font-size: 1.3rem;
    opacity: 0.4;
}

/* Warm Shop Testimonials */
.ws-testi {
    padding: 60px 0;
    background: var(--bg-white);
}

.ws-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ws-testi-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
}

.ws-testi-stars { margin-bottom: 12px; }
.ws-testi-stars i { color: #fbbf24; font-size: 0.9rem; margin-right: 2px; }

.ws-testi-card p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.ws-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ws-testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.ws-testi-author strong {
    display: block;
    font-size: 0.85rem;
    color: var(--primary);
}

.ws-testi-author small {
    font-size: 0.75rem;
    color: var(--text-lighter);
}

/* Warm Shop CTA */
.ws-cta {
    padding: 60px 0;
    background: var(--bg-light);
}

.ws-cta-card {
    background: var(--primary);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ws-cta-text h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.ws-cta-text p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
}

/* Warm Shop Responsive */
@media (max-width: 768px) {
    .ws-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .ws-hero-desc { margin: 0 auto 28px; }
    .ws-hero-actions { justify-content: center; }
    .ws-hero-visual { display: none; }
    .ws-hero-title { font-size: 2rem; }
    .ws-howto-steps { flex-direction: column; gap: 12px; }
    .ws-step-arrow { transform: rotate(90deg); }
    .ws-testi-grid { grid-template-columns: 1fr; }
    .ws-cta-card { flex-direction: column; text-align: center; padding: 32px 24px; }
    .ws-visual-card { display: none; }
}

/* ============================================
   PRO MODERN STYLE (Navy — Profesional)
   ============================================ */

.pm-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary);
    overflow: hidden;
    padding: 120px 0;
}

.pm-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.pm-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(37,99,235,0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(99,102,241,0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(249,115,22,0.1) 0%, transparent 50%);
    animation: pmBgAnim 8s ease-in-out infinite alternate;
}

@keyframes pmBgAnim {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.15); opacity: 1; }
}

.pm-hero-content { position: relative; z-index: 2; }

.pm-hero-top {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.pm-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.pm-hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.pm-hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 32px;
}

.pm-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.pm-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.pm-stat {
    text-align: center;
    padding: 20px 16px;
    background: rgba(255,255,255,0.05);
}

/* ============================================
   INTERACTIVE ELEMENTS — Toko Hangat & Pro Modern
   ============================================ */

/* ---- Floating WhatsApp Button ---- */
.ws-floating-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    opacity: 0;
    transform: scale(0.5) translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.ws-floating-wa::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 3px solid #25d366;
    opacity: 0;
    animation: wa-pulse-ring 2s ease-in-out infinite;
}

@keyframes wa-pulse-ring {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}

.ws-floating-wa:hover {
    transform: scale(1.1) !important;
    color: #fff;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.ws-floating-visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

/* ---- Pulse Button (CTA) ---- */
.pulse-btn {
    position: relative;
}

.pulse-btn::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius);
    border: 2px solid var(--accent);
    opacity: 0.4;
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.05); opacity: 0; }
    100% { transform: scale(1); opacity: 0.4; }
}

/* ---- Scroll Reveal (both themes) with FOUC protection ---- */
.js-ready .ws-reveal,
.js-ready .pm-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--reveal-delay, 0s);
}

.ws-reveal-visible,
.pm-reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.pm-reveal-left {
    opacity: 1;
    transform: translateX(0);
    animation: revealFromLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: var(--reveal-delay, 0s);
}

@keyframes revealFromLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

.pm-reveal-right {
    opacity: 1;
    transform: translateX(0);
    animation: revealFromRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: var(--reveal-delay, 0s);
}

@keyframes revealFromRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ---- VISUAL CARDS FLOAT (Forest) ---- */
.ws-card-float {
    animation: cardFloatV2 4s ease-in-out infinite;
}

.ws-vc-1 { animation-delay: 0s !important; }
.ws-vc-2 { animation-delay: 1.3s !important; }
.ws-vc-3 { animation-delay: 2.6s !important; }

@keyframes cardFloatV2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(-1deg); }
    50% { transform: translateY(-4px) rotate(1deg); }
    75% { transform: translateY(-8px) rotate(0deg); }
}

/* ---- TYPEWRITER CURSOR ---- */
.ws-hero-tag {
    display: inline-block !important;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--accent);
    animation: blink-cursor 0.8s step-end infinite;
    max-width: 100%;
}

@keyframes blink-cursor {
    50% { border-color: transparent; }
}

/* ---- HOW-TO STEPS CLICK EXPAND (Forest) ---- */
.ws-step {
    cursor: pointer;
    transition: all 0.3s ease;
}

.ws-step-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    opacity: 0;
    padding: 0;
}

.ws-step-detail p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    padding: 12px 16px;
    background: rgba(255,255,255,0.5);
    border-radius: var(--radius-sm);
    margin-top: 10px;
}

.ws-step-active .ws-step-detail {
    max-height: 500px;
    opacity: 1;
    padding: 4px 0;
}

.ws-step-active .ws-step-icon {
    transform: scale(1.15);
}

/* ---- TESTIMONI AUTO-SLIDE (Forest) ---- */
.ws-testi-track-wrap {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.ws-testi-track {
    display: flex;
    transition: none;
}

.ws-testi-card {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(10px);
    pointer-events: none;
}

.ws-testi-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.ws-testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.ws-testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ws-testi-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 5px;
}

/* ---- PRO MODERN SCROLL PROGRESS ---- */
.pm-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent-gradient);
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

/* ---- SERVICE CARD GLOW (Navy) ---- */
.pm-service-card {
    position: relative;
    overflow: hidden;
}

.pm-service-card::after {
    content: '';
    position: absolute;
    top: var(--glow-y, 50%);
    left: var(--glow-x, 50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pm-service-card:hover::after {
    opacity: 1;
}

/* ---- PROCESS STEP CLICK EXPAND (Navy) ---- */
.pm-order-step {
    cursor: pointer;
    transition: all 0.3s ease;
}

.pm-step-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    opacity: 0;
    padding: 0;
}

.pm-step-detail p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-top: 10px;
    border: 1px solid var(--border);
}

.pm-step-active {
    border-color: var(--accent) !important;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.pm-step-active .pm-step-detail {
    max-height: 500px;
    opacity: 1;
    padding: 4px 0;
}

.pm-step-active .pm-order-icon {
    background: var(--accent) !important;
    color: #fff !important;
}

.pm-step-active .pm-order-num {
    opacity: 0.3 !important;
}

/* ---- KEUNGGULAN STAGGER (Navy) ---- */
.pm-unggul-card-left { transform-origin: left center; }
.pm-unggul-card-right { transform-origin: right center; }

/* ---- HERO STATS ANIMATED (Navy) ---- */
.pm-stat-num {
    font-variant-numeric: tabular-nums;
    transition: color 0.3s ease;
}

.pm-stat:hover .pm-stat-num {
    color: var(--accent);
}

/* ---- Smooth section transitions ---- */
section {
    transition: background-color 0.3s ease;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .ws-hero-tag {
        white-space: normal;
        overflow: visible;
        border-right: none;
        animation: none;
    }
    .ws-visual-card {
        animation: cardFloatV2 4s ease-in-out infinite !important;
    }
    .pm-scroll-progress { display: none; }
    .pm-reveal-left, .pm-reveal-right {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
/* ============================================
   PRO MODERN — Hero Showcase Cards
   ============================================ */
.pm-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 36px;
}
.pm-showcase-card {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 12px 16px;
    backdrop-filter: blur(8px);
    cursor: default;
    transition: var(--transition);
}
.pm-showcase-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.3);
}
.pmsc-icon {
    width: 40px; height: 40px; min-width: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(37, 99, 235, 0.15);
    border-radius: 10px;
    font-size: 1.1rem; color: var(--accent);
}
.pmsc-text strong { display: block; font-size: 0.82rem; color: #fff; font-weight: 600; }
.pmsc-text small { font-size: 0.72rem; color: rgba(255,255,255,0.45); }

/* ---- PM Hero Stats Grid ---- */
.pm-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.pm-stat-item { text-align: center; padding: 24px 16px; position: relative; }
.pm-stat-item:not(:last-child)::after {
    content: '';
    position: absolute; right: 0; top: 20%; height: 60%; width: 1px;
    background: rgba(255,255,255,0.08);
}
.pm-stat-num-2 {
    display: block;
    font-size: 2rem; font-weight: 900; color: #fff;
    font-variant-numeric: tabular-nums;
    margin-bottom: 4px;
}
.pm-stat-label-2 {
    font-size: 0.82rem; color: rgba(255,255,255,0.5);
}

/* ============================================
   PRO MODERN — Portfolio
   ============================================ */
.pm-portfolio {
    padding: 100px 0;
    background: #fff;
}
.pm-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.pm-portfolio-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a5f, #1e4d7a);
    transition: var(--transition);
}
.pm-portfolio-item:nth-child(2) { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.pm-portfolio-item:nth-child(3) { background: linear-gradient(135deg, #1e3a5f, #0f172a); }
.pm-portfolio-item:nth-child(4) { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.pm-portfolio-item:nth-child(5) { background: linear-gradient(135deg, #1e4d7a, #2563eb); }
.pm-portfolio-item:nth-child(6) { background: linear-gradient(135deg, #0f172a, #1e3a5f); }
.pm-portfolio-item i {
    font-size: 3rem;
    color: rgba(255,255,255,0.3);
    transition: var(--transition);
}
.pm-portfolio-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
}
.pm-portfolio-item:hover .pm-portfolio-overlay { opacity: 1; }
.pm-portfolio-item:hover i { transform: scale(0.8); opacity: 0.3; }
.pm-portfolio-overlay h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.pm-portfolio-overlay p { color: rgba(255,255,255,0.6); font-size: 0.82rem; }

/* ============================================
   PRO MODERN — Testimonials (opacity-based)
   ============================================ */
.pm-testi-wrapper {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.pm-testi-track { display: flex; }
.pm-testi-card {
    min-width: 100%;
    padding: 36px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(8px);
    pointer-events: none;
}
.pm-testi-card.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.pm-testi-stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 16px; }
.pm-testi-stars i { margin: 0 2px; }
.pm-testi-text {
    font-size: 1.05rem; color: var(--text);
    line-height: 1.8; font-style: italic;
    margin-bottom: 20px;
}
.pm-testi-author {
    display: flex; align-items: center; justify-content: center; gap: 12px;
}
.pm-testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--accent-gradient);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 0.85rem;
}
.pm-testi-author h4 { font-size: 0.9rem; font-weight: 700; color: var(--primary); text-align: left; }
.pm-testi-author span { font-size: 0.78rem; color: var(--text-light); display: block; text-align: left; }
.pm-testi-dots {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 24px;
}
.pm-testi-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--border); border: none; cursor: pointer;
    transition: all 0.3s ease;
}
.pm-testi-dot.active { background: var(--accent); width: 28px; border-radius: 5px; }

/* ============================================
   PRO MODERN — CTA Section
   ============================================ */
.pm-cta-section {
    padding: 100px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}
.pm-cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(37,99,235,0.12), transparent 60%),
                radial-gradient(circle at 30% 50%, rgba(59,130,246,0.08), transparent 50%);
}
.pm-cta-inner {
    position: relative; text-align: center;
    max-width: 680px; margin: 0 auto;
}
.pm-cta-inner h2 {
    font-size: 2.5rem; font-weight: 800; color: #fff;
    margin-bottom: 20px; letter-spacing: -0.5px;
}
.pm-cta-inner p {
    font-size: 1.1rem; color: rgba(255,255,255,0.6);
    margin-bottom: 36px; line-height: 1.8;
}
.pm-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOREST — Hero Orbs
   ============================================ */
.ws-hero-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.ws-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
}
.ws-ho-1 {
    width: 400px; height: 400px;
    background: #10b981;
    top: -100px; right: -50px;
    animation: wsOrbFloat 7s ease-in-out infinite;
}
.ws-ho-2 {
    width: 300px; height: 300px;
    background: #059669;
    bottom: -80px; left: -60px;
    animation: wsOrbFloat 9s ease-in-out infinite reverse;
}
.ws-ho-3 {
    width: 200px; height: 200px;
    background: #34d399;
    top: 30%; left: 20%;
    animation: wsOrbFloat 11s ease-in-out infinite 1s;
}
@keyframes wsOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -25px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.95); }
}

/* ============================================
   FOREST — Hero Visual Cards
   ============================================ */
.ws-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
.ws-visual-card-2 {
    display: flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    backdrop-filter: blur(8px);
    width: 100%;
    max-width: 280px;
    transition: var(--transition);
    animation: wsCardBounce 4s ease-in-out infinite;
}
.ws-visual-card-2:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px) scale(1.02);
}
.ws-vc-1 { animation-delay: 0s; }
.ws-vc-2 { animation-delay: 1.3s; }
.ws-vc-3 { animation-delay: 2.6s; }
@keyframes wsCardBounce {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-8px); }
    50% { transform: translateY(-2px); }
    75% { transform: translateY(-5px); }
}
.ws-vc-icon {
    width: 48px; height: 48px; min-width: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(5, 150, 105, 0.15);
    border-radius: 12px;
    font-size: 1.2rem; color: var(--accent);
}
.ws-vc-text strong { display: block; font-size: 0.95rem; color: #fff; font-weight: 600; }
.ws-vc-text small { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ============================================
   FOREST — Hero Stats Row
   ============================================ */
.ws-hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.ws-hero-stat {
    display: flex; align-items: center; gap: 8px;
}
.ws-hero-stat i { font-size: 1.1rem; color: var(--accent); }
.ws-hero-stat strong { font-size: 1.1rem; color: #fff; font-weight: 700; }
.ws-hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

/* ============================================
   FOREST — Kenapa Kami
   ============================================ */
.ws-kenapa {
    padding: 80px 0;
    background: #fff;
}
.ws-kenapa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.ws-kenapa-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    background: var(--bg-white);
}
.ws-kenapa-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    transform: translateY(-4px);
}
.ws-kenapa-icon {
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 50%;
    margin: 0 auto 16px;
    font-size: 1.6rem; color: var(--accent);
    transition: var(--transition);
}
.ws-kenapa-card:hover .ws-kenapa-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1) rotateY(180deg);
}
.ws-kenapa-card h3 {
    font-size: 1.05rem; font-weight: 700; color: var(--primary);
    margin-bottom: 10px;
}
.ws-kenapa-card p {
    font-size: 0.88rem; color: var(--text-light); line-height: 1.7;
}

/* ============================================
   FOREST — CTA Card
   ============================================ */
.ws-cta-section {
    padding: 60px 0;
}
.ws-cta-card-2 {
    background: var(--primary);
    border-radius: var(--radius-xl);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
}
.ws-cta-card-2::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(5, 150, 105, 0.1), transparent 60%);
}
.ws-cta-text { position: relative; }
.ws-cta-text h2 {
    font-size: 1.8rem; font-weight: 800; color: #fff;
    margin-bottom: 8px;
}
.ws-cta-text p {
    font-size: 0.95rem; color: rgba(255,255,255,0.65);
    line-height: 1.7;
}
.ws-cta-card-2 .btn { position: relative; flex-shrink: 0; }
.ws-btn-wa {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.ws-btn-wa:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* ============================================
   Shared — Directional Reveal + Generic Reveal
   ============================================ */
.pm-reveal-left {
    opacity: 0; transform: translateX(-40px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.pm-reveal-left.pm-reveal-visible { opacity: 1; transform: translateX(0); }

.pm-reveal-right {
    opacity: 0; transform: translateX(40px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.pm-reveal-right.pm-reveal-visible { opacity: 1; transform: translateX(0); }

/* ============================================
   Responsive — New Components
   ============================================ */
@media (max-width: 1024px) {
    .pm-showcase { grid-template-columns: repeat(2, 1fr); }
    .pm-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .ws-kenapa-grid { grid-template-columns: repeat(2, 1fr); }
    .ws-visual { flex-direction: row; flex-wrap: wrap; justify-content: center; margin-top: 24px; }
    .ws-visual-card-2 { max-width: 200px; }
}
@media (max-width: 768px) {
    .pm-showcase { grid-template-columns: 1fr; }
    .pm-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pm-stat-item:nth-child(2)::after { display: none; }
    .pm-portfolio-grid { grid-template-columns: 1fr; }
    .ws-kenapa-grid { grid-template-columns: 1fr; }
    .ws-visual { display: none; }
    .ws-visual-card-2 { max-width: 100%; }
    .ws-cta-card-2 { flex-direction: column; text-align: center; padding: 32px 24px; }
    .pm-cta-inner h2 { font-size: 1.8rem; }
    .pm-cta-section { padding: 60px 0; }
    .pm-portfolio { padding: 60px 0; }
}
/* ============================================
   Grid rules (moved from inline styles)
   ============================================ */
.ws-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}
.pm-order-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.pm-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 1024px) {
    .ws-hero-content { grid-template-columns: 1fr; text-align: center; }
    .ws-hero-content .ws-hero-desc { max-width: 100%; }
    .pm-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .pm-order-steps { grid-template-columns: 1fr; }
    .pm-services-grid { grid-template-columns: 1fr; }
}
/* ---- Scroll Progress (used by modern themes) ---- */
.scroll-progress {
    position: fixed; top: 0; left: 0;
    width: 0%; height: 3px;
    background: var(--accent-gradient);
    background-size: 200% 200%;
    z-index: 9999;
    transition: width 0.1s linear;
}
[data-theme="navy"] .scroll-progress {
    animation: gradShift 3s ease infinite;
}

/* ============================================
   Theme Overrides — Fix conflicts & restore
   deleted @keyframes
   ============================================ */

/* ---- Shared @keyframes ---- */
@keyframes gradShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ---- Text Gradient Animation ---- */
[data-theme="forest"] .text-gradient,
[data-theme="navy"] .text-gradient {
    background-size: 200% 200%;
}
[data-theme="forest"] .text-gradient {
    animation: gradShift 4s ease infinite;
}

/* ---- Footer Newsletter ---- */
.footer-newsletter {
    display: flex;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 12px;
}
.footer-newsletter input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border: none;
    color: #fff;
    font-family: var(--font);
    font-size: 0.85rem;
    outline: none;
}
.footer-newsletter input::placeholder {
    color: rgba(255,255,255,0.3);
}
.footer-newsletter button {
    padding: 12px 18px;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    transition: var(--transition);
}
.footer-newsletter button:hover {
    opacity: 0.9;
}

/* ============================================
   [data-theme="navy"] Overrides
   ============================================ */

/* ---- Service Card ---- */
[data-theme="navy"] .service-card {
    padding: 0;
}
[data-theme="navy"] .service-card::before {
    z-index: 1;
}
[data-theme="navy"] .service-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* ---- Service Link ---- */
[data-theme="navy"] .service-link {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.85rem;
}

/* ---- Keunggulan ---- */
[data-theme="navy"] .keunggulan-card {
    padding: 32px 24px;
    display: block;
    text-align: center;
    background: transparent;
    gap: normal;
}

/* ---- Portfolio ---- */
[data-theme="navy"] .portfolio-item {
    aspect-ratio: unset;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
[data-theme="navy"] .portfolio-item i {
    font-size: 2.5rem;
}
[data-theme="navy"] .portfolio-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
}
[data-theme="navy"] .portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* ---- Order Timeline ---- */
[data-theme="navy"] .order-step {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    text-align: inherit;
    box-shadow: none;
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
    cursor: pointer;
}

/* ---- Testi ---- */
[data-theme="navy"] .testi-track {
    display: block;
    position: relative;
    min-height: 280px;
}
[data-theme="navy"] .testi-card {
    position: absolute; inset: 0;
    width: 100%;
    padding: 40px;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    border: 1px solid var(--border);
}
[data-theme="navy"] .testi-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
[data-theme="navy"] .testi-wrapper {
    max-width: 700px;
    overflow: visible;
}
[data-theme="navy"] .testi-avatar {
    width: 48px;
    height: 48px;
}

/* ============================================
   PRODUCT IMAGE PLACEHOLDER (Empty)
   ============================================ */
.pcf-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}
.pcf-image-empty {
    width: 100%;
    height: 100%;
    background: #e9ecef;
    position: relative;
    z-index: 1;
}

.pd-image-empty {
    width: 100%;
    height: 100%;
    background: #e9ecef;
}

.product-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-image-empty {
    width: 100%;
    height: 100%;
    background: #e9ecef;
    border-radius: var(--radius);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}
.service-card-image-empty {
    width: 100%;
    height: 100%;
    background: #e9ecef;
}

.produk-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 18px;
}
.produk-icon-empty {
    width: 100%;
    height: 100%;
    background: #e9ecef;
    border-radius: 14px;
}

.ob-pr-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}
.ob-pr-icon-empty {
    width: 64px;
    height: 64px;
    background: #e9ecef;
    border-radius: 14px;
}

.ob-summary-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.ob-summary-icon-empty {
    width: 48px;
    height: 48px;
    background: #e9ecef;
    border-radius: 10px;
}

.pd-discount-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.15);
    border-radius: var(--radius);
    margin-bottom: 12px;
}
.pd-discount-banner i {
    font-size: 1.3rem;
    color: #10b981;
    margin-top: 2px;
}
.pd-discount-banner strong {
    display: block;
    font-size: 0.85rem;
    color: #065f46;
    margin-bottom: 2px;
}
.pd-discount-banner span {
    font-size: 0.78rem;
    color: #6b7280;
}

.pd-discount-tiers {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.pd-discount-tier {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}
.pdt-min {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light);
    flex: 1;
}
.pd-discount-tier i {
    color: var(--accent);
    font-size: 0.75rem;
}
.pdt-disc {
    font-size: 0.85rem;
    font-weight: 700;
    color: #10b981;
    white-space: nowrap;
}

/* ============================================
   PRODUCT GALLERY (Multiple Images)
   ============================================ */
.pd-gallery { display:flex; flex-direction:column; gap:12px; }
.pd-main-image {
    width:100%; height:480px; border-radius:16px; overflow:hidden;
    background:var(--bg-light); border:1px solid var(--border);
}
.pd-main-image img {
    width:100%; height:100%; object-fit:cover; transition:opacity 0.3s;
}
.pd-thumbnails {
    display:flex; gap:10px; overflow-x:auto; padding-bottom:4px;
}
.pd-thumb {
    width:80px; height:72px; border-radius:8px; overflow:hidden; cursor:pointer;
    border:2px solid transparent; transition:all 0.2s; flex-shrink:0;
    background:var(--bg-light);
}
.pd-thumb:hover { border-color:var(--accent); opacity:0.9; }
.pd-thumb.active { border-color:var(--accent); box-shadow:0 0 0 2px rgba(249,115,22,0.2); }
.pd-thumb img { width:100%; height:100%; object-fit:cover; }
@media (max-width:768px) {
    .pd-main-image { height:320px; }
    .pd-thumb { width:64px; height:58px; }
}
