:root {
    --eha-primary: #1f5a43;
    --eha-secondary: #d8a23e;
    --eha-accent: #f4ecdc;
    --eha-ink: #123227;
    --eha-muted: #66796f;
    --eha-border: rgba(18, 50, 39, 0.12);
    --eha-white: #ffffff;
    --eha-shadow: 0 24px 80px rgba(18, 50, 39, 0.14);
    --eha-radius: 28px;
    --eha-radius-sm: 18px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--eha-ink);
    background:
        radial-gradient(circle at top left, rgba(216, 162, 62, 0.18), transparent 32%),
        linear-gradient(180deg, #fbf7ef 0%, #f7f2e6 36%, #f1ecdf 100%);
    line-height: 1.65;
}

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

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

.eha-container {
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
}

.screen-reader-text {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
}

.eha-topbar {
    background: var(--eha-primary);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
}

.eha-topbar-inner,
.eha-header-main,
.eha-footer-bottom-inner,
.eha-footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.eha-topbar a,
.eha-tool-link,
.eha-text-link {
    color: var(--eha-primary);
    font-weight: 700;
}

.eha-topbar a {
    color: #fff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(251, 247, 239, 0.92);
    border-bottom: 1px solid rgba(18, 50, 39, 0.07);
}

.eha-header-main {
    padding: 1rem 0;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.site-title {
    display: block;
    font-family: "Fraunces", serif;
    font-size: 1.55rem;
    font-weight: 700;
}

.site-description {
    margin: 0;
    color: var(--eha-muted);
    font-size: 0.92rem;
}

.main-navigation .menu {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation .menu a {
    font-weight: 700;
}

.eha-header-tools {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.eha-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--eha-white);
    padding: 0.8rem 1rem;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(18, 50, 39, 0.08);
}

.eha-cart-badge {
    display: inline-grid;
    place-items: center;
    min-width: 1.7rem;
    min-height: 1.7rem;
    border-radius: 999px;
    color: var(--eha-white);
    background: var(--eha-primary);
    font-size: 0.85rem;
}

.eha-nav-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 50%;
    background: var(--eha-primary);
    padding: 0.7rem;
}

.eha-nav-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 0.33rem 0;
}

.eha-hero {
    padding: 5rem 0 3rem;
}

