@font-face {
  font-family: "Shop Museo Sans";
  src: url("../../../fonts/museo-sans/MuseoSans-500.e1e07499bd41.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Shop Museo Sans";
  src: url("../../../fonts/museo-sans/MuseoSans-700.5fca537a5d27.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Shop Museo Sans";
  src: url("../../../fonts/museo-sans/MuseoSans-900.fc29acd26281.otf") format("opentype");
  font-weight: 900;
  font-display: swap;
}

.shop-theme {
  background: var(--shop-theme-background-color, #010104);
  color: var(--shop-text-primary, #fff7fb);
  font-family: "Shop Museo Sans", "Museo Sans", system-ui, sans-serif;
  overflow-x: hidden;
  overflow-x: clip;
}

.shop-theme a {
  color: inherit;
}

.shop-theme .btn-primary {
  color: #130d12;
}

.shop-theme .btn-primary:hover,
.shop-theme .btn-primary:focus-visible {
  color: #130d12;
}

.shop-theme-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--shop-theme-background-color, #010104);
}

.shop-theme-backdrop-gradient {
  position: absolute;
  inset: 0;
  background: var(
    --shop-theme-background-gradient,
    linear-gradient(178deg, #010104 0%, #0e091d 30%, #0e091d 60%, #3c0a22 100%)
  );
}

.shop-theme-effect-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shop-theme-content {
  position: relative;
  z-index: 10;
  overflow-x: hidden;
  overflow-x: clip;
}

.shop-shell {
  position: relative;
}

.shop-title,
.shop-hero-title,
.shop-page-title {
  color: var(--shop-accent, #01ffe5);
  font-family: "Shop Museo Sans", "Museo Sans", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 0.92;
}

.shop-page-title--light {
  color: rgb(255 255 255);
}

.shop-section-title,
.shop-card-body,
.shop-card-title,
.shop-card-footer,
.shop-card-status,
.shop-price--pill {
  font-family: "Shop Museo Sans", "Museo Sans", system-ui, sans-serif;
  font-weight: 900;
}

.shop-eyebrow {
  color: var(--shop-accent, #01ffe5);
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.shop-muted {
  color: var(--shop-text-muted, #d6bfd0);
}

.shop-surface {
  background: rgba(0, 0, 0, 0.6);
  border: 0;
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.shop-surface-soft {
  background: rgba(0, 0, 0, 0.6);
  border: 0;
  backdrop-filter: blur(16px);
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.btn-primary {
  background: var(--shop-accent, #01ffe5);
  color: #130d12;
  padding: 0.95rem 1.4rem;
  box-shadow: none;
}

.btn-primary:hover {
  background: color-mix(in srgb, var(--shop-accent, #01ffe5) 88%, #000 12%);
  color: #130d12;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--shop-text-primary, #fff7fb);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.9rem 1.25rem;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.11);
}

.shop-nav-button {
  padding: 0.9rem 1.3rem;
  font-family: "Shop Museo Sans", "Museo Sans", system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.shop-nav-button--back {
  gap: 0.55rem;
}

.shop-nav-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}

.shop-nav-button-icon svg {
  width: 100%;
  height: 100%;
}

.btn-primary:disabled,
.btn-secondary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.shop-input,
.shop-select,
.shop-textarea {
  width: 100%;
  border-radius: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--shop-text-primary, #fff7fb);
  padding: 0.9rem 1rem;
  outline: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.shop-input:focus,
.shop-select:focus,
.shop-textarea:focus {
  border-color: rgb(255 255 255);
  background: rgba(255, 255, 255, 0.08);
}

.shop-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--shop-text-muted, #d6bfd0);
  font-size: 0.92rem;
}

.shop-hero {
  display: grid;
  gap: 1.1rem;
  justify-items: center;
  text-align: center;
  margin: -2.75rem auto 5rem;
}

.shop-hero-logo {
  width: min(100%, 960px);
  margin-top: -0.5rem;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.45));
}

.shop-hero-actions {
  display: flex;
  justify-content: center;
  margin-top: -0.25rem;
}

.shop-hero--info {
  margin: -2.75rem auto 3.5rem;
}

.shop-hero-logo--info {
  width: min(100%, 460px);
  margin-top: -0.5rem;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.38));
}

.shop-info-heading-row {
  display: grid;
  gap: 1rem;
  width: min(100%, 44rem);
}

.shop-info-heading-spacer {
  display: none;
}

.shop-info-backbar {
  display: none;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.shop-section {
  position: relative;
  margin-top: 4.75rem;
  isolation: isolate;
  --shop-grid-width: 100%;
}

.shop-section-header {
  position: relative;
  z-index: 2;
  margin-bottom: 1.75rem;
  text-align: center;
}

.shop-section-title {
  color: var(--shop-accent, #01ffe5);
  font-size: clamp(2.15rem, 4.4vw, 3.7rem);
  letter-spacing: 0.09em;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.32);
  margin-inline: auto;
}

.shop-lottie {
  position: absolute;
  top: 2.5rem;
  right: -3rem;
  z-index: 0;
  width: min(560px, 72vw);
  height: min(560px, 72vw);
  opacity: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 28px rgba(1, 255, 229, 0.28));
  mix-blend-mode: screen;
}

.shop-lottie svg [fill]:not([fill="none"]):not([fill^="url"]) {
  fill: var(--shop-accent, #01ffe5) !important;
}

.shop-lottie svg [stroke]:not([stroke="none"]):not([stroke^="url"]) {
  stroke: var(--shop-accent, #01ffe5) !important;
}

.shop-lottie svg stop {
  stop-color: var(--shop-accent, #01ffe5) !important;
}

.shop-card-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.shop-card {
  position: relative;
  min-height: 440px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  background: rgba(0, 0, 0, 0.6);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 84px rgba(0, 0, 0, 0.34);
}

.shop-card-link {
  display: block;
  min-height: inherit;
  height: 100%;
}

.shop-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 1, 4, 0) 22%, rgba(9, 7, 13, 0.18) 48%, rgba(17, 12, 18, 0.92) 100%);
  pointer-events: none;
  transition: background-color 180ms ease;
}

.shop-card:hover::after {
  background:
    linear-gradient(180deg, rgba(1, 1, 4, 0) 22%, rgba(26, 9, 19, 0.24) 48%, rgba(36, 10, 26, 0.94) 100%);
}

.shop-card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.shop-card-media img,
.shop-gallery-stage img,
.shop-cart-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-card img {
  transform: scale(1.01);
  transition: transform 500ms ease, filter 500ms ease;
}

.shop-card:hover img {
  transform: scale(1.06);
  filter: contrast(1.08) saturate(1.04) blur(1.2px);
}

.shop-card-body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1.4rem 1.45rem;
  letter-spacing: 0.03em;
}

.shop-card-title {
  font-size: clamp(1.6rem, 2vw, 2.15rem);
  line-height: 0.94;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.shop-card-title-kicker,
.shop-card-title-name {
  display: block;
}

.shop-card-title-kicker {
  font-size: 0.72em;
  letter-spacing: 0.03em;
}

.shop-card-title-name {
  margin-top: 0.12rem;
}

.shop-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.shop-price {
  font-weight: 700;
  font-size: 1.05rem;
}

.shop-card .shop-price {
  display: inline-flex;
  align-items: flex-end;
  min-height: 2.75rem;
  padding: 0.5rem 0.9rem 0.42rem;
  border-radius: 999px;
  background: var(--shop-accent, #01ffe5);
  color: #081113;
  box-shadow: 0 16px 36px rgba(1, 255, 229, 0.24);
}

.shop-price-main {
  font-size: 1.55rem;
  line-height: 1;
}

.shop-price-comma {
  font-size: 1.2rem;
  line-height: 1;
  padding-bottom: 0.1rem;
}

.shop-price-cents {
  align-self: flex-start;
  font-size: 0.78rem;
  line-height: 1;
  padding-top: 0.12rem;
}

.shop-price-currency {
  font-size: 0.86rem;
  line-height: 1;
  padding-left: 0.35rem;
  padding-bottom: 0.14rem;
}

.shop-card-status {
  color: rgba(255, 247, 251, 0.78);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .shop-hero {
    margin-bottom: 2.35rem;
  }

  .shop-section {
    margin-top: 2.9rem;
  }

  .shop-section-header {
    display: grid;
    min-height: clamp(4.6rem, 21vw, 5.8rem);
    margin-bottom: 0.45rem;
    place-items: center;
  }

  .shop-section-title {
    position: relative;
    z-index: 2;
    padding-inline: 0.4rem;
    font-size: clamp(1.9rem, 9.5vw, 2.65rem);
  }

  .shop-lottie {
    top: 100%;
    left: 100%;
    right: auto;
    width: min(260px, 72vw);
    height: min(260px, 72vw);
    transform: translate(-50%, -50%);
  }

  .shop-section--pullover .shop-lottie,
  .shop-section--caps .shop-lottie {
    left: 110%;
  }

  .shop-section--shirts .shop-lottie {
    left: auto;
    right: auto;
    left: -10%;
  }

  .shop-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .shop-card {
    min-height: 290px;
    border-radius: 16px;
  }

  .shop-card-body {
    gap: 0.72rem;
    padding: 1rem 0.95rem 0.95rem;
  }

  .shop-card-title {
    font-size: clamp(1.08rem, 4.6vw, 1.42rem);
  }

  .shop-card-footer {
    gap: 0.6rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-card .shop-price {
    min-height: 2.2rem;
    padding: 0.42rem 0.72rem 0.34rem;
    box-shadow: 0 12px 28px rgba(1, 255, 229, 0.22);
  }

  .shop-price-main {
    font-size: 1.18rem;
  }

  .shop-price-comma {
    font-size: 0.94rem;
    padding-bottom: 0.05rem;
  }

  .shop-price-cents {
    font-size: 0.62rem;
  }

  .shop-price-currency {
    font-size: 0.68rem;
    padding-left: 0.22rem;
    padding-bottom: 0.08rem;
  }

  .shop-card-status {
    font-size: 0.68rem;
  }
}

.shop-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}

.shop-detail-view .shop-surface {
  background: rgba(0, 0, 0, 0.6);
  border: 0;
  box-shadow: none;
}

.shop-detail-title {
  color: var(--shop-accent, #01ffe5);
  font-family: "Shop Museo Sans", "Museo Sans", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(2.35rem, 4.1vw, 4rem);
  letter-spacing: 0.08em;
  line-height: 0.92;
}

.shop-detail-title-kicker,
.shop-detail-title-name {
  display: block;
}

.shop-detail-title-kicker {
  font-size: 0.7em;
  letter-spacing: 0.05em;
}

.shop-detail-title-name {
  margin-top: 0.16rem;
}

.shop-price--detail {
  display: block;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgb(255 255 255);
  font-family: "Shop Museo Sans", "Museo Sans", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: none;
}

.shop-gallery-stage {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  min-height: 420px;
  background: rgba(255, 255, 255, 0.03);
}

.shop-zoom-stage {
  position: relative;
  display: block;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  cursor: zoom-in;
  background: transparent;
}

.shop-zoom-stage:focus-visible {
  outline: none;
}

.shop-zoom-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.18));
  opacity: 1;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.shop-zoom-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: var(--shop-zoom-origin-x, 50%) var(--shop-zoom-origin-y, 50%);
  transform: scale(1);
  transition: transform 220ms ease, filter 220ms ease;
  will-change: transform;
}

.shop-zoom-stage.is-zoomed .shop-zoom-image {
  transform: scale(2.45);
  filter: saturate(1.02) contrast(1.04);
}

.shop-zoom-stage.is-zoomed::after {
  opacity: 0.3;
}

.shop-gallery-empty {
  display: flex;
  min-height: 420px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-family: "Shop Museo Sans", "Museo Sans", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shop-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 0.75rem;
}

.shop-gallery-thumb {
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
}

.shop-gallery-thumb.is-active {
  border-color: var(--shop-accent, #01ffe5);
}

.shop-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.shop-lightbox-frame {
  position: relative;
  width: min(100%, 92rem);
  padding-top: 2.5rem;
}

.shop-lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  padding: 0.1rem 0.35rem;
  border: 0;
  background: transparent;
  color: rgb(255 255 255);
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1;
  transition: opacity 180ms ease;
}

.shop-lightbox-close:hover,
.shop-lightbox-close:focus-visible {
  opacity: 0.72;
  outline: none;
}

.shop-lightbox-image {
  display: block;
  width: 100%;
  max-height: calc(100vh - 5rem);
  margin: 0 auto;
  object-fit: contain;
}

.shop-detail-copy h1,
.shop-detail-copy h2,
.shop-detail-copy h3,
.shop-detail-copy h4,
.shop-detail-copy h5 {
  margin: 0 0 1rem;
  color: rgb(255 255 255);
  font-family: "Shop Museo Sans", "Museo Sans", system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  line-height: 1.05;
}

.shop-detail-copy p,
.shop-detail-copy li {
  color: rgb(255 255 255);
  line-height: 1.75;
}

.shop-detail-copy p {
  margin: 0 0 1rem;
}

.shop-detail-copy ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.shop-properties {
  margin: 0;
  padding-left: 1.4rem;
  list-style: disc;
  color: rgb(255 255 255);
}

.shop-properties li {
  margin-bottom: 0.55rem;
  padding-left: 0.2rem;
}

.shop-properties li::marker {
  color: var(--shop-accent, #01ffe5);
}

.shop-detail-panel-title {
  margin: 0;
  color: rgb(255 255 255);
  font-family: "Shop Museo Sans", "Museo Sans", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.shop-info-copy p,
.shop-info-copy li {
  color: rgb(255 255 255);
  line-height: 1.72;
}

.shop-info-copy p + p,
.shop-info-copy li + li {
  margin-top: 0.9rem;
}

.shop-info-link {
  color: var(--shop-accent, #01ffe5);
  text-decoration: none;
  border-bottom: 1px solid rgba(1, 255, 229, 0.35);
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.shop-info-link:hover,
.shop-info-link:focus-visible {
  color: rgb(255 255 255);
  border-color: rgba(255, 255, 255, 0.65);
}

.shop-info-question {
  color: rgb(255 255 255);
  font-family: "Shop Museo Sans", "Museo Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.shop-info-address {
  color: rgb(255 255 255);
  font-style: normal;
  line-height: 1.72;
}

.shop-variant-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.shop-variant-pill {
  min-width: 3.5rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--shop-text-primary, #fff7fb);
  font-family: "Shop Museo Sans", "Museo Sans", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.shop-variant-pill.is-active {
  border-color: var(--shop-accent, #01ffe5);
  background: rgba(1, 255, 229, 0.12);
  color: var(--shop-accent, #01ffe5);
}

.shop-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.shop-qty button {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  color: var(--shop-text-primary, #fff7fb);
}

.shop-qty input {
  width: 3rem;
  text-align: center;
  background: transparent;
  color: var(--shop-text-primary, #fff7fb);
}

.shop-buy-button {
  min-height: 3.6rem;
  font-family: "Shop Museo Sans", "Museo Sans", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #081113;
}

.shop-cart-item,
.shop-summary-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-cart-product-title {
  color: rgb(255 255 255);
  font-family: "Shop Museo Sans", "Museo Sans", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
}

.shop-summary-product-title {
  color: rgb(255 255 255);
  font-family: "Shop Museo Sans", "Museo Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.shop-choice-card {
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 0.85rem;
  border-radius: 1.2rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem 1.1rem;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.shop-choice-card input[type="radio"] {
  accent-color: var(--shop-accent, #01ffe5);
}

.shop-choice-card span {
  color: rgb(255 255 255);
  font-family: "Shop Museo Sans", "Museo Sans", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.shop-choice-card:has(input:checked) {
  background: rgba(1, 255, 229, 0.14);
  box-shadow: inset 0 0 0 1px rgba(1, 255, 229, 0.45);
}

.shop-cart-image {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.shop-summary-row:last-child {
  border-bottom: 0;
}

.shop-feedback-panel {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.1rem;
}

.shop-feedback-panel--success {
  border-color: rgba(1, 255, 229, 0.26);
  background:
    linear-gradient(180deg, rgba(1, 255, 229, 0.14), rgba(255, 255, 255, 0.04));
}

.shop-feedback-panel--error {
  border-color: rgba(248, 113, 113, 0.3);
  background:
    linear-gradient(180deg, rgba(248, 113, 113, 0.16), rgba(255, 255, 255, 0.04));
}

.shop-feedback-title {
  color: rgb(255 255 255);
  font-family: "Shop Museo Sans", "Museo Sans", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.shop-feedback-copy {
  margin-top: 0.45rem;
  color: var(--shop-text-muted, #d6bfd0);
  font-size: 0.92rem;
  line-height: 1.55;
}

.shop-feedback-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .shop-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-hero-logo {
    margin-top: -0.25rem;
  }

  .shop-hero-logo--info {
    width: min(100%, 520px);
    margin-top: -0.25rem;
  }

  .shop-info-heading-row {
    width: min(100%, 62rem);
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
  }

  .shop-info-heading-spacer {
    display: block;
  }

  .shop-info-backbar {
    display: flex;
    justify-self: end;
  }

  .shop-section--pullover .shop-lottie,
  .shop-section--caps .shop-lottie {
    left: calc((100% + var(--shop-grid-width)) / 2 - 0.35rem);
    right: auto;
  }

  .shop-section--shirts .shop-lottie {
    left: auto;
    right: calc((100% + var(--shop-grid-width)) / 2 - 0.35rem);
    top: 1.35rem;
  }

  .shop-section--caps .shop-lottie {
    top: 1.85rem;
  }

  .shop-section--misc .shop-lottie {
    top: 2.5rem;
    left: auto;
    right: calc((100% + var(--shop-grid-width)) / 2 - 0.35rem);
  }
}

@media (min-width: 1024px) {
  .shop-section {
    --shop-grid-width: 75%;
  }

  .shop-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: calc(var(--shop-grid-width) - 0.375rem);
    max-width: 100%;
    margin-inline: auto;
  }

  .shop-hero {
    margin-top: -4.5rem;
  }

  .shop-hero-logo {
    margin-top: -1.75rem;
  }

  .shop-hero--info {
    margin-top: -4.5rem;
    margin-bottom: 4rem;
  }

  .shop-hero-logo--info {
    width: min(100%, 560px);
    margin-top: -1.75rem;
  }

  .shop-section {
    margin-top: 5.75rem;
  }

  .shop-lottie {
    width: min(720px, 52vw);
    height: min(720px, 52vw);
  }

  .shop-detail-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.5rem;
  }

  .shop-card {
    min-height: 470px;
  }
}
