:root {
  --hf-teal: #00795C;
  --hf-teal-hover: #006B52;
  --hf-ink: #14231F;
  --hf-eucalyptus: #536862;
  --hf-sage: #EAF3EF;
  --hf-line: #D7E5DF;
  --hf-canvas: #FFFFFF;
  --hf-surface: #FFFFFF;
  --hf-radius: 8px;
  --hf-shadow-ring: rgba(0, 70, 53, 0.10) 0 0 0 1px;
  --hf-page-shell: min(1120px, calc(100vw - 32px));
  --hf-button-height: 40px;
  --hf-button-compact-height: 34px;
  --hf-button-radius: 8px;
  --hf-button-padding: 10px 16px;
  --hf-button-compact-padding: 8px 12px;
  --hf-button-font-size: 13px;
  --hf-button-primary-bg: var(--hf-teal);
  --hf-button-primary-hover: var(--hf-teal-hover);
  --hf-button-secondary-bg: #eaf5f1;
  --hf-button-secondary-hover: #dbece7;
  --hf-button-secondary-border: rgba(0, 121, 92, 0.22);
  --hf-button-shadow: rgba(0, 70, 53, 0.10) 0 0 0 1px;
  --hf-button-hover-shadow: rgba(0, 70, 53, 0.13) 0 8px 18px;
  --hf-rating-gold: #F5A623;
  --hf-rating-gold-muted: #F8D58A;
}

body {
  --wp--style--global--content-size: 1120px;
  font-family: "Geist", "Aptos", "Segoe UI", Arial, sans-serif;
  color: var(--hf-eucalyptus);
  background: var(--hf-canvas);
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--hf-teal);
  font-family: "Geist", "Aptos", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.16;
}

h2 {
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.2;
}

h3 {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.24;
}

h4 {
  font-size: 16px;
  line-height: 1.3;
}

h5 {
  font-size: 15px;
  line-height: 1.34;
}

h6 {
  font-size: 14px;
  line-height: 1.38;
}

p,
li {
  font-size: 15px;
  line-height: 1.58;
}

a {
  color: var(--hf-teal);
  font-weight: 600;
}

.wp-site-blocks {
  min-height: 100vh;
}

.hf-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: rgba(0, 70, 53, 0.10) 0 1px 18px;
}

.hf-header__inner {
  min-height: 78px;
}

.hf-header .wp-block-navigation a {
  color: var(--hf-ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.hf-header .wp-block-navigation .wp-block-navigation__submenu-container a,
.hf-header .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  font-weight: 400;
}

.hf-header .wp-block-navigation a:hover {
  color: var(--hf-teal);
}

.hf-header .wp-block-shortcode a,
.trackbuttons a,
a.button,
button.button,
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  border: 0;
  border-radius: var(--hf-radius);
  background: var(--hf-teal);
  color: var(--hf-surface);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  box-shadow: var(--hf-shadow-ring);
}

.hf-header .wp-block-shortcode a {
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 7px;
  font-size: 12px;
  line-height: 1.15;
  white-space: nowrap;
}

.hf-header .wp-block-shortcode p {
  margin: 0;
}

.trackbuttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wrap,
.hf-wrap {
  width: var(--hf-page-shell);
  max-width: 1120px;
  margin-inline: auto;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.left,
.right {
  flex: 1 1 320px;
}

.dotpoints {
  padding-left: 18px;
}

.dotpoints li {
  margin-bottom: 6px;
}

.q,
.woocommerce ul.products li.product,
.woocommerce div.product div.images,
.woocommerce div.product .summary,
.woocommerce-cart-form,
.cart-collaterals,
.woocommerce-checkout-review-order,
.woocommerce form.checkout {
  border-radius: var(--hf-radius);
  background: var(--hf-surface);
  box-shadow: rgba(0, 70, 53, 0.10) 0 0 0 1px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
select,
textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  min-height: 40px;
  width: 100%;
  border: 0;
  border-radius: var(--hf-radius);
  background: var(--hf-surface);
  color: var(--hf-ink);
  padding: 9px 11px;
  font: inherit;
  box-shadow: var(--hf-shadow-ring);
}

select,
.woocommerce select,
.woocommerce-page select,
body.woocommerce div.product form.cart .variations select,
body.woocommerce.archive .woocommerce-ordering select,
.yith-wapo-block select,
.yith-wapo-addon select,
body #app select,
body #app .q select {
  box-sizing: border-box;
  display: block;
  min-height: 46px;
  height: 46px;
  width: 100%;
  max-width: 100%;
  padding: 0 42px 0 14px;
  border: 1px solid rgba(0, 121, 92, 0.18);
  border-radius: 10px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2300795C' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
  color: var(--hf-ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 44px;
  text-align: left;
  vertical-align: middle;
  box-shadow:
    rgba(0, 70, 53, 0.08) 0 0 0 1px,
    rgba(0, 70, 53, 0.04) 0 10px 22px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

select::-ms-expand {
  display: none;
}

select:hover,
.woocommerce select:hover,
.woocommerce-page select:hover,
body.woocommerce div.product form.cart .variations select:hover,
body.woocommerce.archive .woocommerce-ordering select:hover,
.yith-wapo-block select:hover,
.yith-wapo-addon select:hover,
body #app select:hover,
body #app .q select:hover {
  border-color: rgba(0, 121, 92, 0.34);
  box-shadow:
    rgba(0, 121, 92, 0.16) 0 0 0 1px,
    rgba(0, 70, 53, 0.07) 0 14px 26px;
}

select:focus,
.woocommerce select:focus,
.woocommerce-page select:focus,
body.woocommerce div.product form.cart .variations select:focus,
body.woocommerce.archive .woocommerce-ordering select:focus,
.yith-wapo-block select:focus,
.yith-wapo-addon select:focus,
body #app select:focus,
body #app .q select:focus {
  outline: none;
  border-color: var(--hf-teal);
  box-shadow:
    rgba(0, 121, 92, 0.22) 0 0 0 3px,
    rgba(0, 70, 53, 0.10) 0 12px 26px;
}

select:disabled,
.woocommerce select:disabled,
.woocommerce-page select:disabled,
body #app select:disabled {
  cursor: not-allowed;
  color: var(--hf-muted);
  background-color: #f3f7f5;
  box-shadow: rgba(0, 70, 53, 0.06) 0 0 0 1px;
}

.select2-container .select2-selection--single,
.selectWoo-container .select2-selection--single,
.selectWoo-container .selectWoo-selection--single,
.woocommerce .select2-container .select2-selection--single {
  box-sizing: border-box;
  height: 46px;
  border: 1px solid rgba(0, 121, 92, 0.18);
  border-radius: 10px;
  background: #fff;
  box-shadow:
    rgba(0, 70, 53, 0.08) 0 0 0 1px,
    rgba(0, 70, 53, 0.04) 0 10px 22px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.selectWoo-container--default .select2-selection--single .select2-selection__rendered,
.selectWoo-container--default .selectWoo-selection--single .selectWoo-selection__rendered,
.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0 42px 0 14px;
  color: var(--hf-ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 44px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow,
.selectWoo-container--default .select2-selection--single .select2-selection__arrow,
.selectWoo-container--default .selectWoo-selection--single .selectWoo-selection__arrow,
.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 1px;
  right: 8px;
  width: 34px;
  height: 44px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b,
.selectWoo-container--default .select2-selection--single .select2-selection__arrow b,
.selectWoo-container--default .selectWoo-selection--single .selectWoo-selection__arrow b,
.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--hf-teal) transparent transparent transparent;
}

.v-select .vs__dropdown-toggle {
  min-height: 46px;
  border: 1px solid rgba(0, 121, 92, 0.18);
  border-radius: 10px;
  background: #fff;
  box-shadow:
    rgba(0, 70, 53, 0.08) 0 0 0 1px,
    rgba(0, 70, 53, 0.04) 0 10px 22px;
}

.v-select .vs__selected,
.v-select .vs__search,
.v-select .vs__search::placeholder {
  color: var(--hf-ink);
  font-size: 14px;
  font-weight: 500;
}

.v-select .vs__actions {
  padding-right: 12px;
}

.v-select .vs__open-indicator {
  fill: var(--hf-teal);
}

body.woocommerce div.product form.cart .variations label,
.yith-wapo-addon .yith-wapo-addon-label,
body #app .form label {
  color: var(--hf-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

body.woocommerce div.product form.cart .variations .required,
.yith-wapo-addon .required,
body #app .required {
  color: #c2410c;
  text-decoration: none;
}

.genericon-star {
  color: var(--hf-rating-gold);
}

.hf-footer {
  margin-top: clamp(36px, 6vw, 76px);
  border-top: 1px solid var(--hf-line);
  background: #f7fbf9;
}

.hf-footer,
.hf-footer :where(div, p, li, a, span, small, strong, em, b, i, address, label, h1, h2, h3, h4, h5, h6) {
  font-size: 12px;
  line-height: 1.45;
}

.hf-footer a {
  color: var(--hf-ink);
}

.hf-footer a:hover {
  color: var(--hf-teal);
}

.hf-footer__inner {
  box-sizing: border-box;
  display: grid;
  width: 100% !important;
  max-width: none !important;
  gap: 28px;
  margin-inline: auto !important;
  padding: 36px 24px 28px;
}

.hf-footer__inner * {
  box-sizing: border-box;
}

.hf-footer__top {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
}

.hf-footer__brand,
.hf-footer__design,
.hf-footer__links,
.hf-footer__products,
.hf-footer__external {
  border: 1px solid rgba(0, 121, 92, 0.12);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}

.hf-footer__logo {
  display: inline-flex;
  width: 188px;
  max-width: 100%;
  margin-bottom: 12px;
}

.hf-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.hf-footer__eyebrow {
  margin: 0 0 5px;
  color: var(--hf-eucalyptus);
  font-weight: 750;
  text-transform: uppercase;
}

.hf-footer h2 {
  margin: 0 0 10px;
  color: var(--hf-teal);
  font-size: 16px;
  line-height: 1.25;
}

.hf-footer ul {
  margin: 0;
  padding-left: 17px;
}

.hf-footer li {
  margin: 0 0 6px;
}

.hf-footer__button {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 7px;
  background: var(--hf-teal);
  color: #fff !important;
  font-weight: 750;
  text-decoration: none;
}

.hf-footer-menu {
  width: 100%;
}

.hf-footer .wp-block-navigation__container {
  display: grid !important;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px 28px;
  align-items: start;
}

.hf-footer .wp-block-navigation-item {
  display: block;
  width: 100%;
}

.hf-footer .wp-block-navigation__container > .wp-block-navigation-item:nth-child(n+5) {
  display: none;
}

.hf-footer .wp-block-navigation-item__content {
  padding: 0 !important;
  color: var(--hf-ink);
  line-height: 1.35;
  text-decoration: none;
}

.hf-footer .wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation-item__content {
  color: var(--hf-teal);
  font-weight: 800;
}

.hf-footer .wp-block-navigation__submenu-icon {
  display: none !important;
}

.hf-footer .wp-block-navigation__submenu-container {
  position: static !important;
  display: grid !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-width: 0 !important;
  width: auto !important;
  height: auto !important;
  margin: 8px 0 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
  gap: 7px;
}

.hf-footer .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  color: var(--hf-eucalyptus);
  font-weight: 600;
}

.hf-footer__content {
  display: grid;
  grid-template-columns: minmax(210px, 0.8fr) minmax(320px, 1.35fr) minmax(200px, 0.65fr);
  gap: 18px;
  align-items: start;
}

.hf-footer__links ul,
.hf-footer__products ul,
.hf-footer__external ul {
  columns: 2;
  column-gap: 24px;
}

.hf-footer__external ul {
  columns: 1;
}

.hf-footer__payments {
  display: block;
  max-width: 180px;
  height: auto;
  margin-top: 14px;
}

.hf-footer__contact {
  gap: 10px;
  justify-content: flex-start !important;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(0, 121, 92, 0.12);
  border-bottom: 1px solid rgba(0, 121, 92, 0.12);
}

.hf-footer__contact p {
  margin: 0;
  color: var(--hf-eucalyptus);
  font-weight: 750;
}

.hf-footer__contact a {
  min-height: 36px;
  padding: 8px 12px;
  color: #fff !important;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.hf-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
}

.hf-footer__contact a.hf-footer__social-link {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  border: 0;
  border-radius: var(--hf-radius);
  background: var(--hf-teal);
  color: #fff !important;
  font-size: 0;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
  transform: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.hf-footer__contact a.hf-footer__social-link:hover,
.hf-footer__contact a.hf-footer__social-link:focus-visible {
  background: #005f49;
  color: #fff !important;
  transform: translateY(-1px);
}

.hf-footer__social-link svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hf-footer__social-link--facebook svg {
  width: 19px;
  height: 19px;
}

.hf-footer__social-link--youtube svg {
  width: 21px;
  height: 21px;
}

.hf-footer__legal {
  display: grid;
  gap: 8px;
  color: var(--hf-eucalyptus);
}

.hf-footer__legal p {
  max-width: 1120px;
  margin: 0;
}

/* Featured-image page heroes. */
body.hf-has-featured-page-hero {
  overflow-x: clip;
}

body.hf-has-featured-page-hero main.wp-block-group {
  margin-block-start: 0 !important;
  overflow-x: clip;
}

body.hf-has-featured-page-hero main.wp-block-group > .wp-block-group:first-child {
  max-width: none !important;
  margin-block-start: 0;
  padding: 0 !important;
}

body.hf-has-featured-page-hero main.wp-block-group > .wp-block-group:first-child > *:not(.hf-page-hero) {
  display: none !important;
}

.hf-page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  box-sizing: border-box;
  width: 100vw !important;
  max-width: 100vw !important;
  min-height: clamp(300px, 40vw, 470px);
  margin: 0 calc(50% - 50vw) clamp(32px, 5vw, 62px) !important;
  overflow: hidden;
  background: #0e3028;
  color: #fff;
}

.hf-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(4, 31, 25, 0.72), rgba(4, 31, 25, 0.38) 46%, rgba(4, 31, 25, 0.08)),
    linear-gradient(180deg, rgba(0, 121, 92, 0.05), rgba(0, 75, 57, 0.42)),
    var(--hf-page-hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hf-page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--hf-canvas));
}

