:root {
  --green-900: #0b2418;
  --green-800: #145532;
  --green-700: #1d7a45;
  --green-600: #23914d;
  --green-500: #37b55e;
  --mint: #dff8e7;
  --cream: #f8fff7;
  --ink: #112018;
  --slate: #46584f;
  --accent: #7c3aed;
  --accent-2: #a855f7;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(15, 46, 31, 0.14);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(124, 58, 237, 0.07),
      transparent 22%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(55, 181, 94, 0.16),
      transparent 28%
    ),
    linear-gradient(180deg, #f1fbf2 0%, #dff2e2 100%);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(236, 250, 239, 0.82);
  border-bottom: 1px solid rgba(21, 69, 43, 0.08);
}

.header-shell {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo img {
  height: 54px;
  width: auto;
  display: block;
}

.brand-text strong {
  display: block;
  font-size: 1.02rem;
}

.brand-text small {
  color: var(--slate);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  position: relative;
  font-weight: 600;
  color: var(--green-900);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  background: linear-gradient(90deg, var(--green-500), var(--accent));
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--green-900);
  display: block;
}

.hero {
  padding: 48px 0 34px;
}

.hero-shell {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 107, 63, 0.12);
  box-shadow: var(--shadow);
  color: var(--green-800);
  font-weight: 700;
  font-size: 0.92rem;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-500), var(--accent));
}

.hero h1 {
  max-width: 980px;
  margin: 24px auto 18px;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: var(--green-800);
}

.hero h1 .kicker {
  display: block;
  font-size: 0.52em;
  line-height: 1.05;
  color: var(--green-600);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.hero h1 .main-line {
  display: block;
  color: var(--green-800);
  font-weight: 700;
}

.hero h1 .accent {
  display: block;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--green-500), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.hero-inline-image {
  position: relative;
  max-width: 1000px;
  margin: 24px auto 22px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(21, 69, 43, 0.08);
  background: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-inline-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.05),
    rgba(0, 0, 0, 0.08)
  );
  pointer-events: none;
}

.hero-inline-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(15, 46, 31, 0.16);
}

.hero-inline-image img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.hero-inline-image:hover img {
  transform: scale(1.03);
}

.hero p.lead {
  max-width: 860px;
  margin: 0 auto 24px;
  font-size: 1.12rem;
  line-height: 1.82;
  color: var(--slate);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 0;
}

.btn {
  padding: 14px 20px;
  border-radius: 16px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-600), var(--accent));
  box-shadow: 0 18px 36px rgba(47, 141, 82, 0.22);
}

.btn-secondary {
  color: var(--green-900);
  border-color: rgba(21, 69, 43, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(17, 32, 24, 0.06);
}

.section {
  padding: 34px 0 74px;
}

.section-title {
  display: block;
  margin-bottom: 24px;
}

.section-title h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--green-900);
}

.section-title p {
  margin: 0;
  max-width: 760px;
  color: var(--slate);
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  padding: 26px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(21, 69, 43, 0.08);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition:
    transform 0.18s ease,
    box-shadow 0.25s ease;
}

.feature-card:hover {
  box-shadow: 0 25px 50px rgba(17, 32, 24, 0.14);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -35% -35% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.16),
    transparent 65%
  );
  pointer-events: none;
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green-500), var(--accent));
  color: #fff;
  box-shadow: 0 16px 30px rgba(124, 58, 237, 0.18);
  margin-bottom: 18px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  color: var(--green-900);
}

.feature-card p {
  margin: 0;
  color: var(--slate);
  line-height: 1.8;
}

.image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 8px;
}

.image-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, #edf8ef 58%, #e3f2e7 100%);
  border: 1px solid rgba(21, 69, 43, 0.08);
  box-shadow: var(--shadow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.image-card figure {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.image-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  margin: 0;
  transition: transform 0.4s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-card .image-caption-box {
  margin: 0;
  padding: 24px 26px 26px;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(20, 85, 50, 0.1);
  border-radius: 0;
  box-shadow: none;
}

.image-card .image-caption-box h3 {
  margin: 0 0 14px;
  padding: 0;
  font-size: 1.22rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--green-900);
  font-family: inherit;
}

.image-card .image-caption-box p {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--slate);
  font-family: inherit;
}

.community-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-top: 22px;
}

.community-card,
.cta-card {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(21, 69, 43, 0.08);
  box-shadow: var(--shadow);
}

.community-card {
  padding: 28px;
}

.community-card h3,
.cta-card h3 {
  margin: 0 0 12px;
  color: var(--green-900);
}

