/*
 * Komfort Glass — Product sections premium CSS
 * File: assets/css/kg-product-card-section.css
 *
 * Covers blocks from content-single-product-section.php:
 * - .kg-product-related
 * - .kg-product-details
 * - .kg-trust-section
 * - .kg-consultation
 *
 * Safe strategy:
 * - does not rename existing classes;
 * - only styles/adds behavior around existing classes;
 * - can be loaded after kg-product-card.css.
 */

:root {
    --kg-green: #6aa84f;
    --kg-green-dark: #426b32;
    --kg-brown: #7a5648;
    --kg-brown-dark: #2b211d;
    --kg-ink: #261b0f;
    --kg-muted: #6d655d;
    --kg-line: rgba(38, 27, 15, .12);
    --kg-line-strong: rgba(38, 27, 15, .18);
    --kg-card: #ffffff;
    --kg-soft: #f7f3ee;
    --kg-cream: #fbf8f4;
    --kg-green-soft: #eef7e9;
    --kg-shadow: 0 22px 70px rgba(38, 27, 15, .12);
    --kg-shadow-hover: 0 30px 90px rgba(38, 27, 15, .16);
    --kg-radius: 28px;
    --kg-radius-sm: 18px;
    --kg-ease: cubic-bezier(.2, .7, .2, 1);
}

/* Shared section primitives */
.kg-product-details,
.kg-product-related,
.kg-trust-section,
.kg-consultation {
    position: relative;
    color: var(--kg-ink);
}

.kg-product-details *,
.kg-product-related *,
.kg-trust-section *,
.kg-consultation * {
    box-sizing: border-box;
}

.kg-product-details a,
.kg-product-related a,
.kg-trust-section a,
.kg-consultation a {
    text-decoration: none;
}

.kg-section-head {
    margin-bottom: clamp(18px, 2.2vw, 30px);
}

.kg-section-head span,
.kg-card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    color: var(--kg-green-dark);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.kg-section-head span::before,
.kg-card-kicker::before {
    content: "";
    width: 28px;
    height: 1px;
    flex: 0 0 28px;
    background: currentColor;
}

.kg-section-head h2 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(28px, 3.2vw, 48px);
    line-height: 1.04;
    font-weight: 760;
    letter-spacing: -.05em;
    color: var(--kg-ink);
}

.kg-section-head--row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
}

.kg-section-head--row p {
    max-width: 520px;
    margin: 0;
    color: var(--kg-muted);
    font-size: 15px;
    line-height: 1.72;
}

.kg-section-head__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--kg-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .86);
    color: var(--kg-ink);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 12px 34px rgba(38, 27, 15, .07);
    transition:
        transform .25s var(--kg-ease),
        background .25s var(--kg-ease),
        color .25s var(--kg-ease),
        border-color .25s var(--kg-ease),
        box-shadow .25s var(--kg-ease);
}

.kg-section-head__link:hover {
    transform: translateY(-2px);
    background: var(--kg-ink);
    color: #fff;
    border-color: var(--kg-ink);
    box-shadow: 0 18px 48px rgba(38, 27, 15, .16);
}

/* Premium cards base */
.kg-premium-card,
.kg-story-card,
.kg-choice-card,
.kg-option-card,
.kg-advantage-card,
.kg-trust-product-card,
.kg-consultation-card {
    position: relative;
    border: 1px solid var(--kg-line);
    background:
        radial-gradient(circle at 14% 0%, rgba(106, 168, 79, .10), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(248, 243, 238, .92));
    color: var(--kg-ink);
    box-shadow: 0 18px 55px rgba(38, 27, 15, .08);
    overflow: hidden;
}

.kg-premium-card,
.kg-story-card,
.kg-choice-card,
.kg-option-card,
.kg-advantage-card,
.kg-trust-product-card {
    border-radius: var(--kg-radius);
    padding: clamp(20px, 2.4vw, 30px);
    transition:
        transform .32s var(--kg-ease),
        box-shadow .32s var(--kg-ease),
        border-color .32s var(--kg-ease),
        background .32s var(--kg-ease);
}

