:root {
  --grcp-green-deep: #1f4d2b;
  --grcp-green-mid: #2f6b3c;
  --grcp-green-accent: #8ec641;
  --grcp-cream: #f7f4ec;
  --grcp-white: #ffffff;
  --grcp-ink: #1a1f1c;
  --grcp-warm: #6b6660;
  --grcp-sand: #ebe4d6;
}

body.single-product {
  background: linear-gradient(180deg, #f5f1e8 0%, #f7f4ec 28%, #ffffff 100%);
}

.grcp-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.grcp-product-page {
  padding-bottom: 88px;
}

.grcp-hero {
  padding: 52px 0 40px;
}

.grcp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 440px);
  gap: 36px;
  align-items: start;
}

.grcp-kicker,
.grcp-mini-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--grcp-warm);
}

.grcp-hero-copy h1,
.grcp-section-head h2,
.grcp-story h2 {
  font-size: clamp(40px, 5vw, 68px);
  color: var(--grcp-green-deep);
  margin: 14px 0 22px;
}

.grcp-lead {
  font-size: 19px;
  max-width: 700px;
  color: rgba(26, 31, 28, 0.88);
}

.grcp-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.grcp-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(31, 77, 43, 0.08);
  color: var(--grcp-green-deep);
  font-size: 14px;
  font-weight: 600;
}

.grcp-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.grcp-fact-card {
  background: var(--grcp-white);
  border: 1px solid rgba(31, 77, 43, 0.08);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 14px 40px rgba(27, 42, 32, 0.06);
}

.grcp-fact-card strong,
.grcp-rule-grid strong,
.grcp-trust-grid strong,
.grcp-step-grid h3,
.grcp-article-card h3 {
  display: block;
  color: var(--grcp-green-deep);
}

.grcp-fact-card span,
.grcp-trust-grid span,
.grcp-rule-grid p,
.grcp-step-grid p,
.grcp-article-card p,
.grcp-story p,
.grcp-section-head p {
  color: rgba(26, 31, 28, 0.78);
}

.grcp-buybox {
  position: sticky;
  top: 96px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--grcp-white);
  box-shadow: 0 24px 60px rgba(21, 33, 24, 0.12);
  border: 1px solid rgba(31, 77, 43, 0.08);
}

.grcp-buybox-media img,
.grcp-visual-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.grcp-buybox-body {
  padding: 26px;
}

.grcp-buybox-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(31, 77, 43, 0.1);
}

.grcp-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 42px;
  line-height: 1;
  color: var(--grcp-green-deep);
}

.grcp-price span {
  font-size: 16px;
  color: var(--grcp-warm);
  margin-left: 8px;
}

.grcp-price-note {
  text-align: right;
  font-size: 13px;
  color: var(--grcp-warm);
}

.grcp-order-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 22px;
}

.grcp-order-summary div {
  background: var(--grcp-cream);
  border-radius: 16px;
  padding: 14px;
}

.grcp-order-summary span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grcp-warm);
  margin-bottom: 6px;
}

.grcp-order-summary strong {
  font-size: 18px;
  color: var(--grcp-green-deep);
}

.grcp-cart-wrap form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.grcp-cart-wrap .quantity {
  margin: 0;
  display: flex;
  align-items: center;
}

.grcp-cart-wrap .quantity input.qty {
  height: 54px;
  min-width: 80px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid rgba(31, 77, 43, 0.2);
  border-radius: 10px;
  padding: 0 12px;
}

.grcp-cart-wrap .quantity .qty-button {
  display: none !important;
}

.grcp-cart-wrap .quantity .minus,
.grcp-cart-wrap .quantity .plus {
  height: 54px;
  width: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 77, 43, 0.2);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  color: var(--grcp-green-deep);
  font-weight: 700;
  transition: all 0.2s ease;
}

.grcp-cart-wrap .quantity .minus:hover,
.grcp-cart-wrap .quantity .plus:hover {
  background: rgba(31, 77, 43, 0.06);
  border-color: rgba(31, 77, 43, 0.3);
}

.grcp-pre-tax-total {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--grcp-cream);
  border: 1px solid rgba(31, 77, 43, 0.1);
}

.grcp-pre-tax-total span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grcp-warm);
}

.grcp-pre-tax-total strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  color: var(--grcp-green-deep);
  white-space: nowrap;
}