.community-card p,
.cta-card p {
  margin: 0;
  color: var(--slate);
  line-height: 1.8;
}

.cta-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(124, 58, 237, 0.14),
      transparent 24%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92),
      rgba(223, 248, 231, 0.95)
    );
}

.site-footer {
  margin-top: 20px;
  background: linear-gradient(180deg, #113020, #0c2518);
  color: #f0fff4;
  padding: 46px 0 26px;
}

.footer-grid {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.9fr;
  gap: 22px;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 14px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(240, 255, 244, 0.82);
  line-height: 1.8;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-brand img {
  height: 70px;
  width: auto;
  margin-bottom: 12px;
}

.footer-bottom {
  width: min(calc(100% - 32px), var(--max));
  margin: 28px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(240, 255, 244, 0.7);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1080px) {
  .feature-grid,
  .image-gallery-grid,
  .community-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(21, 69, 43, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .feature-grid,
  .image-gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-inline-image img {
    height: 280px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 28px;
  }

  .header-shell {
    min-height: 74px;
  }

  .brand-text small {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
  }

  .hero-inline-image img {
    height: 210px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .image-card .image-caption-box {
    padding: 18px 18px 20px;
  }

  .image-card .image-caption-box h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
  }

  .image-card .image-caption-box p {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .feature-card,
  .community-card,
  .cta-card {
    padding: 22px;
  }
}
/*shop-seedlings.php*/
.shop-hero {
  padding: 40px 0 30px;
}

.shop-hero-shell {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 24px;
  align-items: center;
}

.shop-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin: 20px 0 14px;
  color: var(--green-900);
}

.shop-hero h1 .accent {
  background: linear-gradient(135deg, var(--green-500), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.shop-hero p.lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--slate);
  margin: 0 0 24px;
  max-width: 670px;
}

.hero-note {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 69, 43, 0.08);
  box-shadow: var(--shadow);
  color: var(--slate);
  line-height: 1.75;
}

.hero-visual {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(21, 69, 43, 0.08);
  background: #ffffff;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-visual::before {
  content: none;
}

.hero-visual .overlay {
  position: static;
  inset: auto;
  padding: 24px 24px 26px;
  background: linear-gradient(160deg, #ffffff 0%, #edf8ef 58%, #e3f2e7 100%);
  color: var(--ink);
}

.hero-visual h2 {
  margin: 0 0 10px;
  font-size: 1.65rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--green-900);
}

.hero-visual p {
  margin: 0;
  line-height: 1.75;
  color: var(--slate);
  max-width: 100%;
}
.category-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.category-pill {
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #eef9f1 0%, #dff3e5 100%);
  border: 1px solid rgba(29, 122, 69, 0.16);
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 800;
  color: var(--green-900);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, #edf8ef 58%, #e3f2e7 100%);
  border: 1px solid rgba(21, 69, 43, 0.08);
  box-shadow: var(--shadow);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.product-card p {
  margin: 4px 0 0;
  color: var(--slate);
  line-height: 1.6;
  font-size: 0.95rem;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(17, 32, 24, 0.12);
}

.product-card figure {
  margin: 0;
  line-height: 0;
  position: relative;
  background: linear-gradient(
    160deg,
    rgba(20, 85, 50, 0.92),
    rgba(124, 58, 237, 0.7)
  );
  min-height: 255px;
}

.product-card figure::before {
  content: "IMAGE PLACEHOLDER";
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  z-index: 2;
}

.product-card img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  display: block;
}

.product-card--gallery .product-gallery {
  margin: 0;
  min-height: auto;
  background: #fff;
}

.product-card--gallery .product-gallery::before {
  content: none;
}

.product-card--gallery .product-gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f4f9f5;
  border-bottom: 1px solid rgba(21, 69, 43, 0.08);
  overflow: hidden;
}

.product-card--gallery .product-gallery-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-card--gallery .product-gallery-thumbs-wrap {
  padding: 12px 14px 14px;
  background: rgba(255, 255, 255, 0.78);
}

.product-card--gallery .product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 10px;
}

.product-card--gallery .product-thumb {
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(17, 32, 24, 0.08);
}

.product-card--gallery .product-thumb.is-active {
  border-color: var(--accent);
}

.product-card--gallery .product-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  display: block;
}

.product-card--gallery .product-thumb.is-hidden-thumb {
  display: none;
}

.product-card--gallery
  .product-gallery-thumbs.is-expanded
  .product-thumb.is-hidden-thumb {
  display: block;
}

