:root {
  --dipaolo-olive: #556B2F;
  --dipaolo-olive-dark: #3D4F1F;
  --dipaolo-olive-light: #7A9A3D;
  --dipaolo-olive-rgb: 85, 107, 47;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.app-header .nav-link {
  color: rgba(0, 0, 0, 0.7);
}
.app-header .nav-link:hover {
  color: rgba(0, 0, 0, 0.9);
}

.sidebar-brand {
  background-color: #fff;
}
.sidebar-brand .brand-link {
  background-color: #fff;
}
.sidebar-brand .brand-text {
  color: #212529;
}

.sidebar-menu .nav-link.active {
  background-color: rgba(var(--dipaolo-olive-rgb), 0.15);
  color: var(--dipaolo-olive);
}
[data-bs-theme=dark] .sidebar-menu .nav-link.active {
  background-color: rgba(var(--dipaolo-olive-rgb), 0.3);
  color: #fff;
}

.card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.card-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background-color: transparent;
}

.btn {
  font-weight: 500;
}
.btn-sm {
  font-weight: 500;
}

.table > thead > tr > th {
  border-bottom-width: 1px;
  font-weight: 600;
  font-size: 0.875rem;
}

.small-box {
  border-radius: 0.5rem;
  overflow: hidden;
}
.small-box-icon .bi,
.small-box-icon .bi::before {
  font-size: 70px;
}

.app-content-header {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

.app-footer {
  padding: 1rem;
}

[data-bs-theme=dark] .card {
  border-color: rgba(255, 255, 255, 0.1);
}
[data-bs-theme=dark] .sidebar-brand {
  background-color: #343a40;
}
[data-bs-theme=dark] .sidebar-brand .brand-link {
  background-color: #343a40;
}
[data-bs-theme=dark] .sidebar-brand .brand-text {
  color: #fff;
}
[data-bs-theme=dark] .app-header .nav-link {
  color: rgba(255, 255, 255, 0.7);
}
[data-bs-theme=dark] .app-header .nav-link:hover {
  color: rgba(255, 255, 255, 0.9);
}
[data-bs-theme=dark] .small-box-icon {
  color: rgba(255, 255, 255, 0.2);
}

/* Tarjetas de vista tienda/grid */
.product-card {
  transition: box-shadow 0.2s;
  border: 1px solid rgba(0,0,0,.125);
}
.product-card:hover {
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}
.product-card .card-img-top {
  height: 180px;
  object-fit: contain;
  padding: 1rem;
}
.product-card .card-body {
  padding: .75rem;
}
.product-card .product-title {
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .product-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dipaolo-olive);
}
.product-card .product-code {
  font-size: .75rem;
  color: #6c757d;
}

/* toastr override para BS5 — evitar fondo semitransparente */
#toast-container > .toast {
  background-color: transparent !important;
}
#toast-container > .toast-success {
  background-color: #51A351 !important;
}
#toast-container > .toast-error {
  background-color: #BD362F !important;
}
#toast-container > .toast-info {
  background-color: #2F96B4 !important;
}
#toast-container > .toast-warning {
  background-color: #F89406 !important;
}
