@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap";.sidebar{width:var(--sidebar-width);background:var(--bg-card);border-right:1px solid var(--border-color);z-index:100;flex-direction:column;height:100dvh;transition:transform .3s cubic-bezier(.4,0,.2,1);display:flex;position:fixed;top:0;left:0;overflow-y:auto}.sidebar:before{content:"";z-index:10;pointer-events:none;background:linear-gradient(90deg,#ffc03f 0% 25%,#a12316 25% 100%);height:3px;position:absolute;top:0;left:0;right:0}.sidebar-mobile-toggle{z-index:200;border-radius:var(--radius-md);border:1px solid var(--border-color);background:var(--bg-card);width:40px;height:40px;color:var(--text-primary);cursor:pointer;box-shadow:var(--shadow-sm);justify-content:center;align-items:center;display:none;position:fixed;top:.75rem;left:.75rem}.sidebar-overlay{-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);z-index:99;background:#0006;animation:.2s fadeIn;display:none;position:fixed;inset:0}.sidebar-brand{border-bottom:1px solid var(--border-color);flex-wrap:wrap;align-items:center;gap:.75rem;padding:1.25rem 1.25rem 1rem;display:flex}.sidebar-logo{background:linear-gradient(135deg, var(--primary), var(--primary-light));border-radius:var(--radius-md);justify-content:center;align-items:center;width:40px;height:40px;font-size:1.5rem;display:flex}.sidebar-brand-text{flex-direction:column;flex:1;min-width:120px;display:flex}.sidebar-title{color:var(--text-primary);-webkit-line-clamp:2;-webkit-box-orient:vertical;font-size:.88rem;font-weight:800;line-height:1.2;display:-webkit-box;overflow:hidden}.sidebar-subtitle{color:var(--text-secondary);margin-top:.15rem;font-size:.78rem;font-weight:600;line-height:1.2}.sidebar-nav{flex-direction:column;flex:1;gap:2px;padding:.75rem;display:flex}.sidebar-divider{color:var(--text-muted);text-transform:uppercase;letter-spacing:1px;padding:.75rem .75rem .35rem;font-size:.65rem;font-weight:700}.sidebar-link{border-radius:var(--radius-md);color:var(--text-secondary);align-items:center;gap:.65rem;padding:.65rem .85rem;font-size:.86rem;font-weight:500;text-decoration:none;transition:all .3s cubic-bezier(.4,0,.2,1);display:flex;position:relative;overflow:hidden}.sidebar-link:hover{background:var(--primary-bg);color:var(--primary);transform:translate(4px)}.sidebar-link.active{background:linear-gradient(90deg, var(--primary-bg) 0%, transparent 100%);color:var(--primary);font-weight:700}.sidebar-link.active:before{content:"";background:var(--primary);border-radius:0 4px 4px 0;width:4px;position:absolute;top:15%;bottom:15%;left:0}.sidebar-footer{padding:1rem;padding-bottom:calc(1rem + env(safe-area-inset-bottom,0px));border-top:1px solid var(--border-color);flex-direction:column;gap:.75rem;display:flex}.sidebar-user{border-radius:var(--radius-md);transition:var(--transition);align-items:center;gap:.65rem;padding:.5rem;display:flex}.sidebar-user:hover{background:var(--bg-secondary)}.sidebar-avatar{background:linear-gradient(135deg, var(--primary), var(--accent-violet));color:#fff;border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;width:36px;height:36px;font-size:.85rem;font-weight:700;display:flex}.sidebar-user-info{flex-direction:column;min-width:0;display:flex}.sidebar-user-name{color:var(--text-primary);white-space:nowrap;text-overflow:ellipsis;font-size:.82rem;font-weight:600;overflow:hidden}.sidebar-footer-actions{align-items:center;gap:.5rem;display:flex}@media (width<=768px){.sidebar{transform:translate(-100%)}.sidebar.sidebar--open{transform:translate(0)}.sidebar-mobile-toggle{display:flex}.sidebar-overlay{display:block}}.header{height:var(--header-height);background:var(--bg-card);border-bottom:1px solid var(--border-color);z-index:90;justify-content:space-between;align-items:center;padding:0 1.5rem;display:flex;position:sticky;top:0}.header-left{align-items:center;gap:1.5rem;min-width:0;display:flex}.header-app-name{color:var(--primary);white-space:nowrap;text-overflow:ellipsis;border-right:1px solid var(--border-color);margin-right:-.5rem;padding-right:1.5rem;font-size:1rem;font-weight:700;overflow:hidden}.header-datetime{color:var(--text-secondary);align-items:center;gap:1.25rem;font-size:.8rem;font-weight:500;display:flex}.header-date,.header-time{white-space:nowrap;align-items:center;gap:.4rem;display:flex}.header-date svg,.header-time svg{color:var(--primary);opacity:.8}.header-right{align-items:center;gap:.5rem;display:flex}.header-badge{background:var(--accent-rose);color:#fff;border:2px solid var(--bg-card);border-radius:10px;justify-content:center;align-items:center;min-width:18px;height:18px;font-size:.65rem;font-weight:700;display:flex;position:absolute;top:2px;right:2px}.notif-dropdown{background:var(--bg-card);border:1px solid var(--border-color);border-radius:var(--radius-lg);width:340px;box-shadow:var(--shadow-xl);z-index:1000;position:absolute;top:calc(100% + .5rem);right:0;overflow:hidden}.notif-header{border-bottom:1px solid var(--border-color);justify-content:space-between;align-items:center;padding:1rem;display:flex}.notif-header h3{font-size:.9rem;font-weight:700}.notif-body{max-height:400px;overflow-y:auto}.notif-item{border-bottom:1px solid var(--border-color);cursor:pointer;transition:var(--transition);padding:1rem}.notif-item:hover{background:var(--bg-secondary)}.notif-item.unread{background:var(--primary-bg);border-left:3px solid var(--primary)}.notif-item:last-child{border-bottom:none}.notif-title{margin-bottom:.2rem;font-size:.85rem;font-weight:700}.notif-message{color:var(--text-secondary);font-size:.78rem;line-height:1.4}.notif-time{color:var(--text-muted);margin-top:.4rem;font-size:.7rem}.notif-empty{text-align:center;color:var(--text-muted);padding:2rem;font-size:.85rem}@media (width<=768px){.header{padding-left:3.75rem;padding-right:.75rem}.header-app-name{font-size:.9rem}.notif-dropdown{width:300px;top:var(--header-height);width:auto;max-width:none;position:fixed;left:.5rem;right:.5rem}}.layout{min-height:100vh;display:flex}.layout-main{width:100%;min-width:0;margin-left:var(--sidebar-width);flex-direction:column;flex:1;min-height:100vh;transition:margin-left .3s;display:flex}.layout-content{flex:1;width:100%;max-width:1400px;margin:0 auto;padding:1.5rem}.layout-content.layout-content-pos{max-width:none;padding:0}.layout-footer{text-align:center;color:var(--text-muted);border-top:1px solid var(--border-color);padding:1rem 1.5rem;font-size:.75rem}@media (width<=768px){.layout-main{width:100%;margin-left:0}}.req-pos-layout{height:calc(100vh - var(--header-height));gap:0;margin:0;display:flex}.req-pos-header{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:.5rem;padding:.5rem 1rem 0;display:flex}.req-pos-title{color:var(--text-primary);letter-spacing:-.02em;align-items:center;gap:.5rem;margin:0;font-size:1.35rem;font-weight:800;display:flex}.req-pos-subtitle{color:var(--text-muted);margin:.1rem 0 .5rem;font-size:.82rem}.req-catalog{flex-direction:column;flex:1;min-width:0;display:flex;overflow:hidden}.req-toolbar{border-bottom:1px solid var(--border-color);flex-wrap:wrap;align-items:center;gap:.5rem;padding:.75rem 1rem;display:flex}.req-search-bar{background:var(--bg-secondary);border:1px solid var(--border-color);border-radius:var(--radius-md);transition:border-color var(--transition-fast);flex:1;align-items:center;gap:.5rem;padding:.35rem .75rem;display:flex}.req-search-bar:focus-within{border-color:var(--primary);box-shadow:0 0 0 2px #6366f126}.req-search-bar input{color:var(--text-primary);background:0 0;border:none;outline:none;width:100%;font-size:.85rem}.req-search-bar svg{color:var(--text-muted);flex-shrink:0}.req-cat-chips{scrollbar-width:none;gap:.375rem;padding:.5rem 1rem;display:flex;overflow-x:auto}.req-cat-chips::-webkit-scrollbar{display:none}.req-cat-chip{border-radius:var(--radius-full);white-space:nowrap;cursor:pointer;border:1px solid var(--border-color);background:var(--bg-card);color:var(--text-secondary);transition:all var(--transition-fast);padding:.3rem .75rem;font-size:.75rem;font-weight:600}.req-cat-chip:hover{border-color:var(--primary);color:var(--primary)}.req-cat-chip.active{background:var(--primary);color:#fff;border-color:var(--primary)}.req-grid{flex:1;grid-template-columns:repeat(auto-fill,minmax(145px,1fr));align-content:start;gap:.625rem;padding:.75rem 1rem;display:grid;overflow-y:auto}.req-item-card{background:var(--bg-card);border:1px solid var(--border-color);border-radius:var(--radius-md);cursor:pointer;transition:all var(--transition-fast);flex-direction:column;display:flex;position:relative;overflow:hidden}.req-item-card:hover{border-color:var(--primary);box-shadow:var(--shadow-glow);transform:translateY(-2px)}.req-item-card.in-cart{border-color:var(--accent-emerald)}.req-item-card.in-cart:after{content:"✓";background:var(--accent-emerald);color:#fff;z-index:1;border-radius:50%;justify-content:center;align-items:center;width:20px;height:20px;font-size:.65rem;font-weight:800;display:flex;position:absolute;top:.4rem;right:.4rem}.req-item-img{background:var(--bg-tertiary);flex-shrink:0;justify-content:center;align-items:center;height:100px;max-height:100px;display:flex;overflow:hidden}.req-item-img img{object-fit:cover;width:100%;height:100%}.req-item-info{flex-direction:column;flex:1;justify-content:space-between;min-height:55px;padding:.4rem .5rem;display:flex}.req-item-info h4{color:var(--text-primary);text-overflow:ellipsis;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;margin-bottom:.15rem;font-size:.78rem;font-weight:600;line-height:1.3;display:-webkit-box;overflow:hidden}.req-item-meta,.req-item-stock{color:var(--text-muted);font-size:.65rem}.req-item-stock.low{color:var(--accent-rose);font-weight:600}.req-cart{background:var(--bg-secondary);border-left:1px solid var(--border-color);flex-direction:column;flex-shrink:0;width:360px;display:flex}.req-cart-header{border-bottom:1px solid var(--border-color);justify-content:space-between;align-items:center;padding:.75rem 1rem;display:flex}.req-cart-header h3{color:var(--text-primary);align-items:center;gap:.5rem;margin:0;font-size:.95rem;font-weight:700;display:flex}.req-cart-close{color:var(--text-muted);cursor:pointer;background:0 0;border:none;padding:.25rem;display:none}.req-cart-form{border-bottom:1px solid var(--border-color);flex-direction:column;gap:.5rem;padding:.75rem 1rem;display:flex}.req-cart-form .form-input,.req-cart-form .form-select,.req-cart-form .form-textarea{padding:.4rem .6rem;font-size:.82rem}.req-cart-items{flex:1;padding:.5rem .75rem;overflow-y:auto}.req-cart-item{background:var(--bg-card);border-radius:var(--radius-md);border:1px solid var(--border-color);margin-bottom:.375rem;padding:.5rem}.req-cart-item-header{justify-content:space-between;align-items:flex-start;margin-bottom:.35rem;display:flex}.req-cart-item-header strong{color:var(--text-primary);flex:1;font-size:.8rem;line-height:1.3}.req-cart-item-actions{align-items:center;gap:.2rem;display:flex}.req-cart-qty-input{background:var(--bg-tertiary);border:1px solid var(--border-color);width:48px;color:var(--text-primary);border-radius:var(--radius-sm);text-align:center;outline:none;padding:.15rem .25rem;font-size:.82rem;font-weight:600}.req-cart-qty-input:focus{border-color:var(--primary);box-shadow:0 0 0 2px #6366f133}.req-cart-qty-input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.req-cart-qty-input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.req-cart-item-meta{color:var(--text-muted);align-items:center;gap:.5rem;font-size:.72rem;display:flex}.req-cart-summary{border-top:1px solid var(--border-color);flex-direction:column;gap:.5rem;padding:.75rem 1rem;display:flex}.req-cart-row{color:var(--text-primary);justify-content:space-between;align-items:center;font-size:.85rem;display:flex}.req-cart-row>span:first-child{color:var(--text-secondary)}.req-cart-total{border-top:1px solid var(--border-color);padding-top:.5rem;font-size:1.1rem;font-weight:800;color:var(--primary)!important}.req-cart-toggle{display:none}.req-manual-add{border-top:1px solid var(--border-color);background:var(--bg-card);align-items:center;gap:.5rem;padding:.5rem .75rem;display:flex}.req-manual-add input{padding:.35rem .6rem;font-size:.82rem}@media (width>=1025px) and (width<=1280px){.req-grid{grid-template-columns:repeat(auto-fill,minmax(130px,1fr));gap:.5rem}.req-item-img{height:85px;max-height:85px}.req-cart{width:320px}}@media (width>=769px) and (width<=1024px){.req-pos-layout{height:calc(100vh - var(--header-height));margin:0}.req-grid{grid-template-columns:repeat(3,1fr);gap:.5rem;padding:.625rem}.req-item-img{height:80px;max-height:80px}.req-item-info{min-height:48px;padding:.35rem .4rem}.req-item-info h4{font-size:.7rem}.req-cart{width:280px}}@media (width<=768px){.req-pos-layout{flex-direction:column;height:auto;margin:0}.req-cart{z-index:200;transition:transform var(--transition-normal);width:100%;position:fixed;inset:0;transform:translate(100%)}.req-cart.req-cart--open{transform:translate(0)}.req-cart-close{display:flex}.req-cart-toggle{z-index:100;background:var(--gradient-primary);color:#fff;border-radius:var(--radius-full);width:56px;height:56px;box-shadow:var(--shadow-lg);cursor:pointer;border:none;justify-content:center;align-items:center;display:flex;position:fixed;bottom:1.5rem;right:1.5rem}.req-cart-badge{background:var(--accent-rose);color:#fff;border-radius:var(--radius-full);justify-content:center;align-items:center;min-width:18px;height:18px;font-size:.6rem;font-weight:700;display:flex;position:absolute;top:-4px;right:-4px}.req-grid{grid-template-columns:repeat(auto-fill,minmax(120px,1fr))}.req-item-img{height:90px;max-height:90px}.req-cart-qty-input{font-size:16px}}.helpdesk{--hd-gold:#d4a017;--hd-gold-light:#ffc03f;--hd-gold-bg:#ffc03f1f;--hd-maroon:#a12316;--hd-maroon-dark:#7a1b11;--hd-maroon-light:#c4352a;--hd-bg:#fdfbf7;--hd-bg-alt:#fff8ed;--hd-card:#fff;--hd-text:#1f2937;--hd-text-sec:#6b7280;--hd-text-muted:#9ca3af;--hd-border:#e5e7eb;--hd-shadow:0 4px 6px -1px #00000012;--hd-shadow-lg:0 10px 25px -5px #0000001a;--hd-radius:14px;--hd-radius-sm:8px;--hd-transition:all .25s cubic-bezier(.4, 0, .2, 1)}[data-theme=dark] .helpdesk{--hd-gold:#ffc03f;--hd-gold-light:#ffd570;--hd-gold-bg:#ffc03f1a;--hd-maroon:#fb7185;--hd-maroon-dark:#e11d48;--hd-maroon-light:#fda4af;--hd-bg:var(--bg-body);--hd-bg-alt:var(--bg-secondary);--hd-card:var(--bg-card);--hd-text:var(--text-primary);--hd-text-sec:var(--text-secondary);--hd-text-muted:var(--text-muted);--hd-border:var(--border-color);--hd-shadow:var(--shadow-sm);--hd-shadow-lg:var(--shadow-lg)}.helpdesk{background:var(--hd-bg);min-height:100vh;color:var(--hd-text);font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif;overflow-x:hidden}.helpdesk-container{max-width:1100px;margin:0 auto;padding:0 1.5rem}.helpdesk-topbar{z-index:100;background:var(--hd-card);border-bottom:1px solid var(--hd-border);box-shadow:var(--hd-shadow);position:sticky;top:0}.helpdesk-topbar:before{content:"";z-index:10;background:linear-gradient(90deg,#ffc03f 0% 25%,#a12316 25% 100%);height:3px;position:absolute;top:0;left:0;right:0}.helpdesk-topbar-inner{justify-content:space-between;align-items:center;gap:1rem;max-width:1100px;margin:0 auto;padding:.75rem 1.5rem;display:flex}.helpdesk-topbar-brand{align-items:center;gap:.75rem;min-width:0;display:flex}.helpdesk-topbar-logo{object-fit:contain;border-radius:var(--hd-radius-sm);max-width:160px;max-height:44px}.helpdesk-topbar-logo-placeholder{border-radius:var(--hd-radius-sm);background:linear-gradient(135deg, var(--hd-maroon), var(--hd-maroon-light));color:#fff;flex-shrink:0;justify-content:center;align-items:center;width:40px;height:40px;display:flex}.helpdesk-topbar-title{flex-direction:column;min-width:0;display:flex}.helpdesk-topbar-name{color:var(--hd-maroon);letter-spacing:.5px;font-size:.95rem;font-weight:800;line-height:1.2}.helpdesk-topbar-sub{color:var(--hd-text-sec);font-size:.72rem;font-weight:500;line-height:1.3}.helpdesk-btn-login{background:linear-gradient(135deg, var(--hd-maroon), var(--hd-maroon-light));color:#fff;border-radius:var(--hd-radius-sm);cursor:pointer;transition:var(--hd-transition);white-space:nowrap;border:none;align-items:center;gap:.35rem;padding:.5rem 1rem;font-family:inherit;font-size:.82rem;font-weight:600;display:inline-flex}.helpdesk-btn-login:hover{transform:translateY(-1px);box-shadow:0 4px 12px #a123164d}.helpdesk-hero{text-align:center;background:linear-gradient(135deg,#7a1b11 0%,#a12316 25%,#c4352a 50%,#d4a017 80%,#ffc03f 100%);padding:4rem 1.5rem 3.5rem;position:relative;overflow:hidden}.helpdesk-hero-content{z-index:2;max-width:700px;margin:0 auto;position:relative}.helpdesk-hero-logo{object-fit:contain;background:#fff;border-radius:12px;max-width:220px;max-height:80px;margin-bottom:1.25rem;padding:.6rem 1.25rem;box-shadow:0 4px 20px #00000026}.helpdesk-hero-logo-placeholder{width:72px;height:72px;color:var(--hd-gold-light);background:#ffffff26;border:2px solid #ffffff40;border-radius:50%;justify-content:center;align-items:center;margin:0 auto 1.25rem;display:flex}.helpdesk-hero-badge{-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);color:var(--hd-gold-light);letter-spacing:.3px;background:#ffffff26;border:1px solid #fff3;border-radius:50px;align-items:center;gap:.4rem;margin-bottom:1.5rem;padding:.4rem 1rem;font-size:.78rem;font-weight:600;display:inline-flex}.helpdesk-hero-title{color:#fff;letter-spacing:3px;text-shadow:0 2px 10px #0003;margin-bottom:.75rem;font-size:2.8rem;font-weight:900;line-height:1.1}.helpdesk-hero-fullname{color:#ffffffd9;margin-bottom:1.5rem;font-size:1rem;font-weight:400;line-height:1.6}.helpdesk-hero-divider{background:linear-gradient(90deg,#ffc03f,#ffd570);border-radius:2px;width:60px;height:3px;margin:0 auto 1.25rem}.helpdesk-hero-tagline-wrapper{align-items:center;gap:.5rem;min-height:1.8rem;display:inline-flex}.helpdesk-tagline-icon{color:var(--hd-gold-light);flex-shrink:0}.helpdesk-hero-tagline-text{color:#ffffffe6;font-size:.95rem;font-style:italic;font-weight:500;animation:.5s ease-out helpdesk-taglineFade}@keyframes helpdesk-taglineFade{0%{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}.helpdesk-hero-shape{pointer-events:none;border-radius:50%;position:absolute}.helpdesk-hero-shape-1{background:#ffc03f0f;width:300px;height:300px;top:-80px;right:-60px}.helpdesk-hero-shape-2{background:#ffffff0a;width:200px;height:200px;bottom:-50px;left:-40px}.helpdesk-hero-shape-3{background:#ffc03f0d;width:120px;height:120px;top:40%;left:10%}.helpdesk-features{background:var(--hd-bg);padding:3rem 0}.helpdesk-features-grid{grid-template-columns:repeat(3,1fr);gap:1.25rem;display:grid}.helpdesk-feature-card{background:var(--hd-card);border:1px solid var(--hd-border);border-radius:var(--hd-radius);text-align:center;transition:var(--hd-transition);padding:1.5rem}.helpdesk-feature-card:hover{box-shadow:var(--hd-shadow-lg);transform:translateY(-3px)}.helpdesk-feature-icon{border-radius:12px;justify-content:center;align-items:center;width:52px;height:52px;margin:0 auto 1rem;display:flex}.helpdesk-feature-card h3{color:var(--hd-text);margin-bottom:.4rem;font-size:.95rem;font-weight:700}.helpdesk-feature-card p{color:var(--hd-text-sec);font-size:.82rem;line-height:1.5}.helpdesk-section-header{text-align:center;margin-bottom:2rem}.helpdesk-section-header h2{color:var(--hd-text);margin-bottom:.4rem;font-size:1.5rem;font-weight:800}.helpdesk-section-header p{color:var(--hd-text-sec);font-size:.88rem}.helpdesk-staff{background:var(--hd-bg-alt);padding:3rem 0 3.5rem}.helpdesk-staff-grid{grid-template-columns:repeat(auto-fill,minmax(190px,1fr));gap:1.25rem;display:grid}.helpdesk-staff-card{background:var(--hd-card);border:1px solid var(--hd-border);border-radius:var(--hd-radius);text-align:center;transition:var(--hd-transition);padding:1.5rem 1rem;animation:.5s ease-out both helpdesk-fadeUp}.helpdesk-staff-card:hover{box-shadow:var(--hd-shadow-lg);transform:translateY(-4px)}.helpdesk-staff-photo{width:80px;height:80px;transition:var(--hd-transition);border-radius:50%;justify-content:center;align-items:center;margin:0 auto 1rem;display:flex}.helpdesk-staff-card:hover .helpdesk-staff-photo{transform:scale(1.05)}.helpdesk-staff-name{color:var(--hd-text);margin-bottom:.5rem;font-size:1rem;font-weight:700}.helpdesk-staff-division{text-transform:uppercase;letter-spacing:.3px;border-radius:50px;align-items:center;gap:.3rem;margin-bottom:.6rem;padding:.25rem .7rem;font-size:.72rem;font-weight:700;display:inline-flex}.helpdesk-staff-desc{color:var(--hd-text-sec);font-size:.78rem;line-height:1.5}.helpdesk-contact{background:var(--hd-bg);padding:3rem 0}.helpdesk-contact-card{border-radius:var(--hd-radius);color:#fff;background:linear-gradient(135deg,#7a1b11 0%,#a12316 50%,#c4352a 100%);align-items:flex-start;gap:2rem;padding:2.5rem;display:flex}[data-theme=dark] .helpdesk-contact-card{background:linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary))}.helpdesk-contact-left{flex:1;min-width:0}.helpdesk-contact-left h2{margin-bottom:.5rem;font-size:1.35rem;font-weight:800}.helpdesk-contact-left p{opacity:.85;font-size:.88rem;line-height:1.5}.helpdesk-contact-info{flex-direction:column;flex-shrink:0;gap:.75rem;display:flex}.helpdesk-contact-item{opacity:.9;white-space:nowrap;align-items:center;gap:.6rem;font-size:.85rem;display:flex}.helpdesk-contact-item svg{color:var(--hd-gold-light);flex-shrink:0}.helpdesk-footer{background:var(--hd-card);border-top:1px solid var(--hd-border);text-align:center;padding:1.5rem}.helpdesk-footer p{color:var(--hd-text-sec);font-size:.78rem;font-weight:500}.helpdesk-footer-sub{margin-top:.2rem;color:var(--hd-text-muted)!important;font-size:.7rem!important;font-weight:400!important}@keyframes helpdesk-fadeUp{0%{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}@media (width<=768px){.helpdesk-hero{padding:3rem 1.25rem 2.5rem}.helpdesk-hero-title{letter-spacing:2px;font-size:2rem}.helpdesk-hero-fullname{font-size:.9rem}.helpdesk-features-grid{grid-template-columns:1fr;gap:1rem}.helpdesk-feature-card{text-align:left;align-items:center;gap:1rem;padding:1rem 1.25rem;display:flex}.helpdesk-feature-icon{flex-shrink:0;margin:0}.helpdesk-staff-grid{grid-template-columns:repeat(2,1fr);gap:1rem}.helpdesk-contact-card{flex-direction:column;gap:1.25rem;padding:1.75rem}.helpdesk-contact-item{white-space:normal}.helpdesk-topbar-inner{padding:.6rem 1rem}.helpdesk-topbar-sub{display:none}.helpdesk-btn-login{padding:.45rem .75rem;font-size:.78rem}}@media (width<=480px){.helpdesk-hero-title{letter-spacing:1.5px;font-size:1.65rem}.helpdesk-hero-badge{padding:.3rem .75rem;font-size:.72rem}.helpdesk-staff-grid{grid-template-columns:repeat(2,1fr);gap:.75rem}.helpdesk-staff-card{padding:1.25rem .75rem}.helpdesk-staff-photo{width:64px;height:64px}.helpdesk-features,.helpdesk-staff,.helpdesk-contact{padding:2rem 0}.helpdesk-section-header h2{font-size:1.25rem}}@media (prefers-reduced-motion:reduce){.helpdesk-staff-card{animation:none}.helpdesk-feature-card:hover,.helpdesk-staff-card:hover{transform:none}}:root{--font-family:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;--primary:#059669;--primary-light:#10b981;--primary-dark:#047857;--primary-bg:#05966914;--accent-emerald:#059669;--accent-emerald-bg:#0596691a;--accent-amber:#ffc03f;--accent-amber-bg:#ffc03f26;--accent-rose:#e11d48;--accent-rose-bg:#e11d481a;--accent-sky:#0ea5e9;--accent-sky-bg:#0ea5e91a;--accent-violet:#7c3aed;--bg-body:#f8fafc;--bg-card:#fff;--bg-secondary:#f1f5f9;--bg-tertiary:#e2e8f0;--text-primary:#0f172a;--text-secondary:#475569;--text-muted:#94a3b8;--text-inverse:#fff;--border-color:#e2e8f0;--border-focus:#059669;--shadow-sm:0 1px 2px #0000000d;--shadow-md:0 4px 6px -1px #00000012, 0 2px 4px -2px #0000000d;--shadow-lg:0 10px 15px -3px #00000014, 0 4px 6px -4px #0000000d;--shadow-xl:0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000000d;--radius-sm:6px;--radius-md:10px;--radius-lg:14px;--radius-xl:20px;--sidebar-width:260px;--header-height:60px;--transition:all .2s cubic-bezier(.4, 0, .2, 1);--transition-fast:.15s cubic-bezier(.4, 0, .2, 1);--transition-normal:.25s cubic-bezier(.4, 0, .2, 1);--radius-full:9999px;--shadow-glow:0 4px 14px #0596692e;--gradient-primary:linear-gradient(135deg, #059669, #10b981)}[data-theme=dark]{--primary:#10b981;--primary-light:#34d399;--primary-dark:#059669;--primary-bg:#10b9811f;--accent-emerald:#34d399;--accent-emerald-bg:#34d3991f;--accent-amber:#ffc03f;--accent-amber-bg:#ffc03f26;--accent-rose:#fb7185;--accent-rose-bg:#fb71851f;--accent-sky:#38bdf8;--accent-sky-bg:#38bdf81f;--bg-body:#0b1120;--bg-card:#141b2d;--bg-secondary:#1a2332;--bg-tertiary:#243044;--text-primary:#e2e8f0;--text-secondary:#94a3b8;--text-muted:#64748b;--text-inverse:#0f172a;--border-color:#1e293b;--border-focus:#10b981;--shadow-sm:0 1px 2px #0000004d;--shadow-md:0 4px 6px #0000004d;--shadow-lg:0 10px 15px #0000004d;--shadow-xl:0 20px 25px #0006;--shadow-glow:0 4px 14px #10b98133;--gradient-primary:linear-gradient(135deg, #059669, #10b981)}*,:before,:after{box-sizing:border-box;margin:0;padding:0}html{scroll-behavior:smooth;font-size:16px}body{font-family:var(--font-family);background:var(--bg-body);color:var(--text-primary);-webkit-font-smoothing:antialiased;line-height:1.6;overflow-x:hidden}a{color:var(--primary);text-decoration:none}img{max-width:100%;height:auto}::-webkit-scrollbar{width:6px;height:6px}::-webkit-scrollbar-track{background:0 0}::-webkit-scrollbar-thumb{background:var(--text-muted);border-radius:3px}::-webkit-scrollbar-thumb:hover{background:var(--text-secondary)}@keyframes fadeIn{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}@keyframes slideIn{0%{opacity:0;transform:translate(-12px)}to{opacity:1;transform:translate(0)}}@keyframes pulse{0%,to{opacity:1}50%{opacity:.5}}@keyframes spin{to{transform:rotate(360deg)}}@keyframes shimmer{0%{background-position:-200% 0}to{background-position:200% 0}}.animate-fade-in{animation:.3s ease-out fadeIn}.animate-slide-in{animation:.3s ease-out slideIn}.spinner{border:2.5px solid var(--border-color);border-top-color:var(--primary);border-radius:50%;width:20px;height:20px;animation:.6s linear infinite spin;display:inline-block}.card{background:var(--bg-card);border:1px solid var(--border-color);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);transition:var(--transition);padding:1.5rem}.card:hover{box-shadow:var(--shadow-md)}.card-glass{-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);background:#ffffffb3;border:1px solid #fff3}[data-theme=dark] .card-glass{background:#141b2dcc;border-color:#ffffff0d}.glass-effect{-webkit-backdrop-filter:blur(16px);background:#ffffffd9}[data-theme=dark] .glass-effect{background:#141b2dd9}.btn{border-radius:var(--radius-md);font-family:var(--font-family);cursor:pointer;transition:var(--transition);white-space:nowrap;border:none;justify-content:center;align-items:center;gap:.5rem;padding:.55rem 1.1rem;font-size:.85rem;font-weight:600;line-height:1.4;text-decoration:none;display:inline-flex}.btn:disabled{opacity:.55;cursor:not-allowed}.btn-primary{background:linear-gradient(135deg, var(--primary), var(--primary-light));color:#fff;box-shadow:0 2px 8px #4f46e540}.btn-primary:hover:not(:disabled){transform:translateY(-1px);box-shadow:0 4px 16px #4f46e559}.btn-success{background:linear-gradient(135deg, var(--accent-emerald), #10b981);color:#fff}.btn-success:hover:not(:disabled){transform:translateY(-1px)}.btn-danger{background:linear-gradient(135deg, var(--accent-rose), #f43f5e);color:#fff}.btn-danger:hover:not(:disabled){transform:translateY(-1px)}.btn-warning{background:linear-gradient(135deg, var(--accent-amber), #f59e0b);color:#fff}.btn-ghost{color:var(--text-secondary);border:1px solid var(--border-color);background:0 0}.btn-ghost:hover:not(:disabled){background:var(--bg-secondary);color:var(--text-primary)}.btn-sm{padding:.35rem .75rem;font-size:.78rem}.btn-lg{padding:.75rem 1.5rem;font-size:.95rem}.btn-icon{min-width:34px;min-height:34px;padding:.45rem}.form-group{flex-direction:column;gap:.35rem;display:flex}.form-label{color:var(--text-secondary);font-size:.82rem;font-weight:600}.form-input,.form-select,.form-textarea{border:1.5px solid var(--border-color);border-radius:var(--radius-md);width:100%;font-family:var(--font-family);color:var(--text-primary);background:var(--bg-card);transition:var(--transition);outline:none;padding:.6rem .85rem;font-size:.88rem}.form-input:focus,.form-select:focus,.form-textarea:focus{border-color:var(--border-focus);box-shadow:0 0 0 3px var(--primary-bg)}.form-textarea{resize:vertical;min-height:80px}.form-select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");background-position:right .75rem center;background-repeat:no-repeat;padding-right:2rem}.input-compact{height:auto;padding:.35rem .6rem;font-size:.82rem}.table-input{width:100%;max-width:140px;height:auto;padding:.35rem .5rem;font-size:.82rem}.qty-input{text-align:center;width:60px}.table-wrapper{border:1px solid var(--border-color);border-radius:var(--radius-lg);overflow-x:auto}table{border-collapse:collapse;width:100%}th{text-align:left;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;background:var(--bg-secondary);border-bottom:1px solid var(--border-color);padding:.75rem 1rem;font-size:.78rem;font-weight:700}td{color:var(--text-primary);border-bottom:1px solid var(--border-color);padding:.75rem 1rem;font-size:.85rem}tr:last-child td{border-bottom:none}tr:hover td{background:var(--primary-bg)}.badge{text-transform:uppercase;letter-spacing:.3px;border-radius:50px;align-items:center;gap:.3rem;padding:.2rem .65rem;font-size:.72rem;font-weight:700;display:inline-flex}.badge-pending{background:var(--accent-amber-bg);color:var(--accent-amber)}.badge-approved{background:var(--accent-emerald-bg);color:var(--accent-emerald)}.badge-rejected{background:var(--accent-rose-bg);color:var(--accent-rose)}.badge-revision{background:var(--accent-sky-bg);color:var(--accent-sky)}.badge-fulfilled{background:var(--primary-bg);color:var(--primary)}.badge-received{background:var(--accent-emerald-bg);color:var(--accent-emerald);border:1px solid var(--accent-emerald)}.badge-urgent{background:var(--accent-rose-bg);color:var(--accent-rose)}.badge-tinggi{background:var(--accent-amber-bg);color:var(--accent-amber)}.badge-normal{background:var(--bg-secondary);color:var(--text-secondary)}.badge-rendah{background:var(--bg-tertiary);color:var(--text-muted)}.badge-superadmin{color:var(--accent-violet);background:linear-gradient(135deg,#7c3aed26,#4f46e526)}.badge-admin{background:var(--primary-bg);color:var(--primary)}.badge-staff{background:var(--bg-secondary);color:var(--text-secondary)}.page-header{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:1rem;margin-bottom:1.5rem;display:flex}.page-title{color:var(--text-primary);align-items:center;gap:.5rem;font-size:1.35rem;font-weight:800;display:flex}.page-subtitle{color:var(--text-muted);margin-top:.15rem;font-size:.82rem}.stats-grid{grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem;margin-bottom:1.5rem;display:grid}.stat-card{background:var(--bg-card);border:1px solid var(--border-color);border-radius:var(--radius-lg);transition:var(--transition);align-items:center;gap:1rem;padding:1.25rem;display:flex}.stat-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}.stat-icon{border-radius:var(--radius-md);flex-shrink:0;justify-content:center;align-items:center;width:48px;height:48px;display:flex}.stat-value{color:var(--text-primary);font-size:1.5rem;font-weight:800;line-height:1.2}.stat-label{color:var(--text-muted);font-size:.78rem;font-weight:500}.modal-overlay{-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);z-index:1000;background:#00000080;justify-content:center;align-items:center;padding:1rem;animation:.15s fadeIn;display:flex;position:fixed;inset:0}.modal{background:var(--bg-card);border-radius:var(--radius-xl);width:100%;max-width:560px;max-height:90vh;box-shadow:var(--shadow-xl);animation:.2s fadeIn;overflow-y:auto}.modal-header{border-bottom:1px solid var(--border-color);justify-content:space-between;align-items:center;padding:1.25rem 1.5rem;display:flex}.modal-header h2{font-size:1.1rem;font-weight:700}.modal-body{flex-direction:column;gap:1rem;padding:1.5rem;display:flex}.modal-footer{border-top:1px solid var(--border-color);justify-content:flex-end;gap:.5rem;padding:1rem 1.5rem;display:flex}.tabs{border-bottom:2px solid var(--border-color);gap:.25rem;margin-bottom:1.5rem;display:flex;overflow-x:auto}.tab{color:var(--text-muted);cursor:pointer;transition:var(--transition);white-space:nowrap;border-bottom:2px solid #0000;margin-bottom:-2px;padding:.65rem 1.25rem;font-size:.85rem;font-weight:600}.tab:hover{color:var(--text-primary)}.tab.active{color:var(--primary);border-bottom-color:var(--primary)}.pagination{justify-content:center;align-items:center;gap:.5rem;margin-top:1.5rem;display:flex}.pagination button{border-radius:var(--radius-sm);min-width:36px;height:36px}.pagination .active{background:var(--primary);color:#fff}.empty-state{color:var(--text-muted);text-align:center;flex-direction:column;justify-content:center;align-items:center;padding:3rem 1rem;display:flex}.empty-state svg{opacity:.3;margin-bottom:1rem}.empty-state p{font-size:.9rem}.progress-bar{background:var(--bg-tertiary);border-radius:4px;width:100%;height:8px;overflow:hidden}.progress-fill{border-radius:4px;height:100%;transition:width .5s}.progress-fill.green{background:linear-gradient(90deg, var(--accent-emerald), #10b981)}.progress-fill.amber{background:linear-gradient(90deg, var(--accent-amber), #f59e0b)}.progress-fill.red{background:linear-gradient(90deg, var(--accent-rose), #f43f5e)}.filter-bar{flex-wrap:wrap;align-items:center;gap:.75rem;margin-bottom:1rem;display:flex}.filter-bar .form-input,.filter-bar .form-select{max-width:220px;padding:.5rem .75rem;font-size:.82rem}.quick-filters{flex-wrap:wrap;gap:.5rem;width:100%;margin-bottom:.25rem;display:flex}.chip{border-radius:var(--radius-full);background:var(--bg-card);border:1px solid var(--border-color);color:var(--text-secondary);cursor:pointer;transition:var(--transition);padding:.35rem .85rem;font-size:.75rem;font-weight:600}.chip:hover{border-color:var(--primary);color:var(--primary);background:var(--primary-bg)}.chip.active{background:var(--primary);color:#fff;border-color:var(--primary);box-shadow:0 2px 6px #05966933}@media (width<=768px){html{font-size:13px}.page-header{flex-direction:column;align-items:flex-start;gap:.75rem}.stats-grid{grid-template-columns:repeat(2,1fr);gap:.75rem}.filter-bar{flex-direction:column;align-items:stretch}.filter-bar .form-input,.filter-bar .form-select{max-width:100%}.modal{max-width:100%;margin:.5rem}.form-input,.form-select,.form-textarea{font-size:16px}table th:last-child,table td:last-child{background:var(--bg-card);position:sticky;right:0;box-shadow:-2px 0 5px #0000000d}table th:last-child{background:var(--bg-secondary);z-index:2}table td:last-child{background:var(--bg-card);z-index:1}table tr:hover td:last-child{background:var(--bg-secondary)}}@media (width<=480px){.stats-grid{grid-template-columns:1fr}.layout-content{padding:1rem}}
