/**
 * 99SEEDS Seed Shop and compact Sale landing adjustments.
 * The catalogue styles are strictly scoped to page 6.
 */

.page-id-6 {
  --seeds-shop-petrol: #003d36;
  --seeds-shop-petrol-deep: #002d29;
  --seeds-shop-wine: #650024;
  --seeds-shop-wine-dark: #430016;
  --seeds-shop-cream: #f8f3eb;
  --seeds-shop-paper: #fffaf5;
  --seeds-shop-blush: #f1d9df;
  --seeds-shop-pink: #ee9db2;
  --seeds-shop-gold: #e6b55b;
  --seeds-shop-ink: #211820;
  --seeds-shop-muted: #6f656c;
}

.page-id-6 .site-content > .ast-container,
.page-id-6 .site-content .site-main,
.page-id-6 .site-content #primary,
.page-id-6 .site-content article,
.page-id-6 .site-content .entry-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.page-id-6 .entry-header,
.page-id-6 .post-navigation {
  display: none;
}

.page-id-6 .entry-content {
  overflow: clip;
}

.page-id-6 .entry-content > .wp-block-shortcode {
  margin: 0;
}

.seeds-shop,
.seeds-shop * {
  box-sizing: border-box;
}

.page-id-6 .entry-content > .wp-block-shortcode > .seeds-shop,
.page-id-6 .seeds-shop {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.seeds-shop button,
.seeds-shop input,
.seeds-shop select {
  font: inherit;
}

.seeds-shop button {
  cursor: pointer;
}

.seeds-shop-kicker {
  display: flex;
  margin: 0 0 20px;
  align-items: center;
  gap: 12px;
  color: var(--seeds-shop-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.seeds-shop-kicker > span {
  width: 40px;
  height: 1px;
  flex: 0 0 40px;
  background: currentColor;
}

.seeds-shop-kicker--dark {
  margin-bottom: 16px;
  color: var(--seeds-shop-wine);
}

/* Hero */
.seeds-shop-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  color: var(--seeds-shop-cream);
  background:
    radial-gradient(circle at 13% 108%, rgba(101, 0, 36, 0.78), transparent 33rem),
    radial-gradient(circle at 77% 12%, rgba(230, 181, 91, 0.13), transparent 24rem),
    linear-gradient(118deg, #002925 0%, var(--seeds-shop-petrol) 64%, #00493e 100%);
}

.seeds-shop-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  opacity: 0.36;
  pointer-events: none;
}

.seeds-shop-hero::after {
  position: absolute;
  bottom: -290px;
  left: 42%;
  z-index: -1;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(248, 243, 235, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 74px rgba(248, 243, 235, 0.025), 0 0 0 148px rgba(248, 243, 235, 0.018);
  content: "";
  pointer-events: none;
}

.seeds-shop-hero__inner {
  display: grid;
  width: min(1320px, calc(100% - 48px));
  min-height: 500px;
  margin: 0 auto;
  padding: 38px 0;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  gap: clamp(38px, 5vw, 76px);
  align-items: center;
}

.seeds-shop-hero__copy {
  position: relative;
  z-index: 3;
  max-width: 620px;
  animation: seedsShopCopyIn 700ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.seeds-shop-hero h1 {
  max-width: 660px;
  margin: 0;
  color: var(--seeds-shop-cream);
  font-size: clamp(54px, 5.3vw, 78px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.seeds-shop-hero h1 em {
  display: block;
  color: var(--seeds-shop-pink);
  font-style: normal;
}

.seeds-shop-hero h1 > span {
  display: block;
  white-space: nowrap;
}

.seeds-shop-hero__lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(248, 243, 235, 0.75);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.58;
}

.seeds-shop-hero__actions {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
}

.seeds-shop-button,
.seeds-shop-hero__shortcut {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 0;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none !important;
}

.seeds-shop-button--primary {
  padding: 0 23px;
  border: 1px solid var(--seeds-shop-wine);
  border-radius: 4px;
  background: var(--seeds-shop-wine);
  box-shadow: 0 16px 32px rgba(30, 0, 10, 0.2);
  color: #fff !important;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.seeds-shop-button--primary:hover,
.seeds-shop-button--primary:focus-visible {
  border-color: var(--seeds-shop-wine-dark);
  background: var(--seeds-shop-wine-dark);
  color: #fff !important;
  transform: translateY(-2px);
}

.seeds-shop-hero__shortcut {
  min-height: 42px;
  padding: 0 1px;
  border-bottom: 1px solid rgba(248, 243, 235, 0.42);
  background: transparent;
  color: var(--seeds-shop-cream);
  transition: border-color 180ms ease, color 180ms ease;
}

.seeds-shop-hero__shortcut:hover,
.seeds-shop-hero__shortcut:focus-visible {
  border-color: var(--seeds-shop-gold);
  color: var(--seeds-shop-gold);
}

.seeds-shop-hero__facts {
  display: flex;
  margin-top: 32px;
  gap: 0;
  color: rgba(248, 243, 235, 0.58);
  font-size: 11px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.seeds-shop-hero__facts span {
  padding: 0 18px;
}

.seeds-shop-hero__facts span:first-child {
  padding-left: 0;
}

.seeds-shop-hero__facts span + span {
  border-left: 1px solid rgba(248, 243, 235, 0.19);
}

.seeds-shop-hero__facts strong {
  margin-right: 3px;
  color: var(--seeds-shop-cream);
  font-size: 15px;
}

.seeds-shop-hero__visual {
  position: relative;
  min-width: 0;
  min-height: 424px;
  animation: seedsShopVisualIn 850ms 100ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.seeds-shop-hero__image-wrap {
  position: absolute;
  inset: 0 -4vw 0 0;
  overflow: hidden;
  border-radius: 190px 0 0 0;
  background: #051e1c;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 18%);
  box-shadow: 0 34px 70px rgba(0, 18, 15, 0.34);
}

.seeds-shop-hero__image-wrap::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 45, 41, 0.92) 0%, rgba(0, 45, 41, 0.3) 24%, transparent 49%),
    linear-gradient(0deg, rgba(0, 29, 26, 0.46), transparent 38%);
  content: "";
  pointer-events: none;
}

.seeds-shop-hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 51% 49%;
  transform: scale(1.035);
  animation: seedsShopImageDrift 9s ease-in-out infinite alternate;
}

.seeds-shop-hero__lottie {
  position: absolute;
  z-index: 4;
  bottom: 18px;
  left: -18px;
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(248, 243, 235, 0.52);
  border-radius: 50%;
  background: rgba(248, 243, 235, 0.95);
  box-shadow: 0 18px 44px rgba(0, 20, 18, 0.28);
  animation: seedsShopLottieFloat 5.5s ease-in-out infinite;
}

.seeds-shop-hero__lottie::before {
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(101, 0, 36, 0.24);
  border-radius: inherit;
  content: "";
}

.seeds-shop-hero__lottie-label {
  position: absolute;
  top: -24px;
  left: 50%;
  width: max-content;
  padding: 5px 9px;
  border-radius: 2px;
  background: var(--seeds-shop-wine);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.seeds-shop-hero__lottie dotlottie-player {
  position: relative;
  z-index: 2;
  width: 116px;
  height: 116px;
  display: block;
}

.seeds-shop-hero__lottie-fallback {
  position: absolute;
  z-index: 1;
  color: var(--seeds-shop-wine);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.seeds-shop.is-lottie-ready .seeds-shop-hero__lottie-fallback {
  display: none;
}

.seeds-shop-hero__strain {
  position: absolute;
  right: 8px;
  bottom: 22px;
  z-index: 3;
  padding-left: 14px;
  border-left: 2px solid var(--seeds-shop-gold);
  color: var(--seeds-shop-cream);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
}

.seeds-shop-hero__strain small {
  display: block;
  margin-top: 5px;
  color: rgba(248, 243, 235, 0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Catalogue and controls */
.seeds-shop-catalog {
  position: relative;
  min-height: 700px;
  padding: clamp(64px, 7vw, 96px) max(24px, calc((100vw - 1320px) / 2)) 110px;
  background:
    radial-gradient(circle at 100% 3%, rgba(238, 157, 178, 0.16), transparent 24rem),
    var(--seeds-shop-cream);
  color: var(--seeds-shop-ink);
  scroll-margin-top: 100px;
}

.seeds-shop-catalog::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 390px;
  background-image:
    linear-gradient(rgba(101, 0, 36, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 0, 36, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  opacity: 0.42;
  pointer-events: none;
}

.seeds-shop-catalog__intro,
.seeds-shop-toolbar,
.seeds-shop-active,
.seeds-shop-layout {
  position: relative;
  z-index: 1;
  width: min(1320px, 100%);
  margin-inline: auto;
}

.seeds-shop-catalog__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 48px;
  align-items: end;
}

.seeds-shop-catalog__intro h1 {
  max-width: 780px;
  margin: 0;
  color: var(--seeds-shop-ink);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.seeds-shop-catalog__aside {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 124px;
  gap: 26px;
  align-items: center;
}

.seeds-shop-catalog__aside > p {
  max-width: 290px;
  margin: 0;
  color: var(--seeds-shop-muted);
  font-size: 15px;
  line-height: 1.65;
}

.seeds-shop-catalog__guide {
  position: relative;
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(101, 0, 36, 0.22);
  border-radius: 50%;
  background: rgba(255, 250, 245, 0.96);
  box-shadow:
    0 0 0 12px rgba(230, 160, 176, 0.09),
    0 18px 42px rgba(0, 45, 41, 0.16);
  animation: seedsShopLottieFloat 5.5s ease-in-out infinite;
}

.seeds-shop-catalog__guide::before {
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(101, 0, 36, 0.25);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.seeds-shop-catalog__guide-label {
  position: absolute;
  top: -12px;
  left: 50%;
  z-index: 3;
  width: max-content;
  padding: 5px 9px;
  border-radius: 2px;
  background: var(--seeds-shop-wine);
  color: #fff;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.seeds-shop-catalog__guide dotlottie-player {
  position: relative;
  z-index: 2;
  width: 94px;
  height: 94px;
  display: block;
}

.seeds-shop-catalog__guide-fallback {
  position: absolute;
  z-index: 1;
  color: var(--seeds-shop-wine);
  font-size: 31px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.seeds-shop.is-lottie-ready .seeds-shop-catalog__guide-fallback {
  display: none;
}

.seeds-shop-toolbar {
  display: grid;
  margin-top: 46px;
  padding: 14px;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 14px;
  border: 1px solid rgba(33, 24, 32, 0.1);
  background: rgba(255, 250, 245, 0.72);
}

.seeds-shop-search {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
}

.seeds-shop-search svg {
  position: absolute;
  left: 17px;
  z-index: 1;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--seeds-shop-petrol);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.seeds-shop-search input {
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 0 18px 0 49px;
  border: 1px solid rgba(33, 24, 32, 0.18);
  border-radius: 3px;
  outline: 0;
  background: #fff;
  color: var(--seeds-shop-ink);
  font-size: 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.seeds-shop-search input::placeholder {
  color: #8c8288;
}

.seeds-shop-search input:focus {
  border-color: var(--seeds-shop-petrol);
  box-shadow: 0 0 0 3px rgba(0, 61, 54, 0.09);
}

.seeds-shop-sort {
  display: grid;
  min-width: 230px;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-left: 1px solid rgba(33, 24, 32, 0.11);
}

.seeds-shop-sort > span {
  padding-left: 16px;
  color: var(--seeds-shop-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.seeds-shop-sort select {
  height: 50px;
  margin: 0;
  padding: 0 36px 0 12px;
  border: 0;
  outline: 0;
  background-color: transparent;
  color: var(--seeds-shop-ink);
  font-size: 14px;
  font-weight: 700;
}

.seeds-shop-filter-toggle {
  display: none;
}

.seeds-shop-active {
  display: flex;
  min-height: 64px;
  padding: 15px 0;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid rgba(33, 24, 32, 0.12);
}

.seeds-shop-active > p {
  min-width: 88px;
  margin: 0 8px 0 0;
  color: var(--seeds-shop-muted);
  font-size: 13px;
}

.seeds-shop-active > p strong {
  color: var(--seeds-shop-petrol);
  font-size: 16px;
}

.seeds-shop-active__chips {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 7px;
}

.seeds-shop-chip {
  min-height: 30px;
  display: inline-flex;
  padding: 0 8px 0 10px;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(101, 0, 36, 0.16);
  border-radius: 2px;
  background: rgba(241, 217, 223, 0.52);
  color: var(--seeds-shop-wine);
  font-size: 12px;
  font-weight: 700;
}

.seeds-shop-chip b {
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.seeds-shop-reset {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(33, 24, 32, 0.18);
  border-radius: 3px;
  background: transparent;
  color: var(--seeds-shop-ink);
  font-size: 12px;
  font-weight: 800;
}

.seeds-shop-reset--inline {
  min-height: 32px;
  margin-left: auto;
  padding-inline: 10px;
  border: 0;
  border-bottom: 1px solid rgba(33, 24, 32, 0.28);
  border-radius: 0;
}

.seeds-shop-layout {
  display: grid;
  margin-top: 34px;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(30px, 3.6vw, 52px);
  align-items: start;
}

/* Desktop filter rail */
.seeds-shop-filter {
  position: sticky;
  top: 112px;
  border-top: 4px solid var(--seeds-shop-petrol);
}

.seeds-shop-filter__header {
  display: flex;
  padding: 18px 0 17px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(33, 24, 32, 0.16);
}

.seeds-shop-filter__header > div {
  display: grid;
  gap: 2px;
}

.seeds-shop-filter__header span {
  color: var(--seeds-shop-wine);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seeds-shop-filter__header strong {
  color: var(--seeds-shop-ink);
  font-size: 22px;
  letter-spacing: -0.02em;
}

.seeds-shop-filter-close {
  display: none;
}

.seeds-shop-filter-group {
  margin: 0;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid rgba(33, 24, 32, 0.12);
}

.seeds-shop-filter-group legend {
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  color: var(--seeds-shop-petrol);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seeds-shop-filter-option {
  position: relative;
  display: grid;
  min-height: 36px;
  margin: 0;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  color: var(--seeds-shop-ink);
  cursor: pointer;
  font-size: 13px;
}

.seeds-shop-filter-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.seeds-shop-filter-option__check {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(33, 24, 32, 0.32);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.5);
  transition: border-color 150ms ease, background-color 150ms ease;
}

.seeds-shop-filter-option__check::after {
  width: 7px;
  height: 4px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  opacity: 0;
  transform: translateY(-1px) rotate(-45deg) scale(0.6);
  transition: opacity 150ms ease, transform 150ms ease;
}

.seeds-shop-filter-option input:checked + .seeds-shop-filter-option__check {
  border-color: var(--seeds-shop-wine);
  background: var(--seeds-shop-wine);
}

.seeds-shop-filter-option input:checked + .seeds-shop-filter-option__check::after {
  opacity: 1;
  transform: translateY(-1px) rotate(-45deg) scale(1);
}

.seeds-shop-filter-option input:focus-visible + .seeds-shop-filter-option__check {
  outline: 3px solid rgba(0, 61, 54, 0.14);
  outline-offset: 2px;
}

.seeds-shop-filter-option input:disabled ~ * {
  opacity: 0.38;
  cursor: not-allowed;
}

.seeds-shop-filter-option small {
  min-width: 19px;
  color: #90868c;
  font-size: 10px;
  text-align: right;
}

.seeds-shop-filter__footer {
  padding-top: 18px;
}

.seeds-shop-filter__footer .seeds-shop-reset {
  width: 100%;
}

.seeds-shop-filter-apply {
  display: none;
}

.seeds-shop-filter-backdrop {
  display: none;
}

/* WooCommerce product grid */
.seeds-shop-results {
  min-width: 0;
}

.page-id-6 .seeds-shop-products .woocommerce {
  width: 100%;
}

.page-id-6 .seeds-shop-products ul.products {
  display: grid !important;
  width: 100%;
  margin: 0 !important;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 22px;
}

.page-id-6 .seeds-shop-products ul.products::before,
.page-id-6 .seeds-shop-products ul.products::after {
  display: none !important;
}

.page-id-6 .seeds-shop-products ul.products li.product {
  width: 100% !important;
  min-width: 0;
  margin: 0 !important;
}

.page-id-6 .seeds-shop-products ul.products li.product[hidden] {
  display: none !important;
}

.seeds-shop-empty {
  padding: 80px 24px;
  border-top: 1px solid rgba(33, 24, 32, 0.14);
  border-bottom: 1px solid rgba(33, 24, 32, 0.14);
  text-align: center;
}

.seeds-shop-empty > span {
  display: block;
  color: var(--seeds-shop-blush);
  font-size: 92px;
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.seeds-shop-empty h3 {
  margin: 18px 0 8px;
  color: var(--seeds-shop-ink);
  font-size: 28px;
}

.seeds-shop-empty p {
  margin: 0 0 22px;
  color: var(--seeds-shop-muted);
}

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

@keyframes seedsShopVisualIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes seedsShopImageDrift {
  from { transform: scale(1.035) translate3d(0, 0, 0); }
  to { transform: scale(1.065) translate3d(-0.6%, -0.4%, 0); }
}

@keyframes seedsShopLottieFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-7px) rotate(1deg); }
}

@media (max-width: 1120px) {
  .seeds-shop-hero__inner {
    grid-template-columns: minmax(0, 0.96fr) minmax(430px, 1.04fr);
    gap: 30px;
  }

  .seeds-shop-hero h1 {
    font-size: clamp(50px, 5.6vw, 68px);
  }

  .seeds-shop-hero__lottie {
    left: 0;
    width: 128px;
    height: 128px;
  }

  .seeds-shop-hero__lottie dotlottie-player {
    width: 100px;
    height: 100px;
  }

  .seeds-shop-layout {
    grid-template-columns: 238px minmax(0, 1fr);
    gap: 28px;
  }

  .page-id-6 .seeds-shop-products ul.products {
    gap-inline: 17px;
  }
}

@media (max-width: 921px) {
  .seeds-shop-hero,
  .seeds-shop-hero__inner {
    min-height: 470px;
  }

  .seeds-shop-hero__inner {
    width: min(100% - 38px, 940px);
    padding-block: 34px;
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  }

  .seeds-shop-hero__facts span {
    padding-inline: 11px;
  }

  .seeds-shop-catalog {
    padding-inline: 20px;
  }

  .seeds-shop-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
  }

  .page-id-6 .seeds-shop-products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile filter drawer */
@media (max-width: 767px) {
  body.seeds-filter-open {
    overflow: hidden;
  }

  .seeds-shop-hero,
  .seeds-shop-hero__inner {
    min-height: auto;
  }

  .seeds-shop-hero__inner {
    width: 100%;
    padding: 48px 0 0;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .seeds-shop-hero__copy {
    width: min(100% - 34px, 620px);
    margin-inline: auto;
  }

  .seeds-shop-kicker {
    margin-bottom: 16px;
  }

  .seeds-shop-hero h1 {
    font-size: clamp(46px, 13.2vw, 62px);
  }

  .seeds-shop-hero h1 > span {
    white-space: normal;
  }

  .seeds-shop-hero__lead {
    margin-top: 20px;
    font-size: 16px;
  }

  .seeds-shop-hero__actions {
    margin-top: 24px;
    align-items: stretch;
    flex-direction: column;
  }

  .seeds-shop-button,
  .seeds-shop-hero__shortcut {
    width: 100%;
  }

  .seeds-shop-hero__shortcut {
    border: 1px solid rgba(248, 243, 235, 0.24);
    border-radius: 4px;
  }

  .seeds-shop-hero__facts {
    margin-top: 26px;
    justify-content: space-between;
  }

  .seeds-shop-hero__facts span {
    padding-inline: 8px;
    font-size: 8px;
  }

  .seeds-shop-hero__facts strong {
    display: block;
    margin: 0 0 2px;
    font-size: 14px;
  }

  .seeds-shop-hero__visual {
    width: 100%;
    min-height: 335px;
  }

  .seeds-shop-hero__image-wrap {
    inset: 0;
    border-radius: 100px 0 0 0;
    clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%, 0 14%);
  }

  .seeds-shop-hero__image-wrap::after {
    background: linear-gradient(0deg, rgba(0, 38, 34, 0.68), transparent 50%);
  }

  .seeds-shop-hero__image {
    object-position: 50% 45%;
  }

  .seeds-shop-hero__lottie {
    bottom: 19px;
    left: 19px;
    width: 104px;
    height: 104px;
  }

  .seeds-shop-hero__lottie dotlottie-player {
    width: 82px;
    height: 82px;
  }

  .seeds-shop-hero__lottie-label {
    top: -20px;
    font-size: 7px;
  }

  .seeds-shop-hero__strain {
    right: 18px;
    bottom: 25px;
  }

  .seeds-shop-catalog {
    padding: 62px 17px 82px;
    scroll-margin-top: 72px;
  }

  .seeds-shop-catalog::before {
    width: 70%;
    height: 300px;
  }

  .seeds-shop-catalog__intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .seeds-shop-catalog__intro h1 {
    font-size: clamp(39px, 11.2vw, 52px);
  }

  .seeds-shop-catalog__aside {
    grid-template-columns: minmax(0, 1fr) 88px;
    gap: 15px;
  }

  .seeds-shop-catalog__aside > p {
    font-size: 14px;
  }

  .seeds-shop-catalog__guide {
    width: 88px;
    height: 88px;
    box-shadow:
      0 0 0 8px rgba(230, 160, 176, 0.09),
      0 14px 30px rgba(0, 45, 41, 0.14);
  }

  .seeds-shop-catalog__guide::before {
    inset: 6px;
  }

  .seeds-shop-catalog__guide dotlottie-player {
    width: 68px;
    height: 68px;
  }

  .seeds-shop-catalog__guide-label {
    top: -9px;
    padding: 4px 7px;
    font-size: 6px;
  }

  .seeds-shop-catalog__guide-fallback {
    font-size: 24px;
  }

  .seeds-shop-toolbar {
    margin-top: 34px;
    padding: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px;
  }

  .seeds-shop-search {
    grid-column: 1 / -1;
  }

  .seeds-shop-search input {
    height: 48px;
  }

  .seeds-shop-filter-toggle {
    min-height: 46px;
    display: inline-flex;
    padding: 0 14px;
    gap: 8px;
    align-items: center;
    border: 1px solid var(--seeds-shop-petrol);
    border-radius: 3px;
    background: var(--seeds-shop-petrol);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
  }

  .seeds-shop-filter-toggle svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
  }

  .seeds-shop-filter-toggle__count {
    min-width: 20px;
    height: 20px;
    display: grid;
    padding: 0 5px;
    place-items: center;
    border-radius: 50%;
    background: var(--seeds-shop-pink);
    color: var(--seeds-shop-wine-dark);
    font-size: 10px;
  }

  .seeds-shop-filter-toggle__count[hidden] {
    display: none;
  }

  .seeds-shop-sort {
    min-width: 0;
    border: 1px solid rgba(33, 24, 32, 0.18);
    border-radius: 3px;
  }

  .seeds-shop-sort > span {
    display: none;
  }

  .seeds-shop-sort select {
    width: 100%;
    height: 44px;
    padding-left: 11px;
    font-size: 12px;
  }

  .seeds-shop-active {
    min-height: 54px;
    overflow: hidden;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .seeds-shop-active > p {
    min-width: 76px;
    margin-top: 5px;
  }

  .seeds-shop-active__chips {
    min-width: calc(100% - 94px);
  }

  .seeds-shop-reset--inline {
    margin-left: 84px;
  }

  .seeds-shop-layout {
    display: block;
    margin-top: 26px;
  }

  .seeds-shop-filter-backdrop {
    position: fixed;
    inset: 0;
    z-index: 99990;
    display: block;
    background: rgba(16, 10, 13, 0.58);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .seeds-shop-filter {
    position: fixed;
    inset: auto 10px 10px;
    z-index: 99991;
    max-height: min(88vh, 760px);
    display: flex;
    padding: 0 18px;
    border: 0;
    border-radius: 18px 18px 6px 6px;
    background: var(--seeds-shop-paper);
    box-shadow: 0 24px 80px rgba(20, 7, 13, 0.32);
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    visibility: hidden;
    transition: opacity 220ms ease, transform 320ms cubic-bezier(0.2, 0.75, 0.2, 1), visibility 0s linear 320ms;
  }

  .seeds-shop.is-filter-open .seeds-shop-filter-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .seeds-shop.is-filter-open .seeds-shop-filter {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .seeds-shop-filter__header {
    flex: 0 0 auto;
    padding: 17px 0 14px;
  }

  .seeds-shop-filter-close {
    width: 42px;
    height: 42px;
    display: grid;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(33, 24, 32, 0.16);
    border-radius: 50%;
    background: transparent;
    color: var(--seeds-shop-ink);
    font-family: Arial, sans-serif;
    font-size: 25px;
    font-weight: 300;
    line-height: 1;
  }

  body.page-id-6 .seeds-shop button.seeds-shop-filter-close {
    border-color: rgba(33, 24, 32, 0.16) !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--seeds-shop-ink) !important;
  }

  .seeds-shop-filter__groups {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 4px;
  }

  .seeds-shop-filter-group {
    padding-block: 18px;
  }

  .seeds-shop-filter-option {
    min-height: 42px;
    font-size: 14px;
  }

  .seeds-shop-filter-option__check {
    width: 20px;
    height: 20px;
  }

  .seeds-shop-filter__footer {
    display: grid;
    padding: 14px 0 max(14px, env(safe-area-inset-bottom));
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 9px;
    border-top: 1px solid rgba(33, 24, 32, 0.13);
    background: var(--seeds-shop-paper);
  }

  .seeds-shop-filter__footer .seeds-shop-reset,
  .seeds-shop-filter-apply {
    min-height: 48px;
  }

  .seeds-shop-filter__footer .seeds-shop-reset {
    padding-inline: 6px;
    font-size: 10px;
  }

  .seeds-shop-filter-apply {
    display: inline-flex;
    padding: 0 13px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid var(--seeds-shop-wine);
    border-radius: 3px;
    background: var(--seeds-shop-wine);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
  }

  .page-id-6 .seeds-shop-products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 11px;
  }
}

@media (max-width: 374px) {
  .seeds-shop-catalog {
    padding-inline: 13px;
  }

  .seeds-shop-catalog__aside {
    grid-template-columns: minmax(0, 1fr) 80px;
    gap: 10px;
  }

  .seeds-shop-catalog__guide {
    width: 80px;
    height: 80px;
  }

  .seeds-shop-catalog__guide dotlottie-player {
    width: 61px;
    height: 61px;
  }

  .seeds-shop-hero__copy {
    width: calc(100% - 28px);
  }

  .seeds-shop-hero h1 {
    font-size: 42px;
  }

  .seeds-shop-hero__facts span {
    padding-inline: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seeds-shop-hero__copy,
  .seeds-shop-hero__visual,
  .seeds-shop-hero__image,
  .seeds-shop-hero__lottie,
  .seeds-shop-catalog__guide {
    animation: none !important;
  }

  .seeds-shop *,
  .seeds-shop *::before,
  .seeds-shop *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* The Sale page keeps its design; only its desktop hero becomes less tall. */
@media (min-width: 901px) {
  .page-id-1013 .seeds-sale-hero__inner {
    min-height: 520px !important;
    padding-top: 48px !important;
    padding-bottom: 34px !important;
  }

  .page-id-1013 .seeds-sale-hero h1 {
    font-size: clamp(48px, 5.35vw, 76px) !important;
  }

  .page-id-1013 .seeds-sale-hero__lead {
    margin-top: 21px !important;
  }

  .page-id-1013 .seeds-sale-hero__actions {
    margin-top: 25px !important;
  }

  .page-id-1013 .seeds-sale-hero__fineprint {
    margin-top: 15px !important;
  }

  .page-id-1013 .seeds-sale-hero__visual {
    min-height: 405px !important;
  }

  .page-id-1013 .seeds-sale-hero__product {
    width: min(80%, 365px) !important;
  }

  .page-id-1013 .seeds-sale-hero__halo {
    width: min(32vw, 390px) !important;
  }

  .page-id-1013 .seeds-sale-hero__caption {
    bottom: 17px !important;
  }

  .page-id-1013 .seeds-sale-hero__assurance {
    padding-top: 18px !important;
    padding-bottom: 19px !important;
  }
}
