/* ============================================================
   harindojaya.com — Main Stylesheet
   Theme: Corporate Blue Professional v2.0
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
    --primary:        #0054a6;
    --primary-dark:   #014681;
    --primary-light:  #e8f0fb;
    --accent:         #f97316;
    --success:        #25D366;
    --text-dark:      #1a1a2e;
    --text-body:      #444;
    --text-muted:     #777;
    --border:         #dde8f5;
    --bg:             #f4f7fb;
    --white:          #ffffff;
    --shadow-sm:      0 1px 4px rgba(0,84,166,.08);
    --shadow-md:      0 4px 20px rgba(0,84,166,.12);
    --shadow-lg:      0 8px 40px rgba(0,84,166,.18);
    --radius-sm:      6px;
    --radius-md:      12px;
    --radius-lg:      20px;
    --font:           'Inter', sans-serif;
    --font-head:      'Poppins', 'Inter', sans-serif;
    --transition:     0.25s ease;
    --max-width:      1280px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--text-body);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
svg { flex-shrink: 0; }

/* ── Container ── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================================
   TOP INFO BAR
   ============================================================ */
.top-bar {
    background: var(--primary-dark);
    color: white;
    font-size: 0.78rem;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.top-bar-contacts {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.9);
    transition: color var(--transition);
    font-weight: 500;
}
.contact-item:hover { color: white; }
.contact-item svg { width: 14px; height: 14px; }
.contact-item.wa { color: #90EE90; }
.contact-item.wa:hover { color: #25D366; }
.contact-item.telegram { color: #74c0fc; }
.top-bar-right { color: rgba(255,255,255,0.7); font-size: 0.74rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    position: sticky;
    top: 37px;
    z-index: 999;
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.logo-circle { width: 60px; height: 60px; transition: transform var(--transition); }
.site-logo:hover .logo-circle { transform: rotate(-5deg) scale(1.05); }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--primary); }
.logo-sub { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; }

/* Search */
.header-search { flex: 1; max-width: 520px; }
.header-search form {
    display: flex;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.header-search form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0,84,166,.1);
}
.header-search input {
    flex: 1;
    padding: 0.65rem 1rem;
    border: none;
    outline: none;
    font-family: var(--font);
    font-size: 0.9rem;
    background: transparent;
}
.header-search button {
    background: var(--primary);
    border: none;
    padding: 0 1rem;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    transition: background var(--transition);
}
.header-search button:hover { background: var(--primary-dark); }
.header-search button svg { width: 18px; height: 18px; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.btn-order {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-order:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-order svg { width: 16px; height: 16px; }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px;
    cursor: pointer;
    margin-left: auto;
}
.mobile-menu-btn span {
    width: 22px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
    background: var(--primary);
    position: sticky;
    top: 97px;
    z-index: 998;
}
.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
}
.nav-list li { position: relative; }
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    padding: 0.9rem 1.1rem;
    transition: background var(--transition), color var(--transition);
}
.nav-link:hover, .nav-link.active { background: rgba(0,0,0,0.2); color: white; }
.nav-arrow { width: 14px; height: 14px; transition: transform var(--transition); }
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    z-index: 1000;
    overflow: hidden;
    animation: dropIn 0.2s ease;
}
@keyframes dropIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown li a {
    display: block;
    padding: 0.7rem 1.2rem;
    color: var(--text-body);
    font-size: 0.875rem;
    border-left: 3px solid transparent;
    transition: all var(--transition);
}
.nav-dropdown li a:hover { background: var(--primary-light); color: var(--primary); border-left-color: var(--primary); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #011f4b 0%, #014681 40%, #0054a6 100%);
    color: white;
    padding: 5rem 0 4rem;
    overflow: hidden;
    min-height: 520px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 50%, rgba(255,255,255,.04) 0%, transparent 60%),
                      radial-gradient(circle at 10% 80%, rgba(255,255,255,.03) 0%, transparent 50%);
    pointer-events: none;
}
.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border-radius: 99px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
}
.hero-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.hero-highlight {
    background: linear-gradient(135deg, #fde68a, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary);
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-primary svg { width: 18px; height: 18px; }
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37,211,102,.15);
    color: #90EE90;
    border: 1.5px solid rgba(37,211,102,.4);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
}
.btn-secondary:hover { background: rgba(37,211,102,.25); color: #25D366; border-color: #25D366; transform: translateY(-2px); }
.btn-secondary svg { width: 18px; height: 18px; fill: currentColor; }

/* Hero Stats */
.hero-stats { display: flex; align-items: center; gap: 0; }
.stat-item { padding: 0 1.25rem; }
.stat-item:first-child { padding-left: 0; }
.stat-num { display: block; font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: white; }
.stat-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.25); }