.kg-premium-card::after,
.kg-story-card::after,
.kg-choice-card::after,
.kg-option-card::after,
.kg-advantage-card::after,
.kg-trust-product-card::after {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 124px;
    height: 124px;
    border-radius: 999px;
    background: rgba(122, 86, 72, .085);
    pointer-events: none;
    transition: transform .35s var(--kg-ease), opacity .35s var(--kg-ease);
}

.kg-premium-card:hover,
.kg-story-card:hover,
.kg-choice-card:hover,
.kg-option-card:hover,
.kg-advantage-card:hover,
.kg-trust-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(106, 168, 79, .32);
    box-shadow: var(--kg-shadow-hover);
}

.kg-premium-card:hover::after,
.kg-story-card:hover::after,
.kg-choice-card:hover::after,
.kg-option-card:hover::after,
.kg-advantage-card:hover::after,
.kg-trust-product-card:hover::after {
    transform: scale(1.08);
    opacity: .9;
}

.kg-premium-card h3,
.kg-story-card h3,
.kg-choice-card h3,
.kg-option-card h3,
.kg-advantage-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    font-size: clamp(18px, 1.7vw, 24px);
    line-height: 1.18;
    font-weight: 760;
    letter-spacing: -.03em;
    color: var(--kg-ink);
}

.kg-premium-card p,
.kg-premium-card li,
.kg-story-card p,
.kg-story-card li,
.kg-choice-card p,
.kg-option-card p,
.kg-advantage-card p {
    position: relative;
    z-index: 1;
    color: var(--kg-muted);
    font-size: 15px;
    line-height: 1.74;
}

/* Related products */
.kg-product-related {
    padding: clamp(42px, 5.5vw, 82px) 0 clamp(34px, 5vw, 70px);
    border-top: 1px solid rgba(38, 27, 15, .08);
    background:
        radial-gradient(circle at 12% 4%, rgba(106, 168, 79, .10), transparent 30%),
        linear-gradient(180deg, #fff, #fbf8f4 72%, #fff);
    overflow: hidden;
}

.kg-related-slider-wrap {
    position: relative;
    margin: 0 -12px;
}

.kg-related-slider {
    position: relative;
}

.kg-related-slider:not(.slick-initialized) {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.kg-related-slider .slick-list {
    overflow: hidden;
    padding: 8px 0 18px;
}

.kg-related-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

.kg-related-slider .slick-slide {
    height: auto;
}

.kg-related-slider .slick-slide > div,
.kg-related-slide {
    height: 100%;
}

.kg-related-slide {
    /* padding: 0 12px; */
}

.kg-related-slide .product_item,
.kg-related-slider .product_item {
    width: 100%;
    height: 100%;
    /* padding: 0 !important; */
}

.kg-related-slide .kg-loop-card,
.kg-related-slider .kg-loop-card {
    height: 100%;
}

.kg-related-arrow {
    position: absolute;
    top: 50%;
    z-index: 12;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(38, 27, 15, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--kg-ink);
    display: grid;
    place-items: center;
    box-shadow: 0 18px 48px rgba(38, 27, 15, .15);
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition:
        transform .25s var(--kg-ease),
        background .25s var(--kg-ease),
        color .25s var(--kg-ease),
        border-color .25s var(--kg-ease),
        opacity .25s var(--kg-ease),
        box-shadow .25s var(--kg-ease);
}

.kg-related-arrow svg {
    width: 22px;
    height: 22px;
}

.kg-related-arrow:hover {
    background: linear-gradient(135deg, var(--kg-green), var(--kg-green-dark));
    color: #fff;
    border-color: transparent;
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 22px 58px rgba(66, 107, 50, .26);
}

.kg-related-arrow.slick-disabled {
    opacity: .28;
    pointer-events: none;
}

.kg-related-arrow--prev {
    left: -14px;
}

.kg-related-arrow--next {
    right: -14px;
}

/* Product details tabs */
.kg-product-details {
    padding: clamp(42px, 5vw, 76px) 0 clamp(40px, 5vw, 70px);
    background:
        radial-gradient(circle at 88% 6%, rgba(122, 86, 72, .09), transparent 28%),
        linear-gradient(180deg, #fff, #fbf8f4 48%, #fff);
}

.kg-product-tabs {
    position: sticky;
    top: 88px;
    z-index: 40;
    display: flex;
    gap: 8px;
    width: max-content;
    max-width: 100%;
    margin: 0 0 24px;
    padding: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    border: 1px solid rgba(38, 27, 15, .10);
    border-radius: 999px;
    background: rgba(255, 255, 255, .90);
    box-shadow: 0 12px 44px rgba(38, 27, 15, .10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    scrollbar-width: none;
}

.kg-product-tabs::-webkit-scrollbar {
    display: none;
}

.kg-product-tabs button {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--kg-muted);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition:
        transform .24s var(--kg-ease),
        background .24s var(--kg-ease),
        color .24s var(--kg-ease),
        box-shadow .24s var(--kg-ease);
}

.kg-product-tabs button:hover {
    transform: translateY(-1px);
    background: rgba(38, 27, 15, .06);
    color: var(--kg-ink);
}

.kg-product-tabs button.is-active {
    background: linear-gradient(135deg, var(--kg-ink), var(--kg-brown-dark));
    color: #fff;
    box-shadow: 0 14px 34px rgba(38, 27, 15, .18);
}

.kg-product-tabpanels {
    position: relative;
}

.kg-product-panel[hidden] {
    display: none !important;
}

.kg-product-panel.is-active {
    animation: kgProductPanelIn .32s var(--kg-ease) both;
}

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

.kg-text-grid,
.kg-options-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(300px, .68fr);
    gap: clamp(16px, 2vw, 24px);
    align-items: start;
}

.kg-text-grid--story {
    grid-template-columns: minmax(0, 1.36fr) minmax(330px, .64fr);
}

.kg-story-card {
    padding: clamp(22px, 3vw, 38px);
}

.kg-story-card .kg-rich-text {
    position: relative;
}

.kg-story-card .kg-rich-text h2,
.kg-story-card .kg-rich-text h3 {
    margin: 30px 0 12px;
    color: var(--kg-ink);
    font-size: clamp(20px, 1.8vw, 28px);
    line-height: 1.16;
    letter-spacing: -.03em;
}

.kg-story-card .kg-rich-text p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.84;
}

.kg-rich-text.is-collapsed {
    max-height: 455px;
    overflow: hidden;
}

.kg-rich-text.is-collapsed::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    height: 130px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.96) 78%);
}

