/* ===================== oilvending.com Custom Styles ===================== */

:root {
  --brand: #0d6efd;
  --brand-dark: #0a58ca;
}

body {
  background-color: #f8f9fa;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

/* Product card */
.product-card {
  transition: transform .2s, box-shadow .2s;
  border: none;
  border-radius: .75rem;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.product-card .card-img-top {
  height: 220px;
  object-fit: cover;
}
.product-card .price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand);
}
.product-card .badge-stock {
  font-size: .72rem;
}

/* Cart table */
.cart-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: .5rem;
}

/* Order badge */
.status-pending    { background: #ffc107; color:#000; }
.status-processing { background: #0dcaf0; color:#000; }
.status-shipped    { background: #0d6efd; color:#fff; }
.status-delivered  { background: #198754; color:#fff; }
.status-cancelled  { background: #dc3545; color:#fff; }

/* Admin sidebar */
.admin-sidebar {
  min-height: calc(100vh - 56px);
  background: #212529;
}
.admin-sidebar .nav-link {
  color: #adb5bd;
  border-radius: .5rem;
  margin-bottom: .2rem;
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
  background: var(--brand);
  color: #fff;
}
.admin-sidebar .nav-link i { width: 1.4em; }

/* Stats card */
.stat-card { border: none; border-radius: .75rem; }
.stat-card .stat-icon {
  font-size: 2.5rem;
  opacity: .2;
}

/* Auth pages */
.auth-card {
  max-width: 420px;
  border: none;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}

/* Footer brand logos */
.footer-brand {
  opacity: .85;
  transition: opacity .2s;
}
.footer-brand:hover {
  opacity: 1;
}
