ÿØÿÛ C 

ÿØÿÛ C 

/**
 * POS Modern Design - Clean & Minimalist
 * Design inspired by: Stripe Dashboard, Zoho POS, Apple Design
 * Color Palette: Neutral with single accent color
 */

/* ========================================
   1. CSS VARIABLES & DESIGN TOKENS
   ======================================== */
:root {
  /* Primary Colors */
  --pos-primary: #7c3aed;
  --pos-primary-hover: #6d28d9;
  --pos-primary-light: #f5f3ff;
  
  /* Neutral Colors */
  --pos-white: #ffffff;
  --pos-gray-50: #fafafa;
  --pos-gray-100: #f5f5f5;
  --pos-gray-200: #e5e5e5;
  --pos-gray-300: #d4d4d4;
  --pos-gray-400: #a3a3a3;
  --pos-gray-500: #737373;
  --pos-gray-600: #525252;
  --pos-gray-700: #404040;
  --pos-gray-800: #262626;
  --pos-gray-900: #171717;
  
  /* Semantic Colors */
  --pos-success: #10b981;
  --pos-success-light: #d1fae5;
  --pos-danger: #ef4444;
  --pos-danger-light: #fee2e2;
  --pos-warning: #f59e0b;
  --pos-warning-light: #fef3c7;
  --pos-info: #3b82f6;
  --pos-info-light: #dbeafe;
  
  /* Typography */
  --pos-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  --pos-font-size-xs: 0.75rem;    /* 12px */
  --pos-font-size-sm: 0.875rem;   /* 14px */
  --pos-font-size-base: 1rem;     /* 16px */
  --pos-font-size-lg: 1.125rem;   /* 18px */
  --pos-font-size-xl: 1.25rem;    /* 20px */
  --pos-font-size-2xl: 1.5rem;    /* 24px */
  --pos-font-size-3xl: 1.875rem;  /* 30px */
  
  /* Spacing */
  --pos-space-1: 0.25rem;   /* 4px */
  --pos-space-2: 0.5rem;    /* 8px */
  --pos-space-3: 0.75rem;   /* 12px */
  --pos-space-4: 1rem;      /* 16px */
  --pos-space-5: 1.25rem;   /* 20px */
  --pos-space-6: 1.5rem;    /* 24px */
  --pos-space-8: 2rem;      /* 32px */
  --pos-space-10: 2.5rem;   /* 40px */
  
  /* Border Radius */
  --pos-radius-sm: 4px;
  --pos-radius: 8px;
  --pos-radius-lg: 12px;
  --pos-radius-xl: 16px;
  --pos-radius-full: 9999px;
  
  /* Shadows */
  --pos-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --pos-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --pos-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --pos-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  /* Transitions */
  --pos-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   2. BASE STYLES & RESETS
   ======================================== */
.pos_page {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 100vh;
  background: var(--pos-gray-50);
  font-family: var(--pos-font-family);
  overflow: hidden;
}

#pos {
  height: 100vh;
  overflow: hidden;
}

.pos_page * {
  font-family: var(--pos-font-family);
  text-transform: none;
}

/* ========================================
   3. HEADER STYLES
   ======================================== */
.pos-header {
  background: var(--pos-white);
  border-bottom: 1px solid var(--pos-gray-200);
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 var(--pos-space-6);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--pos-shadow-sm);
}

.pos-header .logo img {
  width: 36px;
  height: 36px;
  border-radius: var(--pos-radius);
  object-fit: cover;
}

.pos-header-actions {
  display: flex;
  align-items: center;
  gap: var(--pos-space-4);
  margin-left: auto;
}

.pos-header-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--pos-radius);
  background: var(--pos-gray-100);
  color: var(--pos-gray-700);
  transition: var(--pos-transition);
  cursor: pointer;
  font-size: 18px;
  border: none;
}

.pos-header-icon:hover {
  background: var(--pos-gray-200);
  color: var(--pos-gray-900);
}

.pos-header-icon.active {
  background: var(--pos-primary-light);
  color: var(--pos-primary);
}

/* ========================================
   4. LAYOUT - TWO COLUMN
   ======================================== */
.pos-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  height: calc(100vh - 60px);
  gap: 0;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .pos-layout {
    grid-template-columns: 380px 1fr;
  }
}