/* Hero Image Card */
.hero-image { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-img-card {
    width: 100%;
    max-width: 460px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    position: relative;
}
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 100%;
    padding: 2rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}
.hero-icon { width: 120px; height: 90px; opacity: 0.6; }
.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

/* ============================================================
   SECTIONS SHARED
   ============================================================ */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 99px;
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.section-desc { color: var(--text-muted); font-size: 0.95rem; }

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section { padding: 4rem 0; }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    min-height: 200px;
}

/* Product Card */
.product-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.product-img-wrap {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
}
.product-img-wrap img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.no-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #cbd5e1;
}
.no-img-placeholder svg { width: 48px; height: 48px; margin-bottom: 0.5rem; opacity: 0.5; }
.no-img-placeholder::after { content: 'No Image'; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.product-info { 
    padding: 1.5rem 1.25rem; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    gap: 0.75rem; 
    text-align: center;
    justify-content: flex-start;
}
.product-brand { 
    font-size: 0.75rem; 
    font-weight: 700; 
    color: var(--primary); 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
}
.product-name { 
    font-size: 0.95rem; 
    font-weight: 700; 
    color: var(--text-dark); 
    line-height: 1.4; 
    height: 2.8rem; /* Strictly 2 lines */
    display: -webkit-box; 
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical; 
    overflow: hidden;
    margin: 0.4rem 0;
}
.product-name a {
    color: inherit;
    text-decoration: none;
}
.product-title { /* For compatibility with older templates */
    font-size: 0.95rem; 
    font-weight: 700; 
    color: var(--text-dark); 
    line-height: 1.4; 
    height: 2.8rem;
    display: -webkit-box; 
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical; 
    overflow: hidden;
    margin: 0.4rem 0;
}
.product-name a:hover { color: var(--primary); }
.product-footer { 
    display: flex; 
    flex-direction: column; 
    gap: 0.75rem; 
    padding-top: 0.75rem; 
    border-top: 1px dashed var(--border); 
}
.product-meta-bottom { 
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    width: 100%; 
    gap: 0.4rem; 
    margin-bottom: 0.5rem;
}
.product-code { 
    font-size: 0.75rem; 
    color: var(--text-muted); 
    font-weight: 600; 
    font-family: monospace; 
}
.product-status { 
    display: flex; 
    align-items: center; 
    justify-content: center;
    gap: 0.35rem; 
    font-size: 0.72rem; 
    color: #e65100; 
    font-weight: 700; 
}
.product-status .icon-check { width: 14px; height: 14px; }
.product-meta-bottom { margin-top: auto; }
.btn-pesan, .btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white !important;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
    width: 100%;
    margin-top: auto;
    box-shadow: 0 4px 6px rgba(0,84,166,0.15);
}
.btn-pesan svg, .btn-wa svg {
    width: 18px !important;
    height: 18px !important;
    margin-right: 8px;
    flex-shrink: 0;
}
.btn-pesan:hover, .btn-wa:hover { 
    background: var(--primary-dark); 
    transform: translateY(-1px); 
    color: white; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Loading */
.loading-indicator {
    grid-column: 1/-1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem;
    color: var(--text-muted);
}
.spinner-ring {
    width: 40px; height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.no-products { color: var(--text-muted); }
.no-products a { color: var(--primary); text-decoration: underline; }

.section-footer { text-align: center; margin-top: 2rem; }
.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition);
}
.btn-load-more:hover { background: var(--primary); color: white; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-load-more svg { width: 18px; height: 18px; }

/* ============================================================
   WHY US SECTION
   ============================================================ */
.whyus-section {
    background: white;
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   CATEGORIES SECTION
   ============================================================ */
.categories-section { padding: 4rem 0; }
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.category-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-sm);
}
.category-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    background: var(--primary);
    color: white;
}
.cat-icon { font-size: 2.5rem; transition: transform var(--transition); }
.category-card:hover .cat-icon { transform: scale(1.2) rotate(-10deg); }
.category-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.category-card:hover h3 { color: white; }
.cat-count { font-size: 0.78rem; color: var(--text-muted); }
.category-card:hover .cat-count { color: rgba(255,255,255,0.8); }
.all-cat { background: var(--primary-light); border-color: var(--primary); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--primary-dark); color: white; }
.footer-top { padding: 3rem 0 2rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
}
.footer-col h4 {
    font-family: var(--font-head);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,0.95);
    position: relative;
    padding-bottom: 0.75rem;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--accent);
    border-radius: 2px;
}
.footer-col ul li + li { margin-top: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.875rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: white; padding-left: 4px; }