.product-card--gallery .thumb-toggle {
  margin-top: 12px;
  border: none;
  background: transparent;
  color: var(--accent);
  font-weight: 800;
  cursor: pointer;
  padding: 0;
  font-size: 0.95rem;
}

.product-card--gallery .thumb-toggle.is-hidden {
  display: none;
}

.product-card .body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.meta h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--green-900);
}

.price {
  white-space: nowrap;
  font-weight: 900;
  color: var(--green-900);
  font-size: 1.05rem;
}

.sku {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.08);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.product-card p {
  margin: 0;
  color: var(--slate);
  line-height: 1.8;
  font-size: 0.97rem;
}

.seo-caption {
  padding-top: 14px;
  border-top: 1px solid rgba(20, 85, 50, 0.1);
  color: var(--slate);
  font-size: 0.94rem;
  line-height: 1.8;
}

.stock-note {
  color: #8a2f2f;
  font-size: 0.92rem;
  font-weight: 700;
}

.paypal-slot {
  margin-top: auto;
  padding-top: 6px;
}

.paypal-slot .placeholder-button {
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 15px 16px;
  font-weight: 900;
  font-size: 1.05rem;
  background: linear-gradient(135deg, #f7c93d, #ffd84f);
  color: #111;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease;
}

.paypal-slot .placeholder-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.paypal-slot small {
  display: block;
  margin-top: 10px;
  color: var(--slate);
  line-height: 1.65;
}

.product-card--gallery {
  overflow: hidden;
}

.product-card--gallery .product-gallery {
  margin: 0;
  min-height: auto;
  background: linear-gradient(160deg, #ffffff 0%, #edf8ef 58%, #e3f2e7 100%);
}

.product-card--gallery .product-gallery::before {
  content: none;
}

.product-gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #eff6f0;
  border-bottom: 1px solid rgba(20, 85, 50, 0.1);
  overflow: hidden;
}

.product-gallery-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: rgba(17, 32, 24, 0.62);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  z-index: 3;
}

.gallery-nav:hover {
  background: rgba(17, 32, 24, 0.82);
}

.gallery-nav-prev {
  left: 14px;
}

.gallery-nav-next {
  right: 14px;
}

.product-gallery-thumbs-wrap {
  padding: 14px 16px 16px;
  background: rgba(255, 255, 255, 0.72);
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 10px;
}

.product-thumb {
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 0;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  min-width: 72px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 8px 18px rgba(17, 32, 24, 0.08);
}

.product-thumb:hover {
  transform: translateY(-2px);
}

.product-thumb.is-active {
  border-color: var(--accent);
}

.product-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.product-thumb.is-hidden-thumb {
  display: none;
}

.product-gallery-thumbs.is-expanded .product-thumb.is-hidden-thumb {
  display: block;
}

.thumb-toggle {
  margin-top: 12px;
  border: none;
  background: transparent;
  color: var(--accent);
  font-weight: 800;
  cursor: pointer;
  padding: 0;
  font-size: 0.95rem;
}

.thumb-toggle.is-hidden {
  display: none;
}

