/** Shopify CDN: Minification failed

Line 136:10 Expected identifier but found whitespace
Line 136:15 Unexpected ";"

**/
/* ============================================
   HTV T-SHIRTS LANDING
   ============================================ */

/* Base layout + zoom variables */

.htv-page {
  --grid-cols: 4;
  --grid-row-gap: 1.6rem;
  --grid-column-gap: 1.4rem;
  --image-max-width: 80%;

  background: #ffffff;
  padding: 1.5rem 0 3.5rem;
}

@media (min-width: 768px) {
  .htv-page {
    padding: 2rem 0 4rem;
  }
}

.htv-inner.page-width {
  margin: 0 auto;
}

/* When overlay is active:
   - Keep header/topbar visible
   - Hide just the grid
   - Show the overlay card stack
*/
.htv-page--overlay-active .htv-grid {
  display: none;
}

.htv-overlay {
  display: none;
}

.htv-page--overlay-active .htv-overlay {
  display: block;
}

/* Keep background content from scrolling when overlay is open */
html.htv-no-scroll,
body.htv-no-scroll {
  overflow: hidden;
}

/* Zoom levels */

.htv-page--zoom-1 {
  --grid-cols: 4;
  --grid-row-gap: 1.6rem;
  --grid-column-gap: 1.4rem;
  --image-max-width: 80%;
}

.htv-page--zoom-2 {
  --grid-cols: 3;
  --grid-row-gap: 2.0rem;
  --grid-column-gap: 1.8rem;
  --image-max-width: 85%;
}

.htv-page--zoom-3 {
  --grid-cols: 2;
  --grid-row-gap: 2.4rem;
  --grid-column-gap: 2.0rem;
  --image-max-width: 90%;
}

.htv-page--zoom-4 {
  --grid-cols: 1;
  --grid-row-gap: 3.0rem;
  --grid-column-gap: 0;
  --image-max-width: 95%;
}

/* Top bar (ZOOM CONTROL ROW) */

/* Top bar */

.htv-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  z-index: 8; /* above grid, below header */
}

/* Optional: if you have an inner wrapper, keep it horizontal too */
.htv-topbar__inner,
.htv-inner.page-width .htv-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* “Follow the header” fixed state – we’ll toggle this in JS */
.htv-topbar--fixed {
  position: fixed;
  left: 0;
  right: 0;
}

/* Make the zoom / dots / fullscreen bar stick just under the header */
.htv-topbar[data-htv-topbar] {
  position: sticky;
  top: var(--htv-header-offset, 80px); /* updated by JS */
  z-index: 3; /* below header, above grid */
  background: #fff;
}


.htv-zoom-toggle--is-back {
  border-color: #000;
  background: #fff;
  color: #000;
}

/* Don't animate the arrow button like a zoom control */
.htv-zoom-toggle--is-back:hover,
.htv-zoom-toggle--is-back:active {
  transform: none;
  box-shadow: none;
}
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.htv-topbar__side--left {
  /* align the left circle with the Dawn hamburger */
  margin-left: var(--htv-zoom-margin-left, 0);
}

.htv-topbar__side--right {
  justify-content: flex-end;
}

.htv-topbar__center {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.htv-topbar__icon {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.35);
}

/* Zoom button (magnifying glass) */

/* Zoom/back button states */
.htv-zoom-toggle {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    background 0.18s ease-out,
    color 0.18s ease-out;
  touch-action: manipulation;
}

/* When used as a back button */
.htv-zoom-toggle--is-back {
  background: #000;
  color: #fff;
}

/* Back-arrow styling inside overlay mode */
.htv-zoom-toggle--is-back {
  border: none;
  background: transparent;
  box-shadow: none;
  width: auto;
  height: auto;
  padding: 0;
  font-size: 24px; /* clear arrow, matches your header scale */
  line-height: 1;
}

/* Don't animate the arrow button like a zoom control */
.htv-zoom-toggle--is-back:hover,
.htv-zoom-toggle--is-back:active {
  transform: none;
  box-shadow: none;
}