/* Footer About */
.footer-logo { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.footer-brand { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1rem; }
.footer-tagline { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.6); letter-spacing: 1px; }
.footer-about p { color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1);
    transition: all var(--transition);
}
.social-link svg { width: 18px; height: 18px; }
.social-link.wa:hover { background: #25D366; }
.social-link.tg:hover { background: #229ED9; }

/* Footer Contact */
.contact-info { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-row { display: flex; align-items: flex-start; gap: 0.75rem; color: rgba(255,255,255,0.75); font-size: 0.875rem; }
.contact-row svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem 0;
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.footer-powered a { color: rgba(255,255,255,0.8); }
.footer-powered a:hover { color: white; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all var(--transition);
    animation: waFloat 3s ease-in-out infinite;
}
@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.wa-float:hover { transform: scale(1.15) !important; box-shadow: 0 6px 24px rgba(37, 211, 102, 0.7); animation-play-state: paused; }
.wa-icon { width: 30px; height: 30px; fill: white; }
.wa-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    background: #1a1a1a;
    color: white;
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ============================================================
   CATALOG PAGE SPECIFICS
   ============================================================ */
.catalog-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
}

/* Sidebar */
.catalog-sidebar { background: white; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.5rem; height: fit-content; }
.sidebar-title { font-family: var(--font-head); font-size: 0.875rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); background: var(--primary-light); padding: 0.6rem 1rem; border-radius: var(--radius-sm); margin-bottom: 1rem; }
.sidebar-filter-group { margin-bottom: 1.5rem; }
.sidebar-filter-group h5 { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.sidebar-filter-group ul { 
    max-height: 600px; 
    overflow-y: auto; 
    padding-right: 8px; 
}
/* Custom scrollbar for sidebar */
.sidebar-filter-group ul::-webkit-scrollbar { width: 5px; }
.sidebar-filter-group ul::-webkit-scrollbar-track { background: var(--bg); border-radius: 10px; }
.sidebar-filter-group ul::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
.sidebar-filter-group ul::-webkit-scrollbar-thumb:hover { background: var(--primary); }

.sidebar-filter-group ul li + li { margin-top: 0.25rem; }
.sidebar-filter-group ul li a { display: flex; align-items: center; justify-content: space-between; padding: 0.45rem 0.6rem; border-radius: var(--radius-sm); font-size: 0.875rem; color: var(--text-body); transition: all var(--transition); }
.sidebar-filter-group ul li a:hover, .sidebar-filter-group ul li a.active { background: var(--primary-light); color: var(--primary); font-weight: 600; }
.cat-badge { background: var(--border); color: var(--text-muted); font-size: 0.7rem; padding: 0.15rem 0.5rem; border-radius: 99px; font-weight: 600; }

/* Page Header */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 2.5rem 0;
}
.page-hero h1 { font-family: var(--font-head); font-size: 1.75rem; font-weight: 800; margin-bottom: 0.5rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.75); }
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: white; }
.breadcrumb svg { width: 12px; height: 12px; }

