/* Appily fortytwo — Harvest Canvas homepage (unique dynamic UI) */

.page-home-harvest {
  --harvest-display: 'Syne', system-ui, sans-serif;
  --harvest-body: var(--font-body);
  --harvest-terra: #B85C38;
  --harvest-honey: #E8B84A;
  --harvest-moss: #3D6B4F;
  --harvest-glass: rgba(255, 255, 255, 0.72);
}

.page-home-harvest .page-main {
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(201, 162, 39, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(61, 107, 79, 0.1), transparent 50%),
    var(--a42-cream);
}

/* Hide footer value strip — homepage has its own harvest pillars */
.page-home-harvest .a42-pillars { display: none; }

/* ── Shared section layout ── */
.a42-harvest-section-head,
.a42-harvest-top-head,
.a42-harvest-rated-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.a42-harvest-section-head h2,
.a42-harvest-top-head h2,
.a42-harvest-rated-head h2 {
  margin: 0;
}

.a42-harvest-cat-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.a42-harvest-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid var(--a42-border);
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--a42-olive);
}

.a42-harvest-cat-wrap {
  overflow: hidden;
  margin: 0 -4px;
  padding: 4px;
}

.a42-harvest-cat-track {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.a42-harvest-cat-tile {
  display: grid;
  text-decoration: none;
  color: inherit;
}

.a42-harvest-pillar {
  display: flex;
}

.a42-harvest-pillar strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--a42-olive);
}

.a42-harvest-pillar span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--a42-muted);
}

/* ── Promo banners ── */
.a42-harvest-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 30px;
  overflow: hidden;
  text-decoration: none;
  color: var(--a42-ink);
}

.a42-harvest-banner-copy {
  position: relative;
  z-index: 2;
  max-width: 58%;
}

.a42-harvest-banner-copy span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--a42-muted);
}

.a42-harvest-banner-copy h3 {
  margin: 0 0 8px;
}

.a42-harvest-banner-copy p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

.a42-harvest-banner-copy em {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
}

.a42-harvest-banner-media {
  position: absolute;
  right: 18px;
  bottom: 18px;
  top: 18px;
  width: min(42%, 210px);
  z-index: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.a42-harvest-banner-media-glow {
  position: absolute;
  inset: 8% 4%;
  border-radius: 28px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(2px);
}

.a42-harvest-banner-media-frame {
  position: relative;
  width: min(100%, 188px);
  aspect-ratio: 1;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.12)),
    rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 18px 36px rgba(26, 46, 31, 0.18),
    0 4px 10px rgba(26, 46, 31, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transform: rotate(2.5deg);
}

.a42-harvest-banner-media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(26, 46, 31, 0.06);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28) 0%, transparent 42%, transparent 68%, rgba(26, 46, 31, 0.08) 100%);
  pointer-events: none;
}

.a42-harvest-banner-media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.a42-harvest-banner-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #fff;
  color: var(--a42-olive);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.a42-crudo-banner--dark,
.a42-harvest-banner--hero {
  color: #fff;
}

.a42-crudo-banner--dark .a42-harvest-banner-copy span,
.a42-harvest-banner--hero .a42-harvest-banner-copy span {
  color: rgba(255, 255, 255, 0.72);
}

.a42-crudo-banner--gold .a42-harvest-banner-copy span {
  color: rgba(26, 46, 31, 0.65);
}

/* ── Top products ── */
.a42-harvest-top-head h2 {
  font-family: var(--harvest-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}

.a42-harvest-tab,
.a42-harvest-rated-tab {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  color: var(--a42-ink);
}

.a42-harvest-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.a42-harvest-panel[hidden] {
  display: none !important;
}

.a42-harvest-rated-row[hidden] {
  display: none !important;
}


.a42-harvest-top-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 20px;
  align-items: start;
}

.a42-harvest-featured {
  display: flex;
  flex-direction: column;
}

.a42-harvest-featured-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #fff;
}

.a42-harvest-featured-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.a42-harvest-featured-body span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--a42-muted);
}

