/* Next Art display font for the shop header + section nav */
@font-face {
  font-family: 'Next Art';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("/static/fonts/NextArt-Bold.otf") format("opentype");
}

/* Blue shop header bar */
.shop-header {
  background: #3399ff;
  padding: 10px 14px;
  text-align: center;
}
.shop-header .shop-logo {
  max-width: 420px;
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto 6px;
}
/* Section nav — yellow NEXT ART text on pink pills */
.shop-section-nav {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 4px 0 8px;
}
.shop-section-nav a {
  font-family: 'Next Art', sans-serif;
  font-weight: 700;
  color: #ffff66;
  text-decoration: none;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.5px;
  background: #ec1c94;          /* pink pill */
  padding: 6px 20px;
  border-radius: 24px;
  display: inline-block;
}
.shop-section-nav a.active {
  background: #b3146f;          /* darker pink for the current section */
}
.shop-section-nav a:hover { filter: brightness(1.08); }

/* Blurb row: one-line text centered, filter icon pinned to the far right */
.shop-blurb-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.shop-current-artwork-line {
  color: #fff;
  font-size: 0.8rem;
  text-align: center;
  margin: 0;
  flex: 1;
}
/* Filter icon button — right-justified on the blurb row */
.shop-filter-toggle {
  background: transparent;
  border: none;
  color: #ffff66;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  margin-left: auto;
  flex: 0 0 auto;
}
