:root {
    --efs-accent: #304700;
    --efs-secondary: #6f7f18;
    --efs-cream: #f8f5ec;
    --efs-text: #192509;
    --efs-muted: #697051;
    --efs-border: rgba(48, 71, 0, .16);
    --efs-radius: 22px;
    --efs-gap: 24px;
    --efs-carousel-gap: 24px;
}

.efs-showcase,
.efs-showcase * {
    box-sizing: border-box;
}

.efs-showcase {
    width: 100%;
    margin: 0 auto;
    color: var(--efs-text);
}

.efs-showcase-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.efs-mode-grid .efs-showcase-header {
    display: block;
}

.efs-section-heading {
    max-width: 780px;
}

.efs-mode-grid .efs-section-heading {
    margin-right: auto;
    margin-left: auto;
}

.efs-section-heading h2 {
    margin: 0;
    color: var(--efs-text);
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.efs-section-heading p {
    margin: 10px 0 0;
    color: var(--efs-muted);
    font-size: 16px;
    line-height: 1.55;
}

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

.efs-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--efs-border);
    border-radius: var(--efs-radius);
    background-color: #fff;
    box-shadow: 0 18px 46px rgba(25, 43, 0, .075);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.efs-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(48, 71, 0, .32);
    box-shadow: 0 28px 65px rgba(25, 43, 0, .14);
}

.efs-product-media {
    position: relative;
    display: block;
    padding: 20px 20px 0;
    text-decoration: none !important;
}

.efs-product-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 230px;
    border-radius: calc(var(--efs-radius) - 6px);
    background: linear-gradient(180deg, #fbfaf4 0%, #f0f3e7 100%);
    overflow: hidden;
}

.efs-product-image {
    display: block;
    width: 86%;
    max-width: 100%;
    max-height: 86%;
    height: auto;
    object-fit: contain;
    transition: transform .28s ease;
}

.efs-product-card:hover .efs-product-image {
    transform: scale(1.045);
}

.efs-product-badge {
    position: absolute;
    top: 32px;
    left: 32px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--efs-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.efs-product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px 20px 20px;
}

.efs-product-title {
    margin: 0 0 8px;
    color: var(--efs-text);
    font-size: 16px;
    line-height: 1.28;
    font-weight: 700;
    letter-spacing: -.015em;
    overflow-wrap: anywhere;
}

.efs-product-title a {
    color: inherit;
    text-decoration: none !important;
}

.efs-product-title a:hover {
    color: var(--efs-secondary);
}

