/* QUEEN STRUCTURE — mechanics only */
.q-container,
.hero-content,
.catalog-wrap,
.section,
.section-last,
.product-layout,
.cart-page,
.footer-inner,
.footer-bottom {
  width: min(100% - 48px, var(--site-max, 1180px));
  margin-inline: auto;
}
html.is-scroll-locked,
body.is-scroll-locked {
  overflow: hidden;
  height: 100%;
}

.info-modal-card,
.size-chart-modal,
.size-chart-modal-card,
.filter-drawer,
.filter-drawer-panel,
.catalog-filter-panel {
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.marquee-wrap {
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}
.marquee-inner span {
  flex: 0 0 auto;
}
.marquee-inner span::after {
  content: "·";
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
nav {
  min-height: var(--nav-h, 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  min-width: 0;
}
.logo-img {
  display: block;
  object-fit: contain;
}
.nav-center {
  display: flex;
  align-items: center;
  list-style: none;
}
.nav-right {
  display: flex;
  align-items: center;
}
.btn-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-cart #cart-count {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-text {
  min-width: 0;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
}
.hero-mini-card {
  flex-shrink: 0;
  display: block;
  overflow: hidden;
}
.hero-mini-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.hero-mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.btn-primary,
.btn-ghost,
.btn-ghost-light,
.btn-wa,
.btn-ig,
.bc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.btn-full {
  width: 100%;
}
.cat-bar {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-bar::-webkit-scrollbar {
  display: none;
}
.cat-pill {
  flex-shrink: 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.catalog-wrap {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
}
.sidebar {
  position: sticky;
  align-self: start;
  overflow-y: auto;
}
.sb-hd,
.toolbar,
.tr,
.vt {
  display: flex;
  align-items: center;
}
.sb-hd,
.toolbar {
  justify-content: space-between;
}
.fo {
  display: flex;
  align-items: center;
}
.main {
  min-width: 0;
}
.pgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}
.pgrid.lv {
  grid-template-columns: 1fr;
}
.card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.ci {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.ci img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ci.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge {
  position: absolute;
  z-index: 1;
}
.card-cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
}
.cfoot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.csizes {
  display: flex;
  flex-wrap: wrap;
}
.pag {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pg {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-marquee {
  overflow: hidden;
}
.footer-marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
footer {
  display: grid;
}
.fc-links {
  display: flex;
  flex-direction: column;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: start;
}
.product-img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-thumbs,
.product-tags,
.product-size-grid {
  display: flex;
  flex-wrap: wrap;
}
.product-thumb {
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-ctas {
  display: flex;
  flex-direction: column;
}
.custom-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.custom-toggle-price {
  margin-left: auto;
}
.sz-btn {
  display: flex;
  flex-direction: column;
}
.size {
  font-size: 22px;
}

.sz-btn-price {
  color: var(--muted);
  font-size: 12px;
}
.custom-fields {
  display: grid;
  grid-template-columns: 1fr 100px;
}
.custom-block {
  margin: 32px auto;
}
.custom-block-tone-light .custom-block {
  background: var(--surface, #f5f5f5);
  color: var(--text, #111);
}
.custom-block-tone-dark .custom-block {
  background: var(--text, #111);
  color: var(--bg, #fff);
}
.custom-block-tone-accent .custom-block {
  background: var(--acc, #111);
  color: var(--acc-text, #fff);
}
.custom-block-align-left .custom-block {
  text-align: left;
}
.custom-block-align-center .custom-block {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-block-align-right .custom-block {
  text-align: right;
}
.custom-block-height-sm .custom-block {
  padding: 16px;
}
.custom-block-height-md .custom-block {
  padding: 24px;
}
.custom-block-height-lg .custom-block {
  padding: 32px;
}
.custom-block-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.custom-block-copy {
  min-width: 0;
}
.custom-block-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.tag-section {
  margin: 32px auto;
}
.tag-section-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  justify-content: flex-start;
  scroll-snap-type: x proximity;
  padding: 0 0 12px;
  scrollbar-width: thin;
}
.tag-section-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 0 0 156px;
  width: 156px;
  min-height: 128px;
  aspect-ratio: 1.2 / 1;
  scroll-snap-align: start;
}
.tag-section-img img {
  display: block;
  object-fit: contain;
}
.tag-section-img-cover .tag-section-img img {
  width: 100%;
  object-fit: cover;
}
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}
.cart-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  align-items: center;
}
.cart-item-image {
  overflow: hidden;
}
.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-qty {
  display: flex;
  align-items: center;
}
.cart-item-side {
  text-align: right;
}
.cart-summary {
  position: sticky;
}
.cart-summary-row,
.cart-summary-total {
  display: flex;
  justify-content: space-between;
}
.cart-checkout-btn,
.cart-continue,
.cart-empty-btn {
  display: block;
  text-align: center;
}
.social-links {
  background: var(--bg2);
  width: 100%;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-links a {
  margin: 0 14px;
  height: 100%;
}
.social-links img {
  height: 96%;
}
@media (max-width: 960px) {
  .q-container,
  .hero-content,
  .catalog-wrap,
  .section,
  .section-last,
  .product-layout,
  .cart-page,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 32px, var(--site-max, 1180px));
  }
  .nav-center,
  .sidebar,
  .hero-mini-card {
    display: none;
  }
  .social-links {
    background: var(--bg2);
    width: 100%;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .catalog-wrap {
    grid-template-columns: 1fr;
  }
  .main {
    padding-left: 0;
  }
  .pgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-layout,
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-summary {
    position: static;
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .cart-item {
    grid-template-columns: 76px minmax(0, 1fr);
  }
  .tag-section-grid {
    gap: 12px;
    padding-bottom: 10px;
  }

  .tag-section-card {
    flex-basis: 132px;
    width: 132px;
    min-height: 116px;
  }
  .cart-item-side {
    grid-column: 1/-1;
    text-align: left;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .custom-block-inner {
    flex-direction: column;
    align-items: stretch;
  }
}

.info-modal,
.size-chart-modal,
#size-chart-modal,
#custom-block-modal,
#order-image-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  overflow: auto !important;
  overscroll-behavior: contain;
}

.info-modal[hidden] {
  display: none !important;
}

.info-modal-backdrop {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, .58);
}

.info-modal-card,
.size-chart-modal-card {
  position: relative !important;
  z-index: 1 !important;
  max-height: calc(100dvh - 32px);
  overflow-y: auto !important;
  overscroll-behavior: contain;
  margin: 16px auto;
}