.grcp-cart-wrap .single_add_to_cart_button {
  min-height: 54px;
  border-radius: 999px;
  padding: 0 28px;
  background: var(--grcp-green-deep);
  border: none;
  color: var(--grcp-white);
  font-weight: 700;
}

.grcp-buybox-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.grcp-enracineur-card {
  border: 1px solid rgba(31, 77, 43, 0.18);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(142, 198, 65, 0.12), rgba(31, 77, 43, 0.08));
  padding: 14px;
}

.grcp-enracineur-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.grcp-enracineur-head strong {
  color: var(--grcp-green-deep);
  font-size: 15px;
}

.grcp-enracineur-head a {
  color: var(--grcp-green-mid);
  font-size: 13px;
  font-weight: 600;
}

.grcp-enracineur-card p {
  margin: 0;
  font-size: 14px;
  color: rgba(26, 31, 28, 0.82);
}

.grcp-enracineur-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  cursor: pointer;
}

.grcp-enracineur-check input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--grcp-green-deep);
}

.grcp-enracineur-check span {
  font-size: 14px;
  color: var(--grcp-ink);
}

.grcp-buybox-links a,
.grcp-article-card {
  text-decoration: none;
}

.grcp-buybox-links a {
  color: var(--grcp-green-mid);
  font-weight: 600;
}

.grcp-trust {
  padding: 12px 0 24px;
}

.grcp-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.grcp-trust-grid div,
.grcp-rule-grid article,
.grcp-step-grid article,
.grcp-article-card,
.grcp-visual-card {
  background: var(--grcp-white);
  border-radius: 20px;
  border: 1px solid rgba(31, 77, 43, 0.08);
  box-shadow: 0 12px 30px rgba(21, 33, 24, 0.05);
}

.grcp-trust-grid div {
  padding: 18px;
}

.grcp-content-block {
  padding: 36px 0;
}

.grcp-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: center;
}

.grcp-story h2,
.grcp-section-head h2 {
  font-size: clamp(32px, 4vw, 54px);
}

.grcp-checklist {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.grcp-checklist li {
  padding-left: 28px;
  position: relative;
}

.grcp-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--grcp-green-accent);
}

.grcp-visual-card {
  overflow: hidden;
}

.grcp-section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.grcp-rule-grid,
.grcp-step-grid,
.grcp-article-grid {
  display: grid;
  gap: 18px;
}

.grcp-rule-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grcp-step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grcp-article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grcp-rule-grid article,
.grcp-step-grid article,
.grcp-article-card {
  padding: 22px;
}

.grcp-step-grid article span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(142, 198, 65, 0.18);
  color: var(--grcp-green-deep);
  font-weight: 700;
  margin-bottom: 16px;
}

.grcp-step-links {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.grcp-ghost-dark {
  color: var(--grcp-green-deep);
  border-color: rgba(31, 77, 43, 0.2);
}

.grcp-article-card {
  color: inherit;
  min-height: 100%;
}

.woocommerce-notices-wrapper {
  width: min(1280px, calc(100% - 48px));
  margin: 18px auto 0;
}

@media (max-width: 1100px) {
  .grcp-hero-grid,
  .grcp-two-col,
  .grcp-rule-grid,
  .grcp-step-grid,
  .grcp-article-grid,
  .grcp-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grcp-buybox {
    position: static;
  }
}

@media (max-width: 760px) {
  .grcp-shell,
  .woocommerce-notices-wrapper {
    width: min(100% - 28px, 1280px);
  }

  .grcp-hero {
    padding-top: 28px;
  }

  .grcp-hero-grid,
  .grcp-two-col,
  .grcp-rule-grid,
  .grcp-step-grid,
  .grcp-article-grid,
  .grcp-trust-grid,
  .grcp-facts,
  .grcp-order-summary {
    grid-template-columns: 1fr;
  }

  .grcp-hero-copy h1,
  .grcp-section-head h2,
  .grcp-story h2 {
    font-size: 36px;
  }

  .grcp-buybox-head,
  .grcp-cart-wrap form.cart,
  .grcp-step-links {
    flex-direction: column;
    align-items: stretch;
  }

  .grcp-pre-tax-total {
    order: 2;
  }

  .grcp-price-note {
    text-align: left;
  }

  .grcp-cart-wrap .single_add_to_cart_button {
    width: 100%;
  }
}