@media (max-width: 992px) {
  .pos-layout {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   5. LEFT PANEL - CART & ORDER
   ======================================== */
.pos-left-panel {
  background: var(--pos-white);
  border-right: 1px solid var(--pos-gray-200);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pos-cart-header {
  padding: var(--pos-space-6);
  border-bottom: 1px solid var(--pos-gray-200);
}

.pos-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--pos-space-4);
}

.pos-cart-footer {
  border-top: 1px solid var(--pos-gray-200);
  background: var(--pos-gray-50);
}

/* Customer & Warehouse Selects */
.pos-select-group {
  margin-bottom: var(--pos-space-4);
}

.pos-select-group label {
  font-size: var(--pos-font-size-sm);
  font-weight: 500;
  color: var(--pos-gray-700);
  margin-bottom: var(--pos-space-2);
  display: block;
}

.pos-select-group .v-select {
  border-radius: var(--pos-radius);
}

.pos-select-group .vs__dropdown-toggle {
  border: 1px solid var(--pos-gray-300);
  border-radius: var(--pos-radius);
  padding: var(--pos-space-2);
  background: var(--pos-white);
  transition: var(--pos-transition);
}

.pos-select-group .vs__dropdown-toggle:hover {
  border-color: var(--pos-gray-400);
}

.pos-select-group .vs__dropdown-toggle:focus-within {
  border-color: var(--pos-primary);
  box-shadow: 0 0 0 3px var(--pos-primary-light);
}

/* Cart Items Table */
.pos-cart-table {
  background: var(--pos-white);
  border-radius: var(--pos-radius);
  overflow: hidden;
  max-height: calc(100vh - 520px);
  overflow-y: auto;
}

.pos-cart-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.pos-cart-table thead {
  background: var(--pos-gray-50);
  position: sticky;
  top: 0;
  z-index: 10;
}

.pos-cart-table thead th {
  padding: var(--pos-space-3);
  font-size: var(--pos-font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--pos-gray-600);
  border-bottom: 1px solid var(--pos-gray-200);
  text-align: left;
}

.pos-cart-table tbody td {
  padding: var(--pos-space-4) var(--pos-space-3);
  font-size: var(--pos-font-size-sm);
  color: var(--pos-gray-700);
  border-bottom: 1px solid var(--pos-gray-100);
}

.pos-cart-table tbody tr:hover {
  background: var(--pos-gray-50);
}

.pos-cart-item-name {
  font-weight: 500;
  color: var(--pos-gray-900);
  margin-bottom: var(--pos-space-1);
}

.pos-cart-item-code {
  font-size: var(--pos-font-size-xs);
  color: var(--pos-gray-500);
}

/* Quantity Controls */
.pos-qty-control {
  display: flex;
  align-items: center;
  gap: var(--pos-space-1);
  width: 100px;
}

.pos-qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--pos-gray-300);
  background: var(--pos-white);
  border-radius: var(--pos-radius-sm);
  color: var(--pos-gray-700);
  font-size: var(--pos-font-size-base);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--pos-transition);
  padding: 0;
}

.pos-qty-btn:hover {
  background: var(--pos-primary);
  color: var(--pos-white);
  border-color: var(--pos-primary);
}

.pos-qty-input {
  flex: 1;
  text-align: center;
  border: 1px solid var(--pos-gray-300);
  border-radius: var(--pos-radius-sm);
  height: 28px;
  font-size: var(--pos-font-size-sm);
  padding: 0;
}

.pos-qty-input:focus {
  outline: none;
  border-color: var(--pos-primary);
  box-shadow: 0 0 0 3px var(--pos-primary-light);
}

/* Cart Summary */
.pos-cart-summary {
  padding: var(--pos-space-6);
  background: var(--pos-white);
}

.pos-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--pos-space-3) 0;
  font-size: var(--pos-font-size-sm);
  color: var(--pos-gray-700);
  border-bottom: 1px solid var(--pos-gray-100);
}

.pos-total-row.grand-total {
  padding-top: var(--pos-space-4);
  border-top: 2px solid var(--pos-gray-300);
  border-bottom: none;
  margin-top: var(--pos-space-2);
}

.pos-total-row.grand-total .label {
  font-size: var(--pos-font-size-lg);
  font-weight: 600;
  color: var(--pos-gray-900);
}

.pos-total-row.grand-total .value {
  font-size: var(--pos-font-size-2xl);
  font-weight: 700;
  color: var(--pos-primary);
}

/* Discount & Tax Inputs */
.pos-input-group {
  margin-bottom: var(--pos-space-4);
}

.pos-input-group label {
  font-size: var(--pos-font-size-sm);
  font-weight: 500;
  color: var(--pos-gray-700);
  margin-bottom: var(--pos-space-2);
  display: block;
}

