@import"https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap";@import"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css";:root{--primary-color: #0284c7;--primary-hover: #0369a1;--secondary-color: #06b6d4;--accent-color: #14b8a6;--success-color: #10b981;--dark-bg: #0f172a;--light-text: #f8fafc;--glass-bg: rgba(255, 255, 255, .1);--glass-border: rgba(255, 255, 255, .2);--glass-shadow: 0 4px 30px rgba(0, 0, 0, .1);--gradient-primary: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);--gradient-accent: linear-gradient(135deg, #14b8a6 0%, #10b981 100%)}*{box-sizing:border-box;margin:0;padding:0}body{font-family:Outfit,sans-serif;color:#334155;line-height:1.6;background-color:#f8fafc;overflow-x:hidden}.app{display:flex;flex-direction:column;min-height:100vh}.main-content{flex:1}.container{max-width:1200px;margin:0 auto;padding:0 2rem}h1,h2,h3,h4,h5,h6{color:#1e293b;font-weight:700;line-height:1.2;letter-spacing:-.025em}button{font-family:inherit;cursor:pointer}img{max-width:100%;display:block}.glass-panel{background:#ffffffb3;backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.3);box-shadow:0 8px 32px #1f268712}.glass-nav{background:#ffffffd9;backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid rgba(255,255,255,.3)}@keyframes fadeIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@keyframes slideUp{0%{transform:translateY(100%);opacity:0}to{transform:translateY(0);opacity:1}}.animate-fade-in{animation:fadeIn .8s ease-out forwards}.animate-slide-up{animation:slideUp .6s ease-out forwards}.loading{display:flex;justify-content:center;align-items:center;min-height:200px;color:var(--primary-color);font-weight:600}.loading:after{content:"";width:24px;height:24px;border:3px solid rgba(2,132,199,.3);border-top-color:var(--primary-color);border-radius:50%;margin-left:12px;animation:spin .8s linear infinite}@keyframes spin{to{transform:rotate(360deg)}}.text-gradient{background:linear-gradient(135deg,var(--primary-color),var(--secondary-color));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.toast-container{position:fixed;top:20px;right:20px;z-index:9999;display:flex;flex-direction:column;gap:12px;max-width:400px}.toast{display:flex;align-items:center;padding:14px 16px;border-radius:12px;background:#fff;box-shadow:0 8px 30px #0000001f,0 4px 10px #00000014;position:relative;overflow:hidden;min-width:300px}.toast-enter{animation:slideIn .3s ease-out forwards}.toast-exit{animation:slideOut .3s ease-in forwards}@keyframes slideIn{0%{transform:translate(120%);opacity:0}to{transform:translate(0);opacity:1}}@keyframes slideOut{0%{transform:translate(0);opacity:1}to{transform:translate(120%);opacity:0}}.toast-icon{font-size:1.4rem;margin-right:12px;display:flex;align-items:center;justify-content:center}.toast-success .toast-icon{color:#10b981}.toast-error .toast-icon{color:#ef4444}.toast-info .toast-icon{color:#3b82f6}.toast-warning .toast-icon{color:#f59e0b}.toast-success{border-left:4px solid #10b981}.toast-error{border-left:4px solid #ef4444}.toast-info{border-left:4px solid #3b82f6}.toast-warning{border-left:4px solid #f59e0b}.toast-message{flex:1;font-size:.95rem;color:#1f2937;font-weight:500;line-height:1.4}.toast-close{background:none;border:none;color:#9ca3af;cursor:pointer;padding:4px;margin-left:8px;border-radius:4px;transition:all .2s;display:flex;align-items:center;justify-content:center}.toast-close:hover{background:#f3f4f6;color:#6b7280}.toast-progress{position:absolute;bottom:0;left:0;height:3px;width:100%;animation:progress linear forwards}.toast-success .toast-progress{background:linear-gradient(90deg,#10b981,#34d399)}.toast-error .toast-progress{background:linear-gradient(90deg,#ef4444,#f87171)}.toast-info .toast-progress{background:linear-gradient(90deg,#3b82f6,#60a5fa)}.toast-warning .toast-progress{background:linear-gradient(90deg,#f59e0b,#fbbf24)}@keyframes progress{0%{width:100%}to{width:0%}}.toast-success .toast-icon{animation:successPulse .5s ease-out}@keyframes successPulse{0%{transform:scale(0)}50%{transform:scale(1.2)}to{transform:scale(1)}}.toast-error{animation:slideIn .3s ease-out forwards,shake .4s ease-out .3s}@keyframes shake{0%,to{transform:translate(0)}20%,60%{transform:translate(-5px)}40%,80%{transform:translate(5px)}}@media(max-width:480px){.toast-container{left:10px;right:10px;max-width:none}.toast{min-width:auto}}.navbar{position:sticky;top:0;z-index:1000;padding:1rem 0;transition:all .3s ease}.navbar.scrolled{padding:.75rem 0;box-shadow:var(--glass-shadow)}.navbar .container{display:flex;justify-content:space-between;align-items:center;max-width:1280px}.navbar-brand{text-decoration:none;display:flex;align-items:center;gap:.5rem}.brand-text{font-size:1.75rem;font-weight:700;background:linear-gradient(135deg,var(--primary-color),var(--secondary-color));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;letter-spacing:-.03em}.mobile-toggle{display:none;background:none;border:none;font-size:1.5rem;color:var(--dark-bg);cursor:pointer;transition:color .3s ease}.mobile-toggle:hover{color:var(--primary-color)}.navbar-menu{display:flex;align-items:center;gap:2.5rem}.nav-links{display:flex;list-style:none;margin:0;padding:0;gap:2rem}.nav-links a{text-decoration:none;color:#64748b;font-weight:500;transition:all .3s ease;position:relative}.nav-links a:hover,.nav-links a.active{color:var(--primary-color)}.nav-links a:after{content:"";position:absolute;width:0;height:2px;bottom:-4px;left:0;background-color:var(--primary-color);transition:width .3s ease}.nav-links a:hover:after{width:100%}.badge-link{position:relative}.badge{position:absolute;top:-8px;right:-12px;background:var(--secondary-color);color:#fff;font-size:.7rem;padding:2px 6px;border-radius:10px;font-weight:600;box-shadow:0 2px 4px #06b6d466}.nav-actions{display:flex;align-items:center;gap:1.5rem}.cart-btn{position:relative;background:#0284c71a;border:none;color:var(--primary-color);width:40px;height:40px;border-radius:12px;display:flex;align-items:center;justify-content:center;text-decoration:none;transition:all .3s cubic-bezier(.4,0,.2,1)}.cart-btn:hover{background:var(--primary-color);color:#fff;transform:translateY(-2px);box-shadow:0 4px 12px #0284c74d}.cart-badge{position:absolute;top:-5px;right:-5px;background:var(--secondary-color);color:#fff;font-size:.7rem;min-width:18px;height:18px;display:flex;align-items:center;justify-content:center;border-radius:999px;font-weight:600;border:2px solid white}.btn{padding:.6rem 1.4rem;border-radius:12px;font-weight:600;text-decoration:none;transition:all .3s cubic-bezier(.4,0,.2,1);border:none;cursor:pointer;font-size:.95rem;display:inline-flex;align-items:center;justify-content:center}.btn-outline{background:transparent;border:2px solid rgba(2,132,199,.2);color:var(--primary-color)}.btn-outline:hover{background:#0284c70d;border-color:var(--primary-color);transform:translateY(-2px)}.btn-primary{background:var(--gradient-primary);color:#fff;box-shadow:0 4px 12px #0284c74d}.btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 20px #0284c766;filter:brightness(1.1)}.user-dropdown{position:relative}.dropdown-toggle{background:#fff;border:1px solid rgba(0,0,0,.1);padding:.5rem 1rem;border-radius:12px;cursor:pointer;display:flex;align-items:center;gap:.75rem;font-weight:500;color:#334155;transition:all .3s ease}.dropdown-toggle:hover{border-color:var(--primary-color);background:#ffffffe6;box-shadow:0 4px 12px #0000000d}.dropdown-menu{position:absolute;top:120%;right:0;background:#ffffffe6;backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border-radius:16px;box-shadow:0 10px 40px #0000001a;min-width:220px;padding:.5rem;border:1px solid rgba(255,255,255,.5);z-index:1001;animation:fadeIn .2s ease-out;transform-origin:top right}.dropdown-menu a,.dropdown-menu button{display:flex;align-items:center;gap:.75rem;width:100%;padding:.75rem 1rem;text-align:left;text-decoration:none;color:#475569;background:transparent;border:none;cursor:pointer;font-size:.95rem;border-radius:8px;transition:all .2s ease}.dropdown-menu a:hover,.dropdown-menu button:hover{background:#0284c714;color:var(--primary-color)}.dropdown-menu hr{margin:.5rem 0;border:none;border-top:1px solid rgba(0,0,0,.06)}@media(max-width:900px){.mobile-toggle{display:block;z-index:1002}.navbar-menu{position:fixed;inset:0;background:#fffffffa;-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);flex-direction:column;justify-content:center;padding:2rem;display:none;z-index:1001}.navbar-menu.active{display:flex;animation:fadeIn .3s ease-out}.nav-links{flex-direction:column;width:100%;gap:1.5rem;text-align:center;margin-bottom:2rem}.nav-links a{font-size:1.25rem;color:#1e293b}.nav-actions{flex-direction:column;width:100%;gap:1rem}.nav-actions .btn{width:100%;max-width:300px}}.footer{background:#1a1a2e;color:#fff;padding:3rem 0 1rem;margin-top:4rem}.footer .container{max-width:100%;margin:0 auto;padding:0 4rem}.footer-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem}.footer-section h5{font-size:1.1rem;margin-bottom:1rem;font-weight:600}.footer-section p{color:#aaa;font-size:.9rem;line-height:1.6}.footer-section ul{list-style:none;padding:0;margin:0}.footer-section ul li{margin-bottom:.5rem}.footer-section ul li a{color:#aaa;text-decoration:none;font-size:.9rem;transition:color .3s ease}.footer-section ul li a:hover{color:#667eea}.contact-info li{display:flex;align-items:center;gap:.5rem;color:#aaa;font-size:.9rem}.contact-info li i{color:#667eea;width:16px}.social-icons{display:flex;gap:1rem;margin-top:1rem}.social-icons a{color:#fff;font-size:1rem;width:36px;height:36px;border-radius:50%;background:#ffffff1a;display:flex;align-items:center;justify-content:center;transition:all .3s ease}.social-icons a:hover{background:#667eea;transform:translateY(-3px)}.footer hr{border:none;border-top:1px solid rgba(255,255,255,.1);margin:2rem 0}.footer-bottom{text-align:center}.footer-bottom p{color:#aaa;font-size:.9rem;margin:0}@media(max-width:768px){.footer-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:480px){.footer-grid{grid-template-columns:1fr}}.product-card{background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 4px 20px #00000014;transition:all .4s cubic-bezier(.175,.885,.32,1.275);text-decoration:none;color:inherit;display:flex;flex-direction:column;height:100%;width:100%;border:1px solid rgba(0,0,0,.04);position:relative}.product-card:hover{transform:translateY(-10px);box-shadow:0 20px 40px #0000001f;border-color:#0284c733}.product-image{position:relative;height:280px;overflow:hidden;width:100%;flex-shrink:0;background:transparent;display:flex;align-items:center;justify-content:center}.product-image img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;transition:transform .5s cubic-bezier(.4,0,.2,1),opacity .3s ease;display:block;padding:0;box-sizing:border-box}.product-image.cover-fit img{width:100%;height:100%;object-fit:cover;padding:0}.product-card:hover .product-image img{transform:scale(1.05)}.image-placeholder{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:#cbd5e1;font-size:3rem;animation:pulse 1.5s ease-in-out infinite}@keyframes pulse{0%,to{opacity:.4}50%{opacity:.8}}.product-image:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(to bottom,transparent 60%,rgba(0,0,0,.02) 100%);opacity:0;transition:opacity .3s ease;pointer-events:none}.product-card:hover .product-image:after{opacity:1}.product-badge{position:absolute;top:15px;padding:6px 14px;border-radius:50px;font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.5px;z-index:2;box-shadow:0 4px 10px #0000001a;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}.product-badge.closed{background:#dc3545e6;color:#fff;right:15px}.product-badge.negotiable{background:#10b981e6;color:#fff;left:15px}.product-details{padding:1.75rem;display:flex;flex-direction:column;flex:1;width:100%;box-sizing:border-box;background:#fff}.product-category{font-size:.75rem;font-weight:600;color:var(--primary-color);margin-bottom:.5rem;text-transform:uppercase;letter-spacing:1px}.product-title{font-size:1.15rem;font-weight:700;margin:0 0 .75rem;color:#1e293b;line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:3.2em}.product-meta{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.25rem;font-size:.85rem;color:#64748b}.product-condition{background:#f1f5f9;padding:4px 10px;border-radius:6px;font-size:.75rem;font-weight:500}.product-seller{display:flex;align-items:center;gap:6px}.product-seller i{color:#cbd5e1}.product-footer{margin-top:auto;display:flex;justify-content:space-between;align-items:center;border-top:1px solid #f1f5f9;padding-top:1.25rem}.product-price{font-size:1.5rem;font-weight:800;color:#0f172a;letter-spacing:-.02em}.add-cart-btn{background:#f1f5f9;border:none;width:42px;height:42px;border-radius:12px;color:var(--primary-color);cursor:pointer;transition:all .3s cubic-bezier(.4,0,.2,1);display:flex;align-items:center;justify-content:center;font-size:1rem}.add-cart-btn:hover{background:var(--primary-color);color:#fff;transform:scale(1.08);box-shadow:0 6px 20px #0284c759}.home{overflow-x:hidden}.hero{background:url(/images/hero-bg.jpg) no-repeat center center/cover;padding:8rem 0;position:relative;min-height:80vh;display:flex;align-items:center}.hero:before{content:"";position:absolute;inset:0;background:#0f172a66;z-index:1}.hero-content{position:relative;z-index:2;display:flex;align-items:center;justify-content:space-between;gap:4rem}.hero-text{flex:1;max-width:650px;animation:fadeIn 1s ease-out}.hero-text h1{font-size:4rem;font-weight:800;line-height:1.1;margin-bottom:1.5rem;color:#fff;text-shadow:0 4px 20px rgba(0,0,0,.3)}.hero-text p{font-size:1.25rem;color:#ffffffe6;margin-bottom:2.5rem;line-height:1.6;font-weight:400}.hero-buttons{display:flex;gap:1.5rem}.hero-buttons .btn{padding:1rem 2rem;font-size:1.1rem}.hero-buttons .btn-primary{background:#fff;color:var(--primary-color);box-shadow:0 4px 15px #0003}.hero-buttons .btn-primary:hover{background:#f8fafc;transform:translateY(-3px);box-shadow:0 8px 25px #0000004d}.hero-buttons .btn-outline{border-color:#ffffff80;color:#fff;background:#ffffff1a;-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px)}.hero-buttons .btn-outline:hover{background:#fff3;border-color:#fff}.hero-image{flex:1;display:flex;justify-content:flex-end;animation:slideUp 1s ease-out}.hero-glass-card{background:#ffffff1a;backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);padding:2rem;border-radius:24px;border:1px solid rgba(255,255,255,.2);box-shadow:0 20px 50px #0003;transform:perspective(1000px) rotateY(-5deg);transition:transform .5s ease}.hero-glass-card:hover{transform:perspective(1000px) rotateY(0)}.featured-products{padding:6rem 0;background:#f1f5f9}.section-header{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:3rem}.section-header h2{font-size:2.5rem;color:#1e293b;position:relative;display:inline-block}.section-header h2:after{content:"";position:absolute;left:0;bottom:-10px;width:60px;height:4px;background:var(--primary-color);border-radius:2px}.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:2.5rem}.categories{padding:6rem 0;background:#fff}.categories h2{text-align:center;margin-bottom:4rem;font-size:2.5rem;color:#1e293b}.categories-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:2rem}.category-card{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:2.5rem 1.5rem;background:#fff;border-radius:20px;text-decoration:none;color:#475569;transition:all .4s cubic-bezier(.175,.885,.32,1.275);border:1px solid #f1f5f9;box-shadow:0 4px 6px -1px #0000000d}.category-card:hover{transform:translateY(-10px);box-shadow:0 20px 25px -5px #0000001a,0 10px 10px -5px #0000000a;background:#fff;border-color:var(--primary-color)}.category-card i{font-size:3rem;background:linear-gradient(135deg,var(--primary-color),var(--secondary-color));-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;margin-bottom:1.5rem;transition:transform .3s ease}.category-card:hover i{transform:scale(1.1)}.category-card span{font-weight:600;font-size:1.1rem}.how-it-works{padding:6rem 0;background:#f8fafc;position:relative}.how-it-works h2{text-align:center;margin-bottom:5rem;font-size:2.5rem;color:#1e293b}.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:4rem;position:relative}.steps-grid:before{content:"";position:absolute;top:40px;left:15%;right:15%;height:2px;background:#e2e8f0;z-index:0;display:block}.step-card{text-align:center;position:relative;z-index:1}.step-icon{width:80px;height:80px;background:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 2rem;color:var(--primary-color);font-size:1.75rem;box-shadow:0 10px 15px -3px #0000001a;border:4px solid #f8fafc}.step-card h4{font-size:1.5rem;margin-bottom:1rem;color:#1e293b}.step-card p{color:#64748b;line-height:1.7}.cta{padding:8rem 0;background:var(--gradient-primary);color:#fff;position:relative;overflow:hidden}.cta:before{content:"";position:absolute;width:400px;height:400px;background:#ffffff1a;border-radius:50%;top:-100px;right:-100px}.cta-card{text-align:center;max-width:800px;margin:0 auto;position:relative;z-index:2}.cta-card h2{font-size:3.5rem;margin-bottom:1.5rem;color:#fff}.govt-approval{padding:4rem 0;background:#0f172a;color:#e2e8f0;text-align:center;border-top:1px solid rgba(255,255,255,.1)}@media(max-width:900px){.hero-content{flex-direction:column;text-align:center}.hero-buttons{justify-content:center}.hero-image{display:none}.steps-grid{grid-template-columns:1fr}.steps-grid:before{display:none}.section-header{flex-direction:column;align-items:flex-start;gap:1rem}.hero-text h1{font-size:2.5rem}}.auth-container{min-height:80vh;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#0f172a,#0284c7,#14b8a6);padding:2rem;position:relative;overflow:hidden}.auth-container:before{content:"";position:absolute;width:600px;height:600px;background:radial-gradient(circle,rgba(6,182,212,.2) 0%,transparent 70%);border-radius:50%;top:-200px;right:-200px;animation:pulse 15s ease-in-out infinite}.auth-container:after{content:"";position:absolute;width:500px;height:500px;background:radial-gradient(circle,rgba(20,184,166,.15) 0%,transparent 70%);border-radius:50%;bottom:-150px;left:-150px;animation:pulse 12s ease-in-out infinite reverse}@keyframes pulse{0%,to{transform:scale(1);opacity:.5}50%{transform:scale(1.1);opacity:.8}}.auth-card{background:#fffffff2;backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);width:100%;max-width:450px;padding:2.5rem;border-radius:20px;box-shadow:0 20px 60px #0000004d;border:1px solid rgba(255,255,255,.3);position:relative;z-index:10;animation:slideUp .6s ease-out}.auth-header{text-align:center;margin-bottom:2rem}.auth-header h2{font-size:2rem;background:linear-gradient(135deg,#0284c7,#14b8a6);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:.5rem;font-weight:800}.auth-header p{color:#666}.auth-form .form-group{margin-bottom:1.25rem}.auth-form label{display:block;margin-bottom:.5rem;color:#444;font-weight:500}.auth-form input,.auth-form select,.auth-form textarea{width:100%;padding:.75rem 1rem;border:1px solid #ddd;border-radius:8px;font-size:1rem;transition:border-color .3s ease}.auth-form input:focus,.auth-form select:focus,.auth-form textarea:focus{border-color:#0284c7;outline:none;box-shadow:0 0 0 3px #0284c71a;transform:translateY(-1px)}.btn-block{width:100%;padding:.8rem;font-size:1rem;margin-top:.5rem}.auth-divider{display:flex;align-items:center;text-align:center;margin:1.5rem 0;color:#888}.auth-divider:before,.auth-divider:after{content:"";flex:1;border-bottom:1px solid #ddd}.auth-divider span{padding:0 1rem;font-size:.9rem}.btn-google{background:#fff;color:#333;border:2px solid #e5e7eb;display:flex;align-items:center;justify-content:center;gap:12px;transition:all .3s ease;font-weight:600;position:relative;overflow:hidden}.btn-google:before{content:"";position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(2,132,199,.1),transparent);transition:left .5s ease}.btn-google:hover:before{left:100%}.btn-google:hover{background:#f8fafc;border-color:#0284c7;box-shadow:0 4px 12px #0284c733;transform:translateY(-2px)}.btn-google svg{width:20px;height:20px;flex-shrink:0}.btn-google i{display:none}.auth-footer{text-align:center;margin-top:1.5rem;padding-top:1.5rem;border-top:1px solid #eee}.auth-footer a{color:#0284c7;font-weight:600;text-decoration:none;transition:color .3s ease}.auth-footer a:hover{color:#14b8a6;text-decoration:underline}.modal-overlay{position:fixed;inset:0;background:#00000080;display:flex;align-items:center;justify-content:center;z-index:2000}.modal-content{background:#fff;padding:2rem;border-radius:12px;max-width:400px;width:90%}.modal-content h3{margin-bottom:1.5rem;text-align:center}.modal-actions{display:flex;flex-direction:column;gap:1rem}.alert{padding:1rem;border-radius:8px;margin-bottom:1.5rem;font-size:.9rem}.alert-danger{background:#fde8e8;color:#c81e1e;border:1px solid #fecaca}.alert-success{background:#def7ec;color:#03543f;border:1px solid #bcf0da}.messages-page{display:flex;height:calc(100vh - 80px);background:#f0f2f5;margin-top:0}.conversations-sidebar{width:350px;background:#fff;border-right:1px solid #ddd;display:flex;flex-direction:column}.sidebar-header{padding:1.5rem;border-bottom:1px solid #eee;background:#f8f9fa}.sidebar-header h2{font-size:1.5rem;margin:0;color:#333}.conversations-list{flex:1;overflow-y:auto}.conversation-item{padding:1rem 1.5rem;border-bottom:1px solid #f0f0f0;cursor:pointer;transition:background .2s;display:flex;justify-content:space-between;align-items:center}.conversation-item:hover{background:#f9f9f9}.conversation-item.active{background:#f8fafc;border-left:4px solid var(--primary-color)}.conversation-info h4{margin:0 0 .3rem;color:#333;font-size:1rem}.conversation-info p{margin:0;color:#64748b;font-size:.85rem}.unread-badge{background:var(--secondary-color);color:#fff;font-size:.75rem;padding:.2rem .6rem;border-radius:999px;font-weight:600}.message-area{flex:1;display:flex;flex-direction:column;background:#fff}.chat-header{padding:1rem 1.5rem;border-bottom:1px solid #e2e8f0;background:#fff;display:flex;align-items:center;justify-content:space-between}.chat-header h3{margin:0;font-size:1.2rem;color:#1e293b}.messages-container{flex:1;padding:1.5rem;overflow-y:auto;display:flex;flex-direction:column;gap:1rem;background:#f8fafc}.message{max-width:70%;padding:.8rem 1rem;border-radius:12px;position:relative;font-size:.95rem;line-height:1.5;box-shadow:0 1px 2px #0000000d}.message.sent{align-self:flex-end;background:var(--primary-color);color:#fff;border-bottom-right-radius:2px}.message.received{align-self:flex-start;background:#fff;color:#334155;border:1px solid #e2e8f0;border-bottom-left-radius:2px}.message-time{display:block;font-size:.7rem;margin-top:.4rem;opacity:.8;text-align:right}.message-input-area{padding:1rem;background:#fff;border-top:1px solid #e2e8f0;display:flex;gap:1rem}.message-input-area input{flex:1;padding:.8rem 1.2rem;border:1px solid #e2e8f0;border-radius:24px;outline:none;font-size:.95rem;transition:border-color .2s}.message-input-area input:focus{border-color:var(--primary-color)}.message-input-area button{padding:0 1.5rem;border-radius:24px;background:var(--primary-color);color:#fff;border:none;font-weight:600;cursor:pointer;transition:background .2s}.message-input-area button:hover{background:var(--primary-hover)}.no-chat-selected{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;color:#888}.no-chat-selected i{font-size:4rem;margin-bottom:1rem;color:#ddd}@media(max-width:768px){.messages-page{flex-direction:column;height:calc(100vh - 60px)}.conversations-sidebar{width:100%;height:100%;display:flex}.message-area{width:100%;height:100%;position:absolute;top:0;left:0;z-index:10;transform:translate(100%);transition:transform .3s}.message-area.active{transform:translate(0)}}.seller-dashboard{padding:4rem 0;background:#f8f9fc;min-height:80vh}.dashboard-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:2.5rem}.dashboard-header h1{color:#333}.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.5rem;margin-bottom:3rem}.stat-card{background:#fff;padding:1.5rem;border-radius:12px;box-shadow:0 4px 15px #0000000d;display:flex;align-items:center;gap:1.5rem}.stat-icon{width:60px;height:60px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.5rem}.stat-icon.sales{background:var(--primary-color);color:#059669}.stat-icon.orders{background:#e0f2fe;color:#0284c7}.stat-icon.products{background:#e0e7ff;color:#4f46e5}.stat-icon.offers{background:#fef3c7;color:#d97706}.stat-info h3{font-size:.9rem;color:#666;margin-bottom:.3rem;font-weight:600}.stat-info p{font-size:1.5rem;font-weight:700;color:#333}.dashboard-content{display:grid;grid-template-columns:2fr 1fr;gap:2rem}.content-section{background:#fff;border-radius:12px;padding:2rem;box-shadow:0 4px 15px #0000000d}.section-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem}.section-header h2{font-size:1.25rem;color:#333}.section-header a{color:var(--primary-color);font-weight:600;text-decoration:none;font-size:.9rem}.orders-table{width:100%;border-collapse:collapse}.orders-table th,.orders-table td{text-align:left;padding:1rem;border-bottom:1px solid #f0f0f0}.orders-table th{font-weight:600;color:#666;font-size:.9rem}.orders-table td{color:#333;font-size:.95rem}.orders-table tr:last-child td{border-bottom:none}.quick-actions-list{display:flex;flex-direction:column;gap:1rem}.action-item{display:flex;align-items:center;padding:1rem;border-radius:8px;text-decoration:none;background:#f8f9fc;color:#333;transition:all .2s;border:1px solid #eee}.action-item:hover{transform:translate(5px);background:#fff;box-shadow:0 2px 8px #0000000d}.action-item i{font-size:1.2rem;margin-right:1rem}.action-item span{flex:1;font-weight:500}.action-item .arrow{margin-right:0;font-size:.9rem;color:#999}.action-item.warning i:first-child{color:#d97706}.action-item.info i:first-child{color:#0284c7}.action-item.primary i:first-child{color:#4f46e5}@media(max-width:992px){.dashboard-content{grid-template-columns:1fr}}.seller-products-page{padding:4rem 0;background:var(--primary-color);min-height:80vh}.page-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem}.seller-products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:2rem}.seller-product-card{background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 4px 15px #0000000d;transition:transform .3s}.seller-product-card:hover{transform:translateY(-5px)}.product-image{height:200px;background:var(--primary-color);position:relative}.product-image img{width:100%;height:100%;object-fit:contain}.status-badge{position:absolute;top:10px;right:10px;padding:4px 10px;border-radius:20px;font-size:.8rem;font-weight:600;text-transform:uppercase}.status-badge.available{background:#d1fae5;color:#059669}.status-badge.sold{background:#fee2e2;color:#dc2626}.product-details{padding:1.5rem}.product-details h3{font-size:1.1rem;margin-bottom:.5rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.product-details .price{font-size:1.2rem;font-weight:700;color:var(--primary-color);margin-bottom:.8rem}.product-details .meta{display:flex;justify-content:space-between;font-size:.85rem;color:#888}.product-actions{display:flex;justify-content:space-around;padding:1rem;border-top:1px solid #eee;background:#fcfcfc}.btn-icon{background:none;border:none;font-size:1.1rem;cursor:pointer;transition:color .2s;text-decoration:none;color:#666;width:35px;height:35px;border-radius:50%;display:flex;align-items:center;justify-content:center}.btn-icon:hover{background:#eef2ff}.btn-icon.edit:hover{color:#4f46e5}.btn-icon.delete:hover{color:#dc2626;background:#fee2e2}.btn-icon.view:hover{color:#059669}.approval-status{margin-top:1rem}.status-tag{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem 1rem;border-radius:8px;font-size:.85rem;font-weight:600;flex-wrap:wrap}.status-tag i{font-size:1rem}.status-tag.pending{background:#f59e0b1a;color:#f59e0b}.status-tag.approved{background:#10b9811a;color:#10b981}.status-tag.rejected{background:#ef44441a;color:#ef4444;flex-direction:column;align-items:flex-start}.status-tag.govt-deleted{background:#f973161a;color:#f97316;flex-direction:column;align-items:flex-start}.rejection-reason{font-size:.75rem;font-weight:400;color:#666;margin-top:.5rem;padding:.5rem;background:#ef44440d;border-radius:4px;width:100%;line-height:1.4}.deletion-reason{font-size:.75rem;font-weight:400;color:#666;margin-top:.5rem;padding:.5rem;background:#f973160d;border-radius:4px;width:100%;line-height:1.4}.product-form-page{padding:4rem 0;background:#f8f9fc;min-height:80vh}.product-form-page h1{margin-bottom:2rem;color:#333}.product-form{background:#fff;padding:2.5rem;border-radius:12px;box-shadow:0 4px 15px #0000000d;max-width:800px;margin:0 auto}.product-form .form-group{margin-bottom:1.5rem}.product-form textarea{width:100%;padding:.8rem;border:1px solid #ddd;border-radius:6px;font-family:inherit;font-size:1rem;resize:vertical}.product-form .checkbox-group{display:flex;align-items:center;height:100%}.product-form .checkbox-group label{display:flex;align-items:center;gap:.5rem;cursor:pointer;margin:0;font-weight:400}.product-form .checkbox-group input{width:auto;cursor:pointer}.current-image-preview{margin-top:.5rem}.current-image-preview img{width:150px;height:150px;object-fit:cover;border-radius:8px;border:1px solid #ddd}.current-image-preview .note{font-size:.85rem;color:#888;margin-top:.5rem}.form-actions{display:flex;justify-content:flex-end;gap:1rem;margin-top:2rem;padding-top:2rem;border-top:1px solid #eee}.form-actions button{padding:.8rem 2rem;font-size:1rem}@media(max-width:600px){.product-form{padding:1.5rem}.form-row{grid-template-columns:1fr}}.seller-orders-page{padding:4rem 0;background:#f8f9fc;min-height:80vh}.seller-orders-page h1{margin-bottom:2rem;color:#333}.seller-order-card{background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 4px 15px #0000000d;margin-bottom:2rem;border:1px solid #e0e0e0}.order-header{background:#f8fafc;padding:1rem 1.5rem;display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid #eee}.order-id{font-weight:700;color:#333;margin-right:1rem}.customer-info{padding:1.5rem;border-bottom:1px solid #f0f0f0}.customer-info h4{font-size:1rem;margin-bottom:.5rem;color:#444}.customer-info p{color:#555;font-size:.95rem}.order-items{padding:1.5rem;background:#fff}.order-item{display:flex;justify-content:space-between;padding:.5rem 0;border-bottom:1px dashed #eee}.order-item:last-child{border-bottom:none}.item-name{font-weight:500;color:#333;margin-right:1rem}.item-qty{color:#888;font-size:.9rem}.item-price{font-weight:600;color:#333}.order-total{padding:1rem 1.5rem;display:flex;justify-content:space-between;align-items:center;background:#fcfcfc;border-top:1px solid #eee;font-weight:700;font-size:1.1rem}.order-actions{padding:1.5rem;background:#fff;border-top:1px solid #eee}.status-control{display:flex;align-items:center;gap:1rem}.status-control label{font-weight:600;color:#555}.action-buttons{display:flex;gap:.5rem}.btn-sm{padding:.4rem .8rem;font-size:.85rem;border-radius:4px}.btn-info{background:#3b82f6;color:#fff;border:none;cursor:pointer}.btn-success{background:#10b981;color:#fff;border:none;cursor:pointer}.btn-danger{background:#ef4444;color:#fff;border:none;cursor:pointer}.btn-info:hover{background:#2563eb}.btn-success:hover{background:#059669}.btn-danger:hover{background:#dc2626}.action-note{font-style:italic;color:#888}@media(max-width:600px){.order-header{flex-direction:column;align-items:flex-start;gap:.5rem}.status-control{flex-direction:column;align-items:flex-start}}.seller-offers-page{padding:4rem 0;background:var(--primary-background-color);min-height:80vh}.seller-offers-page h1{margin-bottom:2rem;color:#333}.offers-list{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:2rem}.offer-card{background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 4px 15px #0000000d;border:1px solid #e0e0e0;display:flex;flex-direction:column}.offer-header{padding:1rem;background:var(--secondary-background-color);display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid #eee}.offer-date{font-size:.85rem;color:#888}.offer-content{padding:1.5rem;flex:1}.product-info h4{font-size:1.1rem;color:#333;margin-bottom:.2rem}.original-price{font-size:.9rem;color:#666;text-decoration:line-through;margin-bottom:1rem}.offer-details{display:flex;justify-content:space-between;margin-bottom:1rem;background:#fcfcfc;padding:.8rem;border-radius:8px;border:1px solid #f0f0f0}.offer-details div{display:flex;flex-direction:column}.offer-details label{font-size:.8rem;color:#888;margin-bottom:.2rem}.offer-amount span{font-size:1.2rem;font-weight:700;color:var(--primary-color)}.buyer-info span{font-weight:500;color:#333}.offer-message{font-style:italic;color:#666;background:var(--card-background-color);padding:.8rem;border-left:3px solid #ddd;font-size:.9rem}.offer-actions{padding:1rem;display:flex;gap:1rem;border-top:1px solid #eee}.offer-actions button{flex:1;padding:.6rem;font-size:.9rem;display:flex;align-items:center;justify-content:center;gap:.5rem}.products-page{padding:3rem 0;background:#f8f9fc;min-height:80vh}.products-layout{display:flex;gap:2rem}.filters-sidebar{width:280px;background:#fff;padding:1.5rem;border-radius:12px;height:fit-content;box-shadow:0 4px 15px #0000000d;position:sticky;top:90px}.sidebar-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:1px solid #eee}.clear-btn{background:none;border:none;color:#dc3545;font-size:.9rem;cursor:pointer;text-decoration:underline}.filter-group{margin-bottom:1.5rem}.filter-group label{display:block;font-weight:600;margin-bottom:.75rem;color:#333}.search-input,.filter-group select{width:100%;padding:.6rem;border:1px solid #ddd;border-radius:6px;font-size:.95rem}.price-inputs{display:flex;align-items:center;gap:.5rem}.price-inputs input{width:100%;padding:.5rem;border:1px solid #ddd;border-radius:6px;font-size:.9rem}.checkbox-item{display:flex;align-items:center;gap:.5rem;margin-bottom:.5rem}.checkbox-item input{cursor:pointer}.checkbox-item label{margin:0;font-weight:400;cursor:pointer}.products-content{flex:1}.products-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem;background:#fff;padding:1rem 1.5rem;border-radius:12px;box-shadow:0 4px 15px #0000000d}.sort-control{display:flex;align-items:center;gap:1rem}.sort-control select{padding:.5rem;border:1px solid #ddd;border-radius:6px;background:#fff;cursor:pointer}.no-results{text-align:center;padding:4rem 2rem;background:#fff;border-radius:12px;color:#888}.no-results i{font-size:3rem;margin-bottom:1rem;color:#ddd}@media(max-width:900px){.products-layout{flex-direction:column}.filters-sidebar{width:100%;position:static;margin-bottom:2rem}}@media(max-width:600px){.container{padding:0 1rem}.products-header{flex-direction:column;gap:1rem;align-items:flex-start}.sort-control{width:100%;justify-content:space-between}.products-grid{grid-template-columns:1fr}}.product-detail-page{padding:4rem 0;background:#fff;min-height:80vh}.product-layout{display:grid;grid-template-columns:1.2fr 1fr;gap:4rem;margin-bottom:5rem}.product-gallery{position:relative}.main-image{width:100%;border-radius:16px;overflow:hidden;box-shadow:0 10px 30px #0000000d;background:#f8f9fc;aspect-ratio:4/3;display:flex;align-items:center;justify-content:center}.main-image img{width:100%;height:100%;object-fit:contain}.status-badge{position:absolute;top:20px;right:20px;padding:8px 16px;border-radius:30px;color:#fff;font-weight:700;text-transform:uppercase;letter-spacing:1px}.status-badge.closed{background:#dc3545}.product-info-section{display:flex;flex-direction:column}.product-header{margin-bottom:2rem;border-bottom:1px solid #eee;padding-bottom:2rem}.product-header h1{font-size:2.5rem;margin-bottom:1rem;color:#1a1a2e}.product-meta-tags{display:flex;gap:1rem}.tag{padding:6px 14px;border-radius:20px;font-size:.9rem;font-weight:600}.tag.category{background:#eef2ff;color:var(--primary-color)}.tag.condition{background:#f0fdf4;color:#16a34a}.product-price-box{background:#f8f9fc;padding:2rem;border-radius:16px;margin-bottom:2rem}.price-tag{font-size:2.5rem;font-weight:800;color:var(--primary-color);display:flex;align-items:center;gap:1rem;margin-bottom:1.5rem}.negotiable-label{font-size:.9rem;background:#fff;color:#16a34a;padding:4px 10px;border-radius:6px;border:1px solid #16a34a;font-weight:600}.action-buttons{display:flex;flex-direction:column;gap:1.5rem}.btn-lg{padding:1rem 2rem;font-size:1.1rem}.offer-section{background:#fff;padding:1rem;border-radius:8px;border:1px solid #eee}.offer-section h4{margin-bottom:.8rem;font-size:1rem}.offer-form .input-group{display:flex;gap:.5rem;align-items:center}.currency-symbol{font-weight:600;color:#666}.offer-form input{flex:1;padding:.7rem;border:1px solid #ddd;border-radius:6px}.offer-form button{padding:.7rem 1.2rem;background:#666;color:#fff;border:none;border-radius:6px;cursor:pointer;transition:background .3s}.offer-form button:hover{background:#444}.product-description{margin-bottom:3rem;line-height:1.8;color:#555;font-size:1.05rem}.product-description h3{margin-bottom:1rem;color:#333}.seller-box{border:1px solid #e0e0e0;border-radius:12px;padding:1.5rem}.seller-header{display:flex;align-items:center;gap:1rem;margin-bottom:1.5rem}.seller-avatar{font-size:3rem;color:#ddd}.seller-info h4{margin-bottom:.3rem;font-size:1.1rem}.rating{color:#ffc107;font-size:.9rem}.rating .count{color:#888;margin-left:.5rem}.seller-actions{display:flex;flex-direction:column;gap:.8rem}.btn-link{color:var(--primary-color);text-decoration:underline;background:none;text-align:left;padding:0}.similar-products h3{margin-bottom:2rem;text-align:center}@media(max-width:900px){.product-layout{grid-template-columns:1fr;gap:2rem}}@media(max-width:600px){.product-header h1,.price-tag{font-size:2rem}}.cart-page{padding:4rem 0;background:#f8f9fc;min-height:80vh}.cart-page h1{margin-bottom:2rem;color:#333}.cart-layout{display:flex;gap:2rem;align-items:flex-start}.cart-items{flex:1;background:#fff;border-radius:12px;padding:2rem;box-shadow:0 4px 15px #0000000d}.cart-item{display:flex;gap:1.5rem;padding-bottom:2rem;margin-bottom:2rem;border-bottom:1px solid #eee}.cart-item:last-child{padding-bottom:0;margin-bottom:0;border-bottom:none}.item-image{width:120px;height:120px;flex-shrink:0;background:#f8f9fc;border-radius:8px;overflow:hidden;display:flex;align-items:center;justify-content:center}.item-image img{width:100%;height:100%;object-fit:contain}.item-details{flex:1}.item-name{font-size:1.2rem;font-weight:600;color:#333;text-decoration:none;display:block;margin-bottom:.5rem}.item-name:hover{color:var(--primary-color)}.item-meta{font-size:.9rem;color:#666;margin-bottom:.8rem;display:flex;flex-direction:column;gap:.2rem}.item-price{font-size:1.2rem;font-weight:700;color:#333}.item-actions{display:flex;flex-direction:column;align-items:flex-end;justify-content:space-between}.quantity-control{display:flex;align-items:center;gap:1rem;border:1px solid #e0e0e0;padding:4px;border-radius:6px}.quantity-control button{background:#f0f2f5;border:none;width:28px;height:28px;border-radius:4px;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#555;transition:background .2s}.quantity-control button:hover:not(:disabled){background:#e4e6eb}.quantity-control span{font-weight:600;min-width:20px;text-align:center}.remove-btn{background:none;border:none;color:#dc3545;cursor:pointer;font-size:.9rem;display:flex;align-items:center;gap:.4rem;opacity:.8;transition:opacity .2s}.remove-btn:hover{opacity:1;text-decoration:underline}.cart-summary{width:350px;background:#fff;padding:2rem;border-radius:12px;box-shadow:0 4px 15px #0000000d;position:sticky;top:100px}.cart-summary h3{margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:1px solid #eee}.summary-row{display:flex;justify-content:space-between;margin-bottom:1rem;color:#666}.summary-row.total{font-size:1.4rem;font-weight:700;color:#333;margin-top:1rem;margin-bottom:2rem}.summary-divider{border-top:2px dashed #eee;margin:1.5rem 0}.checkout-btn{width:100%;display:block;text-align:center;padding:1rem;font-size:1.1rem}.continue-shopping{display:block;text-align:center;margin-top:1rem;color:#666;text-decoration:none}.continue-shopping:hover{color:var(--primary-color)}.empty-cart{text-align:center;padding:4rem;background:#fff;border-radius:12px}.empty-cart i{font-size:4rem;color:#e0e0e0;margin-bottom:1.5rem}.empty-cart h2{margin-bottom:1rem}.empty-cart p{color:#666;margin-bottom:2rem}@media(max-width:900px){.cart-layout{flex-direction:column}.cart-summary{width:100%;position:static}}@media(max-width:600px){.cart-item{flex-direction:column;align-items:flex-start}.item-actions{flex-direction:row;width:100%;align-items:center;margin-top:1rem}.item-image{width:100%;height:200px}}.checkout-page{padding:4rem 0;background:#f8f9fc;min-height:80vh}.checkout-page h1{margin-bottom:2rem;color:#333}.checkout-layout{display:flex;gap:2rem;align-items:flex-start}.checkout-form-section{flex:1}.form-section{background:#fff;padding:2rem;border-radius:12px;box-shadow:0 4px 15px #0000000d;margin-bottom:2rem}.form-section h3{margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:1px solid #eee;color:#333}.form-group label{display:block;margin-bottom:.5rem;font-weight:600;color:#555}.form-group input,.form-group select{width:100%;padding:.8rem;border:1px solid #ddd;border-radius:6px;font-size:1rem}.form-row{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}.payment-methods{display:flex;flex-direction:column;gap:1rem}.payment-option{display:flex;align-items:center;gap:1rem;padding:1rem;border:1px solid #ddd;border-radius:8px;cursor:pointer;transition:all .3s}.payment-option:hover{background:#f8f9fc}.payment-option input:checked+label{color:var(--primary-color);font-weight:600}.payment-option label{cursor:pointer;display:flex;align-items:center;gap:.8rem;flex:1;font-size:1.05rem}.order-summary-section{width:350px}.summary-items{max-height:300px;overflow-y:auto;margin-bottom:1rem}.summary-item-row{display:flex;justify-content:space-between;margin-bottom:1rem;font-size:.95rem}.summary-item-info{display:flex;flex-direction:column}.summary-item-info small{color:#888}.place-order-btn{margin-top:2rem;padding:1.2rem;font-size:1.2rem;font-weight:700}@media(max-width:900px){.checkout-layout{flex-direction:column-reverse}.order-summary-section{width:100%}}@media(max-width:600px){.form-row{grid-template-columns:1fr}}.orders-page{padding:4rem 0;background:#f8f9fc;min-height:80vh}.orders-page h1{margin-bottom:2rem;color:#333}.orders-list{display:flex;flex-direction:column;gap:1.5rem}.order-card{background:#fff;border-radius:12px;padding:1.5rem;box-shadow:0 4px 15px #0000000d;border:1px solid #e0e0e0}.order-header{display:flex;justify-content:space-between;align-items:center;padding-bottom:1rem;border-bottom:1px solid #eee;margin-bottom:1rem}.order-meta{display:flex;flex-direction:column}.order-date{font-size:.9rem;color:#666}.order-id{font-weight:600;color:#333}.order-actions{display:flex;align-items:center;gap:1rem}.status-badge{padding:4px 10px;border-radius:20px;font-size:.8rem;font-weight:600;text-transform:uppercase}.status-success{background:#d1fae5;color:#059669}.status-info{background:#e0f2fe;color:#0284c7}.status-warning{background:#fef3c7;color:#d97706}.status-danger{background:#fee2e2;color:#dc2626}.status-secondary{background:#f3f4f6;color:#4b5563}.order-items{margin-bottom:1rem}.order-item{display:flex;justify-content:space-between;padding:.5rem 0}.item-info{display:flex;gap:1rem}.item-title{color:var(--primary-color);text-decoration:none}.item-qty{color:#666}.order-footer{display:flex;justify-content:flex-end;align-items:center;gap:1rem;padding-top:1rem;border-top:1px solid #eee}.total-label{color:#666}.total-amount{font-size:1.2rem;font-weight:700;color:#333}.empty-state{text-align:center;padding:4rem;background:#fff;border-radius:12px}.empty-state i{font-size:3rem;color:#e0e0e0;margin-bottom:1rem}.track-order-page{padding:4rem 0;background:#f8f9fc;min-height:80vh}.track-order-page h1{text-align:center;margin-bottom:2rem;color:#333}.tracking-search{max-width:600px;margin:0 auto 3rem;display:flex;gap:1rem}.tracking-search input{flex:1;padding:1rem;border:1px solid #ddd;border-radius:8px;font-size:1rem}.tracking-search button{padding:0 2rem;font-size:1rem}.error-message{max-width:600px;margin:0 auto 2rem;padding:1rem;background:#fee2e2;color:#dc2626;border-radius:8px;text-align:center}.tracking-result{max-width:800px;margin:0 auto}.order-summary-card{background:#fff;border-radius:12px;padding:2rem;box-shadow:0 4px 15px #0000000d}.result-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:3rem;border-bottom:1px solid #eee;padding-bottom:1rem}.result-header h3{margin:0;color:#333}.order-ref{color:#888;font-family:monospace}.progress-track{display:flex;justify-content:space-between;position:relative;margin-bottom:3rem;padding:0 2rem}.progress-track:before{content:"";position:absolute;top:25px;left:40px;right:40px;height:4px;background:#f0f0f0;z-index:1}.step{position:relative;z-index:2;text-align:center;flex:1}.step-icon{width:50px;height:50px;background:#f0f0f0;border-radius:50%;border:4px solid white;display:flex;align-items:center;justify-content:center;margin:0 auto .5rem;color:#aaa;font-size:1.2rem;transition:all .3s}.step-label{font-weight:600;color:#aaa;font-size:.9rem}.step.active .step-icon{background:#d1fae5;color:#059669}.step.active .step-label{color:#059669}.step.current .step-icon{background:var(--primary-color);color:#fff;transform:scale(1.1);box-shadow:0 0 0 5px #4e73df33}.step.current .step-label{color:var(--primary-color)}.order-details-mini{background:#fcfcfc;padding:1.5rem;border-radius:8px;margin-bottom:1.5rem}.order-details-mini p{margin-bottom:.5rem;color:#555}.tracking-items h4{margin-bottom:1rem;font-size:1rem;color:#333}.tracking-items ul{list-style:none;padding:0}.tracking-items li{padding:.5rem 0;border-bottom:1px dotted #eee;color:#666}.govt-dashboard{min-height:100vh;background:linear-gradient(135deg,#1e3c72,#2a5298,#7474bf);padding:3rem 0;position:relative;overflow-x:hidden}.govt-dashboard:before{content:"";position:absolute;top:0;left:0;right:0;height:400px;background:radial-gradient(ellipse at top,rgba(255,255,255,.1) 0%,transparent 70%);pointer-events:none}.govt-dashboard .container{max-width:1400px;margin:0 auto;padding:0 2rem;position:relative;z-index:1}.dashboard-header{text-align:center;margin-bottom:3rem;padding:2rem;background:#ffffff1a;-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);border-radius:24px;border:1px solid rgba(255,255,255,.2);box-shadow:0 8px 32px #0000001a}.dashboard-header h1{font-size:2.8rem;font-weight:800;margin-bottom:.75rem;background:linear-gradient(135deg,#fff,#e0e7ff);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;letter-spacing:-.5px}.dashboard-header p{font-size:1.15rem;color:#fffffff2;font-weight:500}.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem;margin-bottom:4rem}.stat-card{background:#fffffff2;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);padding:2rem;border-radius:20px;display:flex;align-items:center;gap:1.5rem;box-shadow:0 10px 40px #00000026,0 1px 3px #0000001a;transition:all .4s cubic-bezier(.175,.885,.32,1.275);border:1px solid rgba(255,255,255,.3);position:relative;overflow:hidden}.stat-card:before{content:"";position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,transparent,currentColor,transparent);opacity:0;transition:opacity .3s ease}.stat-card:hover{transform:translateY(-10px) scale(1.02);box-shadow:0 20px 60px #00000040,0 5px 15px #0000001a}.stat-card:hover:before{opacity:1}.stat-icon{width:70px;height:70px;border-radius:16px;display:flex;align-items:center;justify-content:center;font-size:1.75rem;color:#fff;flex-shrink:0;box-shadow:0 4px 12px #00000026;transition:transform .3s ease}.stat-card:hover .stat-icon{transform:scale(1.1) rotate(5deg)}.stat-card.pending .stat-icon{background:linear-gradient(135deg,#fbbf24,#f59e0b);animation:pulse-pending 2s ease-in-out infinite}.stat-card.approved .stat-icon{background:linear-gradient(135deg,#10b981,#059669);animation:pulse-approved 2s ease-in-out infinite}.stat-card.rejected .stat-icon{background:linear-gradient(135deg,#ef4444,#dc2626)}.stat-card.total .stat-icon{background:linear-gradient(135deg,#6366f1,#4f46e5)}@keyframes pulse-pending{0%,to{box-shadow:0 4px 12px #fbbf2466}50%{box-shadow:0 4px 20px #fbbf24b3}}@keyframes pulse-approved{0%,to{box-shadow:0 4px 12px #10b98166}50%{box-shadow:0 4px 20px #10b981b3}}.stat-info h3{font-size:2.5rem;font-weight:800;margin:0;background:linear-gradient(135deg,#1e3a8a,#3b82f6);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.stat-info p{font-size:.95rem;color:#64748b;font-weight:600;margin:.25rem 0 0;text-transform:uppercase;letter-spacing:.5px}.pending-products{margin-bottom:4rem}.pending-products h2{font-size:1.75rem;font-weight:700;color:#fff;margin-bottom:2rem;padding:1rem 1.5rem;background:#ffffff1a;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border-radius:16px;border:1px solid rgba(255,255,255,.2);display:inline-flex;align-items:center;gap:.75rem}.products-table{display:grid;gap:2rem}.product-approval-card{background:#fff;border-radius:20px;overflow:hidden;box-shadow:0 10px 40px #00000026;display:grid;grid-template-columns:300px 1fr auto;gap:2rem;transition:all .4s ease;border:2px solid transparent}.product-approval-card:hover{transform:translateY(-8px);box-shadow:0 20px 60px #0003;border-color:#6366f14d}.product-image-section{height:250px;background:linear-gradient(135deg,#f3f4f6,#e5e7eb);display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}.product-image-section:before{content:"";position:absolute;inset:0;background:linear-gradient(135deg,transparent,rgba(0,0,0,.05))}.product-image-section img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}.product-approval-card:hover .product-image-section img{transform:scale(1.1)}.no-image{font-size:4rem;color:#d1d5db}.product-info-section{padding:2rem 0;display:flex;flex-direction:column;gap:1.25rem}.product-info-section h3{font-size:1.75rem;font-weight:700;color:#1e293b;margin:0;line-height:1.2}.product-description{color:#64748b;font-size:1rem;line-height:1.6;margin:0}.product-meta{display:flex;flex-wrap:wrap;gap:1rem}.meta-item{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem 1rem;background:#f1f5f9;border-radius:12px;font-size:.9rem;font-weight:600;color:#475569;transition:all .3s ease}.meta-item:hover{background:#e2e8f0;transform:translateY(-2px)}.meta-item i{color:#64748b}.meta-item.price{background:linear-gradient(135deg,#10b981,#059669);color:#fff;font-size:1.1rem;font-weight:700}.meta-item.price i{color:#fff}.meta-item.negotiable{background:linear-gradient(135deg,#3b82f6,#2563eb);color:#fff}.meta-item.negotiable i{color:#fff}.seller-info{display:flex;align-items:center;gap:.75rem;padding:1rem;background:#f8fafc;border-radius:12px;border-left:4px solid #6366f1}.seller-info i{color:#6366f1;font-size:1.1rem}.seller-info strong{color:#1e293b;margin-right:.5rem}.seller-email{color:#64748b;font-size:.9rem}.approval-badge{display:inline-block}.badge-approved{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem 1rem;background:linear-gradient(135deg,#10b981,#059669);color:#fff;border-radius:12px;font-weight:600;font-size:.9rem}.product-actions-section{display:flex;flex-direction:column;justify-content:center;padding:2rem 2rem 2rem 0;gap:1rem}.product-actions-section button{padding:1rem 1.5rem;border:none;border-radius:14px;font-size:1rem;font-weight:600;cursor:pointer;transition:all .3s ease;display:flex;align-items:center;justify-content:center;gap:.5rem;min-width:140px;box-shadow:0 4px 12px #0000001a}.btn-approve{background:linear-gradient(135deg,#10b981,#059669);color:#fff}.btn-approve:hover{background:linear-gradient(135deg,#059669,#047857);transform:translateY(-3px);box-shadow:0 8px 24px #10b98166}.btn-reject{background:linear-gradient(135deg,#ef4444,#dc2626);color:#fff}.btn-reject:hover{background:linear-gradient(135deg,#dc2626,#b91c1c);transform:translateY(-3px);box-shadow:0 8px 24px #ef444466}.btn-delete{background:linear-gradient(135deg,#f97316,#ea580c);color:#fff}.btn-delete:hover{background:linear-gradient(135deg,#ea580c,#c2410c);transform:translateY(-3px);box-shadow:0 8px 24px #f9731666}.no-pending{text-align:center;padding:5rem 2rem;background:#ffffff1a;-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);border-radius:24px;border:2px dashed rgba(255,255,255,.3)}.no-pending i{font-size:5rem;color:#fff9;margin-bottom:1.5rem}.no-pending h3{font-size:2rem;color:#fff;font-weight:700;margin-bottom:.75rem}.no-pending p{font-size:1.1rem;color:#fffc}.modal-overlay{position:fixed;inset:0;background:#000000b3;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);display:flex;align-items:center;justify-content:center;z-index:1000;padding:2rem;animation:fadeIn .3s ease}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.modal-content{background:#fff;padding:2.5rem;border-radius:24px;max-width:500px;width:100%;box-shadow:0 20px 60px #0000004d;animation:slideUp .4s cubic-bezier(.175,.885,.32,1.275)}@keyframes slideUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}.modal-content h3{font-size:1.75rem;color:#1e293b;margin-bottom:1rem;font-weight:700}.modal-content p{color:#64748b;line-height:1.6;margin-bottom:1.5rem}.warning-text{color:#f97316;font-weight:600;padding:1rem;background:#fff7ed;border-radius:12px;border-left:4px solid #f97316;margin:1rem 0}.form-group{margin-bottom:1.5rem}.form-group label{display:block;font-weight:600;color:#334155;margin-bottom:.5rem}.form-group textarea{width:100%;padding:1rem;border:2px solid #e2e8f0;border-radius:12px;font-size:1rem;font-family:inherit;resize:vertical;transition:border-color .3s ease}.form-group textarea:focus{outline:none;border-color:#6366f1;box-shadow:0 0 0 3px #6366f11a}.modal-actions{display:flex;gap:1rem;margin-top:2rem}.modal-actions button{flex:1;padding:1rem;border:none;border-radius:12px;font-size:1rem;font-weight:600;cursor:pointer;transition:all .3s ease}.btn.btn-outline{background:#fff;color:#64748b;border:2px solid #e2e8f0}.btn.btn-outline:hover{background:#f8fafc;border-color:#cbd5e1}.btn.btn-danger{background:linear-gradient(135deg,#ef4444,#dc2626);color:#fff}.btn.btn-danger:hover{background:linear-gradient(135deg,#dc2626,#b91c1c);transform:translateY(-2px);box-shadow:0 8px 24px #ef44444d}.loading{text-align:center;padding:4rem;color:#fff;font-size:1.5rem;font-weight:600}@media(max-width:1024px){.product-approval-card{grid-template-columns:1fr;gap:0}.product-image-section{height:300px}.product-info-section,.product-actions-section{padding:2rem}.product-actions-section{flex-direction:row;flex-wrap:wrap}}@media(max-width:768px){.dashboard-header h1{font-size:2rem}.stats-grid{grid-template-columns:1fr;gap:1rem}.product-actions-section{flex-direction:column}}
