/** Shopify CDN: Minification failed

Line 135:0 All "@import" rules must come first

**/
/* ============================================================
   YEEZY-STYLE.CSS — Safe subset of yeezy.com styles
   Integrated into Horizon Shopify theme
   Skips: global resets, main/nav fixed positioning, heading/link/list resets
   ============================================================ */


/* ============================================================
   0. HORIZON OVERRIDES — Yeezy aesthetic
   ============================================================ */

/* Force IBM Plex Mono by overriding Horizon's font CSS variables */
:root {
  --font-body--family: "IBM Plex Mono", monospace;
  --font-body--style: normal;
  --font-body--weight: 400;
  --font-subheading--family: "IBM Plex Mono", monospace;
  --font-subheading--style: normal;
  --font-subheading--weight: 500;
  --font-heading--family: "IBM Plex Mono", monospace;
  --font-heading--style: normal;
  --font-heading--weight: 400;
  --font-accent--family: "IBM Plex Mono", monospace;
  --font-accent--style: normal;
  --font-accent--weight: 400;
}

/* Apply IBM Plex Mono globally as a hard override */
body,
h1, h2, h3, h4, h5, h6,
p, a, span, li, label, input, textarea, select, button,
.btn, [class*="btn-"],
.header, .footer, .nav,
[class*="font-"] {
  font-family: "IBM Plex Mono", monospace !important;
}

/* Yeezy bold-on-hover — text gets heavier when cursor passes over */
a:hover,
button:hover,
h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover,
.product-card__title:hover,
.card__heading:hover,
[class*="heading"]:hover,
[class*="title"]:hover,
nav a:hover,
header a:hover,
.menu a:hover,
.link:hover {
  font-weight: 700 !important;
}

/* Simplicity — strip all border-radius, box-shadows, decorative effects */
*,
button, input, select, textarea,
.btn, [class*="btn-"],
.card, [class*="card"],
[class*="badge"],
[class*="tag"],
.modal, [class*="modal"],
.drawer, [class*="drawer"],
.dropdown, [class*="dropdown"],
img {
  border-radius: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

/* Pure black/white color lock */
:root {
  --color-background: #ffffff;
  --color-foreground: #000000;
  --color-foreground-heading: #000000;
  --color-primary: #000000;
  --color-primary-hover: #333333;
  --color-border: #000000;
  --color-primary-button-text: #ffffff;
  --color-primary-button-background: #000000;
  --color-primary-button-border: #000000;
  --color-primary-button-hover-text: #000000;
  --color-primary-button-hover-background: #ffffff;
  --color-primary-button-hover-border: #000000;
  --color-secondary-button-text: #000000;
  --color-secondary-button-background: transparent;
  --color-secondary-button-border: #000000;
  --color-secondary-button-hover-text: #ffffff;
  --color-secondary-button-hover-background: #000000;
  --color-secondary-button-hover-border: #000000;
  --color-input-background: #ffffff;
  --color-input-text: #000000;
  --color-input-border: #000000;
}

/* Clean up button styles — flat, sharp, minimal */
button,
.btn,
[class*="btn-"],
input[type="submit"],
input[type="button"] {
  border-radius: 0 !important;
  box-shadow: none !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", monospace !important;
  transition: background-color 0.15s ease, color 0.15s ease, font-weight 0.1s ease;
}

/* Remove all gradient backgrounds */
[style*="gradient"],
[class*="gradient"] {
  background-image: none !important;
}

/* Uppercase navigation and labels — Yeezy standard */
header a,
nav a,
.header__menu a,
[class*="nav"] a,
[class*="menu"] a {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}


/* ============================================================
   1. FONT IMPORT
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');


/* ============================================================
   2. CSS CUSTOM PROPERTIES (additive — no conflict with Horizon vars)
   ============================================================ */

:root {
  --font-ibm-plex-mono: "IBM Plex Mono", monospace;

  --color-black: #000;
  --color-white: #fff;

  --spacing: 0.25rem;

  --text-xs: 0.75rem;
  --text-xs--line-height: calc(1 / 0.75);
  --text-sm: 0.875rem;
  --text-sm--line-height: calc(1.25 / 0.875);

  --font-weight-medium: 500;

  --tracking-wide: 0.025em;

  --tw-ring-offset-color: #fff;
  --tw-ring-offset-width: 0px;
  --tw-border-style: solid;
  --tw-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-inset-shadow: 0 0 #0000;
  --tw-inset-ring-shadow: 0 0 #0000;
  --tw-ring-offset-shadow: 0 0 #0000;

  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-translate-z: 0;

  --tw-scale-x: 1;
  --tw-scale-y: 1;
}

@property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }


/* ============================================================
   3. SELECTIVE BASE STYLES (safe, non-conflicting)
   ============================================================ */

