/** Shopify CDN: Minification failed

Line 453:0 Unexpected "}"

**/
/* ============================================================
   EDITORIAL PRODUCT FEED — CRTZ.xyz Inspired
   Uses Shopify theme global color scheme variables
   ============================================================ */

/* --- CSS Custom Properties (inheriting from theme color scheme) --- */
.editorial-feed {
  /* Typography */
  --ef-font-mono: var(--font-body-family, 'Courier New', monospace);
  --ef-font-serif: var(--font-heading-family, 'Georgia', serif);
  --ef-font-sans: var(--font-body-family, system-ui, sans-serif);

  /* Layout */
  --ef-sidebar-width: 220px;

  /* Transitions */
  --ef-transition-base: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ef-transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Section Container --- */
.editorial-feed {
  position: relative;
  background-color: var(--color-background);
  color: var(--color-foreground);
  min-height: 100vh;
  overflow: clip;
}

.editorial-feed *,
.editorial-feed *::before,
.editorial-feed *::after {
  box-sizing: border-box;
}

/* Ambient background noise texture */
.editorial-feed::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='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Subtle radial ambient gradient removed */

.editorial-feed__wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
}

/* ============================================================
   MAIN CONTENT AREA
   ============================================================ */
.editorial-feed__content {
  flex: 1;
  min-width: 0;
  padding: 48px 40px 80px;
}

/* Category Title */
.editorial-feed__category-title {
  font-family: var(--ef-font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-foreground);
  margin: 0 0 48px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(var(--color-foreground-rgb) / 0.06);
  position: relative;
}

.editorial-feed__category-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 80px;
  height: 1px;
  background: var(--color-foreground);
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.editorial-feed__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 36px;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.editorial-feed__card {
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.editorial-feed__card--visible {
  opacity: 1;
  transform: translateY(0);
}

.editorial-feed__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

/* Card Image Container */
.editorial-feed__card-media {
  position: relative;
  overflow: hidden;
  background-color: rgb(var(--color-foreground-rgb) / 0.04);
  aspect-ratio: 3 / 4;
  border-radius: 2px;
}

/* Push product badges away from the absolute corners */
.editorial-feed__card-media .product-badges {
  margin: 12px;
}

/* Floating glow effect behind image */
.editorial-feed__card-media::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: radial-gradient(ellipse at center, rgb(var(--color-foreground-rgb) / 0.04) 0%, transparent 70%);
  border-radius: 12px;
  z-index: -1;
  transition: all var(--ef-transition-smooth);
  filter: blur(12px);
}

/* Soft outer glow ring */
.editorial-feed__card-media::after {
  content: '';
  position: absolute;
  inset: -2px;
  border: 1px solid rgb(var(--color-foreground-rgb) / 0.04);
  border-radius: 3px;
  transition: all var(--ef-transition-smooth);
  pointer-events: none;
}

.editorial-feed__card-link:hover .editorial-feed__card-media::before {
  inset: -16px;
  background: radial-gradient(ellipse at center, rgb(var(--color-foreground-rgb) / 0.08) 0%, rgb(var(--color-foreground-rgb) / 0.04) 40%, transparent 70%);
  filter: blur(20px);
}

.editorial-feed__card-link:hover .editorial-feed__card-media::after {
  border-color: rgb(var(--color-foreground-rgb) / 0.12);
}

/* Product Image */
.editorial-feed__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  will-change: transform;
}

.editorial-feed__card-image--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1; /* Below badges, above main image */
}

.editorial-feed__card:hover .editorial-feed__card-image--hover {
  opacity: 1;
}

.editorial-feed__card:hover .editorial-feed__card-image--main:has(~ .editorial-feed__card-image--hover) {
  opacity: 0;
}

.editorial-feed__card-link:hover .editorial-feed__card-image {
  transform: scale(1.05);
}

/* Lazy load placeholder */
.editorial-feed__card-image--lazy {
  transition: opacity 0.6s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-feed__card-image--lazy:not(.editorial-feed__card-image--loaded) {
  opacity: 0 !important;
}

/* Product Info */
.editorial-feed__card-info {
  padding: 16px 4px 0;
}

.editorial-feed__card-title {
  font-family: var(--ef-font-mono);
  color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text, 0.65));
  margin: 0 0 6px 0;
  line-height: 1.5;
  transition: color var(--ef-transition-base);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: center;
}

.editorial-feed__card-link:hover .editorial-feed__card-title {
  color: var(--color-foreground);
}

