/* ================================
   CARRO ASTS - Estilos globales
   ================================ */

:root {
  --brand-primary: #0d6efd;
  --brand-dark: #0a1f44;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: #fafafa;
  color: #222;
}

.site-header .navbar-brand {
  letter-spacing: .5px;
}

.hero-banner {
  background: linear-gradient(135deg, #0d6efd 0%, #0a1f44 100%);
}

.product-card {
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid #eee;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,.1);
}
.product-card .card-img-top {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.site-footer a:hover {
  text-decoration: underline;
}

.thumb {
  cursor: pointer;
  transition: opacity .2s;
}
.thumb:hover {
  opacity: .7;
}

/* Admin */
aside .nav-link {
  border-radius: 6px;
  margin-bottom: 2px;
}
aside .nav-link:hover {
  background: rgba(255,255,255,.08);
}

@media (max-width: 768px) {
  aside { width: 100% !important; min-height: auto !important; }
  .d-flex > aside { flex-direction: row; overflow-x: auto; }
}