/** Shopify CDN: Minification failed

Line 374:0 All "@import" rules must come first
Line 1002:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:groundshield-product (INDEX:18) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
:root {
  --gs-green: #6FBF73;
  --gs-green-dark: #3a7e3e;
  --gs-green-light: #90cc94;
  --gs-green-section: #3a7e3e;
  --gs-accent: #f4a261;
  --gs-accent-dark: #e07b39;
  --gs-text: #1a1a2e;
  --gs-muted: #6b7280;
  --gs-bg: #f9fafb;
  --gs-white: #ffffff;
  --gs-radius: 12px;
  --gs-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.gsp * { box-sizing: border-box; font-family: 'Inter', sans-serif; }
.gsp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 56px;
  align-items: start;
}
@media (max-width: 860px) { .gsp { grid-template-columns: 1fr; gap: 24px; padding: 20px 16px 40px; } }
@media (max-width: 768px) { .gsp { gap: 20px; padding: 16px 12px 32px; } }

/* ── Gallery ── */
.gsp__gallery { position: sticky; top: 24px; }
.gsp__gallery-main {
  position: relative;
  border-radius: var(--gs-radius);
  overflow: hidden;
  background: #f5f6f7;
  box-shadow: var(--gs-shadow);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gsp__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 12px;
  transition: transform 0.4s ease, opacity 0.15s ease;
}
.gsp__gallery-main:hover .gsp__img { transform: scale(1.03); }
.gsp__img-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gs-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gsp__img-placeholder { width: 100%; height: 100%; }
.gsp__thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.gsp__thumb {
  width: 72px;
  height: 72px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  background: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.gsp__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gsp__thumb.is-active { border-color: var(--gs-green); }
.gsp__thumb:hover { border-color: var(--gs-green-light); }

/* ── Mobile gallery ── */
@media (max-width: 860px) { .gsp__gallery { position: static; } }
@media (max-width: 768px) {
  .gsp__thumbs { gap: 8px; margin-top: 10px; }
  .gsp__thumb { width: 60px; height: 60px; }
}

/* ── Info column ── */
.gsp__info { display: flex; flex-direction: column; gap: 18px; }
.gsp__stars { display: flex; align-items: center; gap: 8px; text-decoration: none; width: fit-content; }
.gsp__stars-icons { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
.gsp__stars-label { font-size: 0.875rem; color: var(--gs-muted); font-weight: 500; }
.gsp__title { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; color: var(--gs-text); line-height: 1.2; margin: 0; }
.gsp__tagline { font-size: 0.9rem; font-weight: 600; color: var(--gs-green); margin: 0; text-transform: uppercase; letter-spacing: 0.06em; }
.gsp__rule { border: none; border-top: 1px solid #e5e7eb; margin: 0; }

/* Bullets */
.gsp__bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.gsp__bullet { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--gs-text); line-height: 1.5; }
.gsp__bullet-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* Sale heading */
.gsp__sale-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gs-text);
  margin: 0;
  text-align: center;
  padding: 10px 16px;
  background: #fef3c7;
  border-radius: 8px;
}

/* ── Pack cards ── */
.gsp__packs { display: flex; flex-direction: column; gap: 12px; }
.gsp__pack {
  position: relative;
  border: 2px solid #e5e7eb;
  border-radius: var(--gs-radius);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  overflow: visible;
  user-select: none;
  -webkit-user-select: none;
}
.gsp__pack:hover { border-color: var(--gs-green-light); }
.gsp__pack.is-active {
  border-color: var(--gs-green);
  background: #f0fdf4;
  box-shadow: 0 0 0 1px var(--gs-green);
}
.gsp__pack-ribbon {
  position: absolute;
  top: -12px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}