.a42-harvest-featured-body h3 {
  margin: 0;
  font-family: var(--harvest-display);
  font-size: 1.25rem;
  line-height: 1.25;
}

.a42-harvest-featured-body p {
  margin: 0;
  font-size: 13px;
  color: var(--a42-muted);
}

.a42-harvest-sale {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.a42-harvest-add {
  display: inline-block;
  margin-top: auto;
  padding: 12px 18px;
  background: var(--a42-olive);
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 700;
}

.a42-harvest-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.a42-harvest-mini-card {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--a42-border);
}

.a42-harvest-mini-card > a:first-child {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: var(--a42-sage);
}

.a42-harvest-mini-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.a42-harvest-mini-card h4 {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.3;
}

.a42-harvest-mini-card h4 a {
  color: inherit;
  text-decoration: none;
}

.a42-harvest-mini-card span {
  display: block;
  font-size: 11px;
  color: var(--a42-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.a42-harvest-mini-card p {
  margin: 0 0 4px;
  font-size: 12px;
  color: var(--a42-muted);
}

.a42-harvest-mini-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 1rem;
}

.a42-harvest-price {
  font-size: 1rem;
  font-weight: 800;
}

/* ── Rated row ── */
.a42-harvest-rated-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.a42-harvest-rated-head .a42-harvest-rated-tabs {
  margin-bottom: 0;
}

.a42-harvest-rated-tabs {
  display: flex;
}

.a42-harvest-rated-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.a42-harvest-rated-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--a42-border);
}

.a42-harvest-rated-card > a:first-of-type {
  display: block;
  aspect-ratio: 1;
  padding: 12px;
  background: var(--a42-sage);
  border-radius: 14px;
  overflow: hidden;
}

.a42-harvest-rated-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.a42-harvest-rated-card h4 {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.3;
}

.a42-harvest-rated-card h4 a,
.a42-harvest-rated-card > a:first-of-type {
  text-decoration: none;
  color: inherit;
}

.a42-harvest-rated-card span {
  font-size: 11px;
  color: var(--a42-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.a42-harvest-rated-card p {
  margin: 0;
  font-size: 12px;
  color: var(--a42-muted);
}

.a42-harvest-discount {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 8px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  border-radius: 8px;
}

.a42-harvest-cart-btn {
  align-self: flex-start;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-top: auto;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 1rem;
}


/* ── Hero ── */
.a42-harvest-hero {
  position: relative;
  padding: 32px 0 56px;
  overflow: hidden;
  min-height: clamp(520px, 72vh, 680px);
}

.a42-harvest-hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.a42-harvest-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: a42HarvestDrift 18s ease-in-out infinite alternate;
}
.a42-harvest-blob--1 {
  width: 420px; height: 420px;
  top: -120px; left: -80px;
  background: rgba(61, 107, 79, 0.35);
}
.a42-harvest-blob--2 {
  width: 360px; height: 360px;
  top: 20%; right: -100px;
  background: rgba(212, 119, 44, 0.28);
  animation-delay: -6s;
}
.a42-harvest-blob--3 {
  width: 280px; height: 280px;
  bottom: -60px; left: 35%;
  background: rgba(201, 162, 39, 0.25);
  animation-delay: -12s;
}

.a42-harvest-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 69, 41, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 69, 41, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}

@keyframes a42HarvestDrift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(24px, -18px) scale(1.08); }
}

.a42-harvest-hero-shell { position: relative; z-index: 1; }

.a42-harvest-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.a42-harvest-brand {
  margin: 0;
  font-family: var(--harvest-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--a42-olive);
  line-height: 1.1;
}

.a42-harvest-hero-nav { display: flex; gap: 8px; }

.a42-harvest-hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--a42-border);
  background: var(--harvest-glass);
  backdrop-filter: blur(8px);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--a42-olive);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.a42-harvest-hero-arrow:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: var(--a42-shadow);
}

.a42-harvest-hero-track {
  position: relative;
  display: block;
  min-height: clamp(360px, 50vh, 480px);
}