.hf-page-hero__inner {
  width: var(--hf-page-shell);
  max-width: 1120px;
  margin-inline: auto;
  padding: clamp(70px, 12vw, 150px) 0 clamp(58px, 9vw, 104px);
}

.hf-page-hero h1 {
  max-width: 840px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.08;
  text-shadow: rgba(0, 45, 34, 0.34) 0 2px 28px;
}

@media (max-width: 900px) {
  .hf-footer__top,
  .hf-footer__content {
    grid-template-columns: 1fr;
  }

  .hf-footer .wp-block-navigation__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .hf-page-hero {
    min-height: 290px;
  }

  .hf-page-hero::before {
    background-position: center;
  }

  .hf-page-hero__inner {
    width: min(100% - 32px, 520px);
    padding: 88px 0 58px;
  }

  .hf-page-hero h1 {
    font-size: 27px;
  }

  .hf-footer__inner {
    width: 100% !important;
    padding: 28px 16px 24px;
  }

  .hf-footer .wp-block-navigation__container {
    grid-template-columns: 1fr;
  }

  .hf-footer__links ul,
  .hf-footer__products ul {
    columns: 1;
  }
}

body.page:not(.home) :where(.wp-block-post-title.alignwide, .wc-block-store-notices.alignwide, .entry-content.alignwide, .entry-content > .alignwide) {
  box-sizing: border-box;
  width: var(--hf-page-shell) !important;
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.page-id-6 .wp-block-post-title {
  display: none !important;
}

/* Product archive product grids, matched to the homepage product showcase. */
body.woocommerce.archive main.wp-block-group {
  padding-bottom: 0;
}

body.woocommerce.archive main.wp-block-group > .wp-block-breadcrumbs,
body.woocommerce.archive main.wp-block-group > .wp-block-query-title,
body.woocommerce.archive main.wp-block-group > .wp-block-term-description,
body.woocommerce.archive main.wp-block-group > .wp-block-group.alignwide {
  width: min(1120px, calc(100vw - 32px));
  max-width: 1120px !important;
  margin-inline: auto;
}

body.woocommerce.archive main.wp-block-group > .wp-block-breadcrumbs {
  margin-top: 24px;
  margin-bottom: 26px;
}

body.woocommerce.archive .wp-block-query-title {
  margin-bottom: 22px;
  color: var(--hf-teal);
  font-size: clamp(29px, 3vw, 42px);
  line-height: 1.06;
}

body.woocommerce.archive .wp-block-term-description {
  margin-bottom: 28px;
}

body.woocommerce.archive .wp-block-term-description h1,
body.woocommerce.archive .woocommerce-products-header__title {
  max-width: 980px;
  margin: 0 0 18px;
  color: var(--hf-teal);
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1.12;
}

body.woocommerce.archive .wp-block-term-description p {
  max-width: 1040px;
  margin-bottom: 8px;
  color: var(--hf-ink);
  font-size: 15px;
  line-height: 1.58;
}

body.woocommerce.archive main.wp-block-group > .wp-block-group.alignwide {
  align-items: center;
  gap: 18px;
  margin-bottom: 0;
  padding-bottom: 24px;
}

body.woocommerce.archive .woocommerce-result-count {
  margin: 0;
  color: var(--hf-eucalyptus);
  font-size: 14px;
}

body.woocommerce.archive .woocommerce-ordering select {
  min-width: 190px;
  background-color: #fff;
  box-shadow: rgba(0, 70, 53, 0.10) 0 0 0 1px;
}

body.woocommerce.archive main.wp-block-group > header.entry-header {
  display: none;
}

body.woocommerce.archive main.wp-block-group > section#main {
  box-sizing: border-box;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc((100vw - 100%) / -2) !important;
  margin-right: calc((100vw - 100%) / -2) !important;
  padding: 46px 0 78px;
  border-block: 1px solid rgba(0, 121, 92, 0.10);
  background: #f7fbf9;
}

body.woocommerce.archive main.wp-block-group > section#main > .wrap {
  width: min(1120px, calc(100vw - 32px));
  max-width: 1120px;
  margin-inline: auto;
}

body.woocommerce.archive .wp-block-woocommerce-product-collection {
  width: 100%;
  max-width: none !important;
}

body.woocommerce.archive .wc-block-product-template,
body.woocommerce.archive .wc-block-product-template__responsive,
body.post-type-archive-product ul.products,
body.page-id-6 ul.products,
body.woocommerce.archive ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: stretch;
  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce.archive .wc-block-product-template::before,
body.woocommerce.archive .wc-block-product-template::after,
body.post-type-archive-product ul.products::before,
body.post-type-archive-product ul.products::after,
body.page-id-6 ul.products::before,
body.page-id-6 ul.products::after,
body.woocommerce.archive ul.products::before,
body.woocommerce.archive ul.products::after {
  content: none !important;
  display: none !important;
}

body.woocommerce.archive li.wc-block-product,
body.woocommerce.archive ul.products li.product,
body.post-type-archive-product ul.products li.product,
body.page-id-6 ul.products li.product {
  display: flex !important;
  float: none !important;
  flex-direction: column;
  overflow: hidden;
  width: auto !important;
  min-height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(0, 121, 92, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: rgba(0, 70, 53, 0.07) 0 16px 38px;
  text-align: left;
}

body.woocommerce.archive li.wc-block-product > .wc-block-components-product-image,
body.woocommerce.archive ul.products li.product a.woocommerce-LoopProduct-link img,
body.post-type-archive-product ul.products li.product a.woocommerce-LoopProduct-link img,
body.page-id-6 ul.products li.product a.woocommerce-LoopProduct-link img {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 190px;
  margin: 0 !important;
  padding: 16px;
  border-bottom: 1px solid rgba(0, 121, 92, 0.10);
  background: #fff;
}

body.woocommerce.archive ul.products li.product a.woocommerce-LoopProduct-link img,
body.post-type-archive-product ul.products li.product a.woocommerce-LoopProduct-link img,
body.page-id-6 ul.products li.product a.woocommerce-LoopProduct-link img {
  box-sizing: border-box;
  display: block;
}

body.woocommerce.archive li.wc-block-product > .wc-block-components-product-image a,
body.woocommerce.archive li.wc-block-product > .wc-block-components-product-image img {
  display: block;
  width: 100%;
}

body.woocommerce.archive li.wc-block-product > .wc-block-components-product-image img,
body.woocommerce.archive ul.products li.product a.woocommerce-LoopProduct-link img,
body.post-type-archive-product ul.products li.product a.woocommerce-LoopProduct-link img,
body.page-id-6 ul.products li.product a.woocommerce-LoopProduct-link img {
  height: 230px;
  max-height: 230px;
  object-fit: contain !important;
  transition: transform 180ms ease;
}

body.woocommerce.archive li.wc-block-product > .wc-block-components-product-image:hover img,
body.woocommerce.archive ul.products li.product a.woocommerce-LoopProduct-link:hover img,
body.post-type-archive-product ul.products li.product a.woocommerce-LoopProduct-link:hover img,
body.page-id-6 ul.products li.product a.woocommerce-LoopProduct-link:hover img {
  transform: translateY(-2px);
}

body.woocommerce.archive li.wc-block-product > h2,
body.woocommerce.archive li.wc-block-product > h2.wp-block-post-title,
body.woocommerce.archive ul.products li.product .woocommerce-loop-product__title,
body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
body.page-id-6 ul.products li.product .woocommerce-loop-product__title {
  margin: 0 !important;
  padding: 22px 22px 0 !important;
  color: var(--hf-teal);
  font-size: 20px !important;
  font-weight: 750;
  line-height: 1.18 !important;
  text-align: left !important;
  text-wrap: balance;
}

body.woocommerce.archive li.wc-block-product > h2 a,
body.woocommerce.archive ul.products li.product a.woocommerce-LoopProduct-link,
body.post-type-archive-product ul.products li.product a.woocommerce-LoopProduct-link,
body.page-id-6 ul.products li.product a.woocommerce-LoopProduct-link {
  color: inherit;
  text-decoration: none;
}

body.woocommerce.archive ul.products li.product a.woocommerce-LoopProduct-link,
body.post-type-archive-product ul.products li.product a.woocommerce-LoopProduct-link,
body.page-id-6 ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

body.woocommerce.archive li.wc-block-product > .wp-block-woocommerce-product-price,
body.woocommerce.archive ul.products li.product .price,
body.post-type-archive-product ul.products li.product .price,
body.page-id-6 ul.products li.product .price {
  display: block;
  margin: 0 !important;
  padding: 14px 22px 0 !important;
  color: var(--hf-eucalyptus) !important;
  font-size: 14px !important;
  font-weight: 600;
  line-height: 1.35;
  text-align: left !important;
}

body.woocommerce.archive li.wc-block-product > .wp-block-woocommerce-product-price .amount,
body.woocommerce.archive ul.products li.product .price .amount,
body.post-type-archive-product ul.products li.product .price .amount,
body.page-id-6 ul.products li.product .price .amount {
  color: var(--hf-ink);
  font-weight: 750;
}

body.woocommerce.archive ul.products li.product .star-rating,
body.post-type-archive-product ul.products li.product .star-rating,
body.page-id-6 ul.products li.product .star-rating {
  margin: 14px 22px 0 !important;
  color: var(--hf-rating-gold);
}

body .woocommerce .star-rating,
body .woocommerce .star-rating span,
body .woocommerce .star-rating span::before,
body .wc-block-components-product-rating__stars,
body .wc-block-components-product-rating__stars span,
body .genericon-star {
  color: var(--hf-rating-gold) !important;
}

body .woocommerce .star-rating::before,
body .wc-block-components-product-rating__stars::before {
  color: var(--hf-rating-gold-muted) !important;
}

body .woocommerce p.stars a,
body .woocommerce p.stars a::before {
  color: var(--hf-rating-gold) !important;
}

body.woocommerce.archive li.wc-block-product > .wp-block-woocommerce-product-button {
  display: none;
}

body.woocommerce.archive li.wc-block-product > form,
body.woocommerce.archive ul.products li.product > form,
body.post-type-archive-product ul.products li.product > form,
body.page-id-6 ul.products li.product > form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding: 18px 22px 22px;
}

body.woocommerce.archive li.wc-block-product > form .button,
body.woocommerce.archive ul.products li.product > form .button,
body.post-type-archive-product ul.products li.product > form .button,
body.page-id-6 ul.products li.product > form .button,
body.woocommerce.archive ul.products li.product .button,
body.post-type-archive-product ul.products li.product .button,
body.page-id-6 ul.products li.product .button {
  box-sizing: border-box;
  flex: 1 1 112px;
  min-height: 38px;
  margin: 0 !important;
  padding: 9px 13px;
  border: 1px solid transparent !important;
  border-radius: 7px;
  background: var(--hf-teal);
  color: #fff !important;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  box-shadow: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

body.woocommerce.archive li.wc-block-product > form .button:first-child,
body.woocommerce.archive ul.products li.product > form .button:first-child,
body.post-type-archive-product ul.products li.product > form .button:first-child,
body.page-id-6 ul.products li.product > form .button:first-child {
  background: #e6f1ed !important;
  border-color: rgba(0, 121, 92, 0.18) !important;
  color: var(--hf-teal) !important;
}

body.woocommerce.archive li.wc-block-product > form .button:first-of-type,
body.woocommerce.archive ul.products li.product > form .button:first-of-type,
body.post-type-archive-product ul.products li.product > form .button:first-of-type,
body.page-id-6 ul.products li.product > form .button:first-of-type {
  background: #e6f1ed !important;
  border-color: rgba(0, 121, 92, 0.18) !important;
  color: var(--hf-teal) !important;
}

body.woocommerce.archive li.wc-block-product > form .button + .button,
body.woocommerce.archive ul.products li.product > form .button + .button,
body.post-type-archive-product ul.products li.product > form .button + .button,
body.page-id-6 ul.products li.product > form .button + .button {
  background: var(--hf-teal) !important;
  border-color: var(--hf-teal) !important;
  color: #fff !important;
}

body.woocommerce.archive li.wc-block-product > form .button:hover,
body.woocommerce.archive ul.products li.product > form .button:hover,
body.post-type-archive-product ul.products li.product > form .button:hover,
body.page-id-6 ul.products li.product > form .button:hover,
body.woocommerce.archive ul.products li.product .button:hover,
body.post-type-archive-product ul.products li.product .button:hover,
body.page-id-6 ul.products li.product .button:hover {
  background: var(--hf-teal-hover);
  transform: translateY(-1px);
}

body.woocommerce.archive li.wc-block-product > form .button:first-child:hover,
body.woocommerce.archive ul.products li.product > form .button:first-child:hover,
body.post-type-archive-product ul.products li.product > form .button:first-child:hover,
body.page-id-6 ul.products li.product > form .button:first-child:hover {
  background: #d8e8e3 !important;
}

body.woocommerce.archive li.wc-block-product > form .button:first-of-type:hover,
body.woocommerce.archive ul.products li.product > form .button:first-of-type:hover,
body.post-type-archive-product ul.products li.product > form .button:first-of-type:hover,
body.page-id-6 ul.products li.product > form .button:first-of-type:hover {
  background: #d8e8e3 !important;
  color: #005f49 !important;
}

body.woocommerce.archive .wp-block-query-pagination {
  width: min(1120px, calc(100vw - 32px));
  margin: 34px auto 0;
}

body.page-id-6 .entry-content > .woocommerce {
  width: min(1120px, calc(100vw - 32px));
  max-width: 1120px;
  margin: 18px auto 62px;
}

body.page-id-6 .entry-content > .woocommerce + hr,
body.page-id-6 .entry-content > hr {
  width: min(1120px, calc(100vw - 32px));
  margin: 54px auto 22px;
  border: 0;
  border-top: 1px solid rgba(0, 121, 92, 0.18);
}

body.page-id-6 .entry-content > h1,
body.page-id-6 .entry-content > h2,
body.page-id-6 .entry-content > h3,
body.page-id-6 .entry-content > p {
  width: min(1120px, calc(100vw - 32px));
  max-width: 1120px;
  margin-inline: auto;
}

body.page-id-6 .entry-content > .woocommerce:has(ul.products) {
  box-sizing: border-box;
  padding: 0;
}

/* Single product pages use the same shell width as the homepage showcase. */
body.single-product .woocommerce.product > section#main > .wrap {
  width: min(1120px, calc(100vw - 32px));
  max-width: 1120px;
  margin-inline: auto;
}

