:root {
  --gpl-bg: #ffffff;
  --gpl-surface: #f6f7f4;
  --gpl-ink: #161a1d;
  --gpl-muted: #5e6a71;
  --gpl-line: #d9ded8;
  --gpl-primary: #0f766e;
  --gpl-primary-dark: #0b4f4a;
  --gpl-accent: #c2410c;
  --gpl-radius: 8px;
  --gpl-shadow: 0 14px 42px rgba(22, 26, 29, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gpl-ink);
  background: var(--gpl-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

a:hover {
  color: var(--gpl-primary);
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--gpl-ink);
  color: #fff;
  border-radius: var(--gpl-radius);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--gpl-line);
  backdrop-filter: saturate(180%) blur(12px);
}

.site-header__inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.site-brand__name {
  font-size: 1.15rem;
  font-weight: 760;
}

.custom-logo {
  max-height: 48px;
  width: auto;
}

.site-nav__menu,
.footer-nav__menu {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav {
  justify-self: center;
}

.site-nav a {
  color: var(--gpl-muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a:hover {
  color: var(--gpl-ink);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gpl-language {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--gpl-line);
  border-radius: 999px;
  background: #fff;
}

.gpl-language__link {
  min-width: 34px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--gpl-muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.gpl-language__link.is-active {
  background: var(--gpl-primary);
  color: #fff;
}

.cart-link,
.button,
.added_to_cart,
.product_type_simple,
.search-form button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: var(--gpl-radius);
  background: var(--gpl-primary);
  color: #fff;
  font-weight: 760;
  cursor: pointer;
}

.cart-link:hover,
.button:hover,
.added_to_cart:hover,
.product_type_simple:hover,
.search-form button:hover {
  background: var(--gpl-primary-dark);
  color: #fff;
}

.button--ghost {
  background: #fff;
  color: var(--gpl-ink);
  border-color: var(--gpl-line);
}

.button--ghost:hover {
  background: var(--gpl-surface);
  color: var(--gpl-ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gpl-line);
  border-radius: var(--gpl-radius);
  background: #fff;
  cursor: pointer;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  background: var(--gpl-ink);
  content: "";
}

.nav-toggle__bar::before {
  transform: translateY(-6px);
}

.nav-toggle__bar::after {
  transform: translateY(4px);
}

.hero {
  background: linear-gradient(135deg, #eef7f4 0%, #ffffff 45%, #fff7ed 100%);
  border-bottom: 1px solid var(--gpl-line);
}

.hero__inner {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: 48px;
  padding: 64px 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  color: var(--gpl-muted);
  font-size: 1.1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero__panel {
  display: grid;
  gap: 12px;
}

.hero__panel > div {
  padding: 18px;
  border: 1px solid var(--gpl-line);
  border-radius: var(--gpl-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--gpl-shadow);
}

.hero__panel span,
.eyebrow {
  display: block;
  color: var(--gpl-accent);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.hero__panel strong {
  display: block;
  margin-top: 4px;
  font-size: 1.22rem;
}

.page-section {
  padding: 72px 0;
}

.page-section--muted {
  background: var(--gpl-surface);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h1,
.section-heading h2,
.narrow-content h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.14;
}

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

.content-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card,
.entry-card {
  overflow: hidden;
  border: 1px solid var(--gpl-line);
  border-radius: var(--gpl-radius);
  background: #fff;
}

.product-card__media,
.entry-card__media {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--gpl-surface);
}

.product-card__media img,
.entry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--gpl-surface);
}

.product-card__placeholder {
  color: var(--gpl-muted);
  font-weight: 760;
}

.product-card__body,
.entry-card__body {
  padding: 16px;
}

.product-card h3,
.entry-card h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.product-card__price {
  margin: 10px 0;
  color: var(--gpl-accent);
  font-weight: 820;
}

.product-card .button,
.product-card .added_to_cart,
.product-card .product_type_simple {
  width: 100%;
  margin-top: 8px;
}

.text-link {
  color: var(--gpl-primary);
  font-weight: 760;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed var(--gpl-line);
  border-radius: var(--gpl-radius);
  background: #fff;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 36px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  padding: 14px 16px;
  border: 1px solid var(--gpl-line);
  border-radius: var(--gpl-radius);
  background: #fff;
  font-weight: 700;
}

.narrow-content {
  max-width: 820px;
}

.entry-content a {
  color: var(--gpl-primary);
  text-decoration: underline;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.single-media {
  overflow: hidden;
  margin-bottom: 26px;
  border-radius: var(--gpl-radius);
}

.search-form {
  display: flex;
  gap: 8px;
}

.search-field {
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--gpl-line);
  border-radius: var(--gpl-radius);
}

.pagination {
  grid-column: 1 / -1;
  margin-top: 20px;
}

.woocommerce-shell .products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.woocommerce-shell .products::before,
.woocommerce-shell .products::after {
  display: none;
}

.woocommerce-shell .products > li.product {
  float: none !important;
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
}

.woocommerce-shell .products > li.product {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gpl-line);
  border-radius: var(--gpl-radius);
  background: #fff;
}

.woocommerce-shell .products > li.product .woocommerce-loop-product__link {
  display: block;
  color: inherit;
}

.woocommerce-shell .products > li.product .woocommerce-loop-product__link img,
.woocommerce-shell .products > li.product > a:first-child img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  margin: 0;
  padding: 10px;
  object-fit: contain;
  background: var(--gpl-surface);
}

.woocommerce-shell .products > li.product .woocommerce-loop-product__title,
.woocommerce-shell .products > li.product .price,
.woocommerce-shell .products > li.product .button,
.woocommerce-shell .products > li.product .added_to_cart {
  position: relative;
  z-index: 1;
}

.woocommerce-shell .products > li.product .woocommerce-loop-product__title {
  min-height: 2.6em;
  margin: 10px 12px 6px;
  overflow: hidden;
  display: -webkit-box;
  color: var(--gpl-ink);
  font-size: 1rem;
  line-height: 1.3;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.woocommerce-shell .products > li.product .price {
  display: block;
  margin: 0 12px 10px;
  color: var(--gpl-accent);
  font-weight: 820;
}

.woocommerce-shell .products > li.product .button,
.woocommerce-shell .products > li.product .added_to_cart {
  width: calc(100% - 24px);
  margin: auto 12px 12px;
}
.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 36px;
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--gpl-line);
  background: #111827;
  color: #fff;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 960px) {
  .site-header__inner {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    padding: 16px;
    background: #fff;
    border-bottom: 1px solid var(--gpl-line);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__menu {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .site-nav a {
    display: block;
    padding: 10px 0;
  }

  .site-header__actions {
    justify-self: end;
  }

  .hero__inner,
  .feature-row,
  .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .content-grid,
  .woocommerce-shell .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .site-header__inner {
    min-height: 64px;
    gap: 10px;
  }

  .site-nav {
    top: 64px;
  }

  .cart-link {
    display: none;
  }

  .hero__inner {
    min-height: auto;
    padding: 42px 0;
    gap: 24px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .page-section {
    padding: 48px 0;
  }
  .product-grid,
  .woocommerce-shell .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__inner,
  .footer-nav__menu {
    align-items: flex-start;
    flex-direction: column;
  }
}


.announcement {
  background: var(--gpl-ink);
  color: #fff;
}

.announcement__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 720;
  text-align: center;
}

.announcement a {
  color: #99f6e4;
  text-decoration: underline;
}

.header-search {
  width: 180px;
}

.header-search input,
.product-search input,
.lead-form input {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--gpl-line);
  border-radius: var(--gpl-radius);
  background: #fff;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-bottom: 32px;
}

.trust-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--gpl-line);
  border-radius: var(--gpl-radius);
  background: rgba(255, 255, 255, 0.9);
}