.kg-read-more {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 8px;
    padding: 0 18px;
    border: 1px solid rgba(38, 27, 15, .12);
    border-radius: 999px;
    background: #fff;
    color: var(--kg-ink);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 34px rgba(38, 27, 15, .07);
    transition:
        transform .24s var(--kg-ease),
        background .24s var(--kg-ease),
        color .24s var(--kg-ease),
        border-color .24s var(--kg-ease);
}

.kg-read-more:hover {
    transform: translateY(-2px);
    background: var(--kg-ink);
    color: #fff;
    border-color: var(--kg-ink);
}

.kg-choice-card {
    position: sticky;
    top: 172px;
}

.kg-choice-card h3 {
    margin-bottom: 18px;
    font-size: clamp(22px, 2vw, 30px);
}

.kg-mini-benefits {
    display: grid;
    gap: 12px;
}

.kg-mini-benefits div {
    position: relative;
    min-height: 86px;
    padding: 16px 16px 16px 60px;
    border: 1px solid rgba(38, 27, 15, .10);
    border-radius: 20px;
    background: rgba(255, 255, 255, .72);
    transition:
        transform .25s var(--kg-ease),
        background .25s var(--kg-ease),
        border-color .25s var(--kg-ease);
}

.kg-mini-benefits div:hover {
    transform: translateX(4px);
    background: #fff;
    border-color: rgba(106, 168, 79, .26);
}

.kg-mini-benefits svg,
.kg-option-card svg,
.kg-advantage-card svg {
    color: var(--kg-green-dark);
}

.kg-mini-benefits svg {
    position: absolute;
    left: 16px;
    top: 18px;
    width: 28px;
    height: 28px;
}