.gsp__pack-ribbon--popular { background: var(--gs-green-dark); color: #fff; }
.gsp__pack-ribbon--value   { background: var(--gs-accent-dark); color: #fff; }
.gsp__pack--popular { margin-top: 8px; }
.gsp__pack--value   { margin-top: 8px; }

.gsp__pack-main {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  pointer-events: none;
}
.gsp__pack-thumb {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--gs-bg);
}
.gsp__pack-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gsp__pack-svg { width: 100%; height: 100%; }

.gsp__pack-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.gsp__pack-nameline {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.gsp__pack-name { font-size: 0.95rem; font-weight: 700; color: var(--gs-text); }
.gsp__pack-savebadge {
  font-size: 0.7rem;
  font-weight: 700;
  background: #dcfce7;
  color: var(--gs-green-dark);
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.gsp__pack-ship { font-size: 0.78rem; color: var(--gs-green); font-weight: 600; }

.gsp__pack-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}
.gsp__pack-current { font-size: 1.25rem; font-weight: 800; color: var(--gs-green-dark); }
.gsp__pack-compare { font-size: 0.8rem; color: var(--gs-muted); text-decoration: line-through; }

.gsp__pack-bonusrow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 0 0 calc(var(--gs-radius) - 2px) calc(var(--gs-radius) - 2px);
  pointer-events: none;
}
.gsp__pack.is-active .gsp__pack-bonusrow {
  background: #d1fae5;
  border-top-color: #a7f3d0;
}
.gsp__pack-bonusimg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gsp__pack-bonusimg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gsp__pack-bonusicon { font-size: 1.2rem; }
.gsp__pack-bonustext { flex: 1; font-size: 0.8rem; font-weight: 600; color: var(--gs-text); }
.gsp__pack-bonusbadge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gs-green-dark);
  white-space: nowrap;
}
.gsp__pack-bonusbadge del { color: var(--gs-muted); font-weight: 400; }

