.kg-product-hero {
    --kg-hero-green: #6aa84f;
    --kg-hero-green-dark: #426b32;
    --kg-hero-green-light: #bce5a5;
    --kg-hero-brown: #7a5648;
    --kg-hero-ink: #15110f;

    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #fff;

    min-height: auto;
    padding: 22px 0 26px;

    background:
        radial-gradient(circle at 12% 18%, rgba(122, 86, 72, .30), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(106, 168, 79, .24), transparent 32%),
        linear-gradient(135deg, #15110f 0%, #241b17 50%, #10130f 100%);
}

.kg-product-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(circle at 24% 26%, rgba(255, 255, 255, .065), transparent 28%),
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .045), transparent 26%);
}

.kg-product-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: -1;
    height: 42px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
}

.kg-product-hero__glow {
    position: absolute;
    z-index: -1;
    width: 300px;
    height: 300px;
    border-radius: 999px;
    filter: blur(78px);
    opacity: .22;
    pointer-events: none;
}

.kg-product-hero__glow--brown {
    left: -115px;
    top: -90px;
    background: #c59665;
}

.kg-product-hero__glow--green {
    right: -115px;
    bottom: -100px;
    background: var(--kg-hero-green);
}

.kg-product-breadcrumb--hero {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
    line-height: 1.4;
}

.kg-product-breadcrumb--hero a,
.kg-product-breadcrumb--hero .woocommerce-breadcrumb a {
    color: rgba(255, 255, 255, .76);
    text-decoration: none;
    transition: color .22s ease;
}

.kg-product-breadcrumb--hero a:hover,
.kg-product-breadcrumb--hero .woocommerce-breadcrumb a:hover {
    color: #fff;
}

.kg-product-breadcrumb--hero .woocommerce-breadcrumb {
    margin: 0;
    color: inherit;
}

.kg-product-hero__grid--premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
}

.kg-product-hero__content {
    max-width: 1080px;
}

.kg-product-hero__title {
    max-width: 980px;
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 4.25vw, 56px);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -.045em;
}

.kg-product-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.kg-product-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 19px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    white-space: nowrap;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        background .22s ease,
        color .22s ease,
        border-color .22s ease;
}

.kg-product-hero__btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.kg-product-hero__btn svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
}

.kg-product-hero__btn--primary {
    color: #12200f;
    background: linear-gradient(135deg, #c4ecae 0%, var(--kg-hero-green) 100%);
    box-shadow: 0 14px 34px rgba(106, 168, 79, .26);
}

.kg-product-hero__btn--primary:hover {
    color: #12200f;
    box-shadow: 0 18px 46px rgba(106, 168, 79, .34);
}

.kg-product-hero__btn--ghost {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.kg-product-hero__btn--ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .24);
}

.kg-product-hero__facts--premium {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.kg-product-hero__facts--premium span {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 11px 13px;
    border-radius: 16px;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    line-height: 1.3;
    font-weight: 800;
    background: rgba(255, 255, 255, .085);
    border: 1px solid rgba(255, 255, 255, .125);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    overflow: hidden;
    transition:
        transform .22s ease,
        border-color .22s ease,
        background .22s ease,
        box-shadow .22s ease;
}

.kg-product-hero__facts--premium span::after {
    content: "";
    position: absolute;
    right: -24px;
    top: -28px;
    width: 70px;
    height: 70px;
    border-radius: 999px;
    background: rgba(106, 168, 79, .13);
    pointer-events: none;
}

.kg-product-hero__facts--premium span:hover {
    transform: translateY(-3px);
    border-color: rgba(188, 229, 165, .32);
    background: rgba(255, 255, 255, .125);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
}

.kg-product-hero__facts--premium svg {
    position: relative;
    z-index: 1;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    color: var(--kg-hero-green-light);
}

@media (max-width: 991.98px) {
    .kg-product-hero {
        padding: 20px 0 24px;
    }

    .kg-product-hero__facts--premium {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .kg-product-hero {
        padding: 18px 0 22px;
    }

    .kg-product-breadcrumb--hero {
        margin-bottom: 12px;
        font-size: 12px;
    }

    .kg-product-hero__title {
        font-size: clamp(28px, 8.8vw, 40px);
        line-height: 1.04;
    }

    .kg-product-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 16px;
    }

    .kg-product-hero__btn {
        width: 100%;
        min-height: 44px;
        padding: 0 16px;
    }

    .kg-product-hero__facts--premium {
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 16px;
    }

    .kg-product-hero__facts--premium span {
        min-height: 54px;
        padding: 10px 12px;
        border-radius: 15px;
    }

    .kg-product-hero__facts--premium svg {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .kg-product-hero *,
    .kg-product-hero *::before,
    .kg-product-hero *::after {
        transition: none !important;
        animation: none !important;
    }
}
