/** Shopify CDN: Minification failed

Line 1008:0 Expected "}" to go with "{"

**/
/* =============================================
   OFFICIAL SINNER — SHOPIFY THEME
   theme.css
   ============================================= */

:root {
  --black: #080808;
  --white: #f0ece4;
  --cream: #e8e0d0;
  --red: #c8202a;
  --grey: #1a1a1a;
  --mid: #2e2e2e;
  --muted: #666;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Unbounded', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9997;
}

/* ── CURSOR ── */
.cursor {
  width: 10px; height: 10px;
  background: var(--white);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, background 0.2s;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(240,236,228,0.4);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-ring.is-hovering {
  width: 60px; height: 60px;
  border-color: var(--red);
}

/* ── NAV ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  background: rgba(8,8,8,0.7);
}
.site-header__logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 6px;
  color: var(--white);
  text-decoration: none;
}
.site-header__nav {
  display: flex;
  gap: 36px;
  list-style: none;
}
.site-header__nav a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.site-header__nav a:hover { color: var(--white); }
.site-header__right { display: flex; align-items: center; gap: 24px; }
.site-header__cart {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 18px;
  cursor: none;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.site-header__cart:hover { background: var(--white); color: var(--black); }

/* ── HERO ── */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 80px 40px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(200,32,42,0.08) 0%, transparent 70%),
    linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
}
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0a0a0a;
}
.hero__media video,
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridFloat 20s linear infinite;
}
@keyframes gridFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(80px); }
}
.hero__bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(48px, 16vw, 220px);
  letter-spacing: -2px;
  color: rgba(255,255,255,0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  animation: textPulse 6s ease-in-out infinite;
}
@keyframes textPulse {
  0%, 100% { color: rgba(255,255,255,0.04); }
  50% { color: rgba(200,32,42,0.06); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(8,8,8,0.95) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero__title em { color: var(--red); font-style: normal; }
.hero__subtext {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  line-height: 1.8;
  max-width: 360px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 16px 32px;
  text-decoration: none;
  cursor: none;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
  transition: background 0.2s, color 0.2s, gap 0.3s;
}
.hero__cta::after { content: '→'; }
.hero__cta:hover { background: var(--red); color: var(--white); gap: 20px; }
.hero__scroll {
  position: absolute;
  bottom: 40px; right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.hero__scroll span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── MARQUEE ── */
.marquee-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  overflow: hidden;
  background: var(--grey);
}
.marquee-bar__track {
  display: flex;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
}
.marquee-bar__item {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.marquee-bar__item::after { content: '✦'; color: var(--red); font-size: 8px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── PRODUCTS ── */
.section-products { background: var(--black); padding: 120px 40px; }
.section-products__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.product-card {
  position: relative;
  background: var(--grey);
  overflow: hidden;
  cursor: none;
}
.product-card:first-child { grid-column: span 2; grid-row: span 2; }
.product-card__image-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--mid);
}
.product-card:first-child .product-card__image-wrap { aspect-ratio: auto; min-height: 540px; }
.product-card__image {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-card__image { transform: scale(1.04); }
.product-card__image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 60px;
  color: rgba(255,255,255,0.04);
  letter-spacing: 4px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.product-card:first-child .product-card__image-placeholder { aspect-ratio: auto; min-height: 540px; }
.product-card:hover .product-card__image-placeholder { transform: scale(1.04); }
.product-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.product-card__name {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--white);
}
.product-card__price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
}
.product-card__add {
  width: 36px; height: 36px;
  background: var(--white);
  color: var(--black);
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: background 0.2s;
  flex-shrink: 0;
  text-decoration: none;
}
.product-card__add:hover { background: var(--red); color: var(--white); }
.product-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--red);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
  color: var(--white);
}
.product-card__badge--sold { background: var(--mid); color: var(--muted); }