.product-description {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-description p {
  margin: 0;
  color: var(--slate);
  line-height: 1.3;
  font-size: 0.9rem;
}

.product-description strong {
  color: var(--green-900);
}

@media (max-width: 560px) {
  .gallery-nav {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .product-thumb img {
    aspect-ratio: 1 / 1;
  }
}

.info-band {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.info-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(21, 69, 43, 0.08);
  box-shadow: var(--shadow);
}

.info-card h3 {
  margin: 0 0 12px;
  color: var(--green-900);
  font-size: 1.45rem;
}

.info-card p {
  margin: 0;
  color: var(--slate);
  line-height: 1.8;
}

.code-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f4f9f5;
  border: 1px solid rgba(21, 69, 43, 0.08);
  color: var(--green-900);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9rem;
  line-height: 1.7;
  white-space: pre-wrap;
}

@media (max-width: 1080px) {
  .shop-hero-shell,
  .info-band {
    grid-template-columns: 1fr;
  }

  .category-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .product-grid,
  .category-row {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual p {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .shop-hero {
    padding-top: 28px;
  }

  .shop-hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }

  .hero-visual {
    min-height: 310px;
  }

  .hero-visual .overlay {
    padding: 20px;
  }

  .product-card .body {
    padding: 20px 18px 22px;
  }

  .product-card img {
    height: 220px;
  }

  .product-card--gallery .product-gallery-main-image {
    height: 100%;
  }

  .product-card--gallery .product-thumb img {
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

/*SQUARE RELATED*/
.max-qty-note {
  margin: 10px 0 0;
  color: #c62828;
  font-weight: 800;
  font-size: 0.96rem;
}

.square-slot .square-checkout-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.purchase-row {
  display: flex;
  align-items: end;
  gap: 12px;
  flex-wrap: wrap;
}

.qty-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 92px;
}

.qty-block span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-900);
}

.qty-block input[type="number"] {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(21, 69, 43, 0.16);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.square-slot .placeholder-button {
  min-height: 44px;
}

@media (max-width: 560px) {
  .purchase-row {
    flex-direction: column;
    align-items: stretch;
  }

  .qty-block {
    min-width: 100%;
  }
}
.square-return-notice {
  margin: 0 0 24px;
  padding: 16px 18px;
  border-radius: 18px;
  font-weight: 700;
  line-height: 1.6;
  box-shadow: var(--shadow);
  border: 1px solid rgba(21, 69, 43, 0.08);
}

.square-return-notice--success {
  background: #e9f9ee;
  color: #145532;
  border-color: rgba(20, 85, 50, 0.18);
}

.square-return-notice--cancelled {
  background: #fff4e8;
  color: #8a4b08;
  border-color: rgba(138, 75, 8, 0.18);
}

.square-return-notice--error {
  background: #fdecec;
  color: #9f1d1d;
  border-color: rgba(159, 29, 29, 0.18);
}

.square-inline-error {
  margin: 2px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fdecec;
  border: 1px solid rgba(159, 29, 29, 0.18);
  color: #9f1d1d;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.qty-block input[type="number"]:focus {
  outline: 2px solid rgba(124, 58, 237, 0.22);
  outline-offset: 1px;
  border-color: rgba(124, 58, 237, 0.42);
}

.product-keyline {
  margin: 10px 0 14px;
  color: var(--green-700);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.5;
}

.product-tabs {
  margin: 0 0 14px;
}

.product-tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.product-tab-button {
  border: 1px solid rgba(21, 69, 43, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--green-900);
  border-radius: 999px;
  padding: 9px 14px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.product-tab-button:hover {
  transform: translateY(-1px);
}

.product-tab-button.is-active {
  background: linear-gradient(135deg, var(--green-600), var(--accent));
  color: #fff;
  border-color: transparent;
}

.product-tab-panel {
  display: none;
}

.product-tab-panel.is-active {
  display: block;
}

.product-bullet-list {
  margin: 8px 0 14px 18px;
  padding: 0;
  color: var(--slate);
  line-height: 1.72;
}

.product-bullet-list li + li {
  margin-top: 4px;
}

.product-card--gallery .product-description p {
  margin: 0 0 8px;
}

@media (max-width: 560px) {
  .product-keyline {
    font-size: 0.9rem;
  }

  .product-tab-button {
    width: 100%;
    text-align: center;
  }

  .product-tab-buttons {
    flex-direction: column;
  }
}
/* ===== Product Title Fix (Yellow Squash) ===== */

.meta-inline h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.meta-subline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--slate);
}

.pack-badge {
  background: rgba(35, 145, 77, 0.12);
  color: var(--green-700);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.72rem;
}

.sku-inline {
  opacity: 0.7;
}

.price-inline {
  margin-top: 4px;
  font-weight: 800;
  font-size: 1rem;
  color: var(--green-900);
}
/* Yellow Squash compact two-column tabs */
.product-keyline {
  margin: 8px 0 10px;
  color: var(--green-700);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

.product-tabs {
  margin: 0 0 10px;
}

.product-tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.product-tab-button {
  border: 1px solid rgba(21, 69, 43, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--green-900);
  border-radius: 999px;
  padding: 7px 12px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
}

.product-tab-button.is-active {
  background: linear-gradient(135deg, var(--green-600), var(--accent));
  color: #fff;
  border-color: transparent;
}

.product-tab-panel {
  display: none;
}

.product-tab-panel.is-active {
  display: block;
}

.compact-description {
  font-size: 0.92rem;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
}

.product-bullet-list {
  margin: 4px 0 10px 16px;
  padding: 0;
  color: var(--slate);
  line-height: 1.42;
  font-size: 0.9rem;
}

.product-bullet-list li + li {
  margin-top: 2px;
}

@media (max-width: 900px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
/* Yellow Squash header + image sizing */
.meta-inline h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.meta-subline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--slate);
}

.pack-badge {
  background: rgba(35, 145, 77, 0.12);
  color: var(--green-700);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.72rem;
}

.sku-inline {
  opacity: 0.78;
  font-weight: 700;
}

.price-inline {
  margin-top: 4px;
  font-weight: 900;
  color: var(--green-900);
  font-size: 1rem;
}
/* ===== Clean Product Header (Yellow Squash) ===== */

.meta-clean {
  margin-bottom: 8px;
}

.product-title {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.pack-line {
  margin-top: 3px;
}

.pack-badge {
  background: rgba(35, 145, 77, 0.12);
  color: var(--green-700);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.72rem;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 6px;
}

.meta-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sku-inline {
  font-size: 0.78rem;
  opacity: 0.8;
  font-weight: 700;
}

.max-qty-note {
  font-size: 0.75rem;
  line-height: 1.2;
}

.price-inline {
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--green-900);
}
/* Yellow Squash header layout */
.meta-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-title-single-line {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--green-900);
}

