/* 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%;
}
:root {
  --scroll-bg: var(--bg2);
  --scroll-thumb: var(--acc);
  --scroll-thumb-hover: var(--acc2);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--scroll-thumb) var(--scroll-bg);
}
*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

*::-webkit-scrollbar-track {
  background: var(--scroll-bg);
}

*::-webkit-scrollbar-thumb {
  background: var(--scroll-thumb);
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--scroll-thumb-hover);
}
.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;
}

/* Trust / Institutional Pages */

.trust-page {
  min-height: 70vh;
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--accent, #c9ff3b) 12%, transparent), transparent 32rem),
    var(--bg, #111);
  color: var(--text, #fff);
}

.trust-hero {
  padding: clamp(42px, 7vw, 86px) var(--page-pad, 20px) 26px;
  border-bottom: 1px solid var(--border, rgba(255,255,255,.12));
}

.trust-container {
  width: min(100%, var(--site-max, 1220px));
  margin: 0 auto;
}

.trust-hero .trust-container,
.trust-content {
  max-width: 860px;
}

.trust-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted, rgba(255,255,255,.62));
}

.trust-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent, #c9ff3b);
}

.trust-hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: .92;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.trust-hero p {
  margin: 18px 0 0;
  max-width: 720px;
  color: var(--muted, rgba(255,255,255,.68));
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.6;
}

.trust-content-section {
  padding: clamp(30px, 5vw, 54px) var(--page-pad, 20px) clamp(64px, 8vw, 104px);
}

.trust-content {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--border, rgba(255,255,255,.12));
  border-radius: var(--radius-lg, 28px);
  background: var(--bg2, #181818);
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
}

.trust-content h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.16rem, 2vw, 1.38rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.trust-content p {
  margin: 0 0 18px;
  color: var(--text, rgba(255,255,255,.72));
  font-size: .98rem;
  line-height: 1.72;
}

.trust-content strong {
  color: var(--text, var(--accent));
}

.trust-content a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.trust-alert {
  margin: 28px 0;
  padding: 18px 20px;
  border: 1px solid color-mix(in srgb, var(--accent, #c9ff3b) 28%, var(--border, rgba(255,255,255,.12)));
  border-radius: var(--radius, 18px);
  background: color-mix(in srgb, var(--accent, #c9ff3b) 8%, var(--surface, #181818));
  color: var(--muted, rgba(255,255,255,.76));
  line-height: 1.65;
}

.trust-contact-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
}

.trust-contact-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid var(--border, rgba(255,255,255,.12));
  border-radius: var(--radius, 16px);
  background: rgba(255,255,255,.045);
  color: var(--text, #fff);
  text-decoration: none;
}

.trust-contact-list a::after {
  content: "↗";
  opacity: .55;
  font-size: .9rem;
}

@media (max-width: 720px) {
  .trust-content {
    padding: 20px;
    border-radius: 22px;
  }
}

.lower-footer {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
}

.trust-links {
  display: flex;
  color: var(--muted);
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  margin-top: 24px;
}

.footer-trust {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  text-align: center;
}
.footer-trust strong {
  color: var(--text);
}