body.woocommerce-shop,
body.tax-product_cat,
body.tax-product_tag {
  background: var(--agx-seed-cream);
}

.agx-seed-shop-page {
  background: var(--agx-seed-cream);
  color: var(--agx-seed-green);
  font-family: var(--agx-seed-font);
}

.agx-seed-shop-hero {
  position: relative;
  min-height: min(64vw, 620px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--agx-seed-green);
  color: var(--agx-seed-white);
}

.agx-seed-shop-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .28;
  object-fit: cover;
  filter: saturate(.75) contrast(1.08);
}

.agx-seed-shop-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agx-seed-shop-hero__veil {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 7, .54);
}

.agx-seed-shop-hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  padding: clamp(120px, 15vw, 190px) 0 clamp(46px, 6vw, 88px);
}

.agx-seed-shop-hero__content p,
.agx-seed-section-head > p,
.agx-seed-science-section p {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.agx-seed-shop-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--agx-seed-white);
  font-size: clamp(62px, 9vw, 148px);
  font-weight: 500;
  line-height: .84;
  letter-spacing: -.085em;
}

.agx-seed-shop-hero span {
  display: block;
  max-width: 440px;
  margin-top: 24px;
  color: rgba(255,255,255,.84);
  font-size: 20px;
  line-height: 1.35;
}

.agx-seed-shop-shell {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
}

.agx-seed-category-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 36px 0 22px;
  overflow-x: auto;
  scrollbar-width: none;
}

.agx-seed-category-tabs::-webkit-scrollbar { display: none; }

.agx-seed-category-tabs a {
  flex: 0 0 auto;
  border: 1px solid var(--agx-seed-line);
  border-radius: var(--agx-seed-radius-pill);
  padding: 10px 16px;
  color: var(--agx-seed-green);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}

.agx-seed-category-tabs a:hover,
.agx-seed-category-tabs a:focus-visible,
.agx-seed-category-tabs a.is-active {
  border-color: var(--agx-seed-green);
  background: var(--agx-seed-green);
  color: var(--agx-seed-white);
}

.agx-seed-featured-products,
.agx-seed-collection,
.agx-seed-bundle-section {
  padding: clamp(40px, 7vw, 88px) 0;
}

.agx-seed-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.agx-seed-section-head > p {
  min-width: 130px;
  margin: 0 0 8px;
  color: var(--agx-seed-muted);
}

.agx-seed-section-head h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(36px, 5vw, 74px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.065em;
}

.agx-seed-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.agx-seed-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.agx-seed-product-card {
  display: grid;
  grid-template-columns: minmax(170px, .78fr) minmax(0, 1.22fr);
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(28,58,19,.1);
  border-radius: var(--agx-seed-radius-card);
  background: var(--agx-seed-soft);
}

.agx-seed-product-card--featured {
  min-height: 420px;
  grid-template-columns: minmax(220px, .9fr) minmax(0, 1.1fr);
  background: #eaf1e7;
}

.agx-seed-product-card--bundle {
  background: #eef3e8;
}

.agx-seed-product-card__media {
  display: grid;
  place-items: center;
  min-height: 100%;
  overflow: hidden;
  background: rgba(255,255,255,.62);
}

.agx-seed-product-card__media img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: contain;
  padding: clamp(18px, 3vw, 42px);
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.agx-seed-product-card:hover .agx-seed-product-card__media img { transform: scale(1.035); }

.agx-seed-product-card__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(22px, 3vw, 38px);
}

.agx-seed-product-card__category {
  margin: 0 0 12px;
  color: var(--agx-seed-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.agx-seed-product-card h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.055em;
}

.agx-seed-product-card h3 a { color: inherit; text-decoration: none; }

.agx-seed-product-card__description {
  margin: 16px 0 0;
  color: #3d4938;
  font-size: 15px;
  line-height: 1.45;
}

.agx-seed-product-card__price {
  margin: 18px 0 0;
  color: var(--agx-seed-green);
  font-size: 17px;
  font-weight: 800;
}

.agx-seed-product-card__price del { color: var(--agx-seed-muted); font-weight: 500; }

.agx-seed-product-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 26px;
}

.agx-seed-link {
  color: var(--agx-seed-green);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.agx-seed-quick-add {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--agx-seed-radius-pill);
  background: var(--agx-seed-green);
  padding: 0 16px;
  color: var(--agx-seed-white);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.agx-seed-shop-empty { padding: 48px 0; color: var(--agx-seed-muted); }

.agx-seed-science-section {
  margin-top: 48px;
  background: var(--agx-seed-green);
  color: var(--agx-seed-white);
}

.agx-seed-science-section__inner {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 120px) 0;
}

.agx-seed-science-section h2 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.07em;
}

.agx-seed-science-section__inner > div > span {
  display: block;
  max-width: 600px;
  margin-top: 24px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.45;
}

.agx-seed-science-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 54px;
}

.agx-seed-science-cards article {
  min-height: 220px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--agx-seed-radius-panel);
  padding: 24px;
  background: rgba(255,255,255,.06);
}

.agx-seed-science-cards span { color: var(--agx-seed-lime); font-size: 12px; font-weight: 800; }
.agx-seed-science-cards h3 { margin: 42px 0 10px; font-size: 25px; font-weight: 500; letter-spacing: -.045em; }
.agx-seed-science-cards p { margin: 0; color: rgba(255,255,255,.7); line-height: 1.45; }

@media (max-width: 760px) {
  .agx-seed-shop-hero { min-height: 520px; }
  .agx-seed-shop-hero__content,
  .agx-seed-shop-shell,
  .agx-seed-science-section__inner { width: min(100% - 28px, 1280px); }
  .agx-seed-category-tabs { justify-content: flex-start; padding-inline: 0; }
  .agx-seed-section-head { display: block; }
  .agx-seed-section-head > p { margin-bottom: 12px; }
  .agx-seed-featured-grid,
  .agx-seed-product-grid,
  .agx-seed-science-cards { grid-template-columns: 1fr; }
  .agx-seed-product-card,
  .agx-seed-product-card--featured { grid-template-columns: 1fr; min-height: 0; }
  .agx-seed-product-card__media { min-height: 280px; }
  .agx-seed-product-card__media img { max-height: 300px; }
}