.pos-input-group input {
  width: 100%;
  padding: var(--pos-space-3);
  border: 1px solid var(--pos-gray-300);
  border-radius: var(--pos-radius);
  font-size: var(--pos-font-size-sm);
  transition: var(--pos-transition);
}

.pos-input-group input:focus {
  outline: none;
  border-color: var(--pos-primary);
  box-shadow: 0 0 0 3px var(--pos-primary-light);
}

/* Action Buttons */
.pos-action-buttons {
  padding: var(--pos-space-4) var(--pos-space-6);
  display: flex;
  gap: var(--pos-space-3);
  background: var(--pos-white);
  border-top: 1px solid var(--pos-gray-200);
}

.pos-btn {
  flex: 1;
  padding: var(--pos-space-4);
  font-size: var(--pos-font-size-sm);
  font-weight: 500;
  border-radius: var(--pos-radius);
  border: none;
  cursor: pointer;
  transition: var(--pos-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--pos-space-2);
}

.pos-btn-primary {
  background: var(--pos-primary);
  color: var(--pos-white);
}

.pos-btn-primary:hover {
  background: var(--pos-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--pos-shadow-md);
}

.pos-btn-success {
  background: var(--pos-success);
  color: var(--pos-white);
}

.pos-btn-success:hover {
  background: #0ea373;
  transform: translateY(-1px);
  box-shadow: var(--pos-shadow-md);
}

.pos-btn-danger {
  background: var(--pos-danger);
  color: var(--pos-white);
}

.pos-btn-danger:hover {
  background: #dc2626;
  transform: translateY(-1px);
  box-shadow: var(--pos-shadow-md);
}

.pos-btn-light {
  background: var(--pos-gray-100);
  color: var(--pos-gray-700);
  border: 1px solid var(--pos-gray-300);
}

.pos-btn-light:hover {
  background: var(--pos-gray-200);
}

/* ========================================
   6. RIGHT PANEL - PRODUCTS
   ======================================== */
.pos-right-panel {
  background: var(--pos-gray-50);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pos-search-section {
  background: var(--pos-white);
  padding: var(--pos-space-6);
  border-bottom: 1px solid var(--pos-gray-200);
}

.pos-search-bar {
  position: relative;
  margin-bottom: var(--pos-space-4);
}

.pos-search-input {
  width: 100%;
  padding: var(--pos-space-4) var(--pos-space-4) var(--pos-space-4) 48px;
  border: 1px solid var(--pos-gray-300);
  border-radius: var(--pos-radius);
  font-size: var(--pos-font-size-base);
  transition: var(--pos-transition);
  background: var(--pos-white);
}

.pos-search-input:focus {
  outline: none;
  border-color: var(--pos-primary);
  box-shadow: 0 0 0 3px var(--pos-primary-light);
}

.pos-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pos-gray-400);
  font-size: 20px;
  pointer-events: none;
}

.pos-scan-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--pos-transition);
}

.pos-scan-icon:hover {
  opacity: 1;
}

/* Filter Buttons */
.pos-filter-buttons {
  display: flex;
  gap: var(--pos-space-3);
}

.pos-filter-btn {
  flex: 1;
  padding: var(--pos-space-3);
  background: var(--pos-gray-100);
  border: 1px solid var(--pos-gray-200);
  border-radius: var(--pos-radius);
  font-size: var(--pos-font-size-sm);
  color: var(--pos-gray-700);
  cursor: pointer;
  transition: var(--pos-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--pos-space-2);
}

.pos-filter-btn:hover {
  background: var(--pos-gray-200);
  border-color: var(--pos-gray-300);
}

/* Products Grid */
.pos-products-container {
  flex: 1;
  overflow-y: auto;
  padding: var(--pos-space-6);
}

.pos-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--pos-space-4);
  margin-bottom: var(--pos-space-6);
}

@media (min-width: 1400px) {
  .pos-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

.pos-product-card {
  background: var(--pos-white);
  border: 1px solid var(--pos-gray-200);
  border-radius: var(--pos-radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--pos-transition);
  display: flex;
  flex-direction: column;
}

.pos-product-card:hover {
  border-color: var(--pos-primary);
  box-shadow: var(--pos-shadow-md);
  transform: translateY(-2px);
}

.pos-product-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  background: var(--pos-gray-100);
}