.a42-harvest-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s;
  pointer-events: none;
}
.a42-harvest-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  position: relative;
}

.a42-harvest-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--harvest-terra);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.a42-harvest-copy h1 {
  font-family: var(--harvest-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--a42-ink);
}
.a42-harvest-copy h1 em {
  font-style: normal;
  color: var(--harvest-moss);
  position: relative;
}
.a42-harvest-copy h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 8px;
  background: rgba(201, 162, 39, 0.35);
  z-index: -1;
  border-radius: 4px;
}

.a42-harvest-lede {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 520px;
}

.a42-harvest-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.a42-harvest-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  padding: 15px 26px;
  background: linear-gradient(135deg, var(--a42-olive) 0%, var(--harvest-moss) 100%);
  box-shadow: 0 12px 28px rgba(31, 69, 41, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.a42-harvest-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(31, 69, 41, 0.3);
  text-decoration: none;
  color: #fff;
}
.a42-harvest-cta span { transition: transform 0.2s; display: inline-block; }
.a42-harvest-cta:hover span { transform: translateX(4px); }

.a42-harvest-cta-ghost {
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px dashed var(--a42-olive);
  color: var(--a42-olive);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.a42-harvest-cta-ghost:hover {
  background: rgba(31, 69, 41, 0.06);
  text-decoration: none;
}

.a42-harvest-visual {
  position: relative;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.35), transparent 40%),
    linear-gradient(160deg, #1F4529 0%, #3D6B4F 55%, #142E1A 100%);
  padding: 0;
  min-height: clamp(280px, 42vh, 460px);
  box-shadow: 0 24px 48px rgba(26, 46, 31, 0.18);
}
.a42-harvest-visual img {
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 42vh, 460px);
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.a42-harvest-slide.is-active .a42-harvest-visual img {
  animation: a42HarvestFloat 5s ease-in-out infinite alternate;
}

@keyframes a42HarvestFloat {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

.a42-harvest-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.a42-harvest-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(31, 69, 41, 0.2);
  cursor: pointer;
  padding: 0;
  transition: width 0.25s, background 0.25s;
}
.a42-harvest-dot.is-active {
  width: 32px;
  background: var(--a42-olive);
}

/* ── Pillars ── */
.a42-harvest-pillars {
  margin-top: -20px;
  position: relative;
  z-index: 2;
  padding: 0 0 32px;
}

.a42-harvest-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.a42-harvest-pillar {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px 20px;
  border: 0;
  border-radius: 20px;
  background: var(--harvest-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--a42-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: a42HarvestReveal 0.6s ease both;
  animation-delay: calc(var(--pillar-i, 0) * 0.08s);
}
.a42-harvest-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(26, 46, 31, 0.14);
}

.a42-harvest-pillar-num {
  font-family: var(--harvest-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(31, 69, 41, 0.12);
  position: absolute;
  top: 12px;
  right: 16px;
}

.a42-harvest-pillar-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--a42-sage), #fff);
  font-size: 1.3rem;
}

@keyframes a42HarvestReveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Categories ── */
.a42-harvest-eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--harvest-terra);
}

.a42-harvest-section-head h2 {
  font-family: var(--harvest-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
}

.a42-harvest-arrow {
  border-radius: 12px;
  transition: transform 0.2s, background 0.2s;
}
.a42-harvest-arrow:hover { transform: scale(1.05); background: var(--a42-sage); }

.a42-harvest-scroll-bar {
  height: 3px;
  background: rgba(31, 69, 41, 0.08);
  border-radius: 999px;
  margin-bottom: 16px;
  overflow: hidden;
}
.a42-harvest-scroll-bar span {
  display: block;
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--a42-olive), var(--harvest-honey));
  border-radius: inherit;
  transition: width 0.15s ease;
}