/* When overlay (detail view) is open, keep left button only */
.htv-page--overlay-active .htv-topbar__center,
.htv-page--overlay-active .htv-topbar__side--right {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

/* Optional: a nice little fade in/out for the whole bar */
.htv-topbar {
  transition: background 0.2s ease-out, box-shadow 0.2s ease-out;
}

.htv-page--overlay-active .htv-topbar {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* We now use the header back button instead of this text button */
.htv-overlay__back {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.htv-zoom-toggle::before {
  /* magnifying glass circle */
  content: '';
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  border: 2px solid #000;
  box-sizing: border-box;
  position: relative;
}

.htv-zoom-toggle::after {
  /* handle + plus sign */
  content: '+';
  font-size: 1rem;
  line-height: 1;
  position: absolute;
  right: 0.5rem;
  bottom: 0.6rem;
}

.htv-zoom-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.htv-zoom-toggle:active {
  transform: scale(0.92);
  box-shadow: none;
}

.htv-zoom-toggle--active {
  background: #000;
  color: #fff;
}

.htv-zoom-toggle--active::before {
  border-color: #fff;
}

.htv-zoom-toggle--active::after {
  color: #fff;
}

/* Grid */

.htv-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(var(--grid-cols), minmax(0, 1fr));
  row-gap: var(--grid-row-gap);
  column-gap: var(--grid-column-gap);
  transition:
    grid-template-columns 0.25s ease-out,
    column-gap 0.25s ease-out,
    row-gap 0.25s ease-out;
}

.htv-grid__item {
  text-align: center;
  transition:
    transform 0.25s ease-out,
    opacity 0.25s ease-out;
}

.htv-grid__item--sold-out {
  opacity: 0.35;
}

.htv-grid__item:hover {
  transform: translateY(-2px);
}

.htv-grid__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Image */

.htv-grid__image-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.htv-grid__image {
  max-width: var(--image-max-width);
  height: auto;
  object-fit: contain;
}

/* Title */

.htv-grid__meta {
  margin-top: 0.4rem;
}

.htv-grid__title.card__heading.h5 {
  display: inline-block;
}

/* Hide titles on zoomed-out 4 / 3 col views */

.htv-page--zoom-1 .htv-grid__meta,
.htv-page--zoom-2 .htv-grid__meta {
  display: none;
}

.htv-page--zoom-3 .htv-grid__meta,
.htv-page--zoom-4 .htv-grid__meta {
  display: block;
}

/* Empty */

.htv-empty {
  text-align: center;
  opacity: 0.6;
  margin-top: 3rem;
}

/* Zoom animation */

@keyframes htv-pop {
  0% {
    transform: scale(0.9);
    opacity: 0.0;
  }
  60% {
    transform: scale(1.02);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.htv-page--zooming .htv-grid__item {
  animation: htv-pop 0.35s ease-out;
}

.htv-page--zooming .htv-grid__item:nth-child(3n) {
  animation-delay: 0.03s;
}
.htv-page--zooming .htv-grid__item:nth-child(3n + 1) {
  animation-delay: 0.06s;
}
.htv-page--zooming .htv-grid__item:nth-child(3n + 2) {
  animation-delay: 0.09s;
}

/* ============================================
   INLINE OVERLAY VIEWER (SNAP-SCROLL)
   ============================================ */

/* Overlay occupies the viewport area under your header */

.htv-overlay {
  position: relative;
  display: none;
  margin-top: 0;
  padding: 0 1.5rem 2rem;
  height: calc(100vh - var(--htv-overlay-offset, 140px));
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .htv-overlay {
    padding-inline: 1.25rem;
  }
}

/* Back to grid (aligned with hamburger via --htv-back-left) */

.htv-overlay__back {
  position: relative;
  left: var(--htv-back-left, 1.2rem);
  margin: 0.2rem 0 0.75rem;
  border: none;
  background: transparent;
  padding: 0.35rem 0.9rem 0.35rem 0;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
}

@media (min-width: 769px) {
  .htv-overlay__back {
    margin-bottom: 1rem;
  }
}

/* Snap-scroll container: full height, vertical snap */

.htv-overlay__scroller {
  height: calc(100vh - var(--htv-overlay-offset, 120px));
  max-height: calc(100vh - var(--htv-overlay-offset, 120px));
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
}

/* Each product snaps like a page */

/* Make every overlay card fill the visible scroller area */
.htv-overlay-product {
  scroll-snap-align: start;
  box-sizing: border-box;
  min-height: calc(100vh - var(--htv-overlay-offset, 120px));
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.2rem 0 2rem;
}

.htv-overlay-product__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  column-gap: 2.4rem;
  align-items: center;
  padding: 0 1.6rem;
}

@media (max-width: 768px) {
  .htv-topbar {
    padding: 0.55rem 1.1rem 0.3rem;
  }

  .htv-overlay__scroller {
    height: calc(100vh - var(--htv-overlay-offset, 120px));
    max-height: calc(100vh - var(--htv-overlay-offset, 120px));
  }

  .htv-overlay-product__inner {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0.6rem;
    justify-items: center;
    padding: 0 0.9rem 0.4rem;
  }

  .htv-overlay-product {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0.4rem;
  }

  .htv-overlay-product__gallery {
    margin-top: -1rem;
  }
}

/* Gallery */

.htv-overlay-product__gallery {
  position: relative;
  width: 100%;
  touch-action: pan-y pinch-zoom;
  max-width: 620px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .htv-overlay-product__gallery {
    max-width: 520px;
    margin-left: calc(var(--htv-zoom-margin-left, 0px) - 8px);
    margin-right: 0;
  }
}

.htv-overlay-product__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(12px);
  transition:
    opacity 0.35s ease-out,
    transform 0.35s ease-out;
}

.htv-overlay-product__slide.is-active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.htv-overlay-product__image {
  max-width: 92%;
  max-height: 52vh;
  object-fit: contain;
}

/* Gallery arrows (only rendered when >1 image) */

.htv-overlay-product__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

.htv-overlay-product__arrow:hover {
  transform: translateY(-50%) translateY(-1px);
  opacity: 0.7;
}

.htv-overlay-product__arrow--prev {
  left: 0;
}

.htv-overlay-product__arrow--next {
  right: 0;
}

/* Dots */

  .htv-overlay-product__dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.4rem;
  }

.htv-overlay-product__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  padding: 0;
  transition: transform 0.18s ease-out, background 0.18s ease-out;
}