.efs-product-price {
    margin: 0 0 8px;
    color: var(--efs-accent);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.efs-product-price del { color: #8b9275; font-weight: 500; }
.efs-product-price ins { text-decoration: none; }

.efs-product-excerpt {
    margin: 0;
    color: var(--efs-muted);
    font-size: 13px;
    line-height: 1.45;
}

.efs-product-actions {
    margin-top: auto;
    padding-top: 16px;
}

.efs-quantity {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    min-height: 42px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid var(--efs-border);
    border-radius: 999px;
    background: #fff;
}

.efs-qty-btn,
.efs-qty-input {
    height: 42px;
    border: 0 !important;
    background: transparent !important;
    color: var(--efs-text);
    box-shadow: none !important;
    outline: 0 !important;
}

.efs-qty-btn {
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

.efs-qty-btn:hover { background: var(--efs-cream) !important; }

.efs-qty-input {
    width: 100%;
    text-align: center;
    font-weight: 700;
    appearance: textfield;
    -moz-appearance: textfield;
}

.efs-qty-input::-webkit-outer-spin-button,
.efs-qty-input::-webkit-inner-spin-button { margin: 0; appearance: none; -webkit-appearance: none; }

.efs-add-to-cart,
.efs-view-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    padding: 12px 18px;
    border: 0 !important;
    border-radius: 999px;
    background: var(--efs-accent) !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.efs-add-to-cart:hover,
.efs-view-product:hover { transform: translateY(-1px); background: var(--efs-secondary) !important; }
.efs-add-to-cart.is-loading { opacity: .75; cursor: wait; }
.efs-add-to-cart.is-added { background: #3d7a22 !important; }

.efs-empty-products {
    padding: 28px;
    border: 1px dashed var(--efs-border);
    border-radius: var(--efs-radius);
    color: var(--efs-muted);
    text-align: center;
}

/* Carousel */
.efs-mode-carousel { overflow: hidden; }
.efs-carousel-arrows { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.efs-carousel-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--efs-border) !important;
    border-radius: 999px;
    background: #fff !important;
    color: var(--efs-accent) !important;
    box-shadow: 0 14px 34px rgba(25, 43, 0, .08);
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    transition: transform .2s ease, background .2s ease, color .2s ease, opacity .2s ease;
}
.efs-carousel-arrow svg,
.efs-carousel-arrow i { width: 16px; height: 16px; font-size: 16px; }
.efs-carousel-arrow:hover:not(:disabled) { transform: translateY(-1px); background: var(--efs-accent) !important; color: #fff !important; }
.efs-carousel-arrow:disabled { opacity: .42; cursor: not-allowed; }
.efs-carousel-viewport { overflow: hidden; width: 100%; }
.efs-carousel-track { display: flex; gap: var(--efs-carousel-gap, 24px); transition: transform .35s ease; will-change: transform; }
.efs-carousel-slide { flex: 0 0 calc((100% - (var(--efs-carousel-gap, 24px) * (var(--efs-slides-desktop, 4) - 1))) / var(--efs-slides-desktop, 4)); min-width: 0; }
.efs-carousel-slide .efs-product-card { height: 100%; }
.efs-carousel-dots { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 24px; }
.efs-carousel-dot { width: 10px; height: 10px; padding: 0; border: 0 !important; border-radius: 999px; background: rgba(48, 71, 0, .25) !important; cursor: pointer; transition: width .2s ease, background .2s ease; }
.efs-carousel-dot.is-active { width: 30px; background: var(--efs-accent) !important; }

/* Layouts */
.efs-layout-clean .efs-product-card { box-shadow: none; border-color: rgba(48,71,0,.12); }
.efs-layout-clean .efs-product-image-wrap { background: #faf9f2; }

.efs-layout-minimal .efs-product-card { border-color: transparent; background: transparent; box-shadow: none; }
.efs-layout-minimal .efs-product-card:hover { border-color: transparent; box-shadow: none; }
.efs-layout-minimal .efs-product-media { padding: 0; }
.efs-layout-minimal .efs-product-image-wrap { background: #fff; border: 1px solid var(--efs-border); box-shadow: 0 18px 44px rgba(25, 43, 0, .07); }
.efs-layout-minimal .efs-product-body { padding: 16px 4px 0; text-align: center; }

.efs-layout-horizontal .efs-product-card { display: grid; grid-template-columns: minmax(130px, 38%) 1fr; }
.efs-layout-horizontal .efs-product-media { padding: 16px 0 16px 16px; }
.efs-layout-horizontal .efs-product-image-wrap { height: 100%; min-height: 190px; }
.efs-layout-horizontal .efs-product-body { padding: 20px; }

.efs-layout-overlay .efs-product-card,
.efs-layout-poster .efs-product-card { min-height: 410px; justify-content: flex-end; background: #0b1706; }
.efs-layout-overlay .efs-product-media,
.efs-layout-poster .efs-product-media { position: absolute; inset: 0; padding: 0; }
.efs-layout-overlay .efs-product-image-wrap,
.efs-layout-poster .efs-product-image-wrap { height: 100%; border-radius: 0; background: linear-gradient(180deg, #eef2e4, #dfe8cf); }
.efs-layout-overlay .efs-product-image,
.efs-layout-poster .efs-product-image { width: 80%; max-height: 72%; }
.efs-layout-overlay .efs-product-body,
.efs-layout-poster .efs-product-body { position: relative; z-index: 2; min-height: 46%; justify-content: flex-end; color: #fff; background: linear-gradient(180deg, transparent, rgba(5, 16, 0, .9)); }
.efs-layout-overlay .efs-product-title,
.efs-layout-overlay .efs-product-title a,
.efs-layout-overlay .efs-product-price,
.efs-layout-overlay .efs-product-excerpt,
.efs-layout-poster .efs-product-title,
.efs-layout-poster .efs-product-title a,
.efs-layout-poster .efs-product-price,
.efs-layout-poster .efs-product-excerpt { color: #fff; }

.efs-layout-compact .efs-product-media { padding: 14px 14px 0; }
.efs-layout-compact .efs-product-image-wrap { height: 165px; }
.efs-layout-compact .efs-product-body { padding: 14px; }
.efs-layout-compact .efs-product-excerpt { display: none; }
.efs-layout-compact .efs-add-to-cart,
.efs-layout-compact .efs-view-product { min-height: 40px; }

.efs-layout-split .efs-product-card { background: linear-gradient(135deg, #fff 0%, #fff 50%, #f2f5e9 50%, #f2f5e9 100%); }
.efs-layout-split .efs-product-image-wrap { background: transparent; }

.efs-layout-floating .efs-product-card { overflow: visible; margin-top: 22px; padding-top: 12px; }
.efs-layout-floating .efs-product-media { padding-top: 0; }
.efs-layout-floating .efs-product-image-wrap { background: transparent; overflow: visible; }
.efs-layout-floating .efs-product-image { filter: drop-shadow(0 22px 18px rgba(27,42,4,.16)); }

.efs-layout-botanical .efs-product-card { background: linear-gradient(180deg, #fffdf7 0%, #f4f6eb 100%); }
.efs-layout-botanical .efs-product-card::before { content: ''; position: absolute; width: 160px; height: 160px; right: -56px; top: -56px; border-radius: 999px; background: rgba(111, 127, 24, .10); }
.efs-layout-botanical .efs-product-image-wrap { background: rgba(248,245,236,.72); }

.efs-layout-glass .efs-product-card { background: rgba(255,255,255,.68); backdrop-filter: blur(12px); box-shadow: 0 24px 70px rgba(25, 43, 0, .12); }
.efs-layout-glass .efs-product-image-wrap { background: rgba(255,255,255,.42); }

.efs-layout-magazine .efs-product-card { border-radius: 4px; box-shadow: none; }
.efs-layout-magazine .efs-product-body { border-top: 1px solid var(--efs-border); }
.efs-layout-magazine .efs-product-title { text-transform: uppercase; letter-spacing: .04em; }

.efs-layout-shelf .efs-product-image-wrap::after { content: ''; position: absolute; left: 18%; right: 18%; bottom: 15px; height: 16px; border-radius: 999px; background: rgba(20,25,8,.18); filter: blur(8px); }
.efs-layout-shelf .efs-product-image { position: relative; z-index: 1; }

.efs-layout-capsule .efs-product-card { border-radius: 32px; background: linear-gradient(180deg, #fff 0%, #f8f6ed 100%); }
.efs-layout-capsule .efs-product-image-wrap { border-radius: 28px; }

/* Toast */
.efs-toast { position: fixed; right: 20px; bottom: 20px; z-index: 999999; max-width: min(360px, calc(100vw - 40px)); padding: 14px 18px; border-radius: 14px; background: var(--efs-accent); color: #fff; box-shadow: 0 20px 50px rgba(0,0,0,.18); font-size: 14px; font-weight: 700; opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.efs-toast.is-visible { opacity: 1; transform: translateY(0); }
.efs-toast.is-error { background: #7b1f1f; }

@media (max-width: 1024px) {
    .efs-product-grid { grid-template-columns: repeat(var(--efs-columns-tablet, 2), minmax(0, 1fr)); }
    .efs-carousel-slide { flex-basis: calc((100% - (var(--efs-carousel-gap, 24px) * (var(--efs-slides-tablet, 2) - 1))) / var(--efs-slides-tablet, 2)); }
}

@media (max-width: 640px) {
    .efs-showcase-header { align-items: flex-start; flex-direction: column; }
    .efs-carousel-arrows { width: 100%; justify-content: flex-end; }
    .efs-product-grid { grid-template-columns: repeat(var(--efs-columns-mobile, 1), minmax(0, 1fr)); gap: var(--efs-gap, 18px); }
    .efs-carousel-slide { flex-basis: calc((100% - (var(--efs-carousel-gap, 18px) * (var(--efs-slides-mobile, 1) - 1))) / var(--efs-slides-mobile, 1)); }
    .efs-product-media { padding: 16px 16px 0; }
    .efs-product-body { padding: 16px; }
    .efs-layout-horizontal .efs-product-card { display: flex; }
    .efs-layout-horizontal .efs-product-media { padding: 16px 16px 0; }
    .efs-layout-horizontal .efs-product-image-wrap { min-height: 0; }
}

/* v1.4.1 carousel controls hardening */
.efs-carousel-arrow {
    position: relative;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    appearance: none;
    -webkit-appearance: none;
}
.efs-carousel-arrow svg {
    display: block;
    width: 16px;
    height: 16px;
    color: currentColor;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}
.efs-carousel-arrow svg path {
    fill: none !important;
    stroke: currentColor !important;
}
.efs-carousel-arrow i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    line-height: 1;
    pointer-events: none;
}
.efs-carousel-arrow:disabled {
    opacity: .36;
}
.efs-carousel-dot {
    display: block;
    min-width: 0 !important;
    min-height: 0 !important;
    width: 8px;
    height: 8px;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
}
.efs-carousel-dot.is-active {
    width: 22px;
}


/* v1.4.2 definitive arrow rendering */
.efs-carousel-arrow {
    isolation: isolate;
    overflow: visible !important;
    text-indent: 0 !important;
    font-family: inherit !important;
}
.efs-carousel-arrow .efs-arrow-svg,
.efs-carousel-arrow > svg {
    position: relative;
    z-index: 2;
    display: block !important;
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    opacity: 1 !important;
    visibility: visible !important;
}
.efs-carousel-arrow .efs-arrow-svg path,
.efs-carousel-arrow > svg path {
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 3 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.efs-carousel-prev::before,
.efs-carousel-next::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 11px;
    border-top: 3px solid currentColor;
    border-right: 3px solid currentColor;
    opacity: 1;
    pointer-events: none;
}
.efs-carousel-prev::before {
    transform: translate(-38%, -50%) rotate(-135deg);
}
.efs-carousel-next::before {
    transform: translate(-62%, -50%) rotate(45deg);
}
.efs-carousel-arrow .efs-arrow-svg + .efs-arrow-svg,
.efs-carousel-arrow i + .efs-arrow-svg {
    display: none !important;
}

/* Category selector / product groups */
.efs-has-category-selector .efs-showcase-header {
    margin-bottom: 22px;
}

.efs-category-selector {
    display: grid;
    grid-template-columns: repeat(var(--efs-selector-columns, 2), minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.efs-selector-tab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 94px;
    padding: 18px 20px;
    border: 1px solid rgba(48, 71, 0, .16);
    border-radius: 22px;
    background: #fff;
    color: var(--efs-text);
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.efs-selector-tab::after {
    content: "";
    position: absolute;
    inset: auto 18px 0 18px;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: var(--efs-accent);
    opacity: 0;
    transform: scaleX(.45);
    transition: opacity .22s ease, transform .22s ease;
}

.efs-selector-tab:hover,
.efs-selector-tab.is-active {
    transform: translateY(-2px);
    border-color: rgba(48, 71, 0, .36);
    background: linear-gradient(180deg, #ffffff 0%, var(--efs-cream) 100%);
    box-shadow: 0 18px 44px rgba(25, 43, 0, .09);
}

.efs-selector-tab.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.efs-selector-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(48, 71, 0, .09);
    color: var(--efs-accent);
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.efs-selector-copy {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.efs-selector-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(48, 71, 0, .1);
    color: var(--efs-accent);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.efs-selector-tab strong {
    display: block;
    color: var(--efs-text);
    font-size: 18px;
    line-height: 1.14;
    letter-spacing: -.02em;
}

.efs-selector-tab small {
    display: block;
    color: var(--efs-muted);
    font-size: 13px;
    line-height: 1.35;
}

.efs-selector-panels {
    position: relative;
}

.efs-selector-panel[hidden] {
    display: none !important;
}

.efs-selector-panel.is-active {
    animation: efsPanelIn .24s ease both;
}

.efs-panel-carousel-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 16px;
}

@keyframes efsPanelIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
    .efs-category-selector {
        grid-template-columns: 1fr;
    }

    .efs-selector-tab {
        min-height: 82px;
        padding: 15px 16px;
    }
}

/* v1.6.0 WooCommerce native template polish */
.single-product .product.type-product {
    --efs-single-accent: var(--efs-accent, #304700);
    --efs-single-cream: var(--efs-cream, #f7f4ea);
}

.single-product div.product {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.single-product div.product .product_title {
    color: var(--efs-text, #142000);
    font-size: clamp(34px, 4vw, 58px);
    line-height: .96;
    letter-spacing: -.055em;
    margin-bottom: 18px;
}

.single-product div.product p.price,
.single-product div.product span.price {
    color: var(--efs-single-accent) !important;
    font-size: clamp(24px, 2.2vw, 34px);
    font-weight: 900;
    letter-spacing: -.03em;
}

.single-product div.product .woocommerce-product-gallery {
    overflow: hidden;
    border: 1px solid rgba(48, 71, 0, .13);
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, var(--efs-single-cream) 100%);
    padding: clamp(18px, 2.2vw, 34px);
    box-shadow: 0 28px 80px rgba(27, 42, 4, .08);
}

.single-product div.product .woocommerce-product-gallery img {
    border-radius: 22px;
}

.single-product div.product form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 24px;
    margin-bottom: 16px;
}

.single-product div.product form.cart .quantity input.qty {
    width: 88px;
    min-height: 52px;
    border: 1px solid rgba(48, 71, 0, .22);
    border-radius: 999px;
    background: #fff;
    color: var(--efs-text, #142000);
    font-weight: 800;
}

.single-product div.product form.cart .single_add_to_cart_button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout button.button,
.woocommerce button.button,
.woocommerce a.button {
    border-radius: 999px !important;
    background: var(--efs-single-accent) !important;
    color: #fff !important;
    font-weight: 900 !important;
    letter-spacing: -.01em;
    border: 0 !important;
    box-shadow: none !important;
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.single-product div.product form.cart .single_add_to_cart_button {
    min-height: 52px;
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.single-product div.product form.cart .single_add_to_cart_button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-checkout button.button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover {
    transform: translateY(-1px);
    background: var(--efs-secondary, #6f7f18) !important;
}

.efs-single-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 10px;
}

.efs-single-trust span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 7px 11px;
    border: 1px solid rgba(48, 71, 0, .14);
    border-radius: 999px;
    background: rgba(247, 244, 234, .82);
    color: var(--efs-single-accent);
    font-size: 12px;
    font-weight: 850;
    line-height: 1;
}

.efs-single-trust span::before {
    content: '✓';
    margin-right: 6px;
    font-weight: 900;
}

.efs-single-purchase-note,
.efs-supplement-disclaimer-box {
    display: flex;
    gap: 14px;
    width: 100%;
    border: 1px solid rgba(48, 71, 0, .14);
    border-radius: 22px;
    background: linear-gradient(180deg, #fffdf7 0%, #f7f4ea 100%);
    color: var(--efs-text, #142000);
    box-shadow: 0 18px 50px rgba(27, 42, 4, .06);
}

.efs-single-purchase-note {
    flex-direction: column;
    gap: 5px;
    padding: 16px 18px;
    margin: 4px 0 20px;
}

.efs-single-purchase-note strong,
.efs-supplement-disclaimer-copy h3 {
    color: var(--efs-single-accent);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
    margin: 0;
}

.efs-single-purchase-note span,
.efs-supplement-disclaimer-copy p {
    color: var(--efs-muted, #657052);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

.efs-supplement-disclaimer-box {
    max-width: 1180px;
    margin: 34px auto 28px;
    padding: 22px;
}

.efs-supplement-disclaimer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--efs-single-accent);
    color: #fff;
    font-weight: 900;
}

.single-product .woocommerce-tabs {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid rgba(48, 71, 0, .12);
    padding-top: 20px;
}

.single-product .woocommerce-tabs ul.tabs {
    padding-left: 0 !important;
    margin-bottom: 18px !important;
}

.single-product .woocommerce-tabs ul.tabs li {
    border-radius: 999px !important;
    border: 1px solid rgba(48, 71, 0, .14) !important;
    background: #fff !important;
    margin-right: 8px !important;
}

.single-product .woocommerce-tabs ul.tabs li.active {
    background: var(--efs-single-accent) !important;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
    color: #fff !important;
}

.efs-single-related-wrap {
    max-width: 1180px;
    margin: 32px auto 60px;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
    border-radius: 24px;
    overflow: hidden;
    border-color: rgba(48, 71, 0, .14) !important;
}

@media (max-width: 768px) {
    .single-product div.product .product_title {
        font-size: 34px;
    }

    .single-product div.product .woocommerce-product-gallery {
        border-radius: 22px;
        padding: 16px;
    }

    .single-product div.product form.cart {
        display: block;
    }

    .single-product div.product form.cart .quantity,
    .single-product div.product form.cart .single_add_to_cart_button {
        width: 100%;
        margin-bottom: 10px;
    }

    .single-product div.product form.cart .quantity input.qty {
        width: 100%;
    }

    .efs-supplement-disclaimer-box {
        margin-left: 0;
        margin-right: 0;
    }
}


/* v1.6.1 single product related/disclaimer polish */
.efs-supplement-disclaimer-box {
    align-items: flex-start !important;
    gap: 14px !important;
    max-width: 1180px !important;
    padding: 18px 20px !important;
}

.efs-supplement-disclaimer-copy {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
}

.efs-supplement-disclaimer-copy h3 {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--efs-single-accent, #304700) !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
    letter-spacing: -.01em !important;
    text-transform: none !important;
    white-space: normal !important;
}

.efs-supplement-disclaimer-copy p {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--efs-muted, #657052) !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
}

.efs-supplement-disclaimer-icon {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    font-size: 14px !important;
    line-height: 1 !important;
}

.efs-single-related-wrap .efs-section-heading {
    max-width: 720px !important;
    margin-bottom: 24px !important;
}

.efs-single-related-wrap .efs-section-heading h2 {
    font-size: clamp(28px, 3vw, 42px) !important;
    line-height: 1.05 !important;
    letter-spacing: -.045em !important;
}

.efs-single-related-wrap .efs-section-heading p {
    font-size: 15px !important;
    line-height: 1.45 !important;
}

.efs-single-related-wrap .efs-product-card {
    min-height: auto !important;
}

.efs-single-related-wrap .efs-product-image-wrap {
    height: 210px !important;
}

.efs-single-related-wrap .efs-product-body {
    padding: 16px 18px 18px !important;
}

.efs-single-related-wrap .efs-product-title,
.efs-single-related-wrap .efs-product-title a {
    font-size: 17px !important;
    line-height: 1.18 !important;
    letter-spacing: -.025em !important;
    font-weight: 850 !important;
    text-transform: none !important;
    color: var(--efs-text, #142000) !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
}

.efs-single-related-wrap .efs-product-price,
.efs-single-related-wrap .efs-product-price .woocommerce-Price-amount {
    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 850 !important;
}

.efs-single-related-wrap .efs-product-excerpt {
    font-size: 12px !important;
    line-height: 1.4 !important;
    max-height: 3.1em !important;
    overflow: hidden !important;
}

.efs-single-related-wrap .efs-quantity {
    min-height: 38px !important;
    grid-template-columns: 38px 1fr 38px !important;
}

.efs-single-related-wrap .efs-qty-btn,
.efs-single-related-wrap .efs-qty-input {
    height: 38px !important;
}

.efs-single-related-wrap .efs-add-to-cart,
.efs-single-related-wrap .efs-view-product {
    min-height: 42px !important;
    font-size: 13px !important;
}

@media (max-width: 768px) {
    .efs-supplement-disclaimer-box {
        padding: 16px !important;
        border-radius: 18px !important;
    }

    .efs-single-related-wrap .efs-product-image-wrap {
        height: 190px !important;
    }

    .efs-single-related-wrap .efs-product-title,
    .efs-single-related-wrap .efs-product-title a {
        font-size: 16px !important;
    }
}

/* v1.6.2 definitive single product compact polish */
.single-product .efs-supplement-disclaimer-box,
.woocommerce div.product .efs-supplement-disclaimer-box {
    display: grid !important;
    grid-template-columns: 30px minmax(0, 1fr) !important;
    align-items: flex-start !important;
    gap: 12px !important;
    max-width: 1180px !important;
    margin: 28px auto 24px !important;
    padding: 16px 18px !important;
    border-radius: 20px !important;
    background: #fffdf5 !important;
    border: 1px solid rgba(48, 71, 0, .14) !important;
    box-shadow: 0 16px 44px rgba(27, 42, 4, .05) !important;
}

.single-product .efs-supplement-disclaimer-icon,
.woocommerce div.product .efs-supplement-disclaimer-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    margin-top: 1px !important;
    font-size: 13px !important;
    line-height: 28px !important;
    text-align: center !important;
}

.single-product .efs-supplement-disclaimer-copy,
.woocommerce div.product .efs-supplement-disclaimer-copy {
    display: block !important;
    min-width: 0 !important;
}

.single-product .efs-supplement-disclaimer-title,
.woocommerce div.product .efs-supplement-disclaimer-title {
    display: block !important;
    margin: 0 0 4px !important;
    padding: 0 !important;
    color: var(--efs-single-accent, #304700) !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    letter-spacing: -.01em !important;
    text-transform: none !important;
}

.single-product .efs-supplement-disclaimer-copy p,
.woocommerce div.product .efs-supplement-disclaimer-copy p {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 980px !important;
    color: var(--efs-muted, #657052) !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
}

.single-product .efs-single-related-wrap,
.woocommerce div.product .efs-single-related-wrap {
    max-width: 1180px !important;
    margin: 36px auto 64px !important;
}

.single-product .efs-single-related-wrap .efs-section-heading,
.woocommerce div.product .efs-single-related-wrap .efs-section-heading {
    max-width: 720px !important;
    margin: 0 auto 26px !important;
    text-align: center !important;
}

.single-product .efs-single-related-wrap .efs-section-heading h2,
.woocommerce div.product .efs-single-related-wrap .efs-section-heading h2 {
    margin: 0 0 8px !important;
    color: var(--efs-text, #142000) !important;
    font-size: clamp(26px, 2.6vw, 38px) !important;
    line-height: 1.06 !important;
    font-weight: 850 !important;
    letter-spacing: -.04em !important;
    text-transform: none !important;
}

.single-product .efs-single-related-wrap .efs-section-heading p,
.woocommerce div.product .efs-single-related-wrap .efs-section-heading p {
    margin: 0 !important;
    color: var(--efs-muted, #657052) !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    font-weight: 400 !important;
}

.single-product .efs-single-related-wrap .efs-product-card,
.woocommerce div.product .efs-single-related-wrap .efs-product-card {
    border-radius: 20px !important;
    min-height: 0 !important;
}

.single-product .efs-single-related-wrap .efs-product-image-wrap,
.woocommerce div.product .efs-single-related-wrap .efs-product-image-wrap {
    height: 190px !important;
    border-radius: 16px !important;
}

.single-product .efs-single-related-wrap .efs-product-image,
.woocommerce div.product .efs-single-related-wrap .efs-product-image {
    max-height: 170px !important;
}

.single-product .efs-single-related-wrap .efs-product-body,
.woocommerce div.product .efs-single-related-wrap .efs-product-body {
    padding: 14px 16px 16px !important;
}

.single-product .efs-single-related-wrap .efs-product-title,
.single-product .efs-single-related-wrap .efs-product-title a,
.woocommerce div.product .efs-single-related-wrap .efs-product-title,
.woocommerce div.product .efs-single-related-wrap .efs-product-title a {
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;
    overflow: hidden !important;
    margin: 0 0 7px !important;
    color: var(--efs-text, #142000) !important;
    font-size: 14px !important;
    line-height: 1.18 !important;
    font-weight: 850 !important;
    letter-spacing: -.018em !important;
    text-transform: none !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
}

.single-product .efs-single-related-wrap .efs-product-price,
.single-product .efs-single-related-wrap .efs-product-price .woocommerce-Price-amount,
.woocommerce div.product .efs-single-related-wrap .efs-product-price,
.woocommerce div.product .efs-single-related-wrap .efs-product-price .woocommerce-Price-amount {
    margin: 0 !important;
    color: var(--efs-single-accent, #304700) !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 850 !important;
}

.single-product .efs-single-related-wrap .efs-product-excerpt,
.woocommerce div.product .efs-single-related-wrap .efs-product-excerpt,
.single-product .efs-single-related-wrap .efs-quantity,
.woocommerce div.product .efs-single-related-wrap .efs-quantity {
    display: none !important;
}

.single-product .efs-single-related-wrap .efs-product-actions,
.woocommerce div.product .efs-single-related-wrap .efs-product-actions {
    padding-top: 12px !important;
}

.single-product .efs-single-related-wrap .efs-add-to-cart,
.single-product .efs-single-related-wrap .efs-view-product,
.woocommerce div.product .efs-single-related-wrap .efs-add-to-cart,
.woocommerce div.product .efs-single-related-wrap .efs-view-product {
    min-height: 40px !important;
    padding: 10px 14px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 850 !important;
}

@media (max-width: 768px) {
    .single-product .efs-supplement-disclaimer-box,
    .woocommerce div.product .efs-supplement-disclaimer-box {
        grid-template-columns: 26px minmax(0, 1fr) !important;
        padding: 14px !important;
        border-radius: 18px !important;
    }

    .single-product .efs-supplement-disclaimer-icon,
    .woocommerce div.product .efs-supplement-disclaimer-icon {
        width: 26px !important;
        height: 26px !important;
        min-width: 26px !important;
        line-height: 26px !important;
    }

    .single-product .efs-single-related-wrap .efs-section-heading h2,
    .woocommerce div.product .efs-single-related-wrap .efs-section-heading h2 {
        font-size: 28px !important;
    }

    .single-product .efs-single-related-wrap .efs-product-image-wrap,
    .woocommerce div.product .efs-single-related-wrap .efs-product-image-wrap {
        height: 180px !important;
    }
}