body.single-product .woocommerce.product > section#main > .wrap > main.wp-block-group {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.single-product .woocommerce.product .wp-block-columns.alignwide,
body.single-product .woocommerce.product .wc-block-breadcrumbs.alignwide,
body.single-product .woocommerce.product .wc-block-store-notices.alignwide,
body.single-product .woocommerce.product .wp-block-post-title,
body.single-product .woocommerce.product .wp-block-post-content,
body.single-product .woocommerce.product .woocommerce-tabs,
body.single-product .woocommerce.product .related.products,
body.single-product .woocommerce.product .upsells.products {
  width: 100%;
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 980px) {
  body.woocommerce.archive .wc-block-product-template,
  body.woocommerce.archive .wc-block-product-template__responsive,
  body.post-type-archive-product ul.products,
  body.page-id-6 ul.products,
  body.woocommerce.archive ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 620px) {
  body.woocommerce.archive main.wp-block-group > .wp-block-breadcrumbs,
  body.woocommerce.archive main.wp-block-group > .wp-block-query-title,
  body.woocommerce.archive main.wp-block-group > .wp-block-term-description,
  body.woocommerce.archive main.wp-block-group > .wp-block-group.alignwide,
  body.woocommerce.archive main.wp-block-group > section#main > .wrap,
  body.page-id-6 .entry-content > .woocommerce,
  body.page-id-6 .entry-content > h1,
  body.page-id-6 .entry-content > h2,
  body.page-id-6 .entry-content > h3,
  body.page-id-6 .entry-content > p,
  body.page-id-6 .entry-content > .woocommerce + hr,
  body.page-id-6 .entry-content > hr {
    width: min(calc(100vw - 28px), 520px);
    margin-left: calc((100vw - 100%) / -2 + 14px) !important;
    margin-right: calc((100vw - 100%) / -2 + 14px) !important;
  }

  body.woocommerce.archive main.wp-block-group > .wp-block-group.alignwide {
    flex-wrap: wrap !important;
  }

  body.woocommerce.archive main.wp-block-group > section#main {
    padding: 32px 0 52px;
  }

  body.woocommerce.archive .wc-block-product-template,
  body.woocommerce.archive .wc-block-product-template__responsive,
  body.post-type-archive-product ul.products,
  body.page-id-6 ul.products,
  body.woocommerce.archive ul.products {
    grid-template-columns: 1fr !important;
  }

  body.single-product .woocommerce.product > section#main > .wrap,
  body.single-product .woocommerce.product .wp-block-columns.alignwide,
  body.single-product .woocommerce.product .wc-block-breadcrumbs.alignwide,
  body.single-product .woocommerce.product .wc-block-store-notices.alignwide,
  body.single-product .woocommerce.product .wp-block-post-title,
  body.single-product .woocommerce.product .wp-block-post-content,
  body.single-product .woocommerce.product .woocommerce-tabs,
  body.single-product .woocommerce.product .related.products,
  body.single-product .woocommerce.product .upsells.products {
    width: min(calc(100vw - 28px), 520px);
    max-width: 520px !important;
  }

  body.woocommerce.archive li.wc-block-product > .wc-block-components-product-image img,
  body.woocommerce.archive ul.products li.product a.woocommerce-LoopProduct-link img,
  body.post-type-archive-product ul.products li.product a.woocommerce-LoopProduct-link img,
  body.page-id-6 ul.products li.product a.woocommerce-LoopProduct-link img {
    height: 210px;
    max-height: 210px;
  }
}

/* Configurator UX polish. These selectors intentionally outrank the legacy
   shortcode style blocks while keeping the Vue markup untouched. */
.hiddenfence-product-configurator {
  clear: both;
  width: 100%;
  margin-top: clamp(24px, 4vw, 48px);
}

body.single-product .wp-block-columns:has(.hiddenfence-product-configurator) {
  align-items: flex-start;
  flex-wrap: wrap;
}

body.single-product .wp-block-column:has(.hiddenfence-product-configurator) {
  flex: 1 1 480px !important;
  min-width: min(100%, 420px);
}

body.single-product .hiddenfence-product-configurator,
body.single-product .hiddenfence-product-configurator #app,
body.single-product .hiddenfence-product-configurator #app .q {
  width: 100%;
  max-width: 100%;
}

body.single-product .woocommerce-product-gallery,
body.single-product .woocommerce-product-gallery__image,
body.single-product .woocommerce-product-gallery__image a,
body.single-product .woocommerce-product-gallery__image img {
  max-width: 100%;
}

body.single-product .woocommerce-product-gallery__wrapper {
  max-width: none !important;
}

body.single-product .woocommerce-product-gallery .flex-viewport {
  max-width: 100%;
}

body.single-product .woocommerce-product-gallery {
  overflow: hidden;
}

body.single-product .woocommerce-product-gallery .zoomImg {
  display: none !important;
}

body.single-product iframe {
  max-width: 100%;
}

body #app {
  width: var(--hf-page-shell);
  max-width: 1120px;
  min-height: auto;
  margin-inline: auto;
  padding: clamp(12px, 3vw, 28px) 0;
  color: var(--hf-ink);
  scroll-behavior: smooth;
}

body #app,
body #app * {
  box-sizing: border-box;
}

body #app > h2,
body #app > p {
  max-width: 720px;
  margin-inline: auto;
}

body #app .q {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto clamp(18px, 3vw, 28px);
  padding: clamp(22px, 3.4vw, 40px);
  border: 1px solid rgba(0, 121, 92, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow:
    rgba(0, 70, 53, 0.08) 0 18px 45px,
    rgba(0, 70, 53, 0.08) 0 0 0 1px;
  text-align: center;
}

body #app .q img {
  max-width: 100%;
  height: auto;
}

body #app .q::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--hf-teal);
  opacity: 0.72;
}

body #app .q.complete {
  border-color: rgba(0, 121, 92, 0.34);
  box-shadow:
    rgba(0, 70, 53, 0.10) 0 20px 54px,
    rgba(0, 121, 92, 0.26) 0 0 0 1px;
}

body #app .q.complete .flex {
  align-items: center;
}

body #app .q.complete .left,
body #app .q.complete .right {
  text-align: left;
}

body #app .q.complete .left img,
body #app .q.complete .right img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

body #app .q h1,
body #app .q h2,
body #app .q h3 {
  max-width: 820px;
  margin: 0 auto 16px;
  color: var(--hf-teal);
  text-align: center;
}

body #app .q h1 {
  font-size: clamp(22px, 2.2vw, 30px);
}

body #app .q h2 {
  font-size: clamp(19px, 1.8vw, 25px);
}

body #app .q h3 {
  font-size: clamp(17px, 1.5vw, 22px);
}

body #app .q p {
  max-width: 760px;
  margin: 0 auto 14px;
}

body #app .red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto 16px;
  padding: 8px 12px;
  border: 1px solid rgba(194, 82, 36, 0.18);
  border-radius: 6px;
  background: #fff6ef;
  color: #94441e;
  font-size: 13px;
  font-weight: 650;
}

body #app .red p {
  margin: 0;
}

body #app ul.radiolist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  align-items: stretch;
  justify-content: center;
  width: min(100%, 920px);
  margin: 18px auto 22px;
  padding: 0;
  gap: 10px;
}

body #app ul.radiolist li {
  display: flex;
  min-width: 0;
  margin: 0;
  list-style: none;
}

body #app ul.radiolist label {
  display: flex;
  position: relative;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 12px 10px;
  border: 1px solid var(--hf-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--hf-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  box-shadow: rgba(0, 70, 53, 0.06) 0 1px 0;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

body #app ul.radiolist label:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 121, 92, 0.34);
  background: #fbfefd;
  box-shadow: rgba(0, 70, 53, 0.12) 0 10px 24px;
}

body #app ul.radiolist label:active {
  transform: translateY(0);
}

body #app ul.radiolist label.selected {
  border-color: var(--hf-teal);
  background: var(--hf-sage);
  color: var(--hf-ink);
  box-shadow:
    rgba(0, 121, 92, 0.22) 0 0 0 1px,
    rgba(0, 70, 53, 0.12) 0 12px 26px;
}

body #app ul.radiolist label.selected::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--hf-teal);
  box-shadow: 0 0 0 3px rgba(0, 121, 92, 0.12);
}

body #app ul.radiolist input[type="radio"] {
  accent-color: var(--hf-teal);
}

body #app ul.radiolist input.img {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
}

body #app ul.systems,
body #app ul.collartype {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  width: min(100%, 980px);
}

body #app ul.systems label,
body #app ul.collartype label {
  justify-content: flex-start;
  min-height: 100%;
  padding: 16px;
}

body #app ul.systems img,
body #app ul.collartype img {
  width: min(100%, 220px);
  max-height: 170px;
  object-fit: contain;
  margin: 0 auto 8px;
}

body #app ul.collartype label div,
body #app ul.systems label div {
  width: 100%;
  color: var(--hf-eucalyptus);
  font-size: 13px;
  font-weight: 500;
  text-align: left;
}

body #app ul.collartype label div ul,
body #app ul.systems label div ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

body #app .colours {
  width: 46px;
  height: 46px;
  max-height: 46px;
  object-fit: cover;
  border-radius: 8px;
}

body #app img.collar {
  width: auto;
  max-width: 96px;
  max-height: 96px;
  object-fit: contain;
}

body #app .flex {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
  align-items: start;
}

body #app .left,
body #app .right {
  min-width: 0;
  flex: initial;
}

body #app .collarsetting {
  margin: 0 0 22px;
  padding: 18px;
  border: 1px solid rgba(0, 121, 92, 0.14);
  border-radius: 8px;
  background: rgba(234, 243, 239, 0.42);
}

body #app .dragtorotate {
  position: static;
  z-index: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  margin: 0 0 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--hf-sage);
  color: var(--hf-ink);
  font-size: 12px;
  font-weight: 650;
}

body #app .dragtorotate svg {
  flex: 0 0 auto;
}

body #app .productitems {
  width: min(100%, 920px);
  max-width: 920px;
  margin: 18px auto 24px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--hf-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: rgba(0, 70, 53, 0.08) 0 12px 28px;
}

body #app .productitems th,
body #app .productitems td {
  padding: 12px;
  border-bottom: 1px solid var(--hf-line);
  color: var(--hf-ink);
  font-size: 14px;
  vertical-align: middle;
}

body #app .productitems tr:first-child td {
  background: var(--hf-sage);
  color: var(--hf-teal);
  font-weight: 750;
}

body #app .productitems tr:last-child td {
  border-bottom: 0;
  background: rgba(234, 243, 239, 0.45);
}

body #app .productitems td:first-child {
  width: 108px;
  text-align: center;
}

body #app .form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  width: min(100%, 760px);
  max-width: 760px;
}

body #app .form > p,
body #app .form > div {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: left;
}

body #app .form textarea,
body #app textarea {
  min-height: 120px;
}

body #app input[type="text"],
body #app input[type="email"],
body #app input[type="tel"],
body #app input[type="number"],
body #app select,
body #app textarea {
  border: 1px solid rgba(0, 121, 92, 0.16);
  background: #fff;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

body #app input[type="text"]:focus,
body #app input[type="email"]:focus,
body #app input[type="tel"]:focus,
body #app input[type="number"]:focus,
body #app select:focus,
body #app textarea:focus {
  outline: none;
  border-color: var(--hf-teal);
  background: #fff;
  box-shadow:
    rgba(0, 121, 92, 0.24) 0 0 0 3px,
    rgba(0, 70, 53, 0.10) 0 10px 24px;
}

body #app input[type="number"] {
  max-width: 240px;
  text-align: center;
}

body #app .button,
body #app button.button,
body #app a.button {
  min-height: 42px;
  padding: 11px 18px;
  border-radius: 8px;
  background: var(--hf-teal);
  box-shadow:
    rgba(0, 70, 53, 0.16) 0 12px 24px,
    rgba(255, 255, 255, 0.18) 0 1px 0 inset;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

body #app .button:hover,
body #app button.button:hover,
body #app a.button:hover {
  transform: translateY(-1px);
  background: var(--hf-teal-hover);
  box-shadow:
    rgba(0, 70, 53, 0.22) 0 16px 30px,
    rgba(255, 255, 255, 0.20) 0 1px 0 inset;
}

body #app .button:active,
body #app button.button:active,
body #app a.button:active {
  transform: translateY(0);
}

body #app .button:focus-visible,
body #app button.button:focus-visible,
body #app a.button:focus-visible,
body #app a:focus-visible,
body #app label:focus-within {
  outline: 3px solid rgba(0, 121, 92, 0.25);
  outline-offset: 3px;
}

body #app button[disabled],
body #app .button[disabled],
body #app button.button:disabled {
  transform: none;
  background: #d7e0dc;
  color: #81918c;
  box-shadow: none;
  cursor: wait;
}

body #app .previous {
  margin-top: 16px;
  text-align: left;
}

body #app .previous a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--hf-eucalyptus);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

body #app .previous a:hover {
  color: var(--hf-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.single-product .hiddenfence-product-configurator {
  margin-top: clamp(18px, 3vw, 34px);
}

body.single-product .hiddenfence-product-configurator::before {
  content: "Configure your system";
  display: block;
  margin: 0 0 10px;
  color: var(--hf-teal);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 800;
  line-height: 1.15;
}

body.single-product .hiddenfence-product-configurator #app {
  width: 100%;
  max-width: 100%;
  padding: 0;
  counter-reset: hf-config-step;
}

body.single-product .hiddenfence-product-configurator #app > h2,
body.single-product .hiddenfence-product-configurator #app > p {
  max-width: none;
  margin-inline: 0;
  text-align: left;
}

body.single-product .hiddenfence-product-configurator #app .q {
  width: 100%;
  max-width: 100%;
  margin: 0 0 14px;
  padding: clamp(18px, 2.4vw, 28px);
  border-color: rgba(0, 121, 92, 0.18);
  background:
    linear-gradient(180deg, rgba(247, 251, 249, 0.96), #fff 160px);
  box-shadow:
    rgba(0, 70, 53, 0.08) 0 12px 26px,
    rgba(0, 70, 53, 0.07) 0 0 0 1px;
  text-align: left;
}

