body {
  background-color: #f9f7f2;
}

.product-card {
  background-color: #fff;
}

.filter-sidebar {
  background-color: #fff;
  border-radius: .375rem;
  padding: 1rem;
}

.product-grid .col {
  max-width: 200px;
}

.product-thumb {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.no-image {
  aspect-ratio: 1 / 1;
  font-size: .75rem;
}

.product-card {
  transition: box-shadow .15s;
  border: 1px solid #dee2e6;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  border-color: #adb5bd;
}

.product-card.nfs {
  opacity: .75;
}

/* Product detail image */
.product-main-img {
  max-height: 75vh;
  width: auto;
  max-width: 100%;
}

/* Product detail nav arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  line-height: 1;
  color: #fff;
  background: rgba(0, 0, 0, .45);
  border-radius: 50%;
  text-decoration: none;
  transition: background .15s, transform .15s;
  user-select: none;
}

.nav-arrow:hover {
  background: rgba(0, 0, 0, .72);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.nav-arrow-prev { left:  .75rem; }
.nav-arrow-next { right: .75rem; }

/* Active filter inputs */
.filter-active {
  border-color: #0d6efd !important;
  box-shadow: 0 0 0 2px rgba(13, 110, 253, .15) !important;
}

.filter-chip {
  font-size: .75rem;
  padding: .3em .5em;
  cursor: pointer;
}

.filter-chip:hover {
  opacity: .85;
}

/* Tighten up admin table */
.table-sm td, .table-sm th {
  font-size: .875rem;
}
