/** Shopify CDN: Minification failed

Line 495:0 Unexpected "}"

**/
/* Underground Society — Shopify theme styles */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --bg-dark: #0a0a0a;
  --bg-soft: #f5f5f5;
  --ink: #0a0a0a;
  --ink-soft: #555;
  --line: #e8e8e8;
  --accent: #c1272d;
  --gothic: 'UnifrakturMaguntia', 'Old English Text MT', serif;
  --display: 'Anton', 'Impact', 'Arial Black', sans-serif;
  --body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Top utility bar */
.tickerbar {
  background: var(--bg-dark);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 10px 20px;
  text-align: center;
  font-weight: 500;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 28px;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-right { justify-content: flex-end; }
.nav-left a, .nav-right a { transition: opacity 0.2s; }
.nav-left a:hover, .nav-right a:hover { opacity: 0.55; }
.nav-logo {
  font-family: var(--gothic);
  font-size: 28px;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1;
}
.nav-logo small {
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.4em;
  display: block;
  margin-top: 2px;
}
.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Hero (dark) */
.hero {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(193,39,45,0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(127,196,255,0.08) 0%, transparent 45%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 3px);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero-inner { text-align: center; position: relative; z-index: 2; padding: 80px 20px; }
.hero-eyebrow {
  font-family: var(--display);
  letter-spacing: 0.5em;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 30px;
}
.hero-logo {
  width: clamp(120px, 22vw, 240px);
  margin: 0 auto 30px;
  filter: drop-shadow(0 0 40px rgba(193,39,45,0.4));
}
.hero h1 {
  font-family: var(--gothic);
  font-size: clamp(60px, 11vw, 168px);
  line-height: 0.95;
  font-weight: 400;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.hero-tag {
  font-family: var(--display);
  font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 50px;
}
.hero-cta {
  display: inline-block;
  padding: 18px 44px;
  background: #fff;
  color: var(--bg-dark);
  font-family: var(--display);
  letter-spacing: 0.3em;
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid #fff;
  transition: all 0.25s;
}
.hero-cta:hover { background: transparent; color: #fff; }
.hero-drop {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/* Section heading */
.section { padding: 90px 28px; max-width: 1400px; margin: 0 auto; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: 'Anton', 'Impact', 'Arial Black', sans-serif;
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.section-head a {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.3em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

/* Product grid */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 30px; }
.card { display: block; position: relative; }
.card-media {
  background: #fafafa;
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card-media img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 0.5s ease;
}
.card:hover .card-media img { transform: scale(1.04); }
.card-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ink); color: #fff;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.3em;
  padding: 6px 10px;
  z-index: 2;
}
.card-tag.new { background: var(--accent); }
.card-info { display: flex; justify-content: space-between; margin-top: 16px; font-size: 13px; }
.card-info strong { font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.card-info span { color: var(--ink-soft); }

/* Brand story */
.story { background: var(--bg-dark); color: #fff; }
.story-inner { max-width: 1100px; margin: 0 auto; padding: 120px 28px; text-align: center; }
.story h2 {
  font-family: var(--gothic);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1; font-weight: 400; margin-bottom: 30px;
}
.story p {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 24px;
  color: rgba(255,255,255,0.8);
}

/* Editorial split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.split > div { padding: 90px 50px; display: flex; flex-direction: column; justify-content: center; min-height: 520px; }
.split-text h3 { font-family: var(--gothic); font-size: clamp(40px, 5vw, 64px); font-weight: 400; margin-bottom: 20px; line-height: 1; }
.split-text p { color: var(--ink-soft); font-size: 15px; margin-bottom: 24px; max-width: 480px; }
.split-text a {
  font-family: var(--display); font-size: 12px;
  letter-spacing: 0.3em; text-transform: uppercase;
  border-bottom: 1px solid var(--ink); padding-bottom: 2px;
  align-self: flex-start;
}
.split-media { background: #f5f5f5; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }

/* Newsletter */
.newsletter { text-align: center; padding: 100px 28px; border-top: 1px solid var(--line); }
.newsletter h3 { font-family: var(--gothic); font-size: clamp(36px, 5vw, 56px); font-weight: 400; margin-bottom: 14px; }
.newsletter p { color: var(--ink-soft); margin-bottom: 30px; }
.newsletter form { display: flex; max-width: 480px; margin: 0 auto; border-bottom: 1px solid var(--ink); }
.newsletter input {
  flex: 1; border: 0; outline: none;
  background: transparent; padding: 14px 0;
  font-size: 15px; font-family: inherit;
}
.newsletter button {
  border: 0; background: transparent;
  font-family: var(--display); font-size: 12px; letter-spacing: 0.3em;
  cursor: pointer; padding: 14px 0 14px 20px; text-transform: uppercase;
}

/* Footer */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 80px 28px 28px; font-size: 13px; }
.footer-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 50px; }
.footer h4 { font-family: var(--display); letter-spacing: 0.3em; color: #fff; font-size: 12px; margin-bottom: 18px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer-brand .nav-logo { color: #fff; text-align: left; margin-bottom: 18px; }
.footer p { line-height: 1.7; }
.footer-bottom {
  max-width: 1400px; margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; flex-wrap: wrap; gap: 16px;
}
@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr 1fr; } }

/* PDP */
.pdp { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; max-width: 1400px; margin: 0 auto; padding: 50px 28px 100px; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; } }
.pdp-gallery { display: grid; grid-template-columns: 80px 1fr; gap: 16px; align-items: start; }
.pdp-thumbs { display: flex; flex-direction: column; gap: 10px; }
.pdp-thumbs img {
  border: 1px solid var(--line); cursor: pointer; background: #fafafa;
  width: 80px; height: 80px; object-fit: contain;
}
.pdp-thumbs .active { border-color: var(--ink); }
.pdp-main-img { border: 1px solid var(--line); background: #fafafa; aspect-ratio: 1/1.1; }
.pdp-main-img img { width: 100%; height: 100%; object-fit: contain; }
.pdp-info { padding-top: 8px; }
.pdp-breadcrumb {
  font-family: var(--display); font-size: 11px;
  letter-spacing: 0.3em; color: var(--ink-soft);
  text-transform: uppercase; margin-bottom: 16px;
}
.pdp-info h1 { font-family: var(--gothic); font-size: clamp(36px, 4.5vw, 54px); font-weight: 400; line-height: 1; margin-bottom: 10px; }
.pdp-price { font-family: var(--display); font-size: 22px; letter-spacing: 0.05em; margin-bottom: 24px; }
.pdp-info p { color: var(--ink-soft); margin-bottom: 26px; line-height: 1.7; }
.pdp-label {
  font-family: var(--display); font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 12px;
}
.pdp-sizes { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-bottom: 24px; }
.pdp-sizes button {
  border: 1px solid var(--line); background: #fff;
  padding: 14px 0; font-family: var(--display);
  font-size: 13px; letter-spacing: 0.1em;
  transition: all 0.15s;
}
.pdp-sizes button:hover { border-color: var(--ink); }
.pdp-sizes button.active { background: var(--ink); color: #fff; }
.pdp-sizes button:disabled, .pdp-sizes button.oos { color: #bbb; cursor: not-allowed; text-decoration: line-through; }
.pdp-add {
  width: 100%; padding: 18px 0;
  background: var(--ink); color: #fff; border: 1px solid var(--ink);
  font-family: var(--display); font-size: 14px;
  letter-spacing: 0.3em; text-transform: uppercase;
  transition: all 0.2s; margin-bottom: 14px;
}
.pdp-add:hover { background: transparent; color: var(--ink); }
.pdp-add:disabled { background: #ccc; border-color: #ccc; cursor: not-allowed; }
.pdp-meta {
  border-top: 1px solid var(--line);
  margin-top: 30px; padding-top: 26px;
  font-size: 13px; color: var(--ink-soft);
  display: grid; gap: 8px;
}

/* Shop / collection */
.collection-head { text-align: center; padding: 70px 28px 30px; border-bottom: 1px solid var(--line); }
.collection-head h1 {
  font-family: var(--gothic);
  font-size: clamp(56px, 9vw, 120px);
  line-height: 1; font-weight: 400; margin-bottom: 12px;
}
.collection-head p {
  font-family: var(--display); letter-spacing: 0.3em;
  font-size: 13px; color: var(--ink-soft); text-transform: uppercase;
}
.collection-toolbar {
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-between;
  padding: 20px 28px;
  font-family: var(--display); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.collection-grid { max-width: 1400px; margin: 0 auto; padding: 50px 28px 100px; }
/* ===== Mobile fixes ===== */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
img, video, iframe {
  max-width: 100%;
  height: auto;
}
@media (max-width: 749px) {
  .nav-inner,
  .section,
  .pdp,
  .featured-product,
  .footer-inner,
  .footer-payments,
  .collection-grid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .nav-inner {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
  .nav-menu {
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 14px !important;
    font-size: 11px !important;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  .pdp-gallery {
    grid-template-columns: 1fr !important;
  }
  .pdp-thumbs {
    flex-direction: row !important;
    overflow-x: auto;
  }
  .pdp-sizes {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .hero-inner {
    padding: 0 20px 50px !important;
  }
  .hero h1 {
    font-size: 48px !important;
  }
  .banner-inner {
    padding: 32px 20px !important;
  }
  .banner h2 {
    font-size: 40px !important;
  }
  .coming-soon-grid {
    grid-template-columns: 1fr !important;
  }
  .cat-item {
    flex: 0 0 240px !important;
  }
  .marquee-bar__item,
  .marquee-bar__separator {
    font-size: 11px !important;
    letter-spacing: 0.12em !important;
  }
}
/* Switch all titles from gothic to clean Anton sans */
.collection-head h1,
.pdp-info h1,
.section-head h2,
.story h2,
.split-text h3,
.newsletter h3 {
  font-family: 'Anton', 'Impact', 'Arial Black', sans-serif !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}
/* All product cards — secondary photo hidden by default; show full shirt */
.card .card-media {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card .card-media .img-secondary {
  display: none;
}
/* All product cards — show full shirt, hide secondary by default */
.card .card-media {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card .card-media .img-secondary {
  display: none;
}

/* Homepage cards only — stack both images, swap on hover */
.section .grid .card .card-media .img-primary,
.section .grid .card .card-media .img-secondary {
  display: block;
  position: absolute;
  inset: 0;
  transition: opacity 0.2s ease;
}
.section .grid .card .card-media .img-primary  { opacity: 1; z-index: 2; }
.section .grid .card .card-media .img-secondary { opacity: 0; z-index: 1; }

.section .grid .card:hover .card-media:has(.img-secondary) .img-primary  { opacity: 0; }
.section .grid .card:hover .card-media:has(.img-secondary) .img-secondary { opacity: 1; }
}
/* Product detail page — accordion sections */
.pdp-accordion {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}
.pdp-acc-item { border-bottom: 1px solid var(--line); }
.pdp-acc-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  list-style: none;
  outline: none;
}
.pdp-acc-item summary::-webkit-details-marker { display: none; }
.pdp-acc-item summary::marker { content: ""; }
.pdp-acc-icon {
  position: relative;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.pdp-acc-icon::before,
.pdp-acc-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.2s ease;
}
.pdp-acc-icon::before {
  top: 50%; left: 0; right: 0; height: 1px;
  transform: translateY(-50%);
}
.pdp-acc-icon::after {
  top: 0; bottom: 0; left: 50%; width: 1px;
  transform: translateX(-50%);
}
.pdp-acc-item[open] .pdp-acc-icon::after {
  transform: translateX(-50%) scaleY(0);
}
.pdp-acc-body {
  padding: 0 0 22px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}
.pdp-acc-body p { margin-bottom: 12px; }
.pdp-acc-body p:last-child { margin-bottom: 0; }
/* Hero — background image + dark gradient overlay so text stays readable */
.hero {
  position: relative;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 5;
}
.hero-drop {
  z-index: 5;
}