.pos-product-info {
  padding: var(--pos-space-3);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pos-product-name {
  font-size: var(--pos-font-size-sm);
  font-weight: 500;
  color: var(--pos-gray-900);
  margin-bottom: var(--pos-space-1);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pos-product-code {
  font-size: var(--pos-font-size-xs);
  color: var(--pos-gray-500);
  margin-bottom: var(--pos-space-2);
}

.pos-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.pos-product-price {
  font-size: var(--pos-font-size-base);
  font-weight: 600;
  color: var(--pos-primary);
}

.pos-product-stock {
  font-size: var(--pos-font-size-xs);
  padding: 2px 8px;
  background: var(--pos-success-light);
  color: var(--pos-success);
  border-radius: var(--pos-radius-full);
}

/* Pagination */
.pos-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--pos-space-2);
  padding: var(--pos-space-4) 0;
}

.pos-pagination button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--pos-gray-300);
  background: var(--pos-white);
  border-radius: var(--pos-radius);
  color: var(--pos-gray-700);
  cursor: pointer;
  transition: var(--pos-transition);
}

.pos-pagination button:hover {
  border-color: var(--pos-primary);
  color: var(--pos-primary);
}

.pos-pagination button.active {
  background: var(--pos-primary);
  border-color: var(--pos-primary);
  color: var(--pos-white);
}

/* ========================================
   7. MODAL STYLES
   ======================================== */
.pos-modal-header {
  border-bottom: 1px solid var(--pos-gray-200);
  padding: var(--pos-space-6);
  background: var(--pos-white);
}

.pos-modal-title {
  font-size: var(--pos-font-size-xl);
  font-weight: 600;
  color: var(--pos-gray-900);
}

.pos-modal-body {
  padding: var(--pos-space-6);
  background: var(--pos-gray-50);
}

.pos-modal-footer {
  border-top: 1px solid var(--pos-gray-200);
  padding: var(--pos-space-4) var(--pos-space-6);
  background: var(--pos-white);
  display: flex;
  gap: var(--pos-space-3);
  justify-content: flex-end;
}

/* Payment Modal */
.pos-payment-summary {
  background: var(--pos-white);
  border: 1px solid var(--pos-gray-200);
  border-radius: var(--pos-radius);
  padding: var(--pos-space-6);
}

.pos-payment-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--pos-space-4) 0;
  border-bottom: 1px solid var(--pos-gray-100);
}

.pos-payment-summary-row:last-child {
  border-bottom: none;
}

.pos-payment-summary-label {
  font-size: var(--pos-font-size-sm);
  color: var(--pos-gray-600);
  display: flex;
  align-items: center;
  gap: var(--pos-space-2);
}

.pos-payment-summary-value {
  font-size: var(--pos-font-size-base);
  font-weight: 600;
  color: var(--pos-gray-900);
}

/* Keypad */
.pos-keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--pos-space-2);
  margin-top: var(--pos-space-4);
}

.pos-keypad-btn {
  padding: var(--pos-space-4);
  background: var(--pos-white);
  border: 1px solid var(--pos-gray-300);
  border-radius: var(--pos-radius);
  font-size: var(--pos-font-size-lg);
  color: var(--pos-gray-900);
  cursor: pointer;
  transition: var(--pos-transition);
  font-weight: 500;
}

.pos-keypad-btn:hover {
  background: var(--pos-gray-100);
  border-color: var(--pos-gray-400);
}

.pos-keypad-btn:active {
  transform: scale(0.95);
}

/* ========================================
   8. SIDEBAR STYLES
   ======================================== */
.pos-sidebar {
  background: var(--pos-white);
  padding: var(--pos-space-6);
}

.pos-sidebar-title {
  font-size: var(--pos-font-size-xl);
  font-weight: 600;
  color: var(--pos-gray-900);
  margin-bottom: var(--pos-space-6);
}

/* Category/Brand Grid */
.pos-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--pos-space-3);
}

.pos-category-item {
  background: var(--pos-white);
  border: 2px solid var(--pos-gray-200);
  border-radius: var(--pos-radius);
  padding: var(--pos-space-4);
  text-align: center;
  cursor: pointer;
  transition: var(--pos-transition);
  font-size: var(--pos-font-size-sm);
  font-weight: 500;
  color: var(--pos-gray-700);
}

.pos-category-item:hover {
  border-color: var(--pos-gray-400);
  background: var(--pos-gray-50);
}

.pos-category-item.active {
  border-color: var(--pos-primary);
  background: var(--pos-primary-light);
  color: var(--pos-primary);
  font-weight: 600;
}

/* ========================================
   9. UTILITY CLASSES
   ======================================== */