.meta-row-inline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.sku-inline-row {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.price-inline-row {
  font-size: 1.02rem;
  font-weight: 900;
  color: var(--green-900);
  white-space: nowrap;
}

.max-qty-note {
  margin: 0;
  color: #c62828;
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.2;
}
/* FORCE clean Yellow Squash header layout */

.meta-stack {
  display: block !important;
}

.product-title-single-line {
  display: block !important;
  width: 100%;
  margin: 0 0 4px 0;
  font-size: 1.12rem;
  line-height: 1.2;
  white-space: nowrap; /* prevents breaking like (4- */
}

.meta-row-inline {
  display: flex !important;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  margin-bottom: 2px;
}

.sku-inline-row {
  font-size: 0.78rem;
  font-weight: 700;
}

.price-inline-row {
  font-size: 1.02rem;
  font-weight: 900;
  white-space: nowrap;
}

.max-qty-note {
  display: block;
  font-size: 0.85rem;
  line-height: 1.2;
}
.product-title-single-line {
  white-space: normal;
}
.retail-price-inline {
  text-decoration: line-through;
  opacity: 0.55;
  margin-right: 8px;
  font-weight: 700;
}

.selling-price-inline {
  font-weight: 900;
}

/* ===== CSV-driven product card updates ===== */
.product-gallery-fallback {
  min-height: 255px;
  display: grid;
  place-items: center;
  color: var(--green-800);
  font-weight: 800;
  font-size: 1rem;
  background: #eff6f0;
}

.meta-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-title-single-line {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.2;
  color: var(--green-900);
}

.pack-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.08);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  vertical-align: middle;
}

.meta-row-inline {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.sku-inline-row {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.price-inline-row {
  white-space: nowrap;
}

.retail-price-inline {
  text-decoration: line-through;
  opacity: 0.55;
  margin-right: 8px;
  font-weight: 700;
  color: var(--slate);
}

.selling-price-inline {
  font-size: 1.02rem;
  font-weight: 900;
  color: var(--green-900);
}

.compact-description p {
  margin: 0;
  line-height: 1.45;
  font-size: 0.92rem;
}

.product-keyline {
  margin: 2px 0 0;
  color: var(--green-700);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.square-slot small {
  display: block;
  margin-top: 6px;
  color: var(--slate);
  line-height: 1.35;
  font-size: 0.8rem;
}

/* ===== Tabs ===== */
.product-tabs {
  margin: 6px 0 2px;
}

.product-tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.product-tab-button {
  border: 1px solid rgba(21, 69, 43, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--green-900);
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
}

.product-tab-button.is-active {
  background: linear-gradient(135deg, var(--green-600), var(--accent));
  color: #fff;
  border-color: transparent;
}

.product-tab-panel {
  display: none;
}

.product-tab-panel.is-active {
  display: block;
}

.growing-snapshot-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.growing-snapshot-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--slate);
  line-height: 1.45;
  font-size: 0.92rem;
}

.growing-snapshot-icon {
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 560px) {
  .product-title-single-line {
    font-size: 1.04rem;
  }

  .meta-row-inline {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .product-tab-buttons {
    flex-direction: column;
  }

  .product-tab-button {
    width: 100%;
    text-align: center;
  }
}
.detail-quick-box {
  background: #f4fbf6;
  border: 1px solid rgba(21, 69, 43, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
  margin: 16px 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-800);
  display: grid;
  gap: 6px;
}

.detail-what-you-get {
  margin-top: 14px;
  font-size: 0.9rem;
}

.detail-what-you-get ul {
  margin: 6px 0 0;
  padding-left: 18px;
}