.eha-hero-grid,
.eha-split,
.eha-ai-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.eha-kicker,
.eha-chip {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(31, 90, 67, 0.08);
    color: var(--eha-primary);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eha-hero-copy h1,
.eha-section-heading h2,
.eha-panel h2,
.eha-ai-copy h2,
.eha-footer-cta h2,
.woocommerce-products-header__title.page-title,
.product_title.entry-title {
    margin: 0 0 1rem;
    font-family: "Fraunces", serif;
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.eha-hero-copy h1 {
    font-size: clamp(2.9rem, 5vw, 5.8rem);
    max-width: 13ch;
}

.eha-lead {
    max-width: 60ch;
    font-size: 1.08rem;
    color: var(--eha-muted);
}

.eha-rotator {
    display: inline-block;
    min-width: 10ch;
    color: var(--eha-secondary);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.eha-rotator.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.eha-hero-actions,
.eha-badge-row,
.eha-pill-list,
.eha-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.eha-hero-points {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.eha-hero-points li {
    padding: 0.9rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(18, 50, 39, 0.08);
}

.eha-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding: 0.85rem 1.35rem;
    border: 0;
    border-radius: 999px;
    background: var(--eha-primary);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 18px 44px rgba(31, 90, 67, 0.18);
}

.eha-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    background: #173f2f;
    color: #fff;
}

.eha-button-muted {
    background: rgba(31, 90, 67, 0.08);
    color: var(--eha-primary);
    box-shadow: none;
}

.eha-button-light {
    background: #fff;
    color: var(--eha-primary);
}

.eha-hero-stack,
.eha-stack-grid {
    display: grid;
    gap: 1.2rem;
}

.eha-hero-card,
.eha-panel,
.eha-category-card,
.eha-feature-card,
.eha-product-card,
.eha-empty-state,
.eha-article-card,
.woocommerce ul.products li.product,
.woocommerce div.product,
.woocommerce-cart-form,
.cart-collaterals,
.woocommerce-checkout-review-order,
.woocommerce-checkout #customer_details,
.eha-product-meta-box {
    border-radius: var(--eha-radius);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--eha-border);
    box-shadow: var(--eha-shadow);
}

.eha-hero-card {
    padding: 1.7rem;
}

.eha-hero-card-main {
    min-height: 23rem;
    color: #fff;
    background:
        linear-gradient(160deg, rgba(216, 162, 62, 0.92), rgba(31, 90, 67, 0.96)),
        var(--eha-primary);
}

.eha-hero-card-main h2 {
    font-family: "Fraunces", serif;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
}

.eha-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.eha-mini-stats div {
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(10px);
}

.eha-mini-stats strong {
    display: block;
    font-size: 1.4rem;
}

.eha-hero-card-aside {
    background:
        linear-gradient(180deg, rgba(244, 236, 220, 0.94), rgba(255, 255, 255, 0.94)),
        #fff;
}

.eha-pill-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eha-pill-list li {
    width: 100%;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: rgba(31, 90, 67, 0.06);
}

.eha-section {
    padding: 2.4rem 0;
}

.eha-section-contrast {
    padding-top: 3rem;
}

.eha-section-alt {
    position: relative;
}

.eha-section-alt::before {
    content: "";
    position: absolute;
    inset: 15% 0 auto;
    height: 55%;
    background: linear-gradient(90deg, rgba(31, 90, 67, 0.08), rgba(216, 162, 62, 0.12));
    transform: skewY(-2deg);
    z-index: -1;
}

.eha-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.eha-section-heading h2,
.eha-panel h2,
.eha-ai-copy h2 {
    font-size: clamp(2rem, 4vw, 3.7rem);
    max-width: 14ch;
}

.eha-category-grid,
.eha-product-grid,
.eha-feature-grid,
.eha-post-grid,
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.eha-category-card,
.eha-feature-card {
    padding: 1.35rem;
}

.eha-category-card {
    min-height: 16rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 236, 220, 0.92)),
        #fff;
}

.eha-category-label,
.eha-category-meta {
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.eha-category-meta {
    margin-top: 2rem;
    color: var(--eha-primary);
}

.eha-product-card,
.woocommerce ul.products li.product {
    overflow: hidden;
}

.eha-product-media,
.woocommerce ul.products li.product a img,
.woocommerce div.product div.images img {
    display: block;
}

.eha-product-media {
    background: linear-gradient(180deg, rgba(31, 90, 67, 0.08), rgba(216, 162, 62, 0.12));
}

.eha-product-thumb,
.woocommerce ul.products li.product a img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 0;
}

.eha-product-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    color: var(--eha-primary);
}

.eha-product-body {
    padding: 1.1rem 1.1rem 1.35rem;
}

.eha-badge-row {
    margin-bottom: 0.8rem;
}

.eha-badge {
    display: inline-flex;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: rgba(31, 90, 67, 0.09);
    color: var(--eha-primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.eha-product-card h3,
.eha-category-card h3,
.eha-feature-card h3 {
    margin: 0 0 0.55rem;
    font-family: "Fraunces", serif;
    font-size: 1.45rem;
    line-height: 1.1;
}

.eha-product-meta,
.eha-feature-card p,
.eha-category-card p,
.eha-panel p,
.eha-ai-copy p,
.eha-empty-state p,
.eha-article-card,
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-breadcrumb {
    color: var(--eha-muted);
}

.eha-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}

.eha-price,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
    color: var(--eha-primary);
    font-size: 1.05rem;
    font-weight: 800;
}

.eha-panel {
    padding: 2rem;
}

.eha-panel-highlight {
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(145deg, rgba(31, 90, 67, 1), rgba(12, 40, 30, 1));
}

.eha-feature-card {
    min-height: 15rem;
}