.editorial-feed__card-price {
  font-family: var(--ef-font-mono);
  color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text, 0.45));
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.editorial-feed__card-soldout {
  display: none;
  color: var(--color-foreground);
}

.editorial-feed__card-link:hover .editorial-feed__card-soldout {
  display: inline;
}

.editorial-feed__card-price--compare {
  text-decoration: line-through;
  opacity: 0.5;
  font-size: 11px;
}

.editorial-feed__card-price--sale {
  color: var(--color-foreground);
}



/* ============================================================
   EMPTY STATE
   ============================================================ */
.editorial-feed__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  font-family: var(--ef-font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text, 0.45));
}

/* ============================================================
   INFINITE SCROLL LOADING
   ============================================================ */
.editorial-feed__sentinel {
  width: 100%;
  height: 1px;
  visibility: hidden;
}

.editorial-feed__loader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.editorial-feed__loader--active {
  opacity: 1;
}

.editorial-feed__loader-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-foreground);
  animation: ef-pulse 1.4s ease-in-out infinite;
}

.editorial-feed__loader-dot:nth-child(2) {
  animation-delay: 0.16s;
}

.editorial-feed__loader-dot:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes ef-pulse {
  0%, 80%, 100% {
    opacity: 0.2;
    transform: scale(0.8);
  }
  40% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* End of feed message */
.editorial-feed__end {
  text-align: center;
  padding: 48px 0;
  font-family: var(--ef-font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text, 0.45));
  opacity: 0;
  transition: opacity 0.6s ease;
}

.editorial-feed__end--visible {
  opacity: 1;
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.editorial-feed__progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 100;
  background: transparent;
  pointer-events: none;
}

.editorial-feed__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--color-foreground);
  transition: width 0.15s linear;
  box-shadow: 0 0 10px rgb(var(--color-foreground-rgb) / 0.4);
}

/* ============================================================
   REMOVE HEADER/FOOTER BORDERS & GRADIENTS
   ============================================================ */
.header__row, 
.header__row--top,
.header__row--bottom,
.footer-block--newsletter,
.footer,
.footer__content-top,
.footer__content-bottom {
  border: none !important;
  box-shadow: none !important;
  background-image: none !important;
}

.header__underlay-closed,
.header__underlay-open {
  background: transparent !important;
  box-shadow: none !important;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media screen and (max-width: 1024px) {
  .editorial-feed__content {
    padding: 36px 28px 60px;
  }

  .editorial-feed__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media screen and (max-width: 768px) {
  .editorial-feed__wrapper {
    flex-direction: column;
  }

  .editorial-feed__content {
    padding: 28px 16px 60px;
  }

  .editorial-feed__category-title {
    font-size: 24px;
    margin-bottom: 32px;
    padding-bottom: 16px;
  }

  .editorial-feed__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .editorial-feed__card-media {
    aspect-ratio: 3 / 4;
  }
}

/* ============================================================
   SMALL MOBILE
   ============================================================ */
@media screen and (max-width: 480px) {
  .editorial-feed__content {
    padding: 24px 12px 48px;
  }

  .editorial-feed__grid {
    gap: 32px;
  }
}

/* ============================================================
   LARGE SCREENS
   ============================================================ */
  .editorial-feed__content {
    padding: 56px 56px 100px;
  }

  .editorial-feed__grid {
    gap: 56px 44px;
  }
}

@media screen and (min-width: 1800px) {
  .editorial-feed__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 64px 48px;
  }
}

/* ============================================================
   ANIMATIONS & STATES
   ============================================================ */

/* Stagger entrance for grid items */
.editorial-feed__card:nth-child(3n+1) { transition-delay: 0s; }
.editorial-feed__card:nth-child(3n+2) { transition-delay: 0.1s; }
.editorial-feed__card:nth-child(3n) { transition-delay: 0.2s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .editorial-feed__card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .editorial-feed__card-image {
    transition: none;
  }

  .editorial-feed__loader-dot {
    animation: none;
    opacity: 0.6;
  }

  .editorial-feed__card-media::before,
  .editorial-feed__card-media::after {
    transition: none;
  }
}

/* Focus styles for accessibility */
.editorial-feed__card-link:focus-visible {
  outline: 2px solid var(--color-foreground);
  outline-offset: 2px;
}

/* Selection color */
.editorial-feed ::selection {
  background-color: rgb(var(--color-foreground-rgb) / 0.2);
  color: var(--color-foreground);
}