.kg-mini-benefits strong {
    display: block;
    margin-bottom: 4px;
    color: var(--kg-ink);
    font-size: 15px;
    line-height: 1.25;
}

.kg-mini-benefits p {
    margin: 0;
    color: var(--kg-muted);
    font-size: 13px;
    line-height: 1.55;
}

.kg-options-grid--cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 1.7vw, 20px);
    margin-bottom: 20px;
}

.kg-options-grid--below {
    margin-top: 20px;
}

.kg-option-card svg,
.kg-advantage-card svg {
    position: relative;
    z-index: 1;
    display: block;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    padding: 13px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(106, 168, 79, .16), rgba(66, 107, 50, .08));
}

.kg-check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.kg-check-list li {
    position: relative;
    margin: 10px 0;
    padding-left: 28px;
    color: var(--kg-muted);
    font-size: 15px;
    line-height: 1.65;
}

.kg-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: .02em;
    color: var(--kg-green);
    font-weight: 900;
}

.kg-attributes-table {
    display: grid;
    gap: 0;
}

.kg-attributes-table div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(38, 27, 15, .10);
    color: var(--kg-ink);
    font-size: 14px;
    line-height: 1.45;
}

.kg-attributes-table div:last-child {
    border-bottom: 0;
}

.kg-attributes-table strong {
    font-weight: 850;
}

.kg-attributes-table span {
    color: var(--kg-muted);
    text-align: right;
}

.kg-adv-grid--premium {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 1.8vw, 22px);
}

.kg-advantage-card {
    min-height: 245px;
}

/* Trust metrics */
.kg-trust-section {
    padding: clamp(44px, 5.3vw, 78px) 0;
    border-top: 1px solid rgba(38, 27, 15, .08);
    border-bottom: 1px solid rgba(38, 27, 15, .08);
    background:
        radial-gradient(circle at 85% 10%, rgba(106, 168, 79, .14), transparent 28%),
        radial-gradient(circle at 10% 90%, rgba(122, 86, 72, .08), transparent 30%),
        linear-gradient(180deg, #fff, #fbf8f4);
}

.kg-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 1.8vw, 20px);
    margin-top: clamp(20px, 2.2vw, 30px);
}

.kg-trust-product-card {
    min-height: 162px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.kg-trust-product-card strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 12px;
    color: var(--kg-ink);
    font-size: clamp(32px, 3vw, 50px);
    line-height: .98;
    font-weight: 830;
    letter-spacing: -.055em;
}

.kg-trust-product-card span {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 220px;
    color: var(--kg-muted);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 760;
}

/* Consultation block */
.kg-consultation {
    padding: clamp(44px, 5.2vw, 78px) 0;
    background:
        radial-gradient(circle at 16% 6%, rgba(106, 168, 79, .10), transparent 28%),
        linear-gradient(180deg, #fff, #fbf8f4 58%, #fff);
}

.kg-consultation-card {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    gap: clamp(18px, 2.5vw, 34px);
    align-items: center;
    padding: clamp(24px, 3.4vw, 46px);
    border-radius: 36px;
    background:
        radial-gradient(circle at 14% 0%, rgba(106, 168, 79, .20), transparent 32%),
        radial-gradient(circle at 86% 100%, rgba(122, 86, 72, .11), transparent 34%),
        linear-gradient(135deg, #fff, #f7f0e9 58%, #eef7e9);
    box-shadow: var(--kg-shadow);
}

.kg-consultation-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--kg-green), #e0b171, var(--kg-brown));
    opacity: .95;
}

.kg-consultation-card__content span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    color: var(--kg-green-dark);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.kg-consultation-card__content span::before {
    content: "";
    width: 28px;
    height: 1px;
    flex: 0 0 28px;
    background: currentColor;
}

.kg-consultation-card__content h2 {
    max-width: 680px;
    margin: 0 0 14px;
    color: var(--kg-ink);
    font-size: clamp(32px, 3.8vw, 56px);
    line-height: 1.02;
    font-weight: 790;
    letter-spacing: -.055em;
}

.kg-consultation-card__content p {
    max-width: 590px;
    margin: 0;
    color: var(--kg-muted);
    font-size: 16px;
    line-height: 1.75;
}