/* Product Detail */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.product-detail-img { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--bg); }
.product-detail-img img { width: 100%; aspect-ratio: 1; object-fit: contain; padding: 1rem; }
.product-detail-info { display: flex; flex-direction: column; gap: 1rem; }
.product-detail-code { font-size: 0.8rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.product-detail-name { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--text-dark); line-height: 1.3; }
.product-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.product-table th { background: var(--primary-light); color: var(--primary); font-weight: 700; font-size: 0.8rem; text-align: left; padding: 0.65rem 1rem; }
.product-table td { padding: 0.65rem 1rem; border-top: 1px solid var(--border); font-size: 0.875rem; }
.badge-tersedia { display: inline-flex; align-items: center; gap: 0.4rem; color: #388e3c; font-weight: 600; font-size: 0.875rem; }
.btn-pesan-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-dark);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.btn-pesan-detail:hover { background: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-lg); color: white; }

/* ============================================================
   TOOLBAR / FILTERS
   ============================================================ */
.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}
.catalog-count { font-size: 0.875rem; color: var(--text-muted); }
.catalog-count strong { color: var(--text-dark); }
.catalog-sort { display: flex; align-items: center; gap: 0.5rem; }
.catalog-sort label { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.catalog-sort select {
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.875rem;
    background: white;
    color: var(--text-dark);
    cursor: pointer;
}
.catalog-sort select:focus { outline: none; border-color: var(--primary); }

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}
.page-btn {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--text-body);
    background: white;
    cursor: pointer;
    transition: all var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .catalog-layout { grid-template-columns: 200px 1fr; }
}

@media (max-width: 768px) {
    .top-bar-right { display: none; }
    .header-inner { flex-wrap: wrap; gap: 0.75rem; }
    .header-search { order: 3; width: 100%; max-width: 100%; flex-basis: 100%; }
    .header-actions { display: none; }
    .mobile-menu-btn { display: flex; }
    .site-nav { position: static; }
    .nav-list { flex-direction: column; align-items: stretch; display: none; }
    .nav-list.open { display: flex; }
    .nav-link { padding: 0.9rem 1.25rem; border-top: 1px solid rgba(255,255,255,0.1); }
    .nav-dropdown { position: static; box-shadow: none; border-radius: 0; }
    .hero-section .container { grid-template-columns: 1fr; }
    .hero-image { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .catalog-layout { grid-template-columns: 1fr; }
    .catalog-sidebar { order: 2; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom .container { flex-direction: column; text-align: center; }
    .product-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-stat { display: none; }
    .products-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons a { text-align: center; justify-content: center; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.product-card, .feature-card, .category-card { animation: fadeInUp 0.4s ease; }

/* Scroll reveal */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ============================================================
   IMAGE MODAL (LIGHTBOX)
   ============================================================ */
.clickable-img {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}
.clickable-img:hover {
    transform: scale(1.02);
}
.img-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}
.img-modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    border-radius: 8px;
    animation: zoom 0.3s;
}
@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}
.img-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}
.img-modal-close:hover {
    color: #bbb;
    text-decoration: none;
}
#imgCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
    font-family: var(--font-head);
    font-weight: 600;
}
@media only screen and (max-width: 700px){
    .img-modal-content {
        width: 100%;
    }
}
