/** Shopify CDN: Minification failed

Line 195:12 Expected identifier but found whitespace
Line 195:13 Unexpected "1.6rem"

**/
/* ================================== */
/* DAILY HARVEST EDITORIAL SECTION   */
/* ================================== */

.product-editorial-section {
  background: white;
  padding: 6.4rem 0 5.6rem;
  margin-top: 8rem;
}

.product-editorial__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.product-editorial__grid {
  display: grid;
  grid-template-columns: 54% 44%;
  gap: 2%;
  align-items: start;
}

/* Media Column */
.product-editorial__media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #fafafa;
}

/* Editorial Slideshow */
.editorial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
}

.editorial-slide--active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

.editorial-navigation {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 1rem;
  z-index: 2;
}

/* Premium arrow buttons */
.editorial-nav-button {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,245,247,0.95));
  border: none;
  border-radius: 12px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 180ms cubic-bezier(.2,.8,.2,1), box-shadow 180ms ease, opacity 150ms ease;
  opacity: 0;
  box-shadow: 0 6px 20px rgba(17,24,39,0.06), inset 0 1px 0 rgba(255,255,255,0.45);
  color: rgba(var(--color-foreground), 1);
  backdrop-filter: blur(6px);
}

.editorial-slideshow:hover .editorial-nav-button {
  opacity: 1;
}

.editorial-nav-button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(17,24,39,0.12);
}

.editorial-nav-button:focus-visible {
  outline: 3px solid rgba(0,0,0,0.06);
  outline-offset: 4px;
}

.editorial-nav-button .icon-caret {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
  color: rgba(var(--color-foreground), 1);
  transition: transform 180ms ease;
}

.editorial-nav-button--prev .icon-caret {
  transform: rotate(90deg);
}

.editorial-nav-button--next .icon-caret {
  transform: rotate(-90deg);
}

/* Subtle variant for dark backgrounds if needed */
.editorial-nav-button.editorial-nav-button--dark {
  background: linear-gradient(180deg, rgba(20,20,24,0.95), rgba(12,12,16,0.95));
  color: #fff;
  box-shadow: 0 10px 30px rgba(2,6,23,0.5);
}

.editorial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  will-change: transform, opacity;
}

.editorial-single-image {
  width: 100%;
  height: 100%;
}

.editorial-single-image .editorial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.editorial-media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #999;
  font-size: 1.4rem;
}

/* Content Column */
.product-editorial__content {
  padding-left: 2.4rem;
  max-width: 520px;
}

/* Typography */
.editorial-description__heading,
.editorial-story__heading {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.8rem;
  color: rgb(var(--color-foreground));
  letter-spacing: -0.01em;
}

.editorial-ideal__heading,
.editorial-features__heading {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 2.8rem 0 1rem 0;
  color: rgba(var(--color-foreground), 0.9);
}

.editorial-description__copy,
.editorial-story__content,
.editorial-ideal__content,
.editorial-features__content {
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgba(var(--color-foreground), 0.75);
}

.editorial-description__copy p,
.editorial-story__content p {
  margin-bottom: 1.6rem;
}

.editorial-description__copy p:first-child,
.editorial-story__content p:first-child {
  margin-top: 0;
}
  font-size: 1.6rem;
  line-height: 1.6;
  color: rgba(var(--color-foreground), 0.8);
  margin-bottom: 2.4rem;
}

.editorial-story__content p,
.editorial-ideal__content p,
.editorial-features__content p {
  margin-bottom: 1.6rem;
}

.editorial-story__content p:last-child,
.editorial-ideal__content p:last-child,
.editorial-features__content p:last-child {
  margin-bottom: 0;
}


/* Mobile responsive */
@media screen and (max-width: 749px) {
  .product-editorial-section {
    padding: 4rem 0;
    margin-top: 3.2rem;
  }

  .product-editorial__container {
    padding: 0 1.6rem;
  }

  .product-editorial__grid {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }

  .product-editorial__content {
    padding-left: 0;
  }

  .editorial-story__heading {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }

  .editorial-ideal__heading,
  .editorial-features__heading {
    font-size: 1.6rem;
    margin: 2.4rem 0 1.2rem 0;
  }

  .editorial-story__content,
  .editorial-ideal__content,
  .editorial-features__content {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  /* Hide editorial navigation (arrows) on mobile for cleaner layout */
  .editorial-navigation {
    display: none !important;
  }
}