body {
    margin: 0;
    background:
        linear-gradient(180deg, #ffffff 0%, var(--hbat-color-canvas, #f8faf6) 42rem);
    color: var(--hbat-color-text, #182114);
    font-family: var(--hbat-font-family-base, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    font-size: var(--hbat-font-size-md, 1rem);
    line-height: var(--hbat-line-height-base, 1.6);
}

a {
    color: var(--hbat-color-primary, #2f6b3f);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 0.1875rem solid var(--hbat-color-focus, #1c7c54);
    outline-offset: 0.1875rem;
}

.hbat-skip-link {
    position: absolute;
    top: var(--hbat-space-3, 0.75rem);
    left: var(--hbat-space-3, 0.75rem);
    z-index: 100;
    padding: var(--hbat-space-2, 0.5rem) var(--hbat-space-3, 0.75rem);
    background: var(--hbat-color-text, #182114);
    color: var(--hbat-color-primary-contrast, #ffffff);
    transform: translateY(-200%);
}

.hbat-skip-link:focus {
    transform: translateY(0);
}

.hbat-site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hbat-site-header,
.hbat-site-footer {
    background: var(--hbat-color-surface, #ffffff);
    border-color: var(--hbat-color-border, #d7dfd1);
}

.hbat-site-header {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid var(--hbat-color-border, #d7dfd1);
    box-shadow: 0 0.75rem 2rem rgba(24, 33, 20, 0.04);
}

.hbat-site-footer {
    margin-top: auto;
    border-top: 1px solid var(--hbat-color-border, #d7dfd1);
}

.hbat-site-header__inner,
.hbat-site-footer__inner,
.hbat-site-main {
    width: min(100% - (2 * var(--hbat-size-container-padding, 1rem)), var(--hbat-size-wide, 75rem));
    margin-inline: auto;
}

.hbat-site-header__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--hbat-space-4, 1rem) var(--hbat-space-8, 2rem);
    padding-block: var(--hbat-space-6, 1.5rem);
}

.hbat-site-branding {
    display: flex;
    align-items: center;
    gap: var(--hbat-space-3, 0.75rem);
    min-width: min(100%, 16rem);
}

.hbat-site-branding__logo img {
    display: block;
    max-width: 9rem;
    height: auto;
}

.hbat-site-title {
    color: var(--hbat-color-text, #182114);
    font-size: var(--hbat-font-size-xl, 1.5rem);
    font-weight: 800;
    text-decoration: none;
}

.hbat-site-description {
    margin: 0;
    color: var(--hbat-color-text-muted, #5d6a55);
    font-size: var(--hbat-font-size-sm, 0.875rem);
}

.hbat-primary-navigation {
    flex: 1 1 22rem;
}

.hbat-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--hbat-space-2, 0.5rem) var(--hbat-space-4, 1rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.hbat-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
    padding-block: var(--hbat-space-2, 0.5rem);
    color: var(--hbat-color-text, #182114);
    font-weight: 650;
    text-decoration: none;
}

.hbat-menu a:hover,
.hbat-menu a:focus-visible {
    color: var(--hbat-color-primary, #2f6b3f);
}

.hbat-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding-inline: var(--hbat-space-6, 1.5rem);
    border: 1px solid var(--hbat-color-primary, #2f6b3f);
    border-radius: var(--hbat-radius-md, 0.5rem);
    background: var(--hbat-color-primary, #2f6b3f);
    color: var(--hbat-color-primary-contrast, #ffffff);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0.75rem 1.5rem rgba(47, 107, 63, 0.18);
}

.hbat-site-main {
    padding-block: var(--hbat-space-12, 3rem);
}

.hbat-page-header {
    max-width: var(--hbat-size-content, 52.5rem);
    margin-bottom: var(--hbat-space-8, 2rem);
}

.hbat-page-title,
.hbat-content h1,
.hbat-content h2 {
    margin-block: 0 var(--hbat-space-4, 1rem);
    color: var(--hbat-color-text, #182114);
    font-family: var(--hbat-font-family-heading, inherit);
    line-height: var(--hbat-line-height-tight, 1.2);
}

.hbat-page-title,
.hbat-content h1 {
    font-size: var(--hbat-font-size-2xl, 2rem);
}

.hbat-content {
    max-width: var(--hbat-size-content, 52.5rem);
    margin-bottom: var(--hbat-space-12, 3rem);
}

.hbat-content__meta {
    margin-block: calc(-1 * var(--hbat-space-2, 0.5rem)) var(--hbat-space-4, 1rem);
    color: var(--hbat-color-text-muted, #5d6a55);
    font-size: var(--hbat-font-size-sm, 0.875rem);
}

.hbat-content__body > *:first-child {
    margin-top: 0;
}

.hbat-content__body > *:last-child {
    margin-bottom: 0;
}

.hbat-content-none {
    max-width: var(--hbat-size-content, 52.5rem);
}

.hbat-home-link {
    display: inline-flex;
    margin-top: var(--hbat-space-4, 1rem);
}

.hbat-site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(12rem, auto) minmax(12rem, auto);
    align-items: start;
    gap: var(--hbat-space-4, 1rem);
    padding-block: var(--hbat-space-12, 3rem);
}

.hbat-site-footer__brand {
    max-width: 28rem;
}

.hbat-site-footer__brand strong {
    display: block;
    margin-bottom: var(--hbat-space-2, 0.5rem);
    color: var(--hbat-color-text, #182114);
    font-size: var(--hbat-font-size-lg, 1.125rem);
}

.hbat-site-footer__brand p {
    margin: 0;
    color: var(--hbat-color-text-muted, #5d6a55);
}

.hbat-site-footer__copyright {
    margin: 0;
    color: var(--hbat-color-text-muted, #5d6a55);
    font-size: var(--hbat-font-size-sm, 0.875rem);
}

.hbat-container {
    width: min(100% - (2 * var(--hbat-size-container-padding, 1rem)), var(--hbat-size-wide, 75rem));
    margin-inline: auto;
}

.hbat-section {
    padding-block: var(--hbat-space-16, 4rem);
}

.hbat-section-inner {
    width: min(100% - (2 * var(--hbat-size-container-padding, 1rem)), var(--hbat-size-wide, 75rem));
    margin-inline: auto;
}

.hbat-grid,
.hbat-card-grid {
    display: grid;
    gap: var(--hbat-space-4, 1rem);
}

.hbat-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.hbat-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.78fr);
    align-items: center;
    gap: var(--hbat-space-12, 3rem);
}

.hbat-stack {
    display: grid;
    gap: var(--hbat-space-4, 1rem);
}

.hbat-cluster {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--hbat-space-3, 0.75rem);
}

.hbat-section-header {
    max-width: var(--hbat-size-content, 52.5rem);
    margin-bottom: var(--hbat-space-6, 1.5rem);
}

.hbat-hero-title,
.hbat-section-title {
    margin-block: 0 var(--hbat-space-4, 1rem);
    color: var(--hbat-color-text, #182114);
    line-height: var(--hbat-line-height-tight, 1.2);
}

.hbat-hero-title {
    max-width: 13ch;
    font-size: 3rem;
}

.hbat-section-title {
    font-size: var(--hbat-font-size-2xl, 2rem);
}

.hbat-lead {
    color: var(--hbat-color-text-muted, #5d6a55);
    font-size: var(--hbat-font-size-lg, 1.125rem);
}

.hbat-eyebrow {
    margin: 0 0 var(--hbat-space-2, 0.5rem);
    color: var(--hbat-color-primary, #2f6b3f);
    font-size: var(--hbat-font-size-sm, 0.875rem);
    font-weight: 700;
}

.hbat-muted {
    color: var(--hbat-color-text-muted, #5d6a55);
}

.hbat-small-text {
    font-size: var(--hbat-font-size-sm, 0.875rem);
}

.hbat-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    min-height: 1.875rem;
    padding-inline: var(--hbat-space-3, 0.75rem);
    border: 1px solid rgba(47, 107, 63, 0.18);
    border-radius: var(--hbat-radius-sm, 0.25rem);
    background: var(--hbat-color-surface-muted, #eef3ea);
    color: var(--hbat-color-primary, #2f6b3f);
    font-size: var(--hbat-font-size-xs, 0.75rem);
    font-weight: 800;
}

.hbat-badge--product {
    border-color: rgba(185, 133, 47, 0.28);
    color: var(--hbat-color-accent, #b9852f);
}

.hbat-badge--project,
.hbat-badge--featured {
    border-color: rgba(47, 107, 63, 0.28);
    background: var(--hbat-color-surface, #ffffff);
}

.hbat-card {
    padding: var(--hbat-space-6, 1.5rem);
    border: 1px solid var(--hbat-color-border, #d7dfd1);
    border-radius: var(--hbat-radius-md, 0.5rem);
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfdf9 100%);
    box-shadow: 0 1rem 2.5rem rgba(24, 33, 20, 0.06);
}

.hbat-card h3 {
    margin-block: var(--hbat-space-3, 0.75rem) var(--hbat-space-3, 0.75rem);
    color: var(--hbat-color-text, #182114);
    font-size: var(--hbat-font-size-lg, 1.125rem);
    line-height: var(--hbat-line-height-tight, 1.2);
}

.hbat-card p {
    margin-bottom: 0;
}

.hbat-card__link {
    display: inline-flex;
    margin-top: var(--hbat-space-4, 1rem);
    color: var(--hbat-color-primary, #2f6b3f);
    font-weight: 700;
}

.hbat-card--service {
    min-height: 13rem;
}

.hbat-card--feature {
    border-color: rgba(185, 133, 47, 0.28);
    background:
        linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
}

.hbat-card--product,
.hbat-card--project {
    background:
        linear-gradient(135deg, var(--hbat-color-surface-muted, #eef3ea), #ffffff);
}

.hbat-stat-card {
    padding: var(--hbat-space-6, 1.5rem);
    border: 1px solid var(--hbat-color-border, #d7dfd1);
    border-radius: var(--hbat-radius-md, 0.5rem);
    background: var(--hbat-color-surface, #ffffff);
    box-shadow: 0 1rem 2.5rem rgba(24, 33, 20, 0.05);
}

.hbat-stat-card strong {
    display: block;
    color: var(--hbat-color-primary, #2f6b3f);
    font-size: var(--hbat-font-size-2xl, 2rem);
    line-height: var(--hbat-line-height-tight, 1.2);
}

.hbat-stat-card span {
    color: var(--hbat-color-text-muted, #5d6a55);
    font-size: var(--hbat-font-size-sm, 0.875rem);
    font-weight: 700;
}

.hbat-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--hbat-space-8, 2rem);
}

.hbat-home {
    width: 100%;
    padding-block: 0;
}

.hbat-home-section {
    padding-block: var(--hbat-space-16, 4rem);
}

.hbat-home-section__inner {
    width: min(100% - (2 * var(--hbat-size-container-padding, 1rem)), var(--hbat-size-wide, 75rem));
    margin-inline: auto;
}

.hbat-home-section__header,
.hbat-home-intro__inner,
.hbat-home-hero__content,
.hbat-home-cta__inner {
    max-width: var(--hbat-size-content, 52.5rem);
}

.hbat-home-eyebrow {
    margin: 0 0 var(--hbat-space-2, 0.5rem);
    color: var(--hbat-color-primary, #2f6b3f);
    font-size: var(--hbat-font-size-sm, 0.875rem);
    font-weight: 700;
}

.hbat-home h1,
.hbat-home h2,
.hbat-home h3 {
    margin-block: 0 var(--hbat-space-4, 1rem);
    color: var(--hbat-color-text, #182114);
    line-height: var(--hbat-line-height-tight, 1.2);
}

.hbat-home h1 {
    max-width: 13ch;
    font-size: 3rem;
}

.hbat-home h2 {
    font-size: var(--hbat-font-size-2xl, 2rem);
}

.hbat-home h3 {
    font-size: var(--hbat-font-size-lg, 1.125rem);
}

.hbat-home p {
    max-width: var(--hbat-size-content, 52.5rem);
}

.hbat-home-hero {
    padding-block: 5rem;
    background:
        linear-gradient(135deg, #ffffff 0%, #f6faf2 58%, #edf5e8 100%);
    border-bottom: 1px solid var(--hbat-color-border, #d7dfd1);
}

.hbat-home-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.78fr);
    align-items: center;
    gap: var(--hbat-space-12, 3rem);
}

.hbat-home-hero__summary,
.hbat-home-intro p,
.hbat-home-preview p {
    color: var(--hbat-color-text-muted, #5d6a55);
    font-size: var(--hbat-font-size-lg, 1.125rem);
}

.hbat-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--hbat-space-3, 0.75rem);
    margin-top: var(--hbat-space-6, 1.5rem);
}

.hbat-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding-inline: var(--hbat-space-6, 1.5rem);
    border: 1px solid var(--hbat-color-primary, #2f6b3f);
    border-radius: var(--hbat-radius-md, 0.5rem);
    font-weight: 700;
    text-decoration: none;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        color 160ms ease,
        box-shadow 160ms ease;
}

.hbat-button--primary {
    background: var(--hbat-color-primary, #2f6b3f);
    color: var(--hbat-color-primary-contrast, #ffffff);
    box-shadow: 0 0.875rem 1.75rem rgba(47, 107, 63, 0.2);
}

.hbat-button--secondary {
    background: var(--hbat-color-surface, #ffffff);
    color: var(--hbat-color-primary, #2f6b3f);
}

.hbat-button--outline {
    background: transparent;
    color: var(--hbat-color-primary, #2f6b3f);
}

.hbat-button--ghost {
    border-color: transparent;
    background: transparent;
    color: var(--hbat-color-primary, #2f6b3f);
    box-shadow: none;
}

.hbat-button--small {
    min-height: 2.25rem;
    padding-inline: var(--hbat-space-3, 0.75rem);
    font-size: var(--hbat-font-size-sm, 0.875rem);
}

.hbat-button--large {
    min-height: 3.25rem;
    padding-inline: var(--hbat-space-8, 2rem);
    font-size: var(--hbat-font-size-lg, 1.125rem);
}

.hbat-button--disabled,
.hbat-button[aria-disabled="true"] {
    border-color: var(--hbat-color-border, #d7dfd1);
    background: var(--hbat-color-surface-muted, #eef3ea);
    color: var(--hbat-color-text-muted, #5d6a55);
    box-shadow: none;
    cursor: not-allowed;
}

.hbat-button:hover,
.hbat-header-cta:hover {
    border-color: #255632;
    background: #255632;
    color: var(--hbat-color-primary-contrast, #ffffff);
}

.hbat-button--disabled:hover,
.hbat-button[aria-disabled="true"]:hover {
    border-color: var(--hbat-color-border, #d7dfd1);
    background: var(--hbat-color-surface-muted, #eef3ea);
    color: var(--hbat-color-text-muted, #5d6a55);
}

.hbat-home-hero__visual {
    min-height: 24rem;
    padding: var(--hbat-space-6, 1.5rem);
    border: 1px solid rgba(47, 107, 63, 0.2);
    border-radius: var(--hbat-radius-md, 0.5rem);
    background:
        linear-gradient(145deg, rgba(47, 107, 63, 0.12), rgba(185, 133, 47, 0.08)),
        var(--hbat-color-surface, #ffffff);
    box-shadow: 0 2rem 4rem rgba(24, 33, 20, 0.1);
}

.hbat-home-hero__panel {
    min-height: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--hbat-space-3, 0.75rem);
    align-content: end;
    padding: var(--hbat-space-6, 1.5rem);
    border: 1px solid rgba(47, 107, 63, 0.18);
    border-radius: var(--hbat-radius-sm, 0.25rem);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.94)),
        repeating-linear-gradient(90deg, rgba(47, 107, 63, 0.12) 0 1px, transparent 1px 3rem);
}

.hbat-home-hero__panel span,
.hbat-home-hero__panel strong {
    padding: var(--hbat-space-3, 0.75rem);
    background: var(--hbat-color-surface, #ffffff);
    border: 1px solid var(--hbat-color-border, #d7dfd1);
    border-radius: var(--hbat-radius-sm, 0.25rem);
    color: var(--hbat-color-text, #182114);
}

.hbat-home-hero__panel strong {
    grid-column: 1 / -1;
    background: var(--hbat-color-primary, #2f6b3f);
    color: var(--hbat-color-primary-contrast, #ffffff);
}

.hbat-home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: var(--hbat-space-4, 1rem);
    margin-top: var(--hbat-space-6, 1.5rem);
}

.hbat-home-card {
    min-height: 10rem;
}

.hbat-home-card--solution {
    display: flex;
    flex-direction: column;
    gap: var(--hbat-space-3, 0.75rem);
}

.hbat-home-card--solution h3,
.hbat-home-card--solution p,
.hbat-home-card--solution a {
    margin: 0;
}

.hbat-home-card__icon {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(47, 107, 63, 0.22);
    border-radius: var(--hbat-radius-sm, 0.25rem);
    background: var(--hbat-color-surface-muted, #eef3ea);
    color: var(--hbat-color-primary, #2f6b3f);
    font-weight: 800;
}

.hbat-home-card a {
    margin-top: auto;
    color: var(--hbat-color-primary, #2f6b3f);
    font-weight: 700;
}

.hbat-home-card p {
    margin-bottom: 0;
    color: var(--hbat-color-text-muted, #5d6a55);
}

.hbat-home-preview {
    border-block: 1px solid var(--hbat-color-border, #d7dfd1);
    background:
        linear-gradient(135deg, var(--hbat-color-surface-muted, #eef3ea), #ffffff);
}

.hbat-home-preview + .hbat-home-preview {
    border-top: 0;
}

.hbat-home-preview__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
    align-items: center;
    gap: var(--hbat-space-4, 1rem);
}

.hbat-home-preview__content {
    display: grid;
    gap: var(--hbat-space-4, 1rem);
}

.hbat-home-cta {
    background:
        linear-gradient(135deg, var(--hbat-color-primary, #2f6b3f), #173d25);
    border-top: 1px solid var(--hbat-color-border, #d7dfd1);
}

.hbat-home-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--hbat-space-8, 2rem);
}

.hbat-home-cta h2,
.hbat-home-cta p {
    color: var(--hbat-color-primary-contrast, #ffffff);
}

.hbat-home-cta p {
    margin-bottom: 0;
    opacity: 0.86;
}

.hbat-woocommerce .woocommerce-notices-wrapper,
.hbat-woocommerce .woocommerce-result-count,
.hbat-woocommerce .woocommerce-ordering {
    margin-bottom: var(--hbat-space-4, 1rem);
}

.hbat-woocommerce .woocommerce-ordering select {
    min-height: 2.75rem;
    padding-inline: var(--hbat-space-3, 0.75rem);
    border: 1px solid var(--hbat-color-border, #d7dfd1);
    border-radius: var(--hbat-radius-md, 0.5rem);
    background: var(--hbat-color-surface, #ffffff);
    color: var(--hbat-color-text, #182114);
}

.post-type-archive-product.woocommerce ul.products,
.tax-product_cat.woocommerce ul.products,
.tax-product_tag.woocommerce ul.products,
.hbat-shop ul.products,
.hbat-woocommerce-archive ul.products,
.hbat-woocommerce ul.products.hbat-products-grid,
.hbat-products-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 16.25rem), 20rem));
    gap: var(--hbat-space-4, 1rem);
    align-items: stretch;
    justify-content: start;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.post-type-archive-product.woocommerce ul.products::before,
.post-type-archive-product.woocommerce ul.products::after,
.tax-product_cat.woocommerce ul.products::before,
.tax-product_cat.woocommerce ul.products::after,
.tax-product_tag.woocommerce ul.products::before,
.tax-product_tag.woocommerce ul.products::after,
.hbat-shop ul.products::before,
.hbat-shop ul.products::after,
.hbat-woocommerce-archive ul.products::before,
.hbat-woocommerce-archive ul.products::after,
.hbat-products-grid.products::before,
.hbat-products-grid.products::after {
    display: none;
}

.post-type-archive-product.woocommerce ul.products li.product,
.tax-product_cat.woocommerce ul.products li.product,
.tax-product_tag.woocommerce ul.products li.product,
.hbat-shop ul.products li.product,
.hbat-woocommerce-archive ul.products li.product,
.hbat-products-grid.products .product,
.hbat-products-grid.products li.product {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--hbat-space-4, 1rem);
    float: none !important;
    align-self: stretch;
    width: 100% !important;
    max-width: 20rem;
    margin: 0 !important;
    min-width: 0;
    padding: var(--hbat-space-6, 1.5rem);
    border: 1px solid var(--hbat-color-border, #d7dfd1);
    border-radius: var(--hbat-radius-md, 0.5rem);
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfdf9 100%);
    box-shadow: 0 1rem 2.5rem rgba(24, 33, 20, 0.06);
    overflow: hidden;
}

.hbat-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--hbat-space-4, 1rem);
    min-width: 0;
    width: 100%;
    overflow: hidden;
}

.post-type-archive-product.woocommerce ul.products li.product a.woocommerce-loop-product__link,
.tax-product_cat.woocommerce ul.products li.product a.woocommerce-loop-product__link,
.tax-product_tag.woocommerce ul.products li.product a.woocommerce-loop-product__link,
.hbat-shop ul.products li.product a.woocommerce-loop-product__link,
.hbat-woocommerce-archive ul.products li.product a.woocommerce-loop-product__link {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: var(--hbat-space-4, 1rem);
    color: var(--hbat-color-text, #182114);
    text-decoration: none;
}

.post-type-archive-product.woocommerce ul.products li.product a.woocommerce-loop-product__link,
.tax-product_cat.woocommerce ul.products li.product a.woocommerce-loop-product__link,
.tax-product_tag.woocommerce ul.products li.product a.woocommerce-loop-product__link,
.hbat-shop ul.products li.product a.woocommerce-loop-product__link,
.hbat-woocommerce-archive ul.products li.product a.woocommerce-loop-product__link {
    margin: calc(-1 * var(--hbat-space-6, 1.5rem)) calc(-1 * var(--hbat-space-6, 1.5rem)) 0;
}

.hbat-product-card__image {
    display: block;
    margin: calc(-1 * var(--hbat-space-6, 1.5rem)) calc(-1 * var(--hbat-space-6, 1.5rem)) 0;
    aspect-ratio: 1 / 1;
    background: var(--hbat-color-surface-muted, #eef3ea);
    border-radius: var(--hbat-radius-md, 0.5rem) var(--hbat-radius-md, 0.5rem) 0 0;
    overflow: hidden;
}

.post-type-archive-product.woocommerce ul.products li.product a img,
.tax-product_cat.woocommerce ul.products li.product a img,
.tax-product_tag.woocommerce ul.products li.product a img,
.hbat-shop ul.products li.product a img,
.hbat-woocommerce-archive ul.products li.product a img {
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    aspect-ratio: 1 / 1;
    margin: 0;
    border-radius: var(--hbat-radius-md, 0.5rem) var(--hbat-radius-md, 0.5rem) 0 0;
    object-fit: cover;
}

.hbat-product-card__image img,
.hbat-product-detail__media img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
}

.hbat-product-card__image img {
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.hbat-product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: var(--hbat-space-4, 1rem);
    min-width: 0;
}

.hbat-product-card__badges {
    margin: 0;
}

.hbat-product-card__badges a {
    color: inherit;
    text-decoration: none;
}

.hbat-product-card__image img,
.hbat-products-grid.products .hbat-product-card__image img {
    width: 100%;
    max-width: none;
}

.post-type-archive-product.woocommerce ul.products li.product .woocommerce-loop-product__title,
.tax-product_cat.woocommerce ul.products li.product .woocommerce-loop-product__title,
.tax-product_tag.woocommerce ul.products li.product .woocommerce-loop-product__title,
.hbat-shop ul.products li.product .woocommerce-loop-product__title,
.hbat-woocommerce-archive ul.products li.product .woocommerce-loop-product__title,
.hbat-product-card__title {
    margin: 0;
    padding: 0;
    color: var(--hbat-color-text, #182114);
    font-size: var(--hbat-font-size-lg, 1.125rem);
    line-height: var(--hbat-line-height-tight, 1.2);
}

.post-type-archive-product.woocommerce ul.products li.product .woocommerce-loop-product__title,
.tax-product_cat.woocommerce ul.products li.product .woocommerce-loop-product__title,
.tax-product_tag.woocommerce ul.products li.product .woocommerce-loop-product__title,
.hbat-shop ul.products li.product .woocommerce-loop-product__title,
.hbat-woocommerce-archive ul.products li.product .woocommerce-loop-product__title {
    margin-inline: var(--hbat-space-6, 1.5rem);
}

.hbat-product-card__title a {
    color: var(--hbat-color-text, #182114);
    text-decoration: none;
}

.hbat-product-card__title a:hover,
.hbat-product-card__title a:focus-visible {
    color: var(--hbat-color-primary, #2f6b3f);
}

.post-type-archive-product.woocommerce ul.products li.product .price,
.tax-product_cat.woocommerce ul.products li.product .price,
.tax-product_tag.woocommerce ul.products li.product .price,
.hbat-shop ul.products li.product .price,
.hbat-woocommerce-archive ul.products li.product .price,
.hbat-product-card__price,
.hbat-product-detail__price {
    display: block;
    margin: 0;
    color: var(--hbat-color-primary, #2f6b3f);
    font-size: var(--hbat-font-size-lg, 1.125rem);
    font-weight: 800;
}

.post-type-archive-product.woocommerce ul.products li.product .price del,
.tax-product_cat.woocommerce ul.products li.product .price del,
.tax-product_tag.woocommerce ul.products li.product .price del,
.hbat-shop ul.products li.product .price del,
.hbat-woocommerce-archive ul.products li.product .price del,
.hbat-product-card__price del,
.hbat-product-detail__price del {
    margin-right: var(--hbat-space-2, 0.5rem);
    color: var(--hbat-color-text-muted, #5d6a55);
    font-weight: 600;
}

.post-type-archive-product.woocommerce ul.products li.product .price ins,
.tax-product_cat.woocommerce ul.products li.product .price ins,
.tax-product_tag.woocommerce ul.products li.product .price ins,
.hbat-shop ul.products li.product .price ins,
.hbat-woocommerce-archive ul.products li.product .price ins,
.hbat-product-card__price ins,
.hbat-product-detail__price ins {
    text-decoration: none;
}

.hbat-product-card__action {
    margin-top: auto;
}

.hbat-product-card__action .button {
    width: 100%;
}

.post-type-archive-product.woocommerce ul.products li.product a.button,
.tax-product_cat.woocommerce ul.products li.product a.button,
.tax-product_tag.woocommerce ul.products li.product a.button,
.hbat-shop ul.products li.product a.button,
.hbat-woocommerce-archive ul.products li.product a.button {
    width: 100%;
    margin-top: auto;
}

.hbat-woocommerce .button,
.post-type-archive-product.woocommerce ul.products li.product a.button,
.tax-product_cat.woocommerce ul.products li.product a.button,
.tax-product_tag.woocommerce ul.products li.product a.button,
.hbat-shop ul.products li.product a.button,
.hbat-woocommerce-archive ul.products li.product a.button,
.hbat-product-detail__cart .button,
.hbat-product-detail__cart button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding-inline: var(--hbat-space-6, 1.5rem);
    border: 1px solid var(--hbat-color-primary, #2f6b3f);
    border-radius: var(--hbat-radius-md, 0.5rem);
    background: var(--hbat-color-primary, #2f6b3f);
    color: var(--hbat-color-primary-contrast, #ffffff);
    font-weight: 700;
    text-decoration: none;
}

.hbat-woocommerce .button:hover,
.post-type-archive-product.woocommerce ul.products li.product a.button:hover,
.tax-product_cat.woocommerce ul.products li.product a.button:hover,
.tax-product_tag.woocommerce ul.products li.product a.button:hover,
.hbat-shop ul.products li.product a.button:hover,
.hbat-woocommerce-archive ul.products li.product a.button:hover,
.hbat-product-detail__cart .button:hover,
.hbat-product-detail__cart button:hover {
    border-color: #255632;
    background: #255632;
    color: var(--hbat-color-primary-contrast, #ffffff);
}

.hbat-single-product .hbat-product-detail__cart .single_add_to_cart_button,
.hbat-single-product .hbat-product-detail__cart .button.alt {
    min-height: 2.75rem;
    padding-inline: var(--hbat-space-6, 1.5rem);
    border: 1px solid var(--hbat-color-primary, #2f6b3f);
    border-radius: var(--hbat-radius-md, 0.5rem);
    background: var(--hbat-color-primary, #2f6b3f);
    color: var(--hbat-color-primary-contrast, #ffffff);
    font-weight: 700;
    box-shadow: 0 0.875rem 1.75rem rgba(47, 107, 63, 0.2);
}

.hbat-single-product .hbat-product-detail__cart .single_add_to_cart_button:hover,
.hbat-single-product .hbat-product-detail__cart .single_add_to_cart_button:focus-visible,
.hbat-single-product .hbat-product-detail__cart .button.alt:hover,
.hbat-single-product .hbat-product-detail__cart .button.alt:focus-visible {
    border-color: #255632;
    background: #255632;
    color: var(--hbat-color-primary-contrast, #ffffff);
}

.hbat-product-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: var(--hbat-space-12, 3rem);
    align-items: start;
}

.hbat-product-detail__media,
.hbat-product-detail__summary,
.hbat-product-detail__tabs {
    padding: var(--hbat-space-6, 1.5rem);
    border: 1px solid var(--hbat-color-border, #d7dfd1);
    border-radius: var(--hbat-radius-md, 0.5rem);
    background: var(--hbat-color-surface, #ffffff);
    box-shadow: 0 1rem 2.5rem rgba(24, 33, 20, 0.06);
}

.hbat-product-detail__media {
    position: relative;
}

.hbat-product-detail__media .onsale {
    position: absolute;
    top: var(--hbat-space-4, 1rem);
    left: var(--hbat-space-4, 1rem);
    z-index: 1;
}

.hbat-product-detail__cart form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: var(--hbat-space-3, 0.75rem);
    align-items: center;
}

.hbat-product-detail__cart .quantity input {
    width: 5rem;
    min-height: 2.75rem;
    padding-inline: var(--hbat-space-3, 0.75rem);
    border: 1px solid var(--hbat-color-border, #d7dfd1);
    border-radius: var(--hbat-radius-md, 0.5rem);
}

.hbat-product-detail__tabs {
    margin-top: var(--hbat-space-8, 2rem);
}

.hbat-product-detail__tabs .tabs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--hbat-space-2, 0.5rem);
    margin: 0 0 var(--hbat-space-4, 1rem);
    padding: 0;
    list-style: none;
}

.hbat-product-detail__tabs .tabs a {
    display: inline-flex;
    padding: var(--hbat-space-2, 0.5rem) var(--hbat-space-3, 0.75rem);
    border: 1px solid var(--hbat-color-border, #d7dfd1);
    border-radius: var(--hbat-radius-sm, 0.25rem);
    color: var(--hbat-color-text, #182114);
    font-weight: 700;
    text-decoration: none;
}

.hbat-product-detail__tabs .tabs .active a {
    border-color: var(--hbat-color-primary, #2f6b3f);
    color: var(--hbat-color-primary, #2f6b3f);
}

.hbat-request {
    padding-block: var(--hbat-space-16, 4rem);
}

.hbat-request__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.72fr);
    gap: var(--hbat-space-12, 3rem);
    align-items: start;
}

.hbat-request__intro {
    margin-bottom: 0;
}

.hbat-request__trust {
    grid-template-columns: 1fr;
}

.hbat-request__trust-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--hbat-space-3, 0.75rem);
    align-items: start;
}

.hbat-request__trust-item span {
    display: inline-flex;
    width: 1.75rem;
    height: 1.75rem;
    align-items: center;
    justify-content: center;
    border-radius: var(--hbat-radius-sm, 0.25rem);
    background: var(--hbat-color-primary, #2f6b3f);
    color: var(--hbat-color-primary-contrast, #ffffff);
    font-weight: 800;
}

.hbat-request__trust-item p {
    margin: 0;
}

.hbat-request__form-card {
    position: sticky;
    top: var(--hbat-space-6, 1.5rem);
}

.hbat-request__form {
    display: grid;
    gap: var(--hbat-space-4, 1rem);
}

.hbat-request__form form,
.hbat-request__form .hbat-crm-form {
    display: grid;
    gap: var(--hbat-space-4, 1rem);
}

.hbat-request__form label {
    color: var(--hbat-color-text, #182114);
    font-weight: 700;
}

.hbat-request__form input,
.hbat-request__form select,
.hbat-request__form textarea {
    width: 100%;
    min-height: 2.75rem;
    padding: var(--hbat-space-3, 0.75rem);
    border: 1px solid var(--hbat-color-border, #d7dfd1);
    border-radius: var(--hbat-radius-md, 0.5rem);
    background: var(--hbat-color-surface, #ffffff);
    color: var(--hbat-color-text, #182114);
    font: inherit;
}

.hbat-request__form textarea {
    min-height: 9rem;
    resize: vertical;
}

.hbat-request__form button,
.hbat-request__form input[type="submit"] {
    width: fit-content;
    min-height: 2.75rem;
    padding-inline: var(--hbat-space-6, 1.5rem);
    border: 1px solid var(--hbat-color-primary, #2f6b3f);
    border-radius: var(--hbat-radius-md, 0.5rem);
    background: var(--hbat-color-primary, #2f6b3f);
    color: var(--hbat-color-primary-contrast, #ffffff);
    font-weight: 700;
    cursor: pointer;
}

.hbat-request__form button:hover,
.hbat-request__form button:focus-visible,
.hbat-request__form input[type="submit"]:hover,
.hbat-request__form input[type="submit"]:focus-visible {
    border-color: #255632;
    background: #255632;
    color: var(--hbat-color-primary-contrast, #ffffff);
}

@media (max-width: 48rem) {
    .hbat-site-header__inner,
    .hbat-primary-navigation,
    .hbat-header-cta {
        width: 100%;
    }

    .hbat-header-cta {
        justify-content: center;
    }

    .hbat-home-section {
        padding-block: var(--hbat-space-8, 2rem);
    }

    .hbat-home-actions,
    .hbat-button {
        width: 100%;
    }

    .hbat-home h1 {
        font-size: var(--hbat-font-size-2xl, 2rem);
    }

    .post-type-archive-product.woocommerce ul.products,
    .tax-product_cat.woocommerce ul.products,
    .tax-product_tag.woocommerce ul.products,
    .hbat-shop ul.products,
    .hbat-woocommerce-archive ul.products,
    .hbat-products-grid {
        grid-template-columns: 1fr;
    }

    .hbat-home-hero__inner,
    .hbat-home-preview__inner,
    .hbat-home-cta__inner,
    .hbat-split,
    .hbat-cta-card,
    .hbat-request__layout,
    .hbat-product-detail__layout,
    .hbat-site-footer__inner {
        grid-template-columns: 1fr;
    }

    .hbat-request__form-card {
        position: static;
    }

    .hbat-home-hero__visual {
        min-height: 18rem;
    }
}