.htv-overlay-product__dot.is-active {
  transform: scale(1.4);
  background: rgba(0, 0, 0, 0.7);
}

/* Details */

.htv-overlay-product__details {
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 0.2rem;
}

.htv-overlay-product__info {
  position: relative;
  margin-top: 0.6rem;
  min-height: 0;
  align-self: stretch;
  transition: margin-top 0.25s ease;
}

.htv-overlay-product__info-toggle {
  align-self: flex-start;
  position: relative;
  z-index: 4;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #fff;
  cursor: pointer;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  margin-top: 0.55rem;
}

.htv-overlay-product--info-open .htv-overlay-product__info-toggle {
  transform: translateY(-140%);
}

.htv-overlay-product__info-body {
  position: relative;
  width: 100%;
  z-index: 3;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px) scale(0.98);
  transition: opacity 0.24s ease, transform 0.24s ease, max-height 0.24s ease;
  overflow: hidden;
  max-height: 0;
  margin-top: 0.35rem;
}

.htv-overlay-product__info-body.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  max-height: 260px;
}

.htv-overlay-product__info-inner {
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  max-height: 260px;
  overflow-y: auto;
}

.htv-overlay-product--info-open .htv-overlay-product__info {
  margin-top: -2.2rem;
}

.htv-overlay-product__summary {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.htv-overlay-product--info-open .htv-overlay-product__summary {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  visibility: hidden;
  height: 0;
  margin: 0;
  display: none;
}

@media (max-width: 768px) {
  .htv-overlay-product--info-open .htv-overlay-product__dots {
    display: none;
  }
}

.htv-overlay-product__title {
  font-family: var(--font-heading-family, sans-serif);
  font-size: 1.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

.htv-overlay-product__price {
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.95rem;
}

/* Sizes */

.htv-overlay-product__sizes {
  margin-bottom: 1.1rem;
}

.htv-overlay-product__sizes-header {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.htv-overlay-product__size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.htv-overlay-product__size-pill {
  position: relative;
  border-radius: 999px;
  border: 1.5px solid rgba(0, 0, 0, 0.5);
  background: #fff;
  padding: 0.38rem 1.05rem;
  min-height: 2.35rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.18s ease-out,
    color 0.18s ease-out,
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out;
}

.htv-overlay-product__size-pill:hover:not(.is-sold-out) {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.htv-overlay-product__size-pill.is-active {
  background: #000;
  color: #fff;
}

.htv-overlay-product__size-pill.is-sold-out {
  color: rgba(0, 0, 0, 0.3);
  cursor: default;
}

.htv-overlay-product__size-label {
  position: relative;
  z-index: 1;
}

.htv-overlay-product__size-strike {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
  transform: rotate(-12deg);
}

/* Purchase / add-to-cart */

.htv-overlay-product__purchase {
  margin-bottom: 0.6rem;
  display: inline-block;
}

.htv-overlay-product__form {
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
}

.htv-overlay-product__add-btn {
  min-width: 220px;
  padding: 0.8rem 2.1rem;
  border-radius: 999px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateY(6px) scale(0.9);
  opacity: 0.5;
  transition:
    transform 0.2s ease-out,
    opacity 0.2s ease-out,
    box-shadow 0.2s ease-out,
    background 0.2s ease-out,
    color 0.2s ease-out;
}

.htv-overlay-product__add-btn:not([disabled]) {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.htv-overlay-product__add-btn:not([disabled]):hover {
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

/* Added message */

.htv-overlay-product__added {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.htv-overlay-product__added.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Info section */

.htv-overlay-product__info {
  position: relative;
  margin-top: 0;
  min-height: 0;
  align-self: stretch;
}

.htv-overlay-product__info-toggle {
  align-self: flex-start;
  position: relative;
  z-index: 4;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #fff;
  cursor: pointer;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  margin-top: -0.5rem; /* lift closer to ATC (~28px up) */
}

.htv-overlay-product__info-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.28);
}

.htv-overlay-product__info-body {
  position: relative;
  width: 100%;
  z-index: 3;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px) scale(0.98);
  transition: opacity 0.24s ease, transform 0.24s ease, max-height 0.24s ease;
  overflow: hidden;
  max-height: 0;
  margin-top: 0.6rem;
  padding: 0 1rem;
}

.htv-overlay-product__info-body.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  max-height: 260px;
  max-width: 252px;
  padding: 0.9rem 1rem;
}

@media (max-width: 768px) {
  .htv-overlay-product__info-body.is-open {
    max-height: 150px;
    max-width: 100%;
    overflow-y: auto;
    padding: 0.7rem 0.9rem 1.2rem;
  }

  .htv-overlay-product__info-inner {
    padding-bottom: 0.8rem;
  }
}

.htv-overlay-product__info-inner {
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.htv-overlay-product--info-open .htv-overlay-product__info-toggle {
  transform: translateY(-120%);
}

/* Mobile tweaks */

@media (max-width: 768px) {
  .htv-overlay-product__image {
    max-height: 38vh;
  }

  .htv-overlay-product__title,
  .htv-overlay-product__details,
  .htv-overlay-product__info-toggle {
    text-align: center;
  }

  .htv-overlay-product__details {
    align-items: center;
    gap: 0.5rem;
  }

  .htv-overlay-product {
    min-height: calc(100vh - var(--htv-overlay-offset, 120px));
    padding-top: 0.25rem;
    padding-bottom: 1.2rem;
  }

  .htv-overlay-product__title {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }

  .htv-overlay-product__price {
    margin-bottom: 0.25rem;
  }

  .htv-overlay-product__sizes {
    margin-bottom: 0.4rem;
  }

  .htv-overlay-product__size-pill {
    padding: 0.35rem 0.95rem;
    min-height: 2.2rem;
    font-size: 0.88rem;
  }

  /* Mobile: hide redundant "Select size" label to save vertical space */
  .htv-overlay-product__sizes-header {
    display: none;
  }

  .htv-overlay-product__add-btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding: 0.82rem 1.4rem;
  }

  .htv-overlay-product__info-toggle {
    position: relative;
    top: auto;
    right: auto;
    margin-top: -0.6rem;
    align-self: center;
  }

  .htv-overlay-product__info-body.is-open {
    max-height: 220px;
  }

  /* mobile info height */
  .htv-overlay-product__info-body {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 70vh;
    /* min-height: 50vh; */
    min-height: 104px;
  }
}

/* =========================================
   Zoom button numeric label
   ========================================= */

.htv-zoom-toggle {
  width: 46px;           /* restored original scale */
  height: 46px;
  border-radius: 50%;
  border: 2px solid #999;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;       /* readable number */
  font-weight: 600;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.htv-zoom-toggle:active {
  transform: scale(0.96);
}

/* Colors per zoom level */
.htv-zoom-level-4 { color: #3b6bf4; }
.htv-zoom-level-3 { color: #6f8df7; }
.htv-zoom-level-2 { color: #9db0fa; }
.htv-zoom-level-1 { color: #c8d4ff; }

/* Simplify zoom button to a single circle with + / - text */
.htv-zoom-toggle {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #b3b3b3;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  padding: 0;
}

/* Kill any old magnifying-glass/pseudo artwork */
.htv-zoom-toggle::before,
.htv-zoom-toggle::after {
  content: none !important;
}


/* 11/23 category icons */
/* Topbar category pills ------------------------------------ */

.htv-topbar__center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

.htv-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.9);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.htv-cat-pill__label {
  white-space: nowrap;
}

/* simple, abstract “icons” */
.htv-cat-pill__icon {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0.3rem;
  border: 1.5px solid #3b6bf4;
  position: relative;
}

/* tees: little shirt shape */
.htv-cat-pill__icon--tee::before {
  content: '';
  position: absolute;
  inset: 0.1rem;
  border-radius: 0.3rem 0.3rem 0.2rem 0.2rem;
  border: 1.3px solid #3b6bf4;
  border-top-width: 2px;
}

/* stickers: rounded square with “folded” corner */
.htv-cat-pill__icon--sticker::before {
  content: '';
  position: absolute;
  inset: 0.2rem;
  border-radius: 0.3rem;
  border: 1.3px dashed #3b6bf4;
}

/* hats: cap brim */
.htv-cat-pill__icon--hat::before {
  content: '';
  position: absolute;
  bottom: 0.1rem;
  left: 0.1rem;
  right: 0.1rem;
  height: 0.6rem;
  border-radius: 0.6rem 0.6rem 0.2rem 0.2rem;
  border: 1.3px solid #3b6bf4;
}

/* other: little sparkle */
.htv-cat-pill__icon--other::before {
  content: '';
  position: absolute;
  inset: 0.2rem;
  border-radius: 999px;
  border: 1.3px solid #3b6bf4;
}

/* active/hover states */
.htv-cat-pill.is-active {
  background: #3b6bf4;
  color: #fff;
  border-color: #3b6bf4;
}

.htv-cat-pill.is-active .htv-cat-pill__icon {
  border-color: #fff;
}

.htv-cat-pill.is-active .htv-cat-pill__icon::before {
  border-color: #fff;
}

.htv-cat-pill:not(.is-active):hover {
  background: rgba(59,107,244,0.12);
  border-color: rgba(59,107,244,0.5);
  transform: translateY(-1px);
}

/* Category nav row inside the HTV topbar */
.htv-category-nav {
  display: inline-flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
}

/* Pill base */
.htv-category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02);
  text-decoration: none;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #555;
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 120ms ease,
    color 160ms ease;
}

/* Active pill */
.htv-category-pill--active {
  background: #3b6bf4;
  color: #fff;
  box-shadow: 0 8px 20px rgba(59, 107, 244, 0.25);
}

/* Hover (desktop niceness) */
@media (hover: hover) {
  .htv-category-pill:not(.htv-category-pill--active):hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
  }
}

/* Icon wrapper */
.htv-category-pill__icon {
  display: inline-flex;
  width: 1.6rem;
  height: 1.6rem;
}

/* Icons themselves */
.htv-category-pill__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Make sure label doesn’t wrap weirdly */
.htv-category-pill__label {
  white-space: nowrap;
}

/* Category Bar — Icon-only pills */
.htv-categories {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.htv-cat-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #d4d4d4;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.htv-cat-btn:hover {
  border-color: #3b6bf4;
}

.htv-cat-btn.is-active {
  background: #3b6bf4;
  border-color: #3b6bf4;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.htv-cat-icon {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

/* ============================================
   OVERLAY MODE: CLEAN BACK ARROW ONLY
   ============================================ */

/* Top bar becomes transparent in product view */
.htv-page--overlay-active .htv-topbar {
  background: transparent;
  box-shadow: none;
}

/* Hide center + right icon groups (you already
   fade them, but this makes sure) */
.htv-page--overlay-active .htv-topbar__center,
.htv-page--overlay-active .htv-topbar__side--right {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
}

/* Left button turns into a simple inline back arrow */
.htv-page--overlay-active .htv-zoom-toggle {
  border: 2px solid #b3b3b3;
  background: #fff;
  box-shadow: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  color: #000; /* keep arrow visible on white background */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
