/** Shopify CDN: Minification failed

Line 102:25 Expected "}" to go with "{"

**/
/* =========================================
   ASSETS/THEME.CSS - Global Styles
   Design System per Brand Streetwear
   ========================================= */

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-grey: #3A3A3A;
  --color-grey-light: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-primary: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;

  /* Spacing */
  --spacing-xs: 10px;
  --spacing-sm: 20px;
  --spacing-md: 40px;
  --spacing-lg: 60px;
  --spacing-xl: 100px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Container */
  --container-max: 1400px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-regular);
  color: var(--color-white);
  background: var(--color-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-black);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 20px;
}

h1 { font-size: 48px; letter-spacing: 6px; }
h2 { font-size: 36px; letter-spacing: 5px; }
h3 { font-size: 28px; letter-spacing: 4px; }
h4 { font-size: 20px; letter-spacing: 3px; }
h5 { font-size: 16px; letter-spacing: 2px; }
h6 { font-size: 14px; letter-spacing: 2px; }

p {
  margin-bottom: 15px;
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-normal);
}

a:hover {
  opacity: 0.6;
}

/* UTILITY CLASSES */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 60px;
}

.text-center { text-align: center; }
.text-left { text-align: 