body.single-product .hiddenfence-product-configurator #app .q:not(.complete) {
  counter-increment: hf-config-step;
  border-color: rgba(0, 121, 92, 0.30);
  box-shadow:
    rgba(0, 70, 53, 0.12) 0 18px 36px,
    rgba(0, 121, 92, 0.16) 0 0 0 1px;
}

body.single-product .hiddenfence-product-configurator #app .q::before {
  height: 3px;
}

body.single-product .hiddenfence-product-configurator #app .q:not(.complete)::after,
body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected)::after {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

body.single-product .hiddenfence-product-configurator #app .q:not(.complete)::after {
  content: "Next";
  background: #e7f5ef;
  color: var(--hf-teal);
}

body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected)::after {
  content: "Selected";
  background: var(--hf-teal);
  color: #fff;
}

body.single-product .hiddenfence-product-configurator #app .q h1,
body.single-product .hiddenfence-product-configurator #app .q h2,
body.single-product .hiddenfence-product-configurator #app .q h3 {
  max-width: none;
  margin: 0 72px 14px 0;
  text-align: left;
}

body.single-product .hiddenfence-product-configurator #app .q h1 {
  font-size: clamp(20px, 1.8vw, 25px);
}

body.single-product .hiddenfence-product-configurator #app .q h2 {
  font-size: clamp(18px, 1.55vw, 22px);
}

body.single-product .hiddenfence-product-configurator #app .q h3 {
  font-size: clamp(16px, 1.35vw, 19px);
}

body.single-product .hiddenfence-product-configurator #app .q p {
  max-width: none;
  margin-inline: 0;
  font-size: 14px;
  line-height: 1.55;
}

body.single-product .hiddenfence-product-configurator #app .q .flex:has(.left.desktop:empty) {
  grid-template-columns: 1fr;
  gap: 0;
}

body.single-product .hiddenfence-product-configurator #app .q .left.desktop:empty {
  display: none;
}

body.single-product .hiddenfence-product-configurator #app .q .right {
  width: 100%;
}

body.single-product .hiddenfence-product-configurator #app .red {
  justify-content: flex-start;
  margin: 0 0 14px;
  border-color: rgba(194, 82, 36, 0.16);
  background: #fff7f0;
}

body.single-product .hiddenfence-product-configurator #app ul.radiolist {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin: 16px 0 18px;
  gap: 9px;
}

body.single-product .hiddenfence-product-configurator #app ul.radiolist label {
  min-height: 50px;
  padding: 11px 9px;
  background: #fff;
}

body.single-product .hiddenfence-product-configurator #app ul.systems,
body.single-product .hiddenfence-product-configurator #app ul.collartype {
  grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
  width: 100%;
  margin-top: 16px;
}

body.single-product .hiddenfence-product-configurator #app ul.systems label,
body.single-product .hiddenfence-product-configurator #app ul.collartype label {
  min-height: 0;
  padding: 14px;
  text-align: center;
}

body.single-product .hiddenfence-product-configurator #app ul.systems img,
body.single-product .hiddenfence-product-configurator #app ul.collartype img {
  width: min(100%, 170px);
  max-height: 116px;
  margin-bottom: 10px;
}

body.single-product .hiddenfence-product-configurator #app ul.systems label div,
body.single-product .hiddenfence-product-configurator #app ul.collartype label div {
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

body.single-product .hiddenfence-product-configurator #app .collarsetting {
  margin-bottom: 12px;
  padding: 14px;
}

body.single-product .hiddenfence-product-configurator #app .collarsetting h3 {
  margin-right: 0;
  margin-bottom: 10px;
}

body.single-product .hiddenfence-product-configurator #app .collarsetting ul.collartype {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.single-product .hiddenfence-product-configurator #app .collarsetting ul.collartype label {
  padding: 12px;
}

body.single-product .hiddenfence-product-configurator #app .collarsetting ul.collartype img {
  width: min(100%, 108px);
  max-height: 74px;
}

body.single-product .hiddenfence-product-configurator #app .collarsetting ul.collartype .dotpoints {
  margin-top: 7px;
  padding-left: 15px;
  text-align: left;
}

body.single-product .hiddenfence-product-configurator #app .collarsetting ul.collartype .dotpoints li {
  font-size: 11px;
  line-height: 1.28;
}

body.single-product .hiddenfence-product-configurator #app .collarsetting ul.collartype .dotpoints li:nth-child(n+3) {
  display: none;
}

body.single-product .hiddenfence-product-configurator #app .collarsetting .price {
  margin-top: 8px;
  color: var(--hf-teal);
  font-size: 13px;
  font-weight: 800;
}

body.single-product .hiddenfence-product-configurator #app .collarsetting ul.radiolist:not(.collartype) {
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 8px;
}

body.single-product .hiddenfence-product-configurator #app .collarsetting ul.radiolist:not(.collartype) label {
  min-height: 88px;
  padding: 9px 7px;
  font-size: 12px;
}

body.single-product .hiddenfence-product-configurator #app .collarsetting .colours {
  width: 42px;
  height: 34px;
  max-height: 34px;
  object-fit: contain;
}

body.single-product .hiddenfence-product-configurator #app .collarsetting img.collar {
  display: block;
  max-width: min(100%, 190px);
  max-height: 150px;
  margin-inline: auto;
}

body.single-product .hiddenfence-product-configurator #app .collarsetting .spritespin-instance {
  width: min(100%, 190px) !important;
  height: 190px !important;
  margin: 10px auto 0;
  border: 1px solid rgba(0, 121, 92, 0.10);
  border-radius: 8px;
  background: #fff;
}

body.single-product .hiddenfence-product-configurator #app .collarsetting .spritespin-stage,
body.single-product .hiddenfence-product-configurator #app .collarsetting .spritespin-canvas {
  width: 100% !important;
  height: 100% !important;
}

body.single-product .hiddenfence-product-configurator #app ul.radiolist label.selected,
body.single-product .hiddenfence-product-configurator #app ul.systems label.selected,
body.single-product .hiddenfence-product-configurator #app ul.collartype label.selected {
  border-color: var(--hf-teal);
  background: #eef8f4;
}

body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected) {
  padding: 16px;
  border-color: rgba(0, 121, 92, 0.24);
  background: #f8fcfa;
  box-shadow: rgba(0, 70, 53, 0.08) 0 8px 20px;
}

body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected) h1,
body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected) h2,
body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected) h3 {
  margin-bottom: 10px;
  color: var(--hf-eucalyptus);
  font-size: 14px;
  line-height: 1.25;
}

body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected) .red,
body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected) .previous,
body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected) button,
body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected) a.button {
  display: none;
}

body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected) ul.radiolist,
body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected) ul.systems,
body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected) ul.collartype {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  gap: 0;
}

body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected) li:not(:has(label.selected)) {
  display: none;
}

body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected) label.selected {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  box-shadow: none;
  text-align: left;
}

body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected) label.selected::after {
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected) label.selected img {
  flex: 0 0 58px;
  width: 58px;
  max-height: 44px;
  margin: 0;
}

body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected) label.selected div {
  font-size: 12px;
  line-height: 1.35;
  text-align: left;
}

body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected) label.selected:has(img) {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding-right: 38px;
  font-size: 0;
}

body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected) label.selected:has(img) br {
  display: none;
}

body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected) label.selected:has(img) strong {
  grid-column: 2;
  color: var(--hf-ink);
  font-size: 13px;
  line-height: 1.2;
}

body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected) label.selected:has(img) .price {
  grid-column: 3;
  margin: 0;
  color: var(--hf-teal);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

body.single-product .hiddenfence-product-configurator #app .q.complete:has(.dotpoints):not(:has(label)),
body.single-product .hiddenfence-product-configurator #app .q.complete:has(.textleft):not(:has(label)) {
  display: none;
}

body.single-product .hiddenfence-product-configurator #app .button,
body.single-product .hiddenfence-product-configurator #app button.button,
body.single-product .hiddenfence-product-configurator #app a.button {
  min-width: 132px;
}

body.single-product .hiddenfence-product-configurator #app .previous a {
  padding: 7px 10px;
  border: 1px solid rgba(0, 121, 92, 0.12);
  border-radius: 999px;
  background: #f4faf7;
}

body.single-product .hiddenfence-product-configurator #app .productitems {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}

body.single-product .hiddenfence-product-configurator #app .form {
  width: 100%;
  max-width: 100%;
}

body #app .fade-enter-active,
body #app .fade-leave-active {
  transition: opacity 220ms ease, transform 220ms ease;
}

body #app .fade-enter,
body #app .fade-leave-to {
  opacity: 0;
  transform: translateY(8px);
}

@media (max-width: 700px) {
  .hf-header__inner {
    min-height: 68px;
  }

  .hf-header .wp-block-shortcode {
    display: none;
  }

  p,
  li {
    font-size: 14px;
    line-height: 1.55;
  }

  body #app {
    padding-inline: 0;
  }

  body #app .q {
    padding: 20px 14px 22px;
    border-radius: 8px;
  }

  body #app ul.radiolist,
  body #app ul.systems,
  body #app ul.collartype {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body #app ul.systems,
  body #app ul.collartype {
    grid-template-columns: 1fr;
  }

  body.single-product .hiddenfence-product-configurator #app .q {
    padding: 18px 12px 20px;
  }

  body.single-product .hiddenfence-product-configurator #app .q h1,
  body.single-product .hiddenfence-product-configurator #app .q h2,
  body.single-product .hiddenfence-product-configurator #app .q h3 {
    margin-right: 56px;
  }

  body.single-product .hiddenfence-product-configurator #app ul.systems label,
  body.single-product .hiddenfence-product-configurator #app ul.collartype label {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    min-height: 76px;
    padding: 10px;
    font-size: 0;
    text-align: left;
  }

  body.single-product .hiddenfence-product-configurator #app ul.systems label br,
  body.single-product .hiddenfence-product-configurator #app ul.collartype label br {
    display: none;
  }

  body.single-product .hiddenfence-product-configurator #app ul.systems img,
  body.single-product .hiddenfence-product-configurator #app ul.collartype img {
    grid-column: 1;
    width: 58px;
    max-height: 48px;
    margin: 0;
  }

  body.single-product .hiddenfence-product-configurator #app ul.systems label strong,
  body.single-product .hiddenfence-product-configurator #app ul.collartype label strong {
    grid-column: 2;
    color: var(--hf-ink);
    font-size: 13px;
    line-height: 1.18;
  }

  body.single-product .hiddenfence-product-configurator #app ul.systems label div:not(.price),
  body.single-product .hiddenfence-product-configurator #app ul.collartype label div:not(.price) {
    display: none;
  }

  body.single-product .hiddenfence-product-configurator #app ul.systems label .price,
  body.single-product .hiddenfence-product-configurator #app ul.collartype label .price {
    grid-column: 3;
    margin: 0 22px 0 0;
    color: var(--hf-teal);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
  }

  body.single-product .hiddenfence-product-configurator #app .collarsetting ul.radiolist:not(.collartype) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.single-product .hiddenfence-product-configurator #app .collarsetting .spritespin-instance {
    width: 150px !important;
    height: 150px !important;
  }

  body #app .flex,
  body #app .form {
    grid-template-columns: 1fr;
  }

  body #app .productitems {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  body #app .button,
  body #app button.button,
  body #app a.button {
    width: 100%;
  }
}

/* Homepage product showcase. */
body.home.page-id-35241 main.wp-block-group > .wp-block-group:first-child {
  display: none;
}

body.home.page-id-35241 .entry-content {
  margin-top: 0;
}

.hf-home-showcase {
  --hf-home-shell: min(1120px, calc(100vw - 32px));
  box-sizing: border-box;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc((100vw - 100%) / -2) !important;
  margin-right: calc((100vw - 100%) / -2) !important;
  overflow-x: clip;
  color: var(--hf-ink);
}

.hf-home-showcase a {
  color: inherit;
}

.hf-home-shell {
  width: var(--hf-home-shell);
  margin-inline: auto;
}

.hf-home-hero {
  margin-top: 24px;
  padding: 58px 0 74px;
  background: #f7fbf9;
  border-block: 1px solid rgba(0, 121, 92, 0.10);
}

.hf-home-hero__intro,
.hf-home-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.hf-home-kicker {
  margin: 0 0 10px;
  color: var(--hf-eucalyptus);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hf-home-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--hf-teal);
  font-size: 48px;
  line-height: 1.02;
  text-wrap: balance;
}

.hf-home-lede,
.hf-home-section-heading p {
  max-width: 540px;
  margin: 0;
  color: var(--hf-eucalyptus);
  font-size: 16px;
  line-height: 1.65;
}

.hf-home-system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.hf-home-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(0, 121, 92, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: rgba(0, 70, 53, 0.07) 0 16px 38px;
  text-decoration: none;
}

.hf-home-card--feature {
  grid-column: span 2;
}

.hf-home-card__media {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 16px;
  background: #FFF;
  text-decoration: none;
}

.hf-home-card--feature .hf-home-card__media {
  min-height: 260px;
}

.hf-home-card__media img {
  display: block;
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.hf-home-card__media:hover img {
  transform: translateY(-2px);
}

.hf-home-card--feature .hf-home-card__media img {
  max-height: 340px;
}

.hf-home-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}

.hf-home-card__eyebrow {
  color: var(--hf-eucalyptus);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hf-home-card h2,
.hf-home-card h3 {
  margin: 0;
  color: var(--hf-teal);
  font-size: 21px;
  line-height: 1.18;
  text-wrap: balance;
}

.hf-home-card--feature h2 {
  font-size: 23px;
}

.hf-home-card p {
  margin: 0;
  color: var(--hf-ink);
  font-size: 14px;
  line-height: 1.58;
}

.hf-home-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
}

.hf-home-action {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 7px;
  background: var(--hf-teal);
  color: #fff !important;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.hf-home-action:hover {
  background: var(--hf-teal-hover);
  transform: translateY(-1px);
}

.hf-home-action--secondary {
  background: #e6f1ed;
  color: var(--hf-teal) !important;
}

