*{margin:0;padding:0;box-sizing:border-box}body{font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;background-color:#f5f5f5;color:#333;line-height:1.6}.pos-container{height:100vh;display:flex;flex-direction:column}.pos-header{background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;padding:1rem 2rem;display:flex;justify-content:space-between;align-items:center;box-shadow:0 2px 10px #0000001a}.logo{display:flex;align-items:center;gap:.5rem}.logo i{font-size:2rem}.logo h1{font-size:1.8rem;font-weight:600}.header-actions{display:flex;align-items:center;gap:1rem}.time-display{background:#fff3;padding:.5rem 1rem;border-radius:20px;font-weight:500}.pos-main{flex:1;display:grid;grid-template-columns:2fr 1fr;gap:1rem;padding:1rem;overflow:hidden}.products-section{background:#fff;border-radius:12px;padding:1.5rem;box-shadow:0 4px 20px #0000001a;display:flex;flex-direction:column}.category-tabs{display:flex;gap:.5rem;margin-bottom:1.5rem;border-bottom:2px solid #f0f0f0;padding-bottom:1rem}.category-tab{padding:.7rem 1.5rem;border:none;background:#f8f9fa;border-radius:25px;cursor:pointer;transition:all .3s ease;font-weight:500}.category-tab:hover{background:#e9ecef;transform:translateY(-2px)}.category-tab.active{background:linear-gradient(135deg,#667eea,#764ba2);color:#fff}.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:1rem;overflow-y:auto;flex:1}.product-card{background:#fff;border:2px solid #f0f0f0;border-radius:12px;padding:1rem;cursor:pointer;transition:all .3s ease;text-align:center;position:relative}.product-card:hover{border-color:#667eea;transform:translateY(-5px);box-shadow:0 8px 25px #667eea26}.product-card.out-of-stock{opacity:.5;cursor:not-allowed}.product-card .product-icon{font-size:3rem;margin-bottom:.5rem;color:#667eea}.product-card h3{font-size:1.1rem;margin-bottom:.5rem;color:#333}.product-card .price{font-size:1.3rem;font-weight:700;color:#28a745}.product-card .stock{position:absolute;top:.5rem;right:.5rem;background:#ffc107;color:#333;padding:.2rem .5rem;border-radius:10px;font-size:.8rem;font-weight:700}.cart-section{background:#fff;border-radius:12px;padding:1.5rem;box-shadow:0 4px 20px #0000001a;display:flex;flex-direction:column;max-height:calc(100vh - 120px)}.cart-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem;padding-bottom:1rem;border-bottom:2px solid #f0f0f0}.cart-header h2{color:#333;display:flex;align-items:center;gap:.5rem}.cart-items{flex:1;overflow-y:auto;margin-bottom:1rem;min-height:200px}.empty-cart{text-align:center;color:#999;padding:2rem}.empty-cart i{font-size:3rem;margin-bottom:1rem;opacity:.5}.cart-item{display:flex;justify-content:space-between;align-items:center;padding:1rem;border-bottom:1px solid #f0f0f0;animation:slideIn .3s ease}@keyframes slideIn{0%{opacity:0;transform:translate(20px)}to{opacity:1;transform:translate(0)}}.cart-item-info h4{margin-bottom:.2rem;color:#333}.cart-item-info .item-price{color:#28a745;font-weight:700}.cart-item-controls{display:flex;align-items:center;gap:.5rem}.quantity-btn{width:30px;height:30px;border:none;border-radius:50%;background:#667eea;color:#fff;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s ease}.quantity-btn:hover{background:#5a67d8;transform:scale(1.1)}.quantity-display{min-width:40px;text-align:center;font-weight:700;font-size:1.1rem}.remove-item{background:#dc3545;margin-left:.5rem}.remove-item:hover{background:#c82333}.cart-summary{border-top:2px solid #f0f0f0;padding-top:1rem;margin-bottom:1rem}.summary-row{display:flex;justify-content:space-between;margin-bottom:.5rem;font-size:1.1rem}.summary-row.total{font-weight:700;font-size:1.3rem;color:#333;border-top:1px solid #ddd;padding-top:.5rem;margin-top:.5rem}.payment-section{border-top:2px solid #f0f0f0;padding-top:1rem}.payment-methods{display:flex;gap:.5rem;margin-bottom:1rem}.payment-btn{flex:1;padding:.8rem;border:2px solid #ddd;background:#fff;border-radius:8px;cursor:pointer;transition:all .3s ease;display:flex;align-items:center;justify-content:center;gap:.5rem}.payment-btn:hover{border-color:#667eea}.payment-btn.active{border-color:#667eea;background:#667eea;color:#fff}.cash-input{margin-bottom:1rem}.cash-input label{display:block;margin-bottom:.5rem;font-weight:500}.cash-input input{width:100%;padding:.8rem;border:2px solid #ddd;border-radius:8px;font-size:1.1rem;margin-bottom:.5rem}.cash-input input:focus{outline:none;border-color:#667eea}.change-display{display:flex;justify-content:space-between;font-weight:700;color:#28a745}.btn{padding:.8rem 1.5rem;border:none;border-radius:8px;cursor:pointer;font-size:1rem;font-weight:500;transition:all .3s ease;display:inline-flex;align-items:center;justify-content:center;gap:.5rem}.btn:hover{transform:translateY(-2px);box-shadow:0 4px 15px #0003}.btn-primary{background:linear-gradient(135deg,#667eea,#764ba2);color:#fff}.btn-secondary{background:#6c757d;color:#fff}.btn-danger{background:#dc3545;color:#fff}.btn-sm{padding:.5rem 1rem;font-size:.9rem}.btn-large{width:100%;padding:1rem;font-size:1.2rem}.btn:disabled{opacity:.5;cursor:not-allowed;transform:none}.modal{display:none;position:fixed;z-index:1000;left:0;top:0;width:100%;height:100%;background-color:#00000080;animation:fadeIn .3s ease}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.modal-content{background-color:#fff;margin:5% auto;padding:0;border-radius:12px;width:90%;max-width:600px;max-height:80vh;overflow:hidden;animation:slideDown .3s ease}@keyframes slideDown{0%{opacity:0;transform:translateY(-50px)}to{opacity:1;transform:translateY(0)}}.modal-header{background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;padding:1.5rem;display:flex;justify-content:space-between;align-items:center}.close-btn{background:none;border:none;color:#fff;font-size:2rem;cursor:pointer;padding:0;width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:50%;transition:background .3s ease}.close-btn:hover{background:#fff3}.receipt-content{padding:2rem;max-height:400px;overflow-y:auto}.receipt{font-family:Courier New,monospace;line-height:1.4}.receipt-header{text-align:center;margin-bottom:1rem;border-bottom:2px dashed #333;padding-bottom:1rem}.receipt-items{margin-bottom:1rem}.receipt-item{display:flex;justify-content:space-between;margin-bottom:.5rem}.receipt-summary{border-top:2px dashed #333;padding-top:1rem}.modal-actions{padding:1rem 2rem;display:flex;gap:1rem;border-top:1px solid #ddd}.modal-actions .btn{flex:1}.admin-content{padding:2rem;max-height:500px;overflow-y:auto}.admin-section{margin-bottom:2rem}.admin-section h3{margin-bottom:1rem;color:#333}.admin-section form{display:grid;gap:1rem}.admin-section input,.admin-section select{padding:.8rem;border:2px solid #ddd;border-radius:8px;font-size:1rem}.admin-section input:focus,.admin-section select:focus{outline:none;border-color:#667eea}.sales-stats{display:grid;gap:1rem}.stat-item{display:flex;justify-content:space-between;padding:1rem;background:#f8f9fa;border-radius:8px;font-weight:500}@media (max-width: 1024px){.pos-main{grid-template-columns:1fr;grid-template-rows:1fr auto}.cart-section{max-height:400px}}@media (max-width: 768px){.pos-header{padding:1rem}.logo h1{font-size:1.4rem}.products-grid{grid-template-columns:repeat(auto-fill,minmax(150px,1fr))}.modal-content{width:95%;margin:2% auto}}@media print{body *{visibility:hidden}.receipt-content,.receipt-content *{visibility:visible}.receipt-content{position:absolute;left:0;top:0;width:100%}}