.a42-harvest-cat-track {
  gap: 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.a42-harvest-cat-track::-webkit-scrollbar { display: none; }

.a42-harvest-cat-tile {
  flex: 0 0 168px;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto auto auto;
  border-radius: 22px;
  border: 1px solid rgba(31, 69, 41, 0.08);
  background: #fff;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.a42-harvest-cat-tile:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 20px 40px rgba(26, 46, 31, 0.12);
  text-decoration: none;
}

.a42-harvest-cat-img {
  min-height: 140px;
  background: linear-gradient(
    145deg,
    hsl(var(--cat-hue, 140) 35% 92%) 0%,
    hsl(var(--cat-hue, 140) 25% 88%) 100%
  );
  writing-mode: horizontal-tb;
  transform: none;
  padding: 16px;
  display: grid;
  place-items: center;
}
.a42-harvest-cat-img img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.35s ease;
}
.a42-harvest-cat-tile:hover .a42-harvest-cat-img img { transform: scale(1.06); }

.a42-harvest-cat-label {
  writing-mode: horizontal-tb;
  transform: none;
  padding: 12px 16px 2px;
  font-family: var(--harvest-display);
  font-size: 15px;
  line-height: 1.25;
}

.a42-harvest-cat-count {
  padding: 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--a42-muted);
}

.a42-harvest-cat-arrow {
  padding: 4px 16px 14px;
  font-size: 1.1rem;
  color: var(--harvest-terra);
  transition: transform 0.2s;
}
.a42-harvest-cat-tile:hover .a42-harvest-cat-arrow { transform: translateX(4px); }

/* ── Banners ── */
.a42-harvest-banner-grid {
  grid-template-columns: 1fr 1.15fr 1fr;
  align-items: stretch;
  gap: 20px;
}

.a42-harvest-banner {
  min-height: 280px;
  border-radius: 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  isolation: isolate;
}
.a42-harvest-banner--hero { min-height: 320px; }
.a42-harvest-banner:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(26, 46, 31, 0.18);
  text-decoration: none;
}

.a42-harvest-banner-shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.a42-harvest-banner:hover .a42-harvest-banner-shine { transform: translateX(100%); }

.a42-harvest-banner-media-frame {
  transition: transform 0.5s ease, box-shadow 0.35s ease;
}

.a42-harvest-banner-media-frame img {
  transition: transform 0.55s ease;
}

.a42-harvest-banner:hover .a42-harvest-banner-media-frame {
  transform: rotate(0deg) translateY(-4px);
  box-shadow:
    0 24px 44px rgba(26, 46, 31, 0.22),
    0 8px 16px rgba(26, 46, 31, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.a42-harvest-banner:hover .a42-harvest-banner-media-frame img {
  transform: scale(1.1);
}

.a42-crudo-banner--dark .a42-harvest-banner-media-glow {
  background: radial-gradient(ellipse at center, rgba(232, 184, 74, 0.28) 0%, rgba(232, 184, 74, 0) 70%);
}

.a42-crudo-banner--dark .a42-harvest-banner-media-frame {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(10, 28, 16, 0.35);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.28),
    0 4px 10px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.a42-crudo-banner--dark:hover .a42-harvest-banner-media-frame {
  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.35),
    0 8px 16px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.a42-crudo-banner--gold .a42-harvest-banner-media-frame {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.14)),
    rgba(255, 248, 230, 0.35);
  border-color: rgba(255, 255, 255, 0.6);
}