.hf-home-action--secondary:hover {
  background: #d8e8e3;
}

.hf-home-training {
  padding: 76px 0;
  background: #fff;
}

.hf-home-section-heading h2 {
  margin: 0;
  color: var(--hf-teal);
  font-size: 34px;
  line-height: 1.08;
}

.hf-home-training-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hf-home-training .hf-home-card {
  box-shadow: none;
}

.hf-home-training .hf-home-card__media {
  min-height: 170px;
  background: #FFF;
}

.hf-home-training .hf-home-card__media img {
  max-height: 170px;
}

.hf-home-trust {
  padding: 54px 0;
  background: #f7fbf9;
  border-top: 1px solid rgba(0, 121, 92, 0.10);
}

.hf-home-trust__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 1fr);
  gap: 48px;
  align-items: start;
}

.hf-home-trust h2 {
  margin: 0;
  color: var(--hf-teal);
  font-size: 29px;
  line-height: 1.14;
}

.hf-home-trust p {
  margin: 0 0 12px;
  color: var(--hf-ink);
  line-height: 1.65;
}

.hf-home-faq {
  padding: 72px 0 82px;
  background: #fff;
  border-top: 1px solid rgba(0, 121, 92, 0.10);
}

.hf-home-faq__heading {
  margin-bottom: 30px;
}

.hf-home-faq__heading h2 {
  margin: 0;
  color: var(--hf-teal);
  font-size: 34px;
  line-height: 1.08;
}

.hf-home-faq__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.hf-home-faq__item {
  overflow: hidden;
  border: 1px solid rgba(0, 121, 92, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: rgba(0, 70, 53, 0.05) 0 10px 28px;
}

.hf-home-faq__item[open] {
  box-shadow: rgba(0, 70, 53, 0.08) 0 16px 38px;
}

.hf-home-faq__item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 16px 48px 16px 18px;
  color: var(--hf-teal);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}

.hf-home-faq__item summary::-webkit-details-marker {
  display: none;
}

.hf-home-faq__item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e6f1ed;
  color: var(--hf-teal);
  font-size: 18px;
  line-height: 1;
  transform: translateY(-50%);
}

.hf-home-faq__item[open] summary::after {
  content: "-";
}

.hf-home-faq__answer {
  padding: 0 18px 20px;
  color: var(--hf-ink);
}

.hf-home-faq__answer p,
.hf-home-faq__answer li {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.62;
}

.hf-home-faq__answer ul,
.hf-home-faq__answer ol {
  margin: 0 0 12px;
  padding-left: 20px;
}

.hf-home-faq__answer a {
  color: var(--hf-teal);
}

body.page-id-379 .entry-content > .hf-pt4-faq__title {
  max-width: var(--hf-page-shell);
  margin: 68px auto 10px;
  color: var(--hf-teal);
  font-size: 34px;
  line-height: 1.08;
}

body.page-id-379 .entry-content > .hf-pt4-faq__intro {
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--hf-eucalyptus);
  font-size: 15px;
  line-height: 1.62;
}

body.page-id-379 .hf-pt4-faq__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  width: var(--hf-page-shell);
  max-width: 100%;
  margin: 28px auto 72px;
}

body.page-id-379 .hf-pt4-faq__item {
  overflow: hidden;
  border: 1px solid rgba(0, 121, 92, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: rgba(0, 70, 53, 0.05) 0 10px 28px;
}

body.page-id-379 .hf-pt4-faq__item.is-open {
  box-shadow: rgba(0, 70, 53, 0.08) 0 16px 38px;
}

body.page-id-379 .hf-pt4-faq__toggle.collapseomatic {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 58px;
  margin: 0;
  padding: 16px 48px 16px 18px;
  background: transparent !important;
  color: var(--hf-teal);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

body.page-id-379 .hf-pt4-faq__toggle.collapseomatic:hover {
  background: #f6fbf9 !important;
}

body.page-id-379 .hf-pt4-faq__toggle.collapseomatic:focus-visible {
  outline: 2px solid rgba(0, 121, 92, 0.32);
  outline-offset: -4px;
}

body.page-id-379 .hf-pt4-faq__toggle.collapseomatic::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e6f1ed;
  color: var(--hf-teal);
  font-size: 18px;
  line-height: 1;
  transform: translateY(-50%);
}

body.page-id-379 .hf-pt4-faq__item.is-open > .hf-pt4-faq__toggle.collapseomatic::after,
body.page-id-379 .hf-pt4-faq__toggle.colomat-close::after {
  content: "-";
}

body.page-id-379 .hf-pt4-faq__content.collapseomatic_content {
  margin: 0;
  padding: 0 18px 22px;
  border-top: 1px solid rgba(0, 121, 92, 0.10);
  color: var(--hf-ink);
}

body.page-id-379 .hf-pt4-faq__content p,
body.page-id-379 .hf-pt4-faq__content li {
  margin: 0 0 12px;
  color: var(--hf-ink);
  font-size: 14px;
  line-height: 1.62;
}

body.page-id-379 .hf-pt4-faq__content h2,
body.page-id-379 .hf-pt4-faq__content h3,
body.page-id-379 .hf-pt4-faq__content h4 {
  margin: 18px 0 10px;
  color: var(--hf-teal);
  font-size: 18px;
  line-height: 1.2;
}

body.page-id-379 .hf-pt4-faq__content ul,
body.page-id-379 .hf-pt4-faq__content ol {
  margin: 0 0 14px;
  padding-left: 20px;
}

body.page-id-379 .hf-pt4-faq__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 18px auto;
  border-radius: 8px;
}

body.page-id-379 .hf-pt4-faq__content a {
  color: var(--hf-teal);
}

@media (max-width: 980px) {
  .hf-home-hero__intro,
  .hf-home-section-heading,
  .hf-home-trust__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hf-home-hero h1 {
    font-size: 36px;
  }

  .hf-home-system-grid,
  .hf-home-training-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-id-379 .hf-pt4-faq__list {
    grid-template-columns: 1fr;
  }

  .hf-home-card--feature {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .hf-home-showcase {
    --hf-home-shell: min(100% - 28px, 520px);
  }

  .hf-home-hero {
    margin-top: 18px;
    padding: 38px 0 46px;
  }

  .hf-home-hero h1 {
    font-size: 31px;
  }

  .hf-home-section-heading h2 {
    font-size: 28px;
  }

  .hf-home-trust h2 {
    font-size: 24px;
  }

  .hf-home-faq {
    padding: 46px 0 54px;
  }

  .hf-home-faq__heading h2 {
    font-size: 28px;
  }

  body.page-id-379 .entry-content > .hf-pt4-faq__title {
    margin-top: 46px;
    font-size: 28px;
  }

  .hf-home-system-grid,
  .hf-home-training-grid,
  .hf-home-faq__list {
    grid-template-columns: 1fr;
  }

  .hf-home-card--feature {
    grid-column: auto;
  }

  .hf-home-card__media,
  .hf-home-card--feature .hf-home-card__media {
    min-height: 210px;
  }

  .hf-home-card__body {
    padding: 20px;
  }
}

/* Refreshed legacy content pages. */
body.page-id-10,
body.page-id-16,
body.page-id-65,
body.page-id-90 {
  overflow-x: hidden;
  overflow-x: clip;
}

body.page-id-16 main.wp-block-group,
body.page-id-90 main.wp-block-group {
  margin-block-start: 0 !important;
  background:
    linear-gradient(180deg, rgba(239, 249, 245, 0.96) 0, rgba(255, 255, 255, 0) 380px),
    var(--hf-canvas);
}

body.page-id-16 main.wp-block-group > .wp-block-group:first-child,
body.page-id-90 main.wp-block-group > .wp-block-group:first-child {
  margin-block-start: 0;
  padding: clamp(42px, 5vw, 64px) 16px clamp(20px, 3vw, 32px) !important;
}

body.page-id-16 main.wp-block-group > .wp-block-group:first-child .wp-block-spacer,
body.page-id-90 main.wp-block-group > .wp-block-group:first-child .wp-block-spacer {
  display: none !important;
}

body.page-id-16 .wp-block-post-title,
body.page-id-90 .wp-block-post-title {
  margin: 0;
  color: var(--hf-teal);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
}

body.page-id-10 .entry-content,
body.page-id-16 .entry-content,
body.page-id-65 .entry-content,
body.page-id-90 .entry-content {
  margin-block-start: 0;
  padding-bottom: clamp(58px, 8vw, 100px);
}

body.page-id-10 .entry-content > .hf-legacy-page,
body.page-id-16 .entry-content > .hf-legacy-page,
body.page-id-65 .entry-content > .hf-legacy-page,
body.page-id-90 .entry-content > .hf-legacy-page {
  width: var(--hf-page-shell) !important;
  max-width: 1120px !important;
  margin-inline: auto;
  padding-inline: 0 !important;
}

.hf-legacy-page {
  box-sizing: border-box;
  min-width: 0;
  color: var(--hf-eucalyptus);
}

.hf-legacy-page *,
.hf-legacy-page *::before,
.hf-legacy-page *::after {
  box-sizing: border-box;
}

.hf-legacy-section {
  min-width: 0;
  max-width: 100%;
  border: 1px solid rgba(0, 121, 92, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(0, 70, 53, 0.06);
}

.hf-legacy-section--intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.42fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  margin: clamp(24px, 4vw, 42px) 0 clamp(18px, 3vw, 30px);
  padding: clamp(24px, 4vw, 38px);
}

.hf-legacy-page--about .hf-legacy-section--intro,
.hf-legacy-page--distributor-opportunities .hf-legacy-section--intro {
  margin-top: 0;
}

.hf-legacy-section--intro > :not(.hf-legacy-stats) {
  grid-column: 1;
}

.hf-legacy-section--intro h2,
.hf-legacy-section h2 {
  margin: 0 0 14px !important;
  color: var(--hf-teal);
  font-size: clamp(23px, 2.4vw, 31px) !important;
  line-height: 1.1 !important;
  letter-spacing: 0;
}

.hf-legacy-section--intro p,
.hf-legacy-section p,
.hf-legacy-section li,
.hf-legacy-page .wp-block-group p,
.hf-legacy-page .wp-block-group li {
  color: var(--hf-eucalyptus);
  font-size: 15px;
  line-height: 1.64;
}

.hf-legacy-section--intro p:first-child strong,
.hf-legacy-section--intro p:first-child a {
  color: var(--hf-teal);
}

.hf-legacy-stats {
  grid-column: 2;
  grid-row: 1 / span 8;
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 121, 92, 0.16);
  border-radius: 8px;
  background: #eef8f4;
}

.hf-legacy-stats div {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(0, 121, 92, 0.12);
}

.hf-legacy-stats div:last-child {
  border-bottom: 0;
}

.hf-legacy-stats strong {
  display: block;
  color: var(--hf-teal);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.hf-legacy-stats span {
  display: block;
  margin-top: 7px;
  color: #3e5e56;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.hf-legacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.hf-legacy-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 18px;
  border: 1px solid var(--hf-teal);
  border-radius: 8px;
  background: var(--hf-teal);
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none !important;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.hf-legacy-action:hover,
.hf-legacy-action:focus-visible {
  background: #005f49;
  box-shadow: 0 10px 22px rgba(0, 121, 92, 0.18);
  transform: translateY(-1px);
}

.hf-legacy-action--secondary {
  background: #fff;
  color: var(--hf-teal) !important;
}

.hf-legacy-action--secondary:hover,
.hf-legacy-action--secondary:focus-visible {
  background: #eef8f4;
  color: #005f49 !important;
}

.hf-legacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.hf-legacy-grid .hf-legacy-section {
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
}

.hf-legacy-section img.alignright,
.hf-legacy-section img.alignleft,
.hf-legacy-section p > img {
  float: none !important;
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 0 18px !important;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 70, 53, 0.12);
}

.hf-about-quote {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 4px solid var(--hf-teal);
  border-radius: 8px;
  background: #f1faf6;
  color: #173f36 !important;
  font-weight: 650;
}

.hf-about-quote strong,
.hf-about-quote em {
  font-style: normal;
  font-weight: 650;
}

.hf-about-cite {
  margin-top: -4px !important;
  color: var(--hf-teal) !important;
  font-weight: 800;
}

.hf-legacy-section--products {
  margin-top: 16px;
  padding: clamp(24px, 3.4vw, 34px);
}

.hf-legacy-section--products ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  padding: 0 !important;
  list-style: none;
}

.hf-legacy-section--products li {
  min-height: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(0, 121, 92, 0.13);
  border-radius: 8px;
  background: #f7fbf9;
  color: #173f36;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
}

.hf-market-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 16px;
}

.hf-market-card {
  padding: 16px;
  border: 1px solid rgba(0, 121, 92, 0.14);
  border-radius: 8px;
  background: #f7fbf9;
}

.hf-market-card h3 {
  margin: 0 0 8px !important;
  color: #173f36;
  font-size: 15px !important;
  line-height: 1.2 !important;
}

.hf-market-card ul {
  margin: 0;
  padding-left: 18px !important;
}

.hf-market-card li {
  font-size: 14px;
  line-height: 1.45;
}

.hf-legacy-section--support ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.hf-legacy-section--support li + li {
  margin-top: 8px;
}

.hf-testimonials-intro {
  margin-bottom: 18px;
}

.hf-testimonials-intro h2,
.hf-resources-intro h2 {
  max-width: 680px;
}

.hf-testimonials-intro p,
.hf-resources-intro p {
  max-width: 720px;
  margin-bottom: 0;
}

.hf-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hf-testimonial-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(0, 121, 92, 0.15);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 70, 53, 0.06);
}

.hf-testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 5px;
  height: 100%;
  background: var(--hf-teal);
}

.hf-testimonial-card:first-child {
  grid-column: span 2;
}

.hf-testimonial-card__quote {
  margin-top: 0;
  color: var(--hf-eucalyptus);
  font-size: 15px;
  line-height: 1.66;
}

.hf-testimonial-card__quote + .hf-testimonial-card__quote {
  margin-top: 14px;
}

.hf-testimonial-card__author {
  margin: 18px 0 0;
  color: var(--hf-teal) !important;
  font-size: 14px;
  font-weight: 800;
}