/* ── SPLIT ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.split-section__visual {
  background: var(--grey);
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-section__visual-img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0.5;
}
.split-section__visual::before {
  content: 'SINNER';
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 220px);
  color: rgba(255,255,255,0.03);
  letter-spacing: 8px;
  position: absolute;
}
.cross-graphic {
  width: 200px; height: 200px;
  position: relative;
  z-index: 1;
}
.cross-graphic::before,
.cross-graphic::after {
  content: '';
  position: absolute;
  background: rgba(200,32,42,0.6);
  border-radius: 2px;
}
.cross-graphic::before { width: 4px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.cross-graphic::after { width: 100%; height: 4px; top: 35%; left: 0; }
.split-section__content {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--black);
}
.split-section__body {
  font-size: 10px;
  font-weight: 300;
  line-height: 2.2;
  color: var(--muted);
  letter-spacing: 1px;
  margin-bottom: 40px;
  max-width: 400px;
}

/* ── COLLECTIONS ── */
.section-collections { background: var(--grey); padding: 120px 40px; }
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.collection-card {
  position: relative;
  overflow: hidden;
  cursor: none;
  background: var(--mid);
}
.collection-card__bg {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.collection-card__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0.6;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.collection-card:hover .collection-card__bg,
.collection-card:hover .collection-card__bg img { transform: scale(1.05); }
.collection-card__info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 30%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.collection-card__name {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 3px;
  margin-bottom: 4px;
  color: var(--white);
}
.collection-card__count {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}
.collection-card__arrow {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s, transform 0.3s;
}
.collection-card:hover .collection-card__arrow { opacity: 1; transform: translateY(0); }

/* ── STATS ── */
.stats-bar {
  background: var(--red);
  padding: 80px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stats-bar__item {
  padding: 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__num {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: var(--white);
}
.stats-bar__label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ── INSTAGRAM ── */
.section-instagram {
  background: var(--black);
  padding: 120px 40px;
  text-align: center;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  margin: 60px 0 40px;
}
.ig-grid__cell {
  aspect-ratio: 1;
  background: var(--mid);
  overflow: hidden;
  cursor: none;
  transition: filter 0.3s;
}
.ig-grid__cell:hover { filter: brightness(1.3); }
.ig-grid__cell img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── NEWSLETTER ── */
.section-newsletter {
  background: var(--grey);
  padding: 100px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 40px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  width: 100%;
}
.newsletter-form__input {
  flex: 1;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  padding: 18px 24px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form__input::placeholder { color: var(--muted); }
.newsletter-form__input:focus { border-color: var(--white); }
.newsletter-form__btn {
  background: var(--white);
  color: var(--black);
  border: none;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 18px 28px;
  cursor: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.newsletter-form__btn:hover { background: var(--red); color: var(--white); }

/* ── FOOTER ── */
.site-footer {
  background: #040404;
  padding: 40px 40px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: auto;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 0px;
}
.site-footer__brand { font-family: var(--font-display); font-size: 42px; letter-spacing: 4px; margin-bottom: 20px; }
.site-footer__tagline { font-family: var(--font-mono); font-size: 9px; letter-spacing: 2px; color: var(--muted); line-height: 2; max-width: 280px; }
.site-footer__col h4 { font-family: var(--font-mono); font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.site-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.site-footer__col a { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; color: rgba(255,255,255,0.5); text-decoration: none; cursor: none; transition: color 0.2s; }
.site-footer__col a:hover { color: var(--white); }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
}
.site-footer__copy { font-family: var(--font-mono); font-size: 9px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; }
.site-footer__social { display: flex; gap: 20px; }
.site-footer__social a { font-family: var(--font-mono); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); text-decoration: none; cursor: none; transition: color 0.2s; border-bottom: 1px solid transparent; }
.site-footer__social a:hover { color: var(--white); border-bottom-color: var(--white); }

/* ── SHARED / UTILITY ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 100px);
  letter-spacing: 2px;
  line-height: 0.9;
  margin-bottom: 60px;
}
.view-all {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--muted);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  cursor: none;
}
.view-all:hover { color: var(--white); border-color: var(--white); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 16px 32px;
  text-decoration: none;
  cursor: none;
  transition: background 0.2s, color 0.2s, gap 0.3s;
}
.btn-primary::after { content: '→'; }
.btn-primary:hover { background: var(--red); color: var(--white); gap: 20px; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 16px 32px;
  text-decoration: none;
  cursor: none;
  transition: all 0.2s;
}
.btn-outline::after { content: '→'; }
.btn-outline:hover { background: var(--white); color: var(--black); border-color: var(--white); gap: 20px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── PRODUCT PAGE ── */
.product-page { padding: 120px 40px 80px; max-width: 1400px; margin: 0 auto; }
.product-page__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.product-page__images .product-media img { width: 100%; display: block; }
.product-page__info { padding-top: 20px; }
.product-page__vendor { font-family: var(--font-mono); font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.product-page__title { font-family: var(--font-display); font-size: 72px; letter-spacing: 3px; line-height: 0.9; margin-bottom: 24px; }
.product-page__price { font-family: var(--font-mono); font-size: 18px; letter-spacing: 2px; color: var(--muted); margin-bottom: 40px; }
.product-page__desc { font-size: 10px; line-height: 2.2; color: var(--muted); letter-spacing: 1px; margin-bottom: 40px; }
.variant-label { font-family: var(--font-mono); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; display: block; }
.variant-buttons { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.variant-btn {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 20px;
  cursor: none;
  transition: all 0.2s;
}
.variant-btn:hover, .variant-btn.active { background: var(--white); color: var(--black); border-color: var(--white); }
.add-to-cart-btn {
  width: 100%;
  background: var(--white);
  color: var(--black);
  border: none;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 20px 40px;
  cursor: none;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 16px;
}
.add-to-cart-btn:hover { background: var(--red); color: var(--white); }

/* ── COLLECTION PAGE ── */
.collection-page { padding: 120px 40px 80px; }
.collection-page__header { margin-bottom: 60px; }
.collection-page__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-header { padding: 16px 20px; }
  .site-header__nav { display: none; }
  .hero { padding: 80px 20px 60px; }
  .hero__title { font-size: 64px; }
  section { padding: 80px 20px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card:first-child { grid-column: span 2; }
  .split-section { grid-template-columns: 1fr; }
  .collections-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer__top { grid-template-columns: 1fr; gap: 40px; }
  .product-page__grid { grid-template-columns: 1fr; }
  .collection-page__grid { grid-template-columns: repeat(2, 1fr); }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}
.site-header__icon {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  transition: color 0.2s;
  text-decoration: none;
}
.site-header__icon:hover { color: var(--red); }
.site-header__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 3px;
}
.site-header__cart:hover { color: var(--red); }
.site-header__cart-count {
  position: absolute;
  top: 4px; right: 2px;
  background: var(--red);
  color: #fff;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.site-header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
.site-header__logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}/* Mobile policy page cleanup */
@media (max-width: 749px) {
  .template-policy .shopify-policy__container {
    padding: 90px 22px 30px !important;
    max-width: 100% !important;
  }

  .template-policy .shopify-policy__title h1 {
    font-size: 22px !important;
    line-height: 1.1 !important;
    margin-bottom: 20px !important;
  }

  .template-policy .shopify-policy__body,
  .template-policy .shopify-policy__body p,
  .template-policy .shopify-policy__body div {
    font-size: 11px !important;
    line-height: 1.55 !important;
    letter-spacing: 0.4px !important;
  }

  .template-policy .shopify-policy__body p {
    margin-bottom: 12px !important;
  }

  .template-policy footer {
    margin-top: 30px !important;
  }
@media (max-width: 749px) {
  body.template-policy #MainContent {
    padding-top: 70px !important;
  }

  body.template-policy .shopify-policy__container,
  body.template-policy .shopify-policy__body,
  body.template-policy .shopify-policy__body * {
    font-size: 11px !important;
    line-height: 1.45 !important;
    letter-spacing: 0.2px !important;
  }

  body.template-policy .shopify-policy__container {
    padding: 0 22px 25px !important;
  }

  body.template-policy .shopify-policy__body p,
  body.template-policy .shopify-policy__body div {
    margin: 0 0 10px !important;
  }

  body.template-policy footer {
    margin-top: 20px !important;
  }
}/* FORCE FIX POLICY PAGES MOBILE */

.shopify-policy__container {
  max-width: 700px !important;
  margin: 0 auto !important;
  padding: 40px 24px 80px !important;
}

.shopify-policy__title h1 {
  font-size: 28px !important;
  line-height: 1.1 !important;
  margin-bottom: 24px !important;
}

.shopify-policy__body,
.shopify-policy__body p,
.shopify-policy__body div,
.shopify-policy__body span {
  font-size: 15px !important;
  line-height: 1.9 !important;
  letter-spacing: 0.2px !important;
}

.shopify-policy__body p {
  margin-bottom: 24px !important;
}

@media (max-width: 749px) {

  .shopify-policy__container {
    padding: 110px 28px 120px !important;
  }

  .shopify-policy__title h1 {
    font-size: 32px !important;
    margin-bottom: 32px !important;
  }

  .shopify-policy__body,
  .shopify-policy__body p,
  .shopify-policy__body div,
  .shopify-policy__body span {
    font-size: 18px !important;
    line-height: 2.1 !important;
  }

  .shopify-policy__body p {
    margin-bottom: 32px !important;
  }
/* Fix cart product image sizing */
.cart img,
.cart-item img,
.cart__item img,
.cart-item__image img,
.cart__image img {
  width: 120px !important;
  height: 160px !important;
  object-fit: cover !important;
  object-position: center !important;
@media (max-width: 749px) {
  .cart img,
  .cart-item img,
  .cart__item img,
  .cart-item__image img,
  .cart__image img {
    width: 95px !important;
    height: 125px !important;
    object-fit: cover !important;
    object-position: center !important;
  }
}
@media (max-width: 749px) {
  .hero__bg-text {
    font-size: 12vw !important;
    width: 100% !important;
    max-width: 100% !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: visible !important;
    opacity: 0.12 !important;
  }

  .hero,
  .hero__media,
  .hero__content {
    overflow: hidden !important;
  }
}