/* Form element resets — scoped to .yeezy-form to avoid global conflict */
.yeezy-form button,
.yeezy-form input,
.yeezy-form select,
.yeezy-form optgroup,
.yeezy-form textarea {
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0px;
}

.yeezy-form ::placeholder {
  color: currentColor;
  opacity: 0.5;
}

.yeezy-form textarea {
  resize: vertical;
}

/* b/strong — safe, standard */
b, strong {
  font-weight: bolder;
}


/* ============================================================
   4. LAYOUT UTILITIES (class-based only, no fixed main)
   ============================================================ */

.fhs {
  height: 100dvh;
}

.no-scroll-bar {
  scrollbar-width: none;
}
.no-scroll-bar::-webkit-scrollbar {
  display: none;
}


/* ============================================================
   5. NAVIGATION — class-based styles only
   ============================================================ */

.nav-item {
  cursor: pointer;
  background-color: #fff;
  padding-inline: calc(var(--spacing) * 3);
  font-family: var(--font-ibm-plex-mono), ui-monospace, monospace;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(110, 110, 110);
  text-transform: uppercase;
  opacity: 1;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
  border-radius: 0.25rem;
}

@media (hover: hover) {
  .nav-item:hover {
    opacity: 0.7;
  }
}

@media not all and (min-width: 768px) {
  .nav-item {
    padding-inline: calc(var(--spacing) * 2);
    font-size: 0.5rem;
  }
}


/* ============================================================
   6. PRODUCT GRID
   ============================================================ */

.product-grid {
  display: grid;
  gap: calc(var(--spacing) * 4);
  grid-template-columns: repeat(var(--col-count, 6), minmax(0, 1fr));
  width: 100%;
  justify-content: center;
  justify-items: center;
  padding-bottom: 2rem;
  position: relative;
  transform: translate(var(--tx, 0)) translateY(var(--ty, 0)) scale(var(--scale, 1));
  touch-action: pan-y;
  opacity: var(--opacity, 1);
  transition: transform var(--duration, 0.3s) linear,
              opacity var(--duration, 0.3s) ease-in-out;
  will-change: transform;
}

[data-is-mobile="true"] .product-grid {
  transition: transform var(--duration, 0.3s) linear,
              opacity var(--duration, 0.3s) ease-in-out;
}

.product-grid:has(.product-image.opacity-0) {
  transition: none;
}


/* ============================================================
   7. PRODUCT ITEM
   ============================================================ */

.product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: min(500px, 100%);
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  font-family: var(--font-ibm-plex-mono);
}

.image-container {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.product-image {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  pointer-events: none;
  user-select: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item:hover .image-container {
  transform: scale(1.02);
}

.product-label {
  font-size: 1rem;
  font-family: var(--font-ibm-plex-mono);
  text-transform: uppercase;
  text-align: center;
  color: #000;
  white-space: nowrap;
  width: 100%;
  max-width: 100%;
  z-index: 10;
  margin-top: 0.25rem;
}


/* ============================================================
   8. SIZE LABELS
   ============================================================ */

.us-size-label {
  --tw-translate-y: 0;
  translate: var(--tw-translate-x, 0) var(--tw-translate-y);
  opacity: 1;
  transition: translate 0.15s ease, opacity 0.15s ease;
}

[data-show-garment-size-label="true"] .us-size-label {
  --tw-translate-y: -100%;
  opacity: 0;
}

.garment-size-label {
  --tw-translate-y: 0;
  translate: var(--tw-translate-x, 0) var(--tw-translate-y);
  opacity: 1;
  transition: translate 0.15s ease, opacity 0.15s ease;
}

[data-show-garment-size-label="true"] .garment-size-label {
  --tw-translate-y: 0;
  opacity: 1;
}

[data-is-mobile="false"] .product-sizes-container:has(.question-mark-btn:hover) .us-size-label {
  --tw-translate-y: -100%;
  translate: var(--tw-translate-x, 0) var(--tw-translate-y);
  opacity: 0;
}
[data-is-mobile="false"] .product-sizes-container:has(.question-mark-btn:hover) .garment-size-label {
  --tw-translate-y: 0;
  translate: var(--tw-translate-x, 0) var(--tw-translate-y);
  opacity: 1;
}


/* ============================================================
   9. PINCH ZOOM CONTAINER
   ============================================================ */

.pinch-zoom-container {
  touch-action: none;
  user-select: none;
}

.pinch-zoom-container img {
  pointer-events: none;
  user-select: none;
}


/* ============================================================
   10. FORM INPUTS
   ============================================================ */

.form-wrapper {
  display: flex;
  flex-flow: column;
  row-gap: calc(var(--spacing) * 4);
  width: 100%;
  padding-block: calc(var(--spacing) * 4);
}

.form-input {
  display: block;
  height: calc(var(--spacing) * 12);
  max-height: calc(var(--spacing) * 12);
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: #000;
  border-radius: 0;
  padding: calc(var(--spacing) * 3);
  color: #000;
  background-color: transparent;
  text-transform: uppercase;
  font-family: var(--font-ibm-plex-mono);
  outline: none;
  box-shadow: none;
}

.form-input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.form-input:focus {
  border-color: #000;
  outline: none;
  box-shadow: 0 0 0 1px #000;
}

.form-input:active {
  border-color: #000;
  outline: none;
}

.form-input-container {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing) * 1);
  width: 100%;
}