.hf-testimonial-card__author em,
.hf-testimonial-card__author strong {
  font-style: normal;
  font-weight: 800;
}

.hf-testimonial-gallery {
  margin-top: 18px;
  padding: clamp(22px, 3vw, 30px);
}

.hf-testimonial-gallery h2 {
  margin-bottom: 20px;
}

.hf-testimonial-gallery p {
  margin: 0;
}

.hf-testimonial-gallery img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.hf-testimonial-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hf-testimonial-gallery h2 {
  grid-column: 1 / -1;
}

.hf-legacy-page--resources > .wp-block-columns {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start !important;
  margin-top: 18px;
  min-width: 0;
  max-width: 100%;
}

.hf-legacy-page--resources .wp-block-column {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.hf-resource-card {
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  margin: 0 !important;
  padding: clamp(22px, 2.8vw, 28px) !important;
  border: 1px solid rgba(0, 121, 92, 0.15);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 70, 53, 0.05);
}

.hf-resource-card h2 {
  margin: 0 0 14px !important;
  color: var(--hf-teal);
  font-size: 23px !important;
  line-height: 1.12 !important;
}

.hf-resource-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 !important;
  list-style: none;
}

.hf-resource-card li {
  margin: 0;
}

.hf-resource-card li + li {
  margin-top: 0 !important;
}

.hf-resource-card a {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 121, 92, 0.1);
  color: #173f36;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.3;
  text-decoration: none;
}

.hf-resource-card li:last-child a,
.hf-resource-card p:last-child a {
  border-bottom: 0;
}

.hf-resource-card a::after {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--hf-teal);
  border-right: 2px solid var(--hf-teal);
  transform: rotate(45deg);
}

.hf-resource-card a:hover,
.hf-resource-card a:focus-visible {
  color: var(--hf-teal);
}

@media (max-width: 900px) {
  body.page-id-10 .entry-content,
  body.page-id-16 .entry-content,
  body.page-id-65 .entry-content,
  body.page-id-90 .entry-content {
    padding-inline: 16px;
  }

  body.page-id-10 .entry-content > .hf-legacy-page,
  body.page-id-16 .entry-content > .hf-legacy-page,
  body.page-id-65 .entry-content > .hf-legacy-page,
  body.page-id-90 .entry-content > .hf-legacy-page {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: 0 !important;
  }

  .hf-legacy-section--intro {
    grid-template-columns: 1fr;
  }

  .hf-legacy-section--intro > :not(.hf-legacy-stats),
  .hf-legacy-stats {
    grid-column: 1;
    grid-row: auto;
  }

  .hf-legacy-grid,
  .hf-testimonial-grid,
  .hf-legacy-page--resources > .wp-block-columns {
    grid-template-columns: 1fr;
  }

  .hf-testimonial-card:first-child {
    grid-column: auto;
  }

  .hf-testimonial-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.page-id-16 main.wp-block-group > .wp-block-group:first-child,
  body.page-id-90 main.wp-block-group > .wp-block-group:first-child {
    padding-top: 32px !important;
  }

  .hf-legacy-section--intro,
  .hf-legacy-grid .hf-legacy-section,
  .hf-legacy-section--products,
  .hf-testimonial-card,
  .hf-testimonial-gallery,
  .hf-resource-card {
    padding: 20px !important;
  }

  .hf-market-grid,
  .hf-legacy-section--products ul,
  .hf-testimonial-gallery {
    grid-template-columns: 1fr;
  }

  .hf-legacy-actions {
    flex-direction: column;
  }

  .hf-legacy-action {
    width: 100%;
  }
}

/* Contact page directory. */
body.page-id-18 {
  overflow-x: hidden;
  overflow-x: clip;
}

body.page-id-18 main.wp-block-group {
  margin-block-start: 0 !important;
  background:
    linear-gradient(180deg, rgba(239, 249, 245, 0.95) 0, rgba(255, 255, 255, 0) 360px),
    var(--hf-canvas);
}

body.page-id-18 main.wp-block-group > .wp-block-group:first-child {
  margin-block-start: 0;
  padding: clamp(42px, 5vw, 64px) 16px clamp(20px, 3vw, 32px) !important;
}

body.page-id-18 main.wp-block-group > .wp-block-group:first-child .wp-block-spacer {
  display: none !important;
}

body.page-id-18 .wp-block-post-title {
  margin: 0;
  color: var(--hf-teal);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
}

body.page-id-18 .entry-content {
  margin-block-start: 0;
  padding-bottom: clamp(56px, 8vw, 96px);
}

body.page-id-18 .entry-content > .hf-contact-page {
  width: min(1120px, calc(100vw - 32px)) !important;
  max-width: 1120px !important;
  margin-inline: auto;
  padding-inline: 0 !important;
}

body.page-id-18 .hf-contact-page > * {
  width: 100%;
  max-width: none !important;
}

.hf-contact-page {
  color: var(--hf-eucalyptus);
}

.hf-contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
  margin-bottom: clamp(42px, 6vw, 70px);
}

.hf-contact-hero__intro,
.hf-contact-office {
  box-sizing: border-box;
  border: 1px solid rgba(0, 121, 92, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(0, 70, 53, 0.08);
}

.hf-contact-hero__intro {
  padding: clamp(26px, 4vw, 42px);
}

.hf-contact-office {
  padding: clamp(22px, 3vw, 32px);
}

.hf-contact-eyebrow {
  margin: 0 0 10px;
  color: var(--hf-teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hf-contact-hero h2,
.hf-contact-directory-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--hf-teal);
  font-size: clamp(27px, 2.7vw, 36px);
  line-height: 1.08;
}

.hf-contact-hero p,
.hf-contact-directory-heading p,
.hf-contact-card p,
.hf-contact-office p {
  font-size: 15px;
  line-height: 1.62;
}

.hf-contact-hero__intro p:last-child,
.hf-contact-office p:last-child,
.hf-contact-card p:last-child {
  margin-bottom: 0;
}

.hf-contact-office h2,
.hf-contact-region h2 {
  margin: 0 0 14px;
  color: var(--hf-teal);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
}

.hf-contact-office strong {
  color: #183f36;
}

.hf-contact-directory-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: clamp(16px, 3vw, 36px);
  align-items: end;
  margin-bottom: 30px;
}

.hf-contact-region {
  margin-top: clamp(32px, 5vw, 58px);
}

.hf-contact-region:first-of-type {
  margin-top: 0;
}

.hf-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hf-contact-card {
  box-sizing: border-box;
  min-height: 100%;
  padding: clamp(20px, 2.4vw, 26px);
  border: 1px solid rgba(0, 121, 92, 0.16);
  border-radius: 8px;
  background: #fff;
}

.hf-contact-card h3 {
  margin: 0 0 10px;
  color: #173f36;
  font-size: 19px;
  line-height: 1.22;
}

.hf-contact-card .hf-contact-areas {
  margin-top: -2px;
  color: #49645d;
  font-size: 14px;
}

body.page-id-18 .entry-content .trackbuttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
}

body.page-id-18 .entry-content .trackbuttons br,
body.page-id-18 .entry-content .trackbuttons script {
  display: none !important;
}

body.page-id-18 .entry-content .trackbuttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid var(--hf-teal);
  border-radius: 7px;
  background: var(--hf-teal);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

body.page-id-18 .entry-content .trackbuttons a:hover,
body.page-id-18 .entry-content .trackbuttons a:focus-visible {
  background: #005f49;
  border-color: #005f49;
  color: #fff;
  transform: translateY(-1px);
}

body.page-id-18 .entry-content .trackbuttons a[href^="mailto:"],
body.page-id-18 .entry-content .trackbuttons a[href*="dog-fence-distributor"],
body.page-id-18 .entry-content .trackbuttons a[href*="hidden-fence-brand-dog-fence"] {
  background: #f0faf6;
  color: var(--hf-teal);
}

body.page-id-18 .entry-content .trackbuttons a[href^="mailto:"]:hover,
body.page-id-18 .entry-content .trackbuttons a[href^="mailto:"]:focus-visible,
body.page-id-18 .entry-content .trackbuttons a[href*="dog-fence-distributor"]:hover,
body.page-id-18 .entry-content .trackbuttons a[href*="dog-fence-distributor"]:focus-visible,
body.page-id-18 .entry-content .trackbuttons a[href*="hidden-fence-brand-dog-fence"]:hover,
body.page-id-18 .entry-content .trackbuttons a[href*="hidden-fence-brand-dog-fence"]:focus-visible {
  background: var(--hf-teal);
  color: #fff;
}

