:root {
  --cpf-shadow: 0 18px 50px rgba(23, 50, 74, 0.1);
  --cpf-border: rgba(23, 50, 74, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeLegibility;
}

.cpf-topbar {
  font-size: 0.875rem;
  letter-spacing: 0.01em;
}

.cpf-header {
  border-bottom: 1px solid var(--cpf-border);
}

.cpf-header .wp-block-navigation-item__content {
  font-weight: 650;
}

.cpf-hero {
  overflow: hidden;
  position: relative;
}

.cpf-hero::after {
  background: radial-gradient(circle, rgba(11, 118, 110, 0.18), transparent 68%);
  border-radius: 50%;
  content: "";
  height: 30rem;
  position: absolute;
  right: -12rem;
  top: -12rem;
  width: 30rem;
}

.cpf-hero > * {
  position: relative;
  z-index: 1;
}

.cpf-eyebrow {
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cpf-trust-strip {
  border-bottom: 1px solid var(--cpf-border);
  border-top: 1px solid var(--cpf-border);
}

.cpf-card {
  border: 1px solid var(--cpf-border);
  border-radius: 1.25rem;
  box-shadow: 0 1px 0 rgba(23, 50, 74, 0.02);
  height: 100%;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cpf-card:hover {
  box-shadow: var(--cpf-shadow);
  transform: translateY(-3px);
}

.cpf-card a::after {
  content: " \2192";
}

.cpf-callout {
  border: 1px solid rgba(11, 118, 110, 0.2);
  border-radius: 1.5rem;
  box-shadow: var(--cpf-shadow);
}

.woocommerce ul.products li.product,
.wc-block-grid__product {
  border: 1px solid var(--cpf-border);
  border-radius: 1rem;
  overflow: hidden;
  padding: 1rem;
}

.woocommerce ul.products li.product img,
.wc-block-grid__product-image img {
  border-radius: 0.75rem;
}

.woocommerce div.product .price,
.woocommerce ul.products li.product .price,
.wc-block-grid__product-price {
  color: #075a55;
  font-weight: 750;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: #0b766e;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: #075a55;
  color: #fff;
}

@media (max-width: 781px) {
  .cpf-hero {
    padding-bottom: 3.5rem !important;
    padding-top: 3.5rem !important;
  }

  .cpf-trust-strip .wp-block-column {
    flex-basis: 45% !important;
  }
}