.form-input-container label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: rgba(0, 0, 0, 0.6);
}

.form-multi-column-container {
  display: flex;
  gap: calc(var(--spacing) * 4);
  width: 100%;
}

@media not all and (min-width: 640px) {
  .form-multi-column-container {
    flex-direction: column;
  }
  .form-multi-column-container .form-input-container {
    width: 100%;
  }
}


/* ============================================================
   11. LOADING SKELETON / SHIMMER
   ============================================================ */

.loading {
  background-color: rgb(229, 231, 235);
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: "";
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0px,
    rgba(255, 255, 255, 0.4) 20%,
    rgba(255, 255, 255, 0.6) 60%,
    rgba(255, 255, 255, 0)
  );
  animation: shimmer 1.2s ease 0s infinite normal none running;
  position: absolute;
  inset: 0px;
  transform: translate(-100%);
}

@keyframes shimmer {
  100% {
    transform: translate(100%);
  }
}


/* ============================================================
   12. SLIDE / FLY ANIMATIONS
   ============================================================ */

@property --duration { syntax: "<time>"; inherits: false; initial-value: 0.3s; }
@property --animation-duration { syntax: "<time>"; inherits: false; initial-value: 0.5s; }

.fly-up    { animation: fly-in         var(--duration, 0.3s) linear forwards; }
.fly-down  { animation: fly-down       var(--duration, 0.3s) linear forwards; }
.fly-up-reverse   { animation: fly-up-reverse   var(--duration, 0.3s) linear forwards; }
.fly-down-reverse { animation: fly-down-reverse var(--duration, 0.3s) linear forwards; }
.fly-left  { animation: fly-left       var(--duration, 0.3s) linear forwards; }
.fly-right { animation: fly-right      var(--duration, 0.3s) linear forwards; }
.fly-left-reverse  { animation: fly-left-reverse  var(--duration, 0.3s) linear forwards; }
.fly-right-reverse { animation: fly-right-reverse var(--duration, 0.3s) linear forwards; }
.grid-img-fly-in  { animation: grid-img-fly-in var(--animation-duration, 0.5s) linear forwards; }

@keyframes fly-in {
  100% { transform: translateY(calc(-50% - 9rem - 50vh)); }
}
@keyframes fly-down {
  100% { transform: translateY(calc(50% + 9rem + 50vh)); }
}
@keyframes fly-up-reverse {
  0% { transform: translateY(calc(50% + 9rem + 50vh)); }
}
@keyframes fly-down-reverse {
  0% { transform: translateY(calc(-50% - 9rem - 50vh)); }
}
@keyframes fly-left {
  100% { transform: translateX(calc(-50% - 9rem - 50vw)); }
}
@keyframes fly-right {
  100% { transform: translateX(calc(50% + 9rem + 50vw)); }
}
@keyframes fly-left-reverse {
  0% { transform: translateX(calc(50% + 9rem + 50vw)); }
}
@keyframes fly-right-reverse {
  0% { transform: translateX(calc(-50% - 9rem - 50vw)); }
}
@keyframes grid-img-fly-in {
  0% { transform: translate(var(--tx, 0)) translateY(var(--ty, 0)) scale(var(--scale, 1)); }
}


/* ============================================================
   13. UTILITY CLASSES
   ============================================================ */

.opacity-0   { opacity: 0; }
.opacity-20  { opacity: 0.2; }
.opacity-100 { opacity: 1; }

[data-is-mobile="true"]  .only-desktop { display: none !important; }
[data-is-mobile="false"] .only-mobile  { display: none !important; }

.aspect-square     { aspect-ratio: 1 / 1; }
.object-contain    { object-fit: contain; }
.uppercase         { text-transform: uppercase; }
.text-center       { text-align: center; }
.whitespace-nowrap { white-space: nowrap; }
.overflow-hidden   { overflow: hidden; }
.z-10              { z-index: 10; }
.transition-all    { transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1); }
.duration-300      { transition-duration: 0.3s; }
.select-none       { user-select: none; }
.cursor-pointer    { cursor: pointer; }

.hover\:scale-\[1\.02\]:hover {
  transform: scale(1.02);
}