.eha-ai-widget,
.eha-ai-fallback {
    min-height: 100%;
}

.eha-ai-fallback,
.eha-empty-state {
    display: grid;
    place-items: center;
    text-align: center;
    padding: 2rem;
}

.site-footer {
    margin-top: 4rem;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(10, 26, 20, 1), rgba(31, 90, 67, 1));
}

.eha-footer-cta {
    padding: 2.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.eha-footer-cta h2 {
    max-width: 18ch;
    font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.eha-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1.4rem;
    padding: 2.4rem 0;
}

.eha-footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eha-footer-grid li + li {
    margin-top: 0.55rem;
}

.eha-footer-bottom {
    padding: 1rem 0 1.6rem;
    color: rgba(255, 255, 255, 0.72);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.eha-page-shell {
    padding: 2.5rem 0 4rem;
}

.eha-stack {
    display: grid;
    gap: 1.5rem;
}

.eha-article-card {
    padding: 1.8rem;
}

.eha-article-card-single {
    max-width: 860px;
    margin: 0 auto;
}

.entry-title {
    font-family: "Fraunces", serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.08;
}

.woocommerce ul.products {
    list-style: none;
    padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce #content div.product div.images::after,
.woocommerce #content div.product div.summary::after,
.woocommerce div.product div.images::after,
.woocommerce div.product div.summary::after {
    display: none;
}

.woocommerce div.product {
    padding: 1.8rem;
}

.woocommerce div.product .woocommerce-product-gallery,
.woocommerce div.product .summary {
    width: 100%;
    float: none;
}

.woocommerce div.product .summary {
    margin-top: 1.5rem;
}

.woocommerce table.shop_table,
.woocommerce-checkout #payment {
    border-radius: 1.3rem;
    overflow: hidden;
    border: 1px solid var(--eha-border);
}

.eha-product-meta-box {
    margin-top: 1.4rem;
    padding: 1.2rem;
}

.woocommerce span.onsale {
    left: 1rem;
    top: 1rem;
    min-height: 2rem;
    min-width: 2rem;
    line-height: 2rem;
    border-radius: 999px;
    background: var(--eha-secondary);
    color: var(--eha-ink);
}

.woocommerce .quantity .qty,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-cart table.cart td.actions .coupon .input-text,
input[type="text"],
input[type="email"],
input[type="search"],
textarea {
    min-height: 3rem;
    border: 1px solid rgba(18, 50, 39, 0.16);
    border-radius: 16px;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.88);
}

@media (max-width: 980px) {
    .eha-hero-grid,
    .eha-split,
    .eha-ai-showcase,
    .eha-footer-grid,
    .eha-feature-grid,
    .eha-category-grid,
    .eha-product-grid,
    .eha-post-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .main-navigation {
        display: none;
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: calc(100% + 0.5rem);
        padding: 1rem;
        border-radius: 1.4rem;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid var(--eha-border);
        box-shadow: var(--eha-shadow);
    }

    .eha-menu-open .main-navigation {
        display: block;
    }

    .main-navigation .menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .eha-nav-toggle {
        display: inline-block;
    }
}

@media (max-width: 720px) {
    .eha-header-main,
    .eha-topbar-inner,
    .eha-footer-bottom-inner,
    .eha-footer-cta-inner,
    .eha-section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .eha-header-tools {
        display: none;
    }

    .eha-hero-grid,
    .eha-split,
    .eha-ai-showcase,
    .eha-footer-grid,
    .eha-feature-grid,
    .eha-category-grid,
    .eha-product-grid,
    .eha-post-grid,
    .woocommerce ul.products,
    .eha-mini-stats {
        grid-template-columns: minmax(0, 1fr);
    }

    .eha-hero {
        padding-top: 3.2rem;
    }

    .eha-hero-copy h1 {
        font-size: clamp(2.4rem, 11vw, 4rem);
    }

    .eha-section-heading h2,
    .eha-panel h2,
    .eha-ai-copy h2 {
        max-width: none;
        font-size: clamp(1.8rem, 8vw, 3rem);
    }
}
