/* Auto-split from css/style.css. Keep page-specific styles here. */
@import url('product-detail.css?v=1.1.1');
/* Import styles for the video hero from the main products page */
@import url('products.css?v=20260726pk2');

/* ---------- Sweet Corn Spotlight Redesign ---------- */
.prodv2-corn-spotlight {
  padding-top: 0;
  padding-bottom: 0;
  background: #f8f4e9;
  overflow: hidden;
}
.corn-spotlight-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/stock/corn-field-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  /* Parallax effect on scroll */
  background-attachment: fixed;
}
.prodv2-corn-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(80px, 10vw, 140px) 0;
}
.prodv2-corn-copy {
  position: relative;
  z-index: 1;
}
.prodv2-corn-visual {
  position: relative;
  text-align: center;
}
.prodv2-corn-visual img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 35px 40px rgba(85, 58, 24, 0.25));
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.prodv2-corn-visual img:hover {
  transform: scale(1.05) rotate(-2deg);
}

@media (max-width: 900px) {
  .prodv2-corn-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .prodv2-corn-copy { order: 2; text-align: center; }
  .prodv2-corn-visual { order: 1; }
}