.pos-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--pos-radius-full);
  font-size: var(--pos-font-size-xs);
  font-weight: 500;
}

.pos-badge-success {
  background: var(--pos-success-light);
  color: var(--pos-success);
}

.pos-badge-primary {
  background: var(--pos-primary-light);
  color: var(--pos-primary);
}

.pos-badge-warning {
  background: var(--pos-warning-light);
  color: var(--pos-warning);
}

.pos-badge-danger {
  background: var(--pos-danger-light);
  color: var(--pos-danger);
}

.pos-text-muted {
  color: var(--pos-gray-500);
}

.pos-divider {
  height: 1px;
  background: var(--pos-gray-200);
  margin: var(--pos-space-4) 0;
}

/* ========================================
   10. LOADING & EMPTY STATES
   ======================================== */
.pos-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: var(--pos-gray-50);
}

.pos-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--pos-gray-200);
  border-top-color: var(--pos-primary);
  border-radius: 50%;
  animation: pos-spin 0.8s linear infinite;
}

@keyframes pos-spin {
  to { transform: rotate(360deg); }
}

.pos-empty-state {
  text-align: center;
  padding: var(--pos-space-10);
  color: var(--pos-gray-500);
}

.pos-empty-state-icon {
  font-size: 48px;
  margin-bottom: var(--pos-space-4);
  opacity: 0.5;
}

.pos-empty-state-text {
  font-size: var(--pos-font-size-base);
}

/* ========================================
   11. PRINT STYLES (Preserved)
   ======================================== */
@media print {
  .pos_page {
    position: static;
  }
  
  .pos-header,
  .pos-action-buttons,
  .pos-filter-buttons,
  .pos-search-section {
    display: none !important;
  }
  
  * {
    font-size: 12px;
    line-height: 18px;
  }
  
  body {
    margin: 0.5cm;
    margin-bottom: 1.6cm;
  }
  
  @page {
    margin: 0;
  }
}

/* ========================================
   12. RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 1024px) {
  .pos-layout {
    grid-template-columns: 1fr;
  }
  
  .pos-left-panel {
    border-right: none;
    border-bottom: 1px solid var(--pos-gray-200);
  }
  
  .pos-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: var(--pos-space-3);
  }
  
  .pos-action-buttons {
    flex-wrap: wrap;
  }
  
  .pos-btn {
    flex: 1 1 calc(50% - 6px);
  }
}

/* ========================================
   13. ACCESSIBILITY
   ======================================== */
.pos-btn:focus,
.pos-product-card:focus,
.pos-category-item:focus {
  outline: 2px solid var(--pos-primary);
  outline-offset: 2px;
}

.pos-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========================================
   14. AUTOCOMPLETE RESULTS
   ======================================== */
.pos-autocomplete {
  position: relative;
}

.pos-autocomplete-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--pos-white);
  border: 1px solid var(--pos-gray-300);
  border-top: none;
  border-radius: 0 0 var(--pos-radius) var(--pos-radius);
  box-shadow: var(--pos-shadow-lg);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  margin-top: -8px;
}

.pos-autocomplete-item {
  padding: var(--pos-space-3) var(--pos-space-4);
  cursor: pointer;
  transition: var(--pos-transition);
  font-size: var(--pos-font-size-sm);
  color: var(--pos-gray-700);
  border-bottom: 1px solid var(--pos-gray-100);
}

.pos-autocomplete-item:last-child {
  border-bottom: none;
}

.pos-autocomplete-item:hover {
  background: var(--pos-gray-50);
  color: var(--pos-gray-900);
}

/* ========================================
   15. TOAST/NOTIFICATION OVERRIDES
   ======================================== */
.b-toaster .b-toast {
  border-radius: var(--pos-radius);
  box-shadow: var(--pos-shadow-lg);
}

/* ========================================
   16. CUSTOM SCROLLBAR
   ======================================== */
.pos-cart-table::-webkit-scrollbar,
.pos-products-container::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.pos-cart-table::-webkit-scrollbar-track,
.pos-products-container::-webkit-scrollbar-track {
  background: var(--pos-gray-100);
  border-radius: var(--pos-radius-full);
}

.pos-cart-table::-webkit-scrollbar-thumb,
.pos-products-container::-webkit-scrollbar-thumb {
  background: var(--pos-gray-400);
  border-radius: var(--pos-radius-full);
}

.pos-cart-table::-webkit-scrollbar-thumb:hover,
.pos-products-container::-webkit-scrollbar-thumb:hover {
  background: var(--pos-gray-500);
}