.kg-consultation-card__contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.kg-contact-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid rgba(38, 27, 15, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .88);
    color: var(--kg-ink);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 34px rgba(38, 27, 15, .07);
    transition:
        transform .24s var(--kg-ease),
        background .24s var(--kg-ease),
        color .24s var(--kg-ease),
        border-color .24s var(--kg-ease),
        box-shadow .24s var(--kg-ease);
}

.kg-contact-action svg {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
}

.kg-contact-action:hover {
    transform: translateY(-2px);
    background: var(--kg-ink);
    color: #fff;
    border-color: var(--kg-ink);
    box-shadow: 0 18px 46px rgba(38, 27, 15, .15);
}

.kg-contact-action--main {
    flex: 1 1 100%;
    min-height: 64px;
    background: linear-gradient(135deg, var(--kg-green), var(--kg-green-dark));
    color: #fff;
    border-color: transparent;
    font-size: 16px;
    box-shadow: 0 18px 48px rgba(66, 107, 50, .26);
}

.kg-contact-action--main:hover {
    background: linear-gradient(135deg, var(--kg-green-dark), #2f5725);
    color: #fff;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .kg-related-slider:not(.slick-initialized) {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .kg-text-grid,
    .kg-text-grid--story,
    .kg-consultation-card {
        grid-template-columns: 1fr;
    }

    .kg-choice-card {
        position: relative;
        top: auto;
    }

    .kg-options-grid--cards,
    .kg-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kg-consultation-card__contacts {
        justify-content: flex-start;
    }
}

@media (max-width: 991.98px) {
    .kg-related-slider:not(.slick-initialized) {
        display: flex;
        gap: 0;
        overflow: hidden;
    }

    .kg-related-slider:not(.slick-initialized) .kg-related-slide {
        flex: 0 0 45.45%;
    }

    .kg-related-arrow {
        display: none !important;
    }

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

    .kg-product-tabs {
        top: 72px;
    }
}

@media (max-width: 767.98px) {
    .kg-product-related,
    .kg-product-details,
    .kg-trust-section,
    .kg-consultation {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .kg-section-head--row {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .kg-section-head h2 {
        font-size: clamp(27px, 8vw, 38px);
    }

    .kg-section-head__link {
        width: 100%;
    }

    .kg-related-slider-wrap {
        margin: 0 -8px;
    }

    .kg-related-slider .slick-list {
        overflow: visible;
    }

    .kg-related-slide {
        /* padding: 0 8px; */
    }

    .kg-related-slider:not(.slick-initialized) .kg-related-slide {
        flex: 0 0 83.333%;
    }

    .kg-product-tabs {
        width: 100%;
        border-radius: 22px;
        padding: 7px;
    }

    .kg-product-tabs button {
        min-height: 42px;
        padding: 0 16px;
        font-size: 13px;
    }

    .kg-options-grid--cards,
    .kg-adv-grid--premium,
    .kg-trust-grid {
        grid-template-columns: 1fr;
    }

    .kg-story-card,
    .kg-choice-card,
    .kg-option-card,
    .kg-advantage-card,
    .kg-trust-product-card {
        border-radius: 22px;
    }

    .kg-rich-text.is-collapsed {
        max-height: 390px;
    }

    .kg-consultation-card {
        border-radius: 26px;
    }

    .kg-consultation-card__content h2 {
        font-size: clamp(29px, 8.4vw, 42px);
    }

    .kg-contact-action {
        flex: 1 1 auto;
    }

    .kg-contact-action--main {
        flex-basis: 100%;
    }
}

@media (max-width: 480px) {
    .kg-section-head span,
    .kg-card-kicker,
    .kg-consultation-card__content span {
        font-size: 11px;
    }

    .kg-mini-benefits div {
        padding: 15px 14px 15px 54px;
    }

    .kg-mini-benefits svg {
        left: 15px;
        width: 24px;
        height: 24px;
    }

    .kg-trust-product-card {
        min-height: 132px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .kg-product-details *,
    .kg-product-related *,
    .kg-trust-section *,
    .kg-consultation * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