/* Legacy page refresh for ordinary content pages. */
body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content {
  --hf-page-width: var(--hf-page-shell);
  --hf-page-copy: var(--hf-page-shell);
  padding-bottom: clamp(56px, 8vw, 96px);
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content > :where(p, ul, ol, h2, h3, h4, h5, h6, figure, table, .wp-block-image, .wp-block-buttons, .wp-block-table, .wp-block-cover, .wp-block-group, .wp-block-columns):not(.alignfull):not(.alignwide):not(.hf-contact-page):not(.hf-home-showcase) {
  width: var(--hf-page-copy);
  max-width: var(--hf-page-copy) !important;
  margin-left: auto;
  margin-right: auto;
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content > :where(.wp-block-columns, .wp-block-cover, .wp-block-group, .wp-block-table, figure, .wp-block-image):not(.alignfull):not(.alignwide) {
  width: var(--hf-page-width);
  max-width: var(--hf-page-width) !important;
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content > :first-child {
  margin-top: clamp(18px, 3vw, 34px);
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content :where(p, li) {
  color: var(--hf-eucalyptus);
  font-size: 15px;
  line-height: 1.68;
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content :where(h2, h3, h4, h5, h6) {
  color: var(--hf-teal);
  text-wrap: balance;
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content :where(h2, h3, h4, h5, h6):empty {
  display: none;
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content h2 {
  margin-top: clamp(34px, 5vw, 58px);
  margin-bottom: 14px;
  font-size: clamp(25px, 2.3vw, 33px);
  line-height: 1.12;
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content h3 {
  margin-top: clamp(26px, 4vw, 44px);
  margin-bottom: 10px;
  color: #173f36;
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.2;
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content h4 {
  margin-top: 24px;
  margin-bottom: 8px;
  color: #214a41;
  font-size: 17px;
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content :where(ul, ol) {
  padding-left: 1.25em;
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content li + li {
  margin-top: 6px;
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content :where(strong, b) {
  color: var(--hf-ink);
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content :where(.wp-block-image, figure) {
  margin-top: clamp(24px, 4vw, 42px);
  margin-bottom: clamp(24px, 4vw, 42px);
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content :where(.wp-block-image img, figure img, p img) {
  max-width: 100%;
  height: auto;
  border-radius: var(--hf-radius);
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content .wp-block-columns {
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  margin-top: clamp(28px, 5vw, 56px);
  margin-bottom: clamp(28px, 5vw, 56px);
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content .wp-block-column {
  min-width: 0;
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content :where(.wp-block-cover, .wp-block-group.has-background) {
  overflow: hidden;
  border-radius: var(--hf-radius);
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content .wp-block-table {
  margin-top: clamp(24px, 4vw, 42px);
  margin-bottom: clamp(24px, 4vw, 42px);
  overflow-x: auto;
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content table {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 121, 92, 0.16);
  border-radius: var(--hf-radius);
  background: #fff;
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content :where(th, td) {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0, 121, 92, 0.12);
  color: var(--hf-eucalyptus);
  font-size: 14px;
  line-height: 1.45;
  vertical-align: top;
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content th {
  background: #eff8f4;
  color: var(--hf-ink);
  font-weight: 800;
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content tr:last-child :where(th, td) {
  border-bottom: 0;
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content :where(.wp-block-button__link, a.button, .button) {
  min-height: 40px;
  padding: 10px 18px;
  border-radius: var(--hf-radius);
  background: var(--hf-teal);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content :where(.wp-block-button__link, a.button, .button):hover,
body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content :where(.wp-block-button__link, a.button, .button):focus-visible {
  background: #005f49;
  color: #fff;
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content :where(#map_canvas, .map_canvas) {
  box-sizing: border-box;
  width: 100% !important;
  max-width: 100%;
  min-height: 320px;
  overflow: hidden !important;
  border-radius: var(--hf-radius);
  background: #eff8f4;
}

body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content :where(.ezcol, .ezcol-one-half, .ezcol-one-third, .ezcol-two-third) {
  box-sizing: border-box;
  max-width: 100%;
}

@media (max-width: 880px) {
  .hf-contact-hero,
  .hf-contact-directory-heading,
  .hf-contact-grid {
    grid-template-columns: 1fr;
  }

  body.page-id-18 .entry-content > .hf-contact-page {
    width: min(calc(100vw - 28px), 620px) !important;
    margin-left: calc((100vw - 100%) / -2 + 14px) !important;
    margin-right: calc((100vw - 100%) / -2 + 14px) !important;
  }
}

@media (max-width: 520px) {
  body.page-id-18 main.wp-block-group > .wp-block-group:first-child {
    padding-top: 34px !important;
  }

  .hf-contact-hero__intro,
  .hf-contact-office,
  .hf-contact-card {
    padding: 20px;
  }

  body.page-id-18 .entry-content .trackbuttons a {
    width: 100%;
  }
}

@media (max-width: 720px) {
  body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content {
    --hf-page-width: min(680px, calc(100vw - 32px));
    --hf-page-copy: min(680px, calc(100vw - 32px));
  }

  body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content .wp-block-columns {
    gap: 18px;
  }

  body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content :where(.ezcol, .ezcol-one-half, .ezcol-one-third, .ezcol-two-third) {
    float: none !important;
    width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content :where(table, .featureTable) {
    table-layout: fixed;
  }

  body.page:not(.home):not(.woocommerce-page):not(.page-id-18):not(.page-id-34055):not(.page-id-39466) .entry-content :where(th, td) {
    padding: 10px 12px;
    overflow-wrap: anywhere;
  }

  body.woocommerce-page .wc-block-grid__products,
  body.woocommerce-page .wc-block-grid__product {
    box-sizing: border-box;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body.woocommerce-page .wc-block-grid__products {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Restore the legacy staggered "Hidden Fence your way" step animation. */
@keyframes hfStepFadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

body.page-id-3902 .entry-content .steps {
  box-sizing: border-box;
  width: min(1200px, calc(100vw - 64px)) !important;
  max-width: 1200px !important;
  min-height: 382px;
  margin: clamp(30px, 4vw, 44px) auto 26px !important;
  padding: 40px 0 !important;
  overflow: visible;
  clear: both;
}

body.page-id-3902 .entry-content .steps::after {
  content: "";
  display: table;
  clear: both;
}

body.page-id-3902 .entry-content .steps > div {
  position: relative;
  display: block;
  float: left;
  max-width: none;
}

body.page-id-3902 .entry-content .steps img {
  display: block;
  max-width: none !important;
  height: auto;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.page-id-3902 .entry-content .steps .step1 {
  width: 283px !important;
  margin: 0 0 0 -30px !important;
}

body.page-id-3902 .entry-content .steps .step2 {
  width: 189px !important;
  margin: 100px 0 0 -30px !important;
}

body.page-id-3902 .entry-content .steps .step3 {
  width: 190px !important;
  margin: 0 0 0 -15px !important;
}

body.page-id-3902 .entry-content .steps .step4 {
  width: 186px !important;
  margin: 100px 0 0 -20px !important;
}

body.page-id-3902 .entry-content .steps .step5 {
  width: 192px !important;
  margin: 0 0 0 -15px !important;
}

body.page-id-3902 .entry-content .steps .step6 {
  width: 256px !important;
  margin: 100px 0 0 -15px !important;
}

body.page-id-3902 .entry-content .steps .delay-1s {
  animation-delay: 1s;
}

body.page-id-3902 .entry-content .steps .delay-2s {
  animation-delay: 2s;
}

body.page-id-3902 .entry-content .steps .delay-3s {
  animation-delay: 3s;
}

body.page-id-3902 .entry-content .steps .delay-4s {
  animation-delay: 4s;
}

body.page-id-3902 .entry-content .steps .delay-5s {
  animation-delay: 5s;
}

html.hf-steps-js body.page-id-3902 .entry-content .steps .wp3 {
  opacity: 0;
  transform: translate3d(-20px, 0, 0);
  will-change: opacity, transform;
}

html.hf-steps-js body.page-id-3902 .entry-content .steps .wp3.animated {
  opacity: 1;
  animation-name: hfStepFadeInLeft;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

@media (prefers-reduced-motion: reduce) {
  html.hf-steps-js body.page-id-3902 .entry-content .steps .wp3 {
    opacity: 1;
    transform: none;
  }

  html.hf-steps-js body.page-id-3902 .entry-content .steps .wp3.animated {
    animation: none;
  }
}

@media (max-width: 1220px) {
  body.page-id-3902 .entry-content .steps {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: center;
    align-items: start;
    gap: 28px 22px;
    width: min(900px, calc(100vw - 48px)) !important;
    min-height: auto;
    padding: 30px 0 !important;
  }

  body.page-id-3902 .entry-content .steps > div {
    float: none;
    margin: 0 !important;
  }

  body.page-id-3902 .entry-content .steps .step2,
  body.page-id-3902 .entry-content .steps .step4,
  body.page-id-3902 .entry-content .steps .step6 {
    margin-top: 56px !important;
  }
}

@media (max-width: 720px) {
  body.page-id-3902 .entry-content .steps {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    width: min(360px, calc(100vw - 36px)) !important;
    padding: 22px 0 !important;
  }

  body.page-id-3902 .entry-content .steps > div,
  body.page-id-3902 .entry-content .steps :where(.step2, .step4, .step6) {
    margin: 0 !important;
  }

  body.page-id-3902 .entry-content .steps img {
    max-width: 100% !important;
  }
}

/* Site-wide button consistency layer. */
body a.button,
body button.button,
body input.button,
body input[type="submit"],
body .wp-block-button__link,
body .wp-element-button,
body .wp-block-file__button,
body .wp-block-search__button,
body .woocommerce a.button,
body .woocommerce button.button,
body .woocommerce input.button,
body .woocommerce #respond input#submit,
body .woocommerce button.single_add_to_cart_button,
body .wc-block-components-button,
body .trackbuttons a,
body .hf-footer__button,
body .hf-header .wp-block-shortcode a,
body .hf-footer__contact a:not(.hf-footer__social-link),
body #app button,
body #app .button,
body #app a.button {
  box-sizing: border-box;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: var(--hf-button-height) !important;
  margin-top: 0;
  padding: var(--hf-button-padding) !important;
  border: 1px solid var(--hf-button-primary-bg) !important;
  border-radius: var(--hf-button-radius) !important;
  background: var(--hf-button-primary-bg) !important;
  color: #fff !important;
  font-family: inherit;
  font-size: var(--hf-button-font-size) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  text-align: center;
  text-decoration: none !important;
  text-transform: none !important;
  white-space: normal;
  box-shadow: var(--hf-button-shadow) !important;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

body a.button:hover,
body button.button:hover,
body input.button:hover,
body input[type="submit"]:hover,
body .wp-block-button__link:hover,
body .wp-element-button:hover,
body .wp-block-file__button:hover,
body .wp-block-search__button:hover,
body .woocommerce a.button:hover,
body .woocommerce button.button:hover,
body .woocommerce input.button:hover,
body .woocommerce #respond input#submit:hover,
body .woocommerce button.single_add_to_cart_button:hover,
body .wc-block-components-button:hover,
body .trackbuttons a:hover,
body .hf-footer__button:hover,
body .hf-header .wp-block-shortcode a:hover,
body .hf-footer__contact a:not(.hf-footer__social-link):hover,
body #app button:hover,
body #app .button:hover,
body #app a.button:hover {
  border-color: var(--hf-button-primary-hover) !important;
  background: var(--hf-button-primary-hover) !important;
  color: #fff !important;
  box-shadow: var(--hf-button-hover-shadow) !important;
  transform: translateY(-1px);
}

body a.button:active,
body button.button:active,
body input.button:active,
body input[type="submit"]:active,
body .wp-block-button__link:active,
body .wp-element-button:active,
body .wp-block-file__button:active,
body .wp-block-search__button:active,
body .woocommerce a.button:active,
body .woocommerce button.button:active,
body .woocommerce input.button:active,
body .woocommerce #respond input#submit:active,
body .woocommerce button.single_add_to_cart_button:active,
body .wc-block-components-button:active,
body .trackbuttons a:active,
body .hf-footer__button:active,
body .hf-header .wp-block-shortcode a:active,
body .hf-footer__contact a:not(.hf-footer__social-link):active,
body #app button:active,
body #app .button:active,
body #app a.button:active {
  box-shadow: var(--hf-button-shadow) !important;
  transform: translateY(0);
}

body a.button:focus-visible,
body button.button:focus-visible,
body input.button:focus-visible,
body input[type="submit"]:focus-visible,
body .wp-block-button__link:focus-visible,
body .wp-element-button:focus-visible,
body .wp-block-file__button:focus-visible,
body .wp-block-search__button:focus-visible,
body .woocommerce a.button:focus-visible,
body .woocommerce button.button:focus-visible,
body .woocommerce input.button:focus-visible,
body .woocommerce #respond input#submit:focus-visible,
body .woocommerce button.single_add_to_cart_button:focus-visible,
body .wc-block-components-button:focus-visible,
body .trackbuttons a:focus-visible,
body .hf-footer__button:focus-visible,
body .hf-header .wp-block-shortcode a:focus-visible,
body .hf-footer__contact a:not(.hf-footer__social-link):focus-visible,
body #app button:focus-visible,
body #app .button:focus-visible,
body #app a.button:focus-visible {
  outline: 3px solid rgba(0, 121, 92, 0.24) !important;
  outline-offset: 3px;
}

body button.button:disabled,
body button.button[disabled],
body input.button:disabled,
body input[type="submit"]:disabled,
body .woocommerce button.button:disabled,
body .woocommerce button.button:disabled[disabled],
body .woocommerce input.button:disabled,
body .woocommerce button.single_add_to_cart_button:disabled,
body .wc-block-components-button:disabled,
body #app button:disabled,
body #app .button[disabled],
body #app button.button:disabled {
  border-color: #d5e0dc !important;
  background: #dbe5e1 !important;
  color: #748680 !important;
  box-shadow: none !important;
  cursor: not-allowed;
  transform: none !important;
}

body .hf-header .wp-block-shortcode a,
body .hf-footer__button,
body .hf-footer__contact a:not(.hf-footer__social-link) {
  min-height: var(--hf-button-compact-height) !important;
  padding: var(--hf-button-compact-padding) !important;
  font-size: 12px !important;
}

body.woocommerce.archive li.wc-block-product > form .button,
body.woocommerce.archive ul.products li.product > form .button,
body.post-type-archive-product ul.products li.product > form .button,
body.page-id-6 ul.products li.product > form .button,
body.woocommerce.archive ul.products li.product .button,
body.post-type-archive-product ul.products li.product .button,
body.page-id-6 ul.products li.product .button {
  flex: 1 1 116px;
  min-width: 0;
  margin: 0 !important;
}

body.woocommerce.archive li.wc-block-product > form .button:first-child,
body.woocommerce.archive ul.products li.product > form .button:first-child,
body.post-type-archive-product ul.products li.product > form .button:first-child,
body.page-id-6 ul.products li.product > form .button:first-child,
body.woocommerce.archive li.wc-block-product > form .button:first-of-type,
body.woocommerce.archive ul.products li.product > form .button:first-of-type,
body.post-type-archive-product ul.products li.product > form .button:first-of-type,
body.page-id-6 ul.products li.product > form .button:first-of-type,
body .wp-block-button.is-style-outline .wp-block-button__link,
body .is-style-outline > .wp-block-button__link,
body .trackbuttons a[href^="mailto:"],
body .trackbuttons a[href*="dog-fence-distributor"],
body .trackbuttons a[href*="hidden-fence-brand-dog-fence"] {
  border-color: var(--hf-button-secondary-border) !important;
  background: var(--hf-button-secondary-bg) !important;
  color: var(--hf-teal) !important;
  box-shadow: var(--hf-button-shadow) !important;
}

body.woocommerce.archive li.wc-block-product > form .button:first-child:hover,
body.woocommerce.archive ul.products li.product > form .button:first-child:hover,
body.post-type-archive-product ul.products li.product > form .button:first-child:hover,
body.page-id-6 ul.products li.product > form .button:first-child:hover,
body.woocommerce.archive li.wc-block-product > form .button:first-of-type:hover,
body.woocommerce.archive ul.products li.product > form .button:first-of-type:hover,
body.post-type-archive-product ul.products li.product > form .button:first-of-type:hover,
body.page-id-6 ul.products li.product > form .button:first-of-type:hover,
body .wp-block-button.is-style-outline .wp-block-button__link:hover,
body .is-style-outline > .wp-block-button__link:hover,
body .trackbuttons a[href^="mailto:"]:hover,
body .trackbuttons a[href*="dog-fence-distributor"]:hover,
body .trackbuttons a[href*="hidden-fence-brand-dog-fence"]:hover,
body .wp-block-button.is-style-outline .wp-block-button__link:focus-visible,
body .is-style-outline > .wp-block-button__link:focus-visible,
body .trackbuttons a[href^="mailto:"]:focus-visible,
body .trackbuttons a[href*="dog-fence-distributor"]:focus-visible,
body .trackbuttons a[href*="hidden-fence-brand-dog-fence"]:focus-visible {
  border-color: var(--hf-button-primary-bg) !important;
  background: var(--hf-button-secondary-hover) !important;
  color: #005f49 !important;
  box-shadow: var(--hf-button-hover-shadow) !important;
}

body .trackbuttons {
  align-items: flex-start;
}

body .trackbuttons a {
  align-self: flex-start;
}

/* Targeted refresh for legacy information pages. */
body.page-id-35429 .entry-content,
body.page-id-510 .entry-content,
body.page-id-14 .entry-content {
  --hf-page-copy: min(980px, calc(100vw - 32px));
  --hf-page-width: min(1120px, calc(100vw - 32px));
}

body.page-id-35429 .entry-content > :where(p, h2, h3, h4, ul, ol),
body.page-id-510 .entry-content > :where(p, h2, h3, h4, ul, ol),
body.page-id-14 .entry-content > :where(p, h2, h3, h4, ul, ol) {
  max-width: 920px !important;
}

body.page-id-35429 .entry-content > p:first-of-type,
body.page-id-510 .entry-content > p:first-of-type,
body.page-id-14 .entry-content > p:first-of-type {
  margin-top: clamp(24px, 4vw, 42px);
  color: var(--hf-ink);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.48;
}

body.page-id-35429 .entry-content h2,
body.page-id-510 .entry-content h2,
body.page-id-14 .entry-content h2 {
  margin-top: clamp(34px, 5vw, 60px);
  margin-bottom: 12px;
  color: var(--hf-teal);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
}

body.page-id-35429 .entry-content h3,
body.page-id-510 .entry-content h3,
body.page-id-14 .entry-content h3 {
  color: #173f36;
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.25;
}

body.page-id-35429 .entry-content > h2:nth-of-type(-n+4) {
  box-sizing: border-box;
  margin-top: 12px;
  margin-bottom: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(0, 121, 92, 0.16);
  border-left: 5px solid var(--hf-teal);
  border-radius: 8px;
  background: #f7fbf9;
  color: #163b33;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.28;
}

body.page-id-35429 .entry-content .wp-block-columns:first-of-type {
  align-items: stretch;
  gap: 22px;
  margin-top: clamp(28px, 5vw, 52px);
}

body.page-id-35429 .entry-content .wp-block-columns:first-of-type > .wp-block-column {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid rgba(0, 121, 92, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: rgba(0, 70, 53, 0.08) 0 18px 42px;
}

body.page-id-35429 .entry-content .wp-block-columns:first-of-type .wp-block-image {
  order: -1;
  margin: 0 0 14px;
}

body.page-id-35429 .entry-content .wp-block-columns:first-of-type img {
  display: block;
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  background: #fff;
}

body.page-id-35429 .entry-content .wp-block-columns:first-of-type h2 {
  margin-top: 0;
  font-size: 18px;
}

body.page-id-35429 .entry-content .wp-block-columns:first-of-type h3 {
  margin-top: 6px;
  font-size: 16px;
}

body.page-id-35429 .entry-content .wp-block-columns:first-of-type ul {
  margin-top: 8px;
  padding-left: 1.1em;
}

body.page-id-35429 .entry-content .wp-block-columns:first-of-type li {
  font-size: 14px;
  line-height: 1.48;
}

body.page-id-35429 .entry-content .wp-block-columns:first-of-type p:last-child {
  margin-top: auto;
}

body.page-id-35429 .entry-content figure.alignright {
  max-width: min(420px, 44vw);
  margin: 4px 0 24px 32px;
  padding: 10px;
  border: 1px solid rgba(0, 121, 92, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: rgba(0, 70, 53, 0.08) 0 16px 36px;
}

body.page-id-35429 .entry-content > h2:nth-last-of-type(1) {
  margin-top: clamp(42px, 7vw, 84px);
}

body.page-id-510 .entry-content > p:nth-of-type(-n+4) {
  box-sizing: border-box;
  position: relative;
  padding-left: 20px;
  border-left: 4px solid rgba(0, 121, 92, 0.28);
}

body.page-id-510 .entry-content p img {
  display: block;
  width: min(760px, 100%);
  margin: clamp(24px, 4vw, 44px) auto;
  padding: 14px;
  border: 1px solid rgba(0, 121, 92, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: rgba(0, 70, 53, 0.08) 0 18px 42px;
}

body.page-id-510 .entry-content > h2:first-of-type {
  box-sizing: border-box;
  width: min(920px, calc(100vw - 32px));
  max-width: min(920px, calc(100vw - 32px)) !important;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(0, 121, 92, 0.14);
  border-radius: 8px;
  background: #f1f8f5;
  color: #123d34;
  text-align: center;
}

body.page-id-510 .entry-content > h2:not(:first-of-type),
body.page-id-14 .entry-content > h2 {
  padding-top: clamp(18px, 3vw, 30px);
  border-top: 1px solid rgba(0, 121, 92, 0.14);
}

body.page-id-14 .entry-content > h2 + p {
  margin-top: 0;
}

body.page-id-14 .entry-content h3 {
  box-sizing: border-box;
  max-width: 920px !important;
  margin-left: auto;
  margin-right: auto;
  padding: 18px 22px;
  border-left: 5px solid var(--hf-teal);
  border-radius: 8px;
  background: #f7fbf9;
  color: #163b33;
  font-size: clamp(17px, 1.4vw, 22px);
}

body.page-id-14 .entry-content .gallery {
  box-sizing: border-box;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, calc(100vw - 32px)) !important;
  max-width: min(1120px, calc(100vw - 32px)) !important;
  margin: clamp(24px, 4vw, 44px) auto !important;
  padding: 0;
}

body.page-id-14 .entry-content .gallery::before,
body.page-id-14 .entry-content .gallery::after {
  display: none !important;
  content: none !important;
}

body.page-id-14 .entry-content .gallery-item {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

body.page-id-14 .entry-content .gallery-icon,
body.page-id-14 .entry-content .gallery a {
  display: block;
  width: 100%;
  height: 100%;
}

body.page-id-14 .entry-content .gallery a {
  overflow: hidden;
  border-radius: 8px;
  background: #eaf3ef;
  box-shadow: rgba(0, 70, 53, 0.08) 0 14px 28px;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

body.page-id-14 .entry-content .gallery a:hover,
body.page-id-14 .entry-content .gallery a:focus-visible {
  box-shadow: rgba(0, 70, 53, 0.16) 0 18px 38px;
  transform: translateY(-2px);
}

body.page-id-14 .entry-content .gallery img {
  display: block;
  width: 100% !important;
  height: 176px !important;
  max-width: none !important;
  object-fit: cover;
  border: 0 !important;
  border-radius: 8px;
}

@media (max-width: 860px) {
  body.page-id-14 .entry-content .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-id-35429 .entry-content figure.alignright {
    float: none;
    max-width: 100%;
    margin: 24px auto;
  }
}

@media (max-width: 520px) {
  body.page-id-14 .entry-content .gallery {
    grid-template-columns: 1fr;
  }

  body.page-id-14 .entry-content .gallery img {
    height: 220px !important;
  }
}

body .hf-config-toolbar {
  display: flex;
  justify-content: flex-end;
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto 12px;
}

body .hf-config-reset,
body #app button.hf-config-change {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 34px !important;
  padding: 8px 12px !important;
  border: 1px solid rgba(0, 121, 92, 0.22) !important;
  border-radius: 8px !important;
  background: #eaf5f1 !important;
  color: var(--hf-teal) !important;
  font-family: inherit;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: rgba(0, 70, 53, 0.10) 0 0 0 1px !important;
  cursor: pointer;
}

body .hf-config-reset:hover,
body #app button.hf-config-change:hover {
  border-color: var(--hf-teal) !important;
  background: #dbece7 !important;
  color: #005f49 !important;
  box-shadow: rgba(0, 70, 53, 0.13) 0 8px 18px !important;
}

body.single-product .hiddenfence-product-configurator #app .q.complete:has(label.selected) button.hf-config-change {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex !important;
  margin: 0 !important;
}

body.single-product .hiddenfence-product-configurator #app .q.complete.hf-config-editing:has(label.selected) {
  padding: clamp(22px, 3.4vw, 40px);
  border-color: rgba(0, 121, 92, 0.34);
  background: #fff;
  box-shadow:
    rgba(0, 70, 53, 0.10) 0 20px 54px,
    rgba(0, 70, 53, 0.08) 0 0 0 1px;
}

body.single-product .hiddenfence-product-configurator #app .q.complete.hf-config-editing:has(label.selected) .red,
body.single-product .hiddenfence-product-configurator #app .q.complete.hf-config-editing:has(label.selected) .previous,
body.single-product .hiddenfence-product-configurator #app .q.complete.hf-config-editing:has(label.selected) button:not(.hf-config-change),
body.single-product .hiddenfence-product-configurator #app .q.complete.hf-config-editing:has(label.selected) a.button {
  display: inline-flex !important;
}

body.single-product .hiddenfence-product-configurator #app .q.complete.hf-config-editing:has(label.selected) .red {
  display: block !important;
}

body.single-product .hiddenfence-product-configurator #app .q.complete.hf-config-editing:has(label.selected) ul.radiolist,
body.single-product .hiddenfence-product-configurator #app .q.complete.hf-config-editing:has(label.selected) ul.systems,
body.single-product .hiddenfence-product-configurator #app .q.complete.hf-config-editing:has(label.selected) ul.collartype {
  display: grid;
  width: min(100%, 980px);
  margin: 16px auto;
  gap: 12px;
}

body.single-product .hiddenfence-product-configurator #app .q.complete.hf-config-editing:has(label.selected) ul.systems,
body.single-product .hiddenfence-product-configurator #app .q.complete.hf-config-editing:has(label.selected) ul.collartype {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

body.single-product .hiddenfence-product-configurator #app .q.complete.hf-config-editing:has(label.selected) ul.radiolist:not(.systems):not(.collartype) {
  grid-template-columns: repeat(auto-fit, minmax(78px, 1fr));
}

body.single-product .hiddenfence-product-configurator #app .q.complete.hf-config-editing:has(label.selected) li:not(:has(label.selected)) {
  display: block;
}

body.single-product .hiddenfence-product-configurator #app .q.complete.hf-config-editing:has(label.selected) label,
body.single-product .hiddenfence-product-configurator #app .q.complete.hf-config-editing:has(label.selected) label.selected,
body.single-product .hiddenfence-product-configurator #app .q.complete.hf-config-editing:has(label.selected) label.selected:has(img) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 14px;
  gap: 8px;
  font-size: 13px;
  text-align: center;
}

body.single-product .hiddenfence-product-configurator #app .q.complete.hf-config-editing:has(label.selected) label.selected img,
body.single-product .hiddenfence-product-configurator #app .q.complete.hf-config-editing:has(label.selected) label img {
  flex: 0 1 auto;
  width: auto;
  max-width: 100%;
  max-height: 104px;
  margin: 0 auto;
}

body.single-product .hiddenfence-product-configurator #app .q.complete.hf-config-editing:has(label.selected) label.selected div {
  font-size: 12px;
  text-align: center;
}

body #app .collarsetting.hf-colour-selected > .red {
  display: none !important;
}

body #app .collarsetting.hf-type-selected > .red {
  display: none !important;
}

/* Dark green bento footer. */
.hf-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: clamp(42px, 7vw, 92px);
  border-top: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(139, 210, 184, 0.2), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(0, 121, 92, 0.32), transparent 32%),
    linear-gradient(135deg, #04251e 0%, #06382d 48%, #022019 100%);
  color: #d8eee6;
}

.hf-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 82%);
}

.hf-footer,
.hf-footer :where(div, p, li, a, span, small, strong, em, b, i, address, label, h1, h2, h3, h4, h5, h6) {
  color: #d8eee6;
}

.hf-footer a {
  color: #f3fff9;
  text-decoration-color: rgba(193, 239, 220, 0.42);
  text-underline-offset: 3px;
}

.hf-footer a:hover,
.hf-footer a:focus-visible {
  color: #bfeeda;
}

.hf-footer__inner {
  width: min(1180px, calc(100vw - 32px)) !important;
  max-width: 1180px !important;
  gap: 16px;
  padding: clamp(30px, 5vw, 54px) 0 clamp(24px, 4vw, 36px);
}

.hf-footer__top,
.hf-footer__content {
  gap: 16px;
}

.hf-footer__top {
  grid-template-columns: minmax(260px, 0.78fr) minmax(360px, 1.22fr);
}

.hf-footer__content {
  grid-template-columns: minmax(220px, 0.82fr) minmax(340px, 1.35fr) minmax(220px, 0.72fr);
}

.hf-footer__brand,
.hf-footer__design,
.hf-footer__links,
.hf-footer__products,
.hf-footer__external,
.hf-footer .hf-footer-menu,
.hf-footer__contact,
.hf-footer__legal {
  border: 1px solid rgba(211, 255, 236, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    rgba(2, 32, 25, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 22px 54px rgba(0, 0, 0, 0.16);
}

.hf-footer__brand,
.hf-footer__design,
.hf-footer__links,
.hf-footer__products,
.hf-footer__external,
.hf-footer .hf-footer-menu {
  padding: clamp(18px, 2.2vw, 26px);
}

.hf-footer__brand {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(3, 46, 36, 0.7);
}

.hf-footer__design {
  background:
    radial-gradient(circle at 92% 12%, rgba(184, 246, 221, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(0, 121, 92, 0.38), rgba(255, 255, 255, 0.05)),
    rgba(4, 55, 44, 0.78);
}

.hf-footer__products {
  background:
    radial-gradient(circle at 94% 0, rgba(193, 239, 220, 0.15), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(2, 34, 27, 0.5);
}

.hf-footer__logo {
  width: min(188px, 100%);
  margin-bottom: 18px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.hf-footer__brand p {
  max-width: 270px;
  margin: 0;
  color: #cce9df;
  font-weight: 650;
}

.hf-footer__eyebrow {
  color: #bfeeda;
  letter-spacing: 0.08em;
}

.hf-footer h2,
.hf-footer .wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation-item__content {
  color: #f5fffb;
}

.hf-footer h2 {
  margin-bottom: 12px;
  font-size: 17px;
}

.hf-footer ul {
  padding-left: 0;
  list-style: none;
}

.hf-footer li {
  margin-bottom: 7px;
}

.hf-footer__design li,
.hf-footer__products li {
  position: relative;
  padding-left: 15px;
}

.hf-footer__design li::before,
.hf-footer__products li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #bfeeda;
  box-shadow: 0 0 0 3px rgba(191, 238, 218, 0.1);
}

.hf-footer .wp-block-navigation__container {
  gap: 18px 22px;
}

.hf-footer .wp-block-navigation-item__content {
  color: #d8eee6;
}

.hf-footer .wp-block-navigation__submenu-container {
  gap: 8px;
}

.hf-footer .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  color: #cbe7dd;
  font-weight: 550;
}

.hf-footer__links ul,
.hf-footer__products ul,
.hf-footer__external ul {
  column-gap: 26px;
}

.hf-footer__payments {
  max-width: 190px;
  margin-top: 18px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #fff;
}

.hf-footer__contact {
  gap: 12px;
  padding: 16px clamp(18px, 2.4vw, 24px);
  border-top: 1px solid rgba(211, 255, 236, 0.16);
  border-bottom: 1px solid rgba(211, 255, 236, 0.16);
}

.hf-footer__contact p {
  color: #bfeeda;
}

body .hf-footer__button,
body .hf-footer__contact a:not(.hf-footer__social-link) {
  border-color: rgba(232, 255, 245, 0.96) !important;
  background: #f2fff9 !important;
  color: #053126 !important;
  box-shadow: none !important;
}

body .hf-footer__button:hover,
body .hf-footer__button:focus-visible,
body .hf-footer__contact a:not(.hf-footer__social-link):hover,
body .hf-footer__contact a:not(.hf-footer__social-link):focus-visible {
  border-color: #bfeeda !important;
  background: #bfeeda !important;
  color: #052820 !important;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18) !important;
}

.hf-footer__contact a.hf-footer__social-link {
  border: 1px solid rgba(211, 255, 236, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #f5fffb !important;
}

.hf-footer__contact a.hf-footer__social-link:hover,
.hf-footer__contact a.hf-footer__social-link:focus-visible {
  border-color: rgba(232, 255, 245, 0.72);
  background: rgba(232, 255, 245, 0.16);
  color: #fff !important;
}

.hf-footer__legal {
  gap: 7px;
  padding: 16px clamp(18px, 2.4vw, 24px);
}

.hf-footer__legal p {
  max-width: none;
  color: rgba(216, 238, 230, 0.78);
}

@media (max-width: 900px) {
  .hf-footer__top,
  .hf-footer__content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hf-footer__inner {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    padding-top: 28px;
  }

  .hf-footer__brand,
  .hf-footer__design,
  .hf-footer__links,
  .hf-footer__products,
  .hf-footer__external,
  .hf-footer .hf-footer-menu,
  .hf-footer__contact,
  .hf-footer__legal {
    border-radius: 14px;
  }

  .hf-footer__contact {
    align-items: flex-start;
  }
}