.trust-item__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #dcfce7;
  color: #166534;
  font-size: 0.82rem;
  font-weight: 820;
}

.trust-item strong {
  display: block;
  line-height: 1.25;
}

.trust-item p,
.newsletter-box p,
.faq-list p,
.product-card__meta {
  margin: 4px 0 0;
  color: var(--gpl-muted);
  font-size: 0.92rem;
}

.page-section--compact {
  padding: 52px 0 36px;
}

.section-heading--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.category-card {
  overflow: hidden;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--gpl-line);
  border-radius: var(--gpl-radius);
  background: #fff;
}

.category-card img,
.category-card__placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: calc(var(--gpl-radius) - 2px);
  object-fit: cover;
  background: var(--gpl-surface);
}

.category-card__placeholder {
  display: grid;
  place-items: center;
  color: var(--gpl-primary);
  font-size: 2rem;
  font-weight: 820;
}

.category-card strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.25;
}

.category-card span:last-child {
  color: var(--gpl-muted);
  font-size: 0.86rem;
}

.product-search {
  width: min(420px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.product-search button,
.lead-form button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 0;
  border-radius: var(--gpl-radius);
  background: var(--gpl-primary);
  color: #fff;
  font-weight: 760;
  cursor: pointer;
}

.product-card__media {
  position: relative;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 820;
  line-height: 1;
}

.product-badge--sale {
  background: var(--gpl-accent);
}

.product-badge--stock {
  background: #854d0e;
}

.product-card__actions .button,
.product-card__actions .added_to_cart,
.product-card__actions .product_type_simple {
  margin-top: 0;
}

.newsletter-section {
  background: #0f172a;
  color: #fff;
}

.newsletter-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 32px;
  align-items: center;
}

.newsletter-box h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.12;
}

.newsletter-box p {
  color: rgba(255, 255, 255, 0.74);
}

.lead-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 36px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--gpl-line);
  border-radius: var(--gpl-radius);
  background: #fff;
}

.faq-list summary {
  padding: 16px;
  cursor: pointer;
  font-weight: 760;
}

.faq-list p {
  padding: 0 16px 16px;
}

.woocommerce-shell--with-sidebar {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.shop-sidebar .widget {
  padding: 16px;
  border: 1px solid var(--gpl-line);
  border-radius: var(--gpl-radius);
  background: #fff;
}

.widget-title {
  margin: 0 0 10px;
  font-size: 1rem;
}

.single-assurance,
.checkout-note {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--gpl-line);
  border-radius: var(--gpl-radius);
  background: var(--gpl-surface);
}

.single-assurance div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.single-assurance span,
.checkout-note {
  color: var(--gpl-muted);
  font-size: 0.92rem;
}

.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--gpl-line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -10px 30px rgba(22, 26, 29, 0.1);
}

.mobile-cta-bar a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gpl-line);
  border-radius: var(--gpl-radius);
  font-weight: 760;
}

.mobile-cta-bar__primary {
  border-color: var(--gpl-primary) !important;
  background: var(--gpl-primary);
  color: #fff;
}

@media (max-width: 960px) {
  .header-search {
    display: none;
  }

  .trust-strip,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .newsletter-box,
  .faq-grid,
  .woocommerce-shell--with-sidebar {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 68px;
  }

  .announcement__inner {
    min-height: 36px;
    font-size: 0.84rem;
  }

  .trust-strip,
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    grid-template-columns: 1fr;
  }

  .section-heading--row {
    align-items: stretch;
    flex-direction: column;
  }

  .product-search,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .newsletter-box {
    gap: 18px;
  }

  .single-assurance div {
    display: block;
  }

  .mobile-cta-bar {
    display: grid;
  }
}