/* ATC button */
.gsp__atc {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 28px;
  padding: 22px 24px;
  background: linear-gradient(135deg, var(--gs-green) 0%, var(--gs-green-light) 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,0.12);
  box-shadow:
    0 4px 6px rgba(0,0,0,0.06),
    0 12px 28px rgba(111,191,115,0.42);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.22s ease;
}
.gsp__atc::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.22), transparent);
  transition: left 0.55s ease;
  pointer-events: none;
}
.gsp__atc:hover::before { left: 160%; }
.gsp__atc:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--gs-green-dark) 0%, var(--gs-green) 100%);
  box-shadow:
    0 8px 12px rgba(0,0,0,0.09),
    0 20px 40px rgba(111,191,115,0.52);
}
.gsp__atc:active {
  transform: translateY(-1px);
  transition-duration: 0.06s;
  box-shadow:
    0 4px 8px rgba(0,0,0,0.08),
    0 8px 20px rgba(111,191,115,0.36);
}
.gsp__atc:disabled {
  background: #d1d5db;
  color: #9ca3af;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}
.gsp__atc:disabled::before { display: none; }
@media (max-width: 768px) {
  .gsp__atc { margin-top: 20px; padding: 20px; font-size: 1.05rem; border-radius: 14px; }
}

/* UGC strip */
.gsp__ugc { display: flex; flex-direction: column; gap: 10px; }
.gsp__ugc-heading { font-size: 0.9rem; font-weight: 700; color: var(--gs-text); text-align: center; margin: 0; }
.gsp__ugc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.gsp__ugc-frame { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 4/5; }
.gsp__ugc-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gsp__ugc-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.gsp__ugc-placeholder { width: 100%; height: 100%; }
.gsp__ugc-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 24px 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.gsp__ugc-user  { font-size: 0.7rem; font-weight: 700; color: #fff; }
.gsp__ugc-followers { font-size: 0.65rem; color: rgba(255,255,255,0.8); }

/* Security seals */
.gsp__security { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.gsp__security-text { font-size: 0.8rem; font-weight: 600; color: var(--gs-muted); margin: 0; text-align: center; }
.gsp__seals { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.gsp__seal { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 0.7rem; font-weight: 600; color: var(--gs-text); text-align: center; width: 80px; }
.gsp__seal-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 3px solid #d1d5db;
  background: var(--gs-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.gsp__seal-ring--green { border-color: var(--gs-green); background: #f0fdf4; }

/* Accordion */
.gsp__accordion { display: flex; flex-direction: column; border-top: 1px solid #e5e7eb; }
.gsp__acc { border-bottom: 1px solid #e5e7eb; }
.gsp__acc-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gs-text);
  list-style: none;
}
.gsp__acc-trigger::-webkit-details-marker { display: none; }
.gsp__acc-icon { font-size: 1rem; }
.gsp__acc-trigger span:nth-child(2) { flex: 1; }
.gsp__acc-arrow { font-size: 1.2rem; color: var(--gs-muted); transition: transform 0.2s; }
.gsp__acc[open] .gsp__acc-arrow { transform: rotate(90deg); }
.gsp__acc-body { padding: 0 0 16px; font-size: 0.875rem; color: var(--gs-muted); line-height: 1.65; }
/* END_SECTION:groundshield-product */

/* START_SECTION:groundshield (INDEX:19) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --gs-green: #2d6a4f;
  --gs-green-dark: #1b4332;
  --gs-green-light: #40916c;
  --gs-accent: #f4a261;
  --gs-accent-dark: #e07b39;
  --gs-text: #1a1a2e;
  --gs-muted: #6b7280;
  --gs-bg: #f9fafb;
  --gs-white: #ffffff;
  --gs-radius: 12px;
  --gs-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

#groundshield-product * { box-sizing: border-box; font-family: 'Inter', sans-serif; }

.gs-urgency-bar {
  background: linear-gradient(90deg, var(--gs-green-dark), var(--gs-green));
  color: var(--gs-white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  animation: pulse-bg 3s ease-in-out infinite;
}

@keyframes pulse-bg {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.88; }
}

.gs-product__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

@media (max-width: 768px) {
  .gs-product__inner { grid-template-columns: 1fr; gap: 24px; padding: 24px 16px; }
}

.gs-gallery { position: relative; }

.gs-gallery__main {
  border-radius: var(--gs-radius);
  overflow: hidden;
  box-shadow: var(--gs-shadow);
  background: var(--gs-white);
  aspect-ratio: 1;
}

.gs-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gs-gallery__main:hover .gs-gallery__img { transform: scale(1.03); }

.gs-gallery__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.gs-gallery__thumb {
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color 0.2s;
  width: 72px;
  height: 72px;
}

.gs-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gs-gallery__thumb.is-active { border-color: var(--gs-green); }
.gs-gallery__thumb:hover { border-color: var(--gs-green-light); }

.gs-gallery__placeholder { width: 100%; height: 400px; }

.gs-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gs-accent);
  color: var(--gs-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(244,162,97,0.4);
}

.gs-info { display: flex; flex-direction: column; gap: 16px; }

.gs-info__brand {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gs-green);
  margin: 0;
}

.gs-info__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gs-text);
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 768px) { .gs-info__title { font-size: 1.5rem; } }

.gs-stars { display: flex; align-items: center; gap: 8px; }
.gs-stars__icons { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
.gs-stars__count { font-size: 0.875rem; color: var(--gs-muted); font-weight: 500; }

.gs-price { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.gs-price__current {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gs-green-dark);
}

.gs-price__compare {
  font-size: 1.25rem;
  color: var(--gs-muted);
  text-decoration: line-through;
}

.gs-price__save {
  background: #dcfce7;
  color: var(--gs-green-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.gs-stock {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gs-green);
}

.gs-stock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gs-green);
  animation: blink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.gs-features {
  list-style: none;
  margin: 0;
  padding: 16px;
  background: var(--gs-bg);
  border-radius: var(--gs-radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gs-features__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gs-text);
  line-height: 1.5;
}

.gs-features__icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

.gs-btn-atc {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--gs-green), var(--gs-green-light));
  color: var(--gs-white);
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--gs-radius);
  cursor: pointer;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(45,106,79,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s;
  position: relative;
  overflow: hidden;
}

.gs-btn-atc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.gs-btn-atc:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(45,106,79,0.45);
  background: linear-gradient(135deg, var(--gs-green-dark), var(--gs-green));
}

.gs-btn-atc:hover::after { opacity: 1; }
.gs-btn-atc:active { transform: translateY(0); }
.gs-btn-atc:disabled { background: #9ca3af; box-shadow: none; cursor: not-allowed; transform: none; }

.gs-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 16px;
  background: var(--gs-bg);
  border-radius: var(--gs-radius);
  border: 1px solid #e5e7eb;
}

@media (max-width: 480px) { .gs-trust { grid-template-columns: repeat(2, 1fr); } }

.gs-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gs-text);
  text-align: center;
}

.gs-trust__icon { font-size: 1.5rem; }

.gs-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

.gs-reviews__card {
  background: var(--gs-white);
  border-radius: var(--gs-radius);
  padding: 24px;
  box-shadow: var(--gs-shadow);
  border-left: 4px solid var(--gs-green);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gs-reviews__card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.gs-reviews__stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 10px; }
.gs-reviews__body { font-size: 0.9rem; color: var(--gs-text); line-height: 1.6; margin: 0 0 10px; font-style: italic; }
.gs-reviews__author { font-size: 0.8rem; font-weight: 700; color: var(--gs-green); margin: 0; }

.gs-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1px solid #bbf7d0;
  border-radius: var(--gs-radius);
  padding: 16px 20px;
}

.gs-guarantee__icon { font-size: 2rem; flex-shrink: 0; }

.gs-guarantee strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gs-green-dark);
  margin-bottom: 4px;
}

.gs-guarantee p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--gs-muted);
  line-height: 1.5;
}

.gs-sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--gs-white);
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 12px 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: none;
}

.gs-sticky-atc.is-visible { transform: translateY(0); }

@media (max-width: 768px) { .gs-sticky-atc { display: block; } }

.gs-sticky-atc__inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gs-sticky-atc__info {
  flex: 1;
  min-width: 0;
}

.gs-sticky-atc__name {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gs-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gs-sticky-atc__price {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--gs-green-dark);
}

.gs-sticky-atc__btn {
  width: auto;
  padding: 14px 20px;
  font-size: 0.9rem;
  white-space: nowrap;
}
/* END_SECTION:groundshield */

/* START_SECTION:gs-comparison (INDEX:20) */
:root {
  --gs-green: #6FBF73;
  --gs-green-dark: #3a7e3e;
  --gs-green-light: #90cc94;
  --gs-accent: #f4a261;
  --gs-text: #1a1a2e;
  --gs-muted: #6b7280;
  --gs-bg: #f9fafb;
  --gs-white: #ffffff;
  --gs-radius: 12px;
  --gs-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.gsc * { box-sizing: border-box; font-family: 'Inter', sans-serif; }
.gsc { background: var(--gs-white); padding: 72px 24px; }
.gsc__inner { max-width: 900px; margin: 0 auto; }
.gsc__heading {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--gs-text);
  text-align: center;
  margin: 0 0 40px;
}
.gsc__table-wrap {
  border-radius: var(--gs-radius);
  overflow: hidden;
  box-shadow: var(--gs-shadow);
  border: 1px solid #e5e7eb;
}
.gsc__col-headers { display: grid; grid-template-columns: 1fr 1fr; }
.gsc__col-header {
  padding: 14px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.gsc__col-header--others { background: #f3f4f6; color: var(--gs-muted); }
.gsc__col-header--brand  { background: var(--gs-green-dark); color: #fff; }

.gsc__images { display: grid; grid-template-columns: 1fr 1fr; }
.gsc__img-cell {
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
}
.gsc__img-cell--brand { background: #f0fdf4; }
.gsc__img {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
}
.gsc__img-placeholder {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1 / 1;
  display: block;
}

/* ── Mobile image fix ── */
@media (max-width: 768px) {
  .gsc { padding: 40px 16px; }
  .gsc__img-cell { padding: 14px 10px; }
  .gsc__col-header { padding: 12px 10px; font-size: 0.75rem; }
  .gsc__name-cell { padding: 8px 10px; }
  .gsc__cell { padding: 12px 10px; gap: 7px; font-size: 0.8rem; }
  .gsc__icon { width: 18px; height: 18px; font-size: 0.6rem; flex-shrink: 0; }
}

.gsc__name-row { display: grid; grid-template-columns: 1fr 1fr; }
.gsc__name-cell {
  padding: 10px 24px;
  text-align: center;
  background: #f3f4f6;
  border-top: 1px solid #e5e7eb;
}
.gsc__name-cell--brand { background: #dcfce7; }
.gsc__name-label { font-size: 0.85rem; font-weight: 700; color: var(--gs-text); }

.gsc__row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #e5e7eb; }
.gsc__cell {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.gsc__cell--bad  { background: #fff; color: var(--gs-text); }
.gsc__cell--good { background: #f0fdf4; color: var(--gs-text); }
.gsc__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}
.gsc__icon--bad  { background: #fee2e2; color: #ef4444; }
.gsc__icon--good { background: #dcfce7; color: var(--gs-green); }

.gsc__cta-wrap { text-align: center; margin-top: 36px; }
.gsc__cta {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gs-green);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--gs-radius);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 6px 20px rgba(45,106,79,0.3);
}
.gsc__cta:hover { background: var(--gs-green-dark); transform: translateY(-2px); }
/* END_SECTION:gs-comparison */

/* START_SECTION:gs-features-showcase (INDEX:21) */
:root {
  --gs-green: #2d6a4f;
  --gs-green-dark: #1b4332;
  --gs-green-section: #4a7c3f;
  --gs-white: #ffffff;
  --gs-radius: 12px;
}
.gsf * { box-sizing: border-box; font-family: 'Inter', sans-serif; }
.gsf {
  background: var(--gs-green-section);
  padding: 64px 24px;
}
.gsf__inner { max-width: 1200px; margin: 0 auto; }
.gsf__heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--gs-white);
  text-align: center;
  margin: 0 0 40px;
  line-height: 1.2;
}
.gsf__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .gsf__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .gsf__grid { grid-template-columns: 1fr; } }
.gsf__card {
  background: var(--gs-white);
  border-radius: var(--gs-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.gsf__card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gsf__card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gsf__card:hover .gsf__card-img img { transform: scale(1.04); }
.gsf__card-placeholder { width: 100%; height: 100%; }
.gsf__card-body { padding: 18px; flex: 1; }
.gsf__card-title {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 8px;
  line-height: 1.3;
}
.gsf__card-desc {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}
/* END_SECTION:gs-features-showcase */

/* START_SECTION:gs-guarantee (INDEX:22) */
:root {
  --gs-green: #6FBF73;
  --gs-green-dark: #3a7e3e;
  --gs-text: #1a1a2e;
  --gs-muted: #6b7280;
  --gs-white: #ffffff;
  --gs-radius: 12px;
  --gs-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.gsg * { box-sizing: border-box; font-family: 'Inter', sans-serif; }
.gsg { background: var(--gs-white); padding: 72px 24px; }
.gsg__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 860px) { .gsg__inner { grid-template-columns: 1fr; gap: 36px; } }
.gsg__image { position: relative; }
.gsg__img { width: 100%; border-radius: var(--gs-radius); box-shadow: var(--gs-shadow); display: block; }
.gsg__img-placeholder { width: 100%; height: 400px; border-radius: var(--gs-radius); }
.gsg__seal {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gs-green-dark);
  color: #fff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  gap: 1px;
}
.gsg__seal-icon { font-size: 1.2rem; line-height: 1; }
.gsg__seal-days { font-size: 1.3rem; font-weight: 900; line-height: 1; }
.gsg__seal-label { font-size: 0.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.2; }
.gsg__copy { display: flex; flex-direction: column; gap: 16px; }
.gsg__heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gs-text);
  margin: 0;
  line-height: 1.2;
}
.gsg__body { font-size: 1rem; color: var(--gs-muted); line-height: 1.7; }
.gsg__body p { margin: 0 0 12px; }
.gsg__body p:last-child { margin: 0; }
.gsg__fine { font-size: 0.875rem; font-weight: 700; color: var(--gs-green); margin: 0; }
.gsg__cta {
  display: inline-block;
  align-self: flex-start;
  padding: 16px 36px;
  background: var(--gs-green);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--gs-radius);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 6px 20px rgba(45,106,79,0.3);
}
.gsg__cta:hover { background: var(--gs-green-dark); transform: translateY(-2px); }
/* END_SECTION:gs-guarantee */

/* START_SECTION:gs-hero-headline (INDEX:23) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
:root {
  --gs-green: #6FBF73;
  --gs-green-dark: #3a7e3e;
  --gs-green-light: #90cc94;
  --gs-green-section: #3a7e3e;
  --gs-accent: #f4a261;
  --gs-text: #1a1a2e;
  --gs-muted: #6b7280;
  --gs-bg: #f9fafb;
  --gs-white: #ffffff;
  --gs-radius: 12px;
  --gs-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.gsh * { box-sizing: border-box; font-family: 'Inter', sans-serif; }
.gsh {
  background: var(--gs-white);
  padding: 52px 24px 0;
  text-align: center;
}
.gsh__inner { max-width: 820px; margin: 0 auto; }
.gsh__text {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--gs-text);
  line-height: 1.15;
  margin: 0 0 14px;
}
.gsh__text em,
.gsh__text strong { color: var(--gs-green); font-style: normal; }
.gsh__sub {
  font-size: 1.05rem;
  color: var(--gs-muted);
  margin: 0;
  line-height: 1.65;
  max-width: 640px;
  margin-inline: auto;
}
@media (max-width: 600px) {
  .gsh { padding: 36px 16px 0; }
}
/* END_SECTION:gs-hero-headline */

/* START_SECTION:gs-reviews-strip (INDEX:24) */
:root {
  --gs-green: #6FBF73;
  --gs-green-dark: #3a7e3e;
  --gs-text: #1a1a2e;
  --gs-muted: #6b7280;
  --gs-bg: #f9fafb;
  --gs-white: #ffffff;
  --gs-radius: 12px;
  --gs-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.gsr * { box-sizing: border-box; font-family: 'Inter', sans-serif; }
.gsr { background: var(--gs-bg); padding: 72px 24px 80px; }
.gsr__inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 48px; }
.gsr__heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gs-text);
  text-align: center;
  margin: 0;
}

/* Rating summary */
.gsr__summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  background: var(--gs-white);
  padding: 28px 32px;
  border-radius: var(--gs-radius);
  box-shadow: var(--gs-shadow);
}
@media (max-width: 600px) { .gsr__summary { grid-template-columns: 1fr; gap: 20px; } }
.gsr__summary-score { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.gsr__summary-avg { font-size: 3.5rem; font-weight: 800; color: var(--gs-text); line-height: 1; }
.gsr__summary-stars { font-size: 1.4rem; color: #f59e0b; letter-spacing: 3px; }
.gsr__summary-count { font-size: 0.8rem; color: var(--gs-muted); font-weight: 500; }
.gsr__summary-bars { display: flex; flex-direction: column; gap: 6px; }
.gsr__bar-row { display: flex; align-items: center; gap: 10px; }
.gsr__bar-label { font-size: 0.8rem; font-weight: 600; color: var(--gs-text); width: 28px; flex-shrink: 0; }
.gsr__bar-track { flex: 1; height: 8px; background: #e5e7eb; border-radius: 4px; overflow: hidden; }
.gsr__bar-fill  { height: 100%; background: var(--gs-green); border-radius: 4px; }
.gsr__bar-pct   { font-size: 0.75rem; color: var(--gs-muted); width: 32px; text-align: right; }

/* Review cards grid */
.gsr__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gsr__card { background: var(--gs-white); border-radius: var(--gs-radius); overflow: hidden; box-shadow: var(--gs-shadow); transition: transform 0.2s, box-shadow 0.2s; }
.gsr__card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.gsr__card-photo { aspect-ratio: 4/3; overflow: hidden; }
.gsr__card-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gsr__card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.gsr__card-head { display: flex; align-items: center; gap: 10px; }
.gsr__card-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gs-green-dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gsr__card-author { display: block; font-size: 0.875rem; font-weight: 700; color: var(--gs-text); }
.gsr__card-verified { display: block; font-size: 0.7rem; color: var(--gs-green); font-weight: 600; }
.gsr__card-stars { display: flex; gap: 1px; }
.gsr__card-star { font-size: 0.875rem; color: #f59e0b; }
.gsr__card-star--empty { color: #d1d5db; }
.gsr__card-text { font-size: 0.875rem; color: var(--gs-muted); line-height: 1.6; margin: 0; font-style: italic; }
/* END_SECTION:gs-reviews-strip */

/* START_SECTION:gs-ugc-video-strip (INDEX:25) */
:root {
  --gs-green: #6FBF73;
  --gs-green-dark: #3a7e3e;
  --gs-text: #1a1a2e;
  --gs-muted: #6b7280;
  --gs-white: #ffffff;
  --gs-radius: 12px;
}
.gsuv * { box-sizing: border-box; font-family: 'Inter', sans-serif; }
.gsuv { background: #f9fafb; padding: 56px 0; overflow: hidden; }
.gsuv__inner { max-width: 1200px; margin: 0 auto; }

.gsuv__header { text-align: center; padding: 0 24px 32px; }
.gsuv__heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gs-text);
  margin: 0 0 8px;
  line-height: 1.2;
}
.gsuv__sub { font-size: 0.95rem; color: var(--gs-muted); margin: 0; line-height: 1.6; }

/* Scrollable track */
.gsuv__track {
  display: flex;
  gap: 14px;
  padding: 8px 24px 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gsuv__track::-webkit-scrollbar { display: none; }

/* Video card */
.gsuv__card {
  flex: 0 0 200px;
  scroll-snap-align: start;
}
@media (min-width: 600px)  { .gsuv__card { flex: 0 0 220px; } }
@media (min-width: 900px)  { .gsuv__card { flex: 0 0 240px; } }
@media (min-width: 1100px) { .gsuv__card { flex: 0 0 260px; } }

.gsuv__frame {
  position: relative;
  border-radius: var(--gs-radius);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #1a1a2e;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.gsuv__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gsuv__placeholder { width: 100%; height: 100%; }

/* Platform badge */
.gsuv__platform {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.gsuv__platform--tiktok    { background: rgba(0,0,0,0.6); color: #fff; }
.gsuv__platform--instagram { background: rgba(193,53,132,0.85); color: #fff; }

/* Bottom overlay */
.gsuv__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  padding: 32px 12px 12px;
}
.gsuv__caption {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.9);
  margin: 0 0 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gsuv__meta { display: flex; flex-direction: column; gap: 1px; }
.gsuv__user { font-size: 0.75rem; font-weight: 700; color: #fff; }
.gsuv__followers { font-size: 0.65rem; color: rgba(255,255,255,0.75); }

/* CTA */
.gsuv__cta-wrap { text-align: center; padding: 8px 24px 0; }
.gsuv__cta {
  display: inline-block;
  padding: 13px 32px;
  background: var(--gs-green);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--gs-radius);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(111,191,115,0.35);
}
.gsuv__cta:hover { background: var(--gs-green-dark); transform: translateY(-2px); }
/* END_SECTION:gs-ugc-video-strip */

/* START_SECTION:gs-use-cases (INDEX:26) */
:root {
  --gs-green-section: #3a7e3e;
  --gs-white: #ffffff;
  --gs-radius: 12px;
}
.gsu * { box-sizing: border-box; font-family: 'Inter', sans-serif; }
.gsu { background: var(--gs-green-section); padding: 64px 24px; }
.gsu__inner { max-width: 1200px; margin: 0 auto; }
.gsu__heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--gs-white);
  text-align: center;
  margin: 0 0 12px;
}
.gsu__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  text-align: center;
  margin: 0 0 40px;
  line-height: 1.6;
}
.gsu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .gsu__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .gsu__grid { grid-template-columns: 1fr; } }
.gsu__card {
  background: var(--gs-white);
  border-radius: var(--gs-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.gsu__card-img { aspect-ratio: 4/3; overflow: hidden; }
.gsu__card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gsu__card:hover .gsu__card-img img { transform: scale(1.04); }
.gsu__placeholder { width: 100%; height: 100%; }
.gsu__card-body { padding: 18px; flex: 1; }
.gsu__card-title {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.3;
}
.gsu__card-desc { font-size: 0.875rem; color: #6b7280; margin: 0; line-height: 1.6; }
/* END_SECTION:gs-use-cases */