/* Custom styles for PhoneShop */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }

/* Smooth transitions */
a, button { transition: all 0.2s ease; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #888; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* Tailwind overrides */
input:focus, select:focus, textarea:focus { outline: none; border-color: #eab308; }

/* Admin sidebar active state */
.sidebar-active { background: #eab308; color: #111; font-weight: 600; }

/* Product card hover */
.product-card:hover img { transform: scale(1.05); }

/* Status badges */
.status-pending { background: #f3f4f6; color: #374151; }
.status-processing { background: #fef3c7; color: #92400e; }
.status-shipped { background: #dbeafe; color: #1e40af; }
.status-delivered { background: #d1fae5; color: #065f46; }
.status-cancelled { background: #fee2e2; color: #991b1b; }

/* Responsive tables */
@media (max-width: 640px) {
  table { font-size: 0.875rem; }
}