.a42-harvest-banner-copy h3 {
  font-family: var(--harvest-display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  letter-spacing: -0.01em;
}

.a42-harvest-banner-btn {
  border-radius: 12px;
  transition: transform 0.2s;
}
.a42-harvest-banner:hover .a42-harvest-banner-btn { transform: translateX(4px); }

.a42-crudo-banner--dark { background: linear-gradient(135deg, #142E1A 0%, #1F4529 60%, #3D6B4F 100%); }
.a42-crudo-banner--gold { background: linear-gradient(135deg, #E8B84A 0%, #D4772C 100%); }
.a42-crudo-banner--light { background: linear-gradient(135deg, #ECECEC 0%, #FAF7F0 100%); }

/* ── Top products ── */
.a42-harvest-top-head h2 {
  font-family: var(--harvest-display);
  letter-spacing: -0.02em;
}

.a42-harvest-tabs {
  position: relative;
  padding: 4px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  border: 1px solid var(--a42-border);
  gap: 4px;
  max-width: 100%;
  overflow-x: auto;
  flex-wrap: nowrap;
  scrollbar-width: none;
}
.a42-harvest-tabs::-webkit-scrollbar { display: none; }

.a42-harvest-tab {
  border-radius: 999px;
  padding: 8px 16px;
  border-bottom: 0;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: color 0.2s, background 0.2s;
}
.a42-harvest-tab.is-active {
  background: var(--a42-olive);
  color: #fff;
}

.a42-harvest-featured-body span,
.a42-harvest-mini-card span,
.a42-harvest-rated-card span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.a42-harvest-featured-body h3,
.a42-harvest-mini-card h4,
.a42-harvest-rated-card h4 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.a42-harvest-rated-card > a:first-of-type {
  display: block;
  aspect-ratio: 1;
  padding: 0;
  background: var(--a42-sage);
  border-radius: 14px;
  overflow: hidden;
}
.a42-harvest-rated-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.a42-harvest-mini-card > a:first-child {
  border-radius: 12px;
}
.a42-harvest-mini-card img {
  object-fit: cover;
}

.a42-harvest-featured-img img {
  object-fit: cover;
}

.a42-harvest-panel {
  animation: a42HarvestFadeIn 0.4s ease;
}
@keyframes a42HarvestFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.a42-harvest-featured {
  border: 0;
  border-radius: 24px;
  background: linear-gradient(160deg, #fff 0%, var(--a42-sage) 100%);
  box-shadow: var(--a42-shadow);
  overflow: hidden;
  position: relative;
}
.a42-harvest-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--harvest-honey), var(--a42-olive), var(--harvest-terra));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.a42-harvest-featured-img {
  display: block;
  overflow: hidden;
  border-radius: 16px;
}
.a42-harvest-featured-img img { transition: transform 0.45s ease; }
.a42-harvest-featured:hover .a42-harvest-featured-img img { transform: scale(1.06); }

.a42-harvest-sale {
  background: var(--harvest-terra);
  border-radius: 10px;
}

.a42-harvest-add {
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.a42-harvest-add:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(31, 69, 41, 0.25); }

.a42-harvest-mini-grid { gap: 14px; }

.a42-harvest-mini-card {
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: a42HarvestReveal 0.5s ease both;
  animation-delay: calc(var(--mini-i, 0) * 0.06s);
}
.a42-harvest-mini-card:hover {
  transform: translateX(4px);
  box-shadow: var(--a42-shadow);
  border-color: rgba(31, 69, 41, 0.15);
}
.a42-harvest-mini-card img { transition: transform 0.3s; }
.a42-harvest-mini-card:hover img { transform: scale(1.08); }

.a42-harvest-mini-btn {
  border-radius: 12px;
  background: linear-gradient(135deg, var(--a42-olive), var(--harvest-moss));
  transition: transform 0.2s;
}
.a42-harvest-mini-btn:hover { transform: scale(1.08); }

.a42-harvest-price { color: var(--harvest-terra); font-family: var(--harvest-display); }

/* ── Rated ── */
.a42-harvest-rated {
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.08), transparent 40%),
    var(--a42-cream);
  padding: 56px 0;
}

.a42-harvest-rated-tabs {
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.a42-harvest-rated-tab {
  font-family: var(--harvest-display);
  font-size: 1.1rem;
  border-radius: 999px;
  padding: 10px 20px;
  border: 1px solid transparent;
  transition: all 0.25s;
}
.a42-harvest-rated-tab.is-active {
  background: #fff;
  border-color: var(--a42-border);
  box-shadow: var(--a42-shadow);
  border-bottom: 1px solid var(--a42-border);
}

.a42-harvest-rated-row { gap: 18px; }

.a42-harvest-rated-card {
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: a42HarvestReveal 0.5s ease both;
  animation-delay: calc(var(--rated-i, 0) * 0.07s);
}
.a42-harvest-rated-card:nth-child(even) { transform: translateY(12px); }
.a42-harvest-rated-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(26, 46, 31, 0.12);
}
.a42-harvest-rated-card:nth-child(even):hover { transform: translateY(6px); }

.a42-harvest-stars {
  display: block;
  color: var(--harvest-honey);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.a42-harvest-discount { background: var(--harvest-terra); }

.a42-harvest-cart-btn {
  border-radius: 12px;
  background: var(--harvest-terra);
  transition: transform 0.2s, background 0.2s;
}
.a42-harvest-cart-btn:hover { transform: scale(1.1); background: var(--a42-olive); }

/* ── Gallery marquee ── */
.a42-harvest-gallery {
  padding: 0 0 56px;
  overflow: hidden;
}

.a42-harvest-gallery-label {
  text-align: center;
  margin-bottom: 20px;
}
.a42-harvest-gallery-label span {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--a42-olive);
  color: #fff;
  font-family: var(--harvest-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.a42-harvest-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.a42-harvest-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: a42HarvestMarquee 40s linear infinite;
}
.a42-harvest-marquee:hover .a42-harvest-marquee-track {
  animation-play-state: paused;
}

@keyframes a42HarvestMarquee {
  to { transform: translateX(-50%); }
}

.a42-harvest-gallery-item {
  flex: 0 0 200px;
  position: relative;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--a42-shadow);
  transition: transform 0.3s ease;
}
.a42-harvest-gallery-item:hover {
  transform: scale(1.04) rotate(-1deg);
  text-decoration: none;
}
.a42-harvest-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.a42-harvest-gallery-item:hover img { transform: scale(1.1); }

.a42-harvest-gallery-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(20, 46, 26, 0.85));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.a42-harvest-gallery-item:hover .a42-harvest-gallery-cap {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .a42-harvest-slide {
    grid-template-columns: 1fr;
    position: absolute;
  }
  .a42-harvest-slide.is-active { position: relative; }
  .a42-harvest-hero-track { min-height: auto; }
  .a42-harvest-pillars-grid { grid-template-columns: 1fr 1fr; }
  .a42-harvest-banner-grid { grid-template-columns: 1fr; }
  .a42-harvest-banner--hero { min-height: 280px; }
  .a42-harvest-banner-copy { max-width: 58%; }
  .a42-harvest-banner-media {
    right: 14px;
    bottom: 14px;
    top: 14px;
    width: min(40%, 168px);
  }
  .a42-harvest-banner-media-frame {
    width: min(100%, 150px);
    border-radius: 18px;
  }
  .a42-crudo-top-layout,
  .a42-harvest-top-layout { grid-template-columns: 1fr; }
  .a42-harvest-mini-grid { grid-template-columns: 1fr; }
  .a42-harvest-rated-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .a42-harvest-rated-card:nth-child(even) { transform: none; }
  .a42-harvest-tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  .a42-harvest-tabs::-webkit-scrollbar { display: none; }
  .a42-harvest-tab { flex: 0 0 auto; white-space: nowrap; }
}

@media (max-width: 560px) {
  .a42-harvest-pillars-grid { grid-template-columns: 1fr; }
  .a42-harvest-rated-row { grid-template-columns: 1fr; }
  .a42-harvest-cta-row { flex-direction: column; align-items: stretch; }
  .a42-harvest-cta-ghost { text-align: center; }
  .a42-harvest-banner {
    min-height: 240px;
    padding: 22px 20px;
  }
  .a42-harvest-banner-copy { max-width: 56%; }
  .a42-harvest-banner-media {
    right: 12px;
    bottom: 12px;
    top: 12px;
    width: min(38%, 132px);
  }
  .a42-harvest-banner-media-frame {
    width: min(100%, 120px);
    border-radius: 16px;
    transform: rotate(1.5deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .a42-harvest-blob,
  .a42-harvest-orbit,
  .a42-harvest-marquee-track,
  .a42-harvest-slide.is-active .a42-harvest-visual img {
    animation: none;
  }
  .a42-harvest-slide { transition: opacity 0.2s; transform: none; }
}
