:root{--primary-color: #2563eb;--primary-hover: #1d4ed8;--secondary-color: #64748b;--success-color: #10b981;--danger-color: #ef4444;--warning-color: #f59e0b;--background: #ffffff;--surface: #f8fafc;--border: #e2e8f0;--text-primary: #1e293b;--text-secondary: #64748b;--shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1)}*{margin:0;padding:0;box-sizing:border-box}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:var(--surface);color:var(--text-primary);line-height:1.6}#root{min-height:100vh;display:flex;flex-direction:column}.container{max-width:1200px;margin:0 auto;padding:0 1rem}.header{background:white;border-bottom:1px solid #e5e7eb;padding:1rem 0;position:sticky;top:0;z-index:100;box-shadow:0 1px 3px #0000001a}.header h1{color:var(--primary-color);font-size:1.5rem;font-weight:700}.header .container{display:flex;justify-content:space-between;align-items:center}.header-left{display:flex;align-items:center;gap:.75rem}.header-right{display:flex;align-items:center;gap:1rem}.user-info{font-size:.875rem;color:var(--text-secondary);font-weight:500}.logout-btn{display:flex;align-items:center;gap:.5rem;padding:.5rem 1rem;background:var(--danger-color);color:#fff;border:none;border-radius:6px;font-size:.875rem;font-weight:500;cursor:pointer;transition:background-color .2s ease}.logout-btn:hover{background:#dc2626}.current-currency{font-size:.875rem;font-weight:500;color:var(--text-secondary);background:var(--surface);padding:.25rem .5rem;border-radius:4px;border:1px solid var(--border)}.currency-selector{display:flex;align-items:center;gap:.5rem}.currency-label{font-size:.875rem;font-weight:500;color:var(--text-secondary)}.currency-select{padding:.375rem .75rem;border:1px solid var(--border);border-radius:6px;background:var(--surface);color:var(--text-primary);font-size:.875rem;cursor:pointer;transition:border-color .2s}.currency-select:hover{border-color:var(--primary-color)}.currency-select:focus{outline:none;border-color:var(--primary-color);box-shadow:0 0 0 2px #2563eb1a}.main-content{flex:1;padding:1rem 0}.pos-grid{display:grid;grid-template-columns:1fr 400px;gap:1.5rem;height:calc(100vh - 120px)}@media (max-width: 768px){.pos-grid{grid-template-columns:1fr;height:auto}}.products-section{background:var(--background);border-radius:8px;padding:1rem;box-shadow:var(--shadow);overflow:hidden}.products-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem;padding-bottom:.5rem;border-bottom:1px solid var(--border)}.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:1rem;overflow-y:auto;max-height:calc(100vh - 200px)}.product-card{background:var(--background);border:1px solid var(--border);border-radius:8px;padding:1rem;cursor:grab;transition:all .2s ease;-webkit-user-select:none;user-select:none;position:relative;touch-action:manipulation;-webkit-tap-highlight-color:transparent}.product-card:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg);border-color:var(--primary-color)}.product-card:active{cursor:grabbing}.product-card:focus{outline:2px solid var(--primary-color);outline-offset:2px}.product-card.dragging{transform:rotate(5deg) scale(1.05);box-shadow:var(--shadow-lg);z-index:1000}.product-card button{transition:all .2s ease}.product-card button:hover{transform:translateY(-1px);box-shadow:0 4px 8px #0000001a}.product-card button:active{transform:translateY(0)}@media (max-width: 768px){.product-card{padding:.75rem}.product-card button{padding:.75rem .5rem;font-size:1rem;min-height:44px}}.product-image{width:100%;height:120px;object-fit:cover;border-radius:4px;margin-bottom:.5rem}.product-name{font-weight:600;margin-bottom:.25rem;color:var(--text-primary)}.product-price{font-size:1.25rem;font-weight:700;color:var(--primary-color);margin-bottom:.25rem}.product-category{font-size:.875rem;color:var(--text-secondary);text-transform:capitalize}.cart-section{background:var(--background);border-radius:8px;padding:1rem;box-shadow:var(--shadow);display:flex;flex-direction:column}.cart-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem;padding-bottom:.5rem;border-bottom:1px solid var(--border)}.cart-items{flex:1;overflow-y:auto;margin-bottom:1rem;transition:all .2s ease;min-height:200px}.cart-items.drag-over{background-color:#2563eb1a;border:2px dashed var(--primary-color);border-radius:8px}.cart-item{display:flex;align-items:center;padding:.75rem;border:1px solid var(--border);border-radius:6px;margin-bottom:.5rem;background:var(--surface);transition:all .2s ease}.cart-item.dragging{opacity:.5;transform:rotate(2deg)}.react-beautiful-dnd-dragging,.react-beautiful-dnd-dragging *{pointer-events:none}.react-beautiful-dnd-drag-handle{cursor:grab}.react-beautiful-dnd-drag-handle:active{cursor:grabbing}.cart-item-image{width:50px;height:50px;object-fit:cover;border-radius:4px;margin-right:.75rem}.cart-item-details{flex:1}.cart-item-name{font-weight:600;margin-bottom:.25rem}.cart-item-price{color:var(--text-secondary);font-size:.875rem}.quantity-controls{display:flex;align-items:center;gap:.5rem}.remove-btn{background:#ef4444;color:#fff;border:none;border-radius:4px;padding:.375rem;cursor:pointer;transition:background-color .2s;margin-left:.5rem;display:flex;align-items:center;justify-content:center;min-width:28px;height:28px}.remove-btn:hover{background:#dc2626}.remove-btn:active{background:#b91c1c}.quantity-btn{background:var(--primary-color);color:#fff;border:none;border-radius:4px;width:28px;height:28px;display:flex;align-items:center;justify-content:center;cursor:pointer;font-weight:600;transition:background-color .2s ease}.quantity-btn:hover{background:var(--primary-hover)}.quantity-btn:disabled{background:var(--secondary-color);cursor:not-allowed}.quantity-display{min-width:40px;text-align:center;font-weight:600}.cart-total{border-top:2px solid var(--border);padding-top:1rem;margin-top:auto}.total-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:.5rem}.total-label{font-weight:600;color:var(--text-secondary)}.total-amount{font-size:1.5rem;font-weight:700;color:var(--primary-color)}.checkout-btn{width:100%;background:var(--success-color);color:#fff;border:none;border-radius:8px;padding:1rem;font-size:1.125rem;font-weight:600;cursor:pointer;transition:all .2s ease;margin-top:1rem}.checkout-btn:hover{transform:translateY(-1px);box-shadow:var(--shadow-lg)}.checkout-btn:disabled{background:var(--secondary-color);cursor:not-allowed;transform:none}.empty-cart{text-align:center;color:var(--text-secondary);padding:2rem;border:2px dashed var(--border);border-radius:8px;margin:1rem 0;transition:all .2s ease}.empty-cart.drag-over{border-color:var(--primary-color);background-color:#2563eb0d;color:var(--primary-color)}.empty-cart-icon{font-size:3rem;margin-bottom:1rem;opacity:.5;transition:opacity .2s ease}.empty-cart.drag-over .empty-cart-icon{opacity:1}.btn{background:var(--primary-color);color:#fff;border:none;border-radius:6px;padding:.5rem 1rem;font-weight:500;cursor:pointer;transition:background-color .2s ease;text-decoration:none;display:inline-block}.btn:hover{background:var(--primary-hover)}.btn-secondary{background:var(--secondary-color)}.btn-secondary:hover{background:var(--text-secondary)}.btn-danger{background:var(--danger-color)}.btn-danger:hover{background:#dc2626}.modal-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.5);display:flex;align-items:center;justify-content:center;z-index:1000}.modal{background:var(--background);border-radius:8px;padding:1.5rem;max-width:500px;width:90%;max-height:90vh;overflow-y:auto;box-shadow:var(--shadow-lg)}.modal-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem;padding-bottom:.5rem;border-bottom:1px solid var(--border)}.modal-close{background:none;border:none;font-size:1.5rem;cursor:pointer;color:var(--text-secondary)}.form-group{margin-bottom:1rem}.form-label{display:block;margin-bottom:.5rem;font-weight:500;color:var(--text-primary)}.form-input{width:100%;padding:.75rem;border:1px solid var(--border);border-radius:6px;font-size:1rem;transition:border-color .2s ease}.form-input:focus{outline:none;border-color:var(--primary-color);box-shadow:0 0 0 3px #2563eb1a}.form-input.error{border-color:var(--danger-color)}.error-text{color:var(--danger-color);font-size:.875rem;margin-top:.25rem}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}@media (max-width: 768px){.form-row{grid-template-columns:1fr}}.success-message{background:var(--success-color);color:#fff;padding:1rem;border-radius:6px;margin-bottom:1rem;text-align:center}.error-message{background:var(--danger-color);color:#fff;padding:1rem;border-radius:6px;margin-bottom:1rem;text-align:center}.loading{display:flex;align-items:center;justify-content:center;padding:2rem;color:var(--text-secondary)}.spinner{border:2px solid var(--border);border-top:2px solid var(--primary-color);border-radius:50%;width:20px;height:20px;animation:spin 1s linear infinite;margin-right:.5rem}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.orders-section{background:var(--background);border-radius:8px;padding:1rem;box-shadow:var(--shadow);margin-top:1rem}.orders-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem;padding-bottom:.5rem;border-bottom:1px solid var(--border)}.order-item{border:1px solid var(--border);border-radius:6px;padding:1rem;margin-bottom:.5rem;background:var(--surface)}.order-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:.5rem}.order-info{display:flex;align-items:center;gap:1rem}.order-status{padding:.25rem .75rem;border-radius:12px;font-size:.75rem;font-weight:600;text-transform:capitalize}.order-status.completed{background:#fef3c7;color:#d97706}.order-status.delivered{background:#d1fae5;color:#059669}.order-actions{display:flex;align-items:center;gap:.5rem}.order-action-btn{background:transparent;border:1px solid #e5e7eb;border-radius:6px;padding:.375rem;cursor:pointer;transition:all .2s;display:flex;align-items:center;justify-content:center;min-width:32px;height:32px}.order-action-btn:hover{background:#f9fafb;border-color:#d1d5db}.delivered-btn{color:#059669;border-color:#10b981}.delivered-btn:hover{background:#d1fae5;border-color:#059669}.delete-btn{color:#dc2626;border-color:#ef4444}.delete-btn:hover{background:#fef2f2;border-color:#dc2626}.order-id{font-weight:600;color:var(--primary-color)}.order-date{color:var(--text-secondary);font-size:.875rem}.order-total{font-weight:600;color:var(--success-color)}.order-items{font-size:.875rem;color:var(--text-secondary)}.tabs{display:flex;border-bottom:1px solid #e5e7eb;margin-bottom:1rem;position:sticky;top:80px;z-index:99;background:white;padding:.5rem 0;box-shadow:0 1px 3px #0000001a}.tab{padding:.75rem 1.5rem;background:none;border:none;cursor:pointer;border-bottom:2px solid transparent;color:var(--text-secondary);transition:all .2s ease}.tab.active{color:var(--primary-color);border-bottom-color:var(--primary-color)}.tab:hover{color:var(--text-primary)}.category-filter{display:flex;gap:.5rem;margin-bottom:1rem;flex-wrap:wrap;align-items:center}.category-filter-label{font-size:.875rem;font-weight:500;color:var(--text-primary)}.category-filter-button{padding:.375rem .75rem;border:1px solid var(--border);border-radius:.375rem;background-color:#fff;color:var(--text-primary);font-size:.875rem;font-weight:500;cursor:pointer;transition:all .2s ease;text-transform:capitalize}.category-filter-button:hover{background-color:var(--surface);border-color:var(--primary-color)}.category-filter-button.active{background-color:var(--primary-color);color:#fff;border-color:var(--primary-color)}.category-filter-button.active:hover{background-color:var(--primary-hover)}@media (max-width: 768px){.category-filter{gap:.375rem}.category-filter-button{padding:.5rem .75rem;font-size:.875rem;min-height:40px}}.user-menu{position:relative}.user-menu-trigger{transition:all .2s ease}.user-menu-trigger:hover{background-color:#f3f4f6!important;border-color:#9ca3af!important}.user-menu-dropdown{animation:fadeIn .2s ease}@keyframes fadeIn{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.header-actions{display:flex;align-items:center}.user-menu-dropdown{z-index:1000}.filter-dropdown{position:relative}.filter-dropdown-menu{animation:fadeIn .2s ease}.filter-dropdown button{transition:all .2s ease}.filter-dropdown button:hover{border-color:#9ca3af!important;background-color:#f9fafb!important}.filter-dropdown-menu{z-index:1000}.products-list{display:flex;flex-direction:column;gap:.75rem}.product-row{display:flex;align-items:center;gap:1rem;padding:1rem;background:white;border:1px solid #e5e7eb;border-radius:.5rem;transition:all .2s ease}.product-row:hover{border-color:#d1d5db;box-shadow:0 2px 4px #0000001a}.product-row-image{flex-shrink:0}.product-thumbnail{width:60px;height:60px;border-radius:.375rem;object-fit:cover;border:1px solid #e5e7eb}.product-row-info{flex:1;min-width:0}.product-row-name{font-weight:600;color:#111827;font-size:1rem;margin-bottom:.25rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.product-row-details{display:flex;gap:1rem;align-items:center;font-size:.875rem}.product-row-price{color:#059669;font-weight:600}.product-row-category{color:#6b7280;text-transform:capitalize}.product-row-action{flex-shrink:0}.add-button{padding:.5rem 1rem;background-color:#2563eb;color:#fff;border:none;border-radius:.375rem;font-size:.875rem;font-weight:500;cursor:pointer;transition:background-color .2s ease;min-width:60px}.add-button:hover{background-color:#1d4ed8}.add-button:active{background-color:#1e40af}@media (max-width: 768px){.product-row{padding:.75rem;gap:.75rem}.product-thumbnail{width:50px;height:50px}.product-row-name{font-size:.875rem}.product-row-details{font-size:.75rem;gap:.5rem}.add-button{padding:.375rem .75rem;font-size:.75rem;min-width:50px}}.product-row-actions{display:flex;gap:.5rem;flex-shrink:0}.action-button{padding:.5rem;border:none;border-radius:.375rem;cursor:pointer;transition:all .2s ease;display:flex;align-items:center;justify-content:center;min-width:40px;height:40px}.edit-button{background-color:#f59e0b;color:#fff}.edit-button:hover{background-color:#d97706}.edit-button:active{background-color:#b45309}.delete-button{background-color:#dc2626;color:#fff}.delete-button:hover{background-color:#b91c1c}.delete-button:active{background-color:#991b1b}.btn[title="Add Product"]{background-color:#2563eb;color:#fff;border:none;border-radius:.5rem;cursor:pointer;transition:all .2s ease;box-shadow:0 1px 3px #0000001a}.btn[title="Add Product"]:hover{background-color:#1d4ed8;transform:translateY(-1px);box-shadow:0 4px 6px -1px #0000001a}.btn[title="Add Product"]:active{transform:translateY(0);box-shadow:0 1px 3px #0000001a}
