.product-trust-panel {
    display: flex;
    width: 100%;
    border: 1px solid #f0d9d9;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
    background: #fffafa
}

.product-trust-item {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 11px 9px;
    box-sizing: border-box;
    background: #fffafa
}

.product-trust-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 42px;
    background: #e8bebe;
    transform: translateY(-50%)
}

.product-trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 29px;
    width: 29px;
    height: 29px;
    color: var(--primary-color);
    background: #fff1f1;
    border-radius: 50%;
    box-sizing: border-box
}

.product-trust-icon svg {
    display: block;
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    color: inherit;
    flex-shrink: 0
}

.product-trust-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    margin: 0;
    color: var(--dark-color);
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1.2
}

.product-trust-copy span {
    display: block;
    margin-top: 2px;
    color: var(--gray-color);
    font-size: 9.5px;
    font-weight: 500;
    line-height: 1.25
}

.product-trust-item--estimate {
    background: #fffaf7
}

.product-trust-item--estimate .product-trust-icon {
    color: #a84a38;
    background: #fff0e8
}



@media (max-width:900px) {
    .product-trust-copy {
        font-size: 12px
    }
    .product-trust-copy span {
        font-size: 11px
    }

    .product-trust-panel {
        flex-direction: column;
        border-radius: 10px
    }

    .product-trust-item {
        min-height: 58px;
        padding: 10px 11px
    }

    .product-trust-item:nth-child(-n + 2)::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 8px;
        right: 8px;
        height: 1px;
        background: #ead0d0
    }

    .product-trust-item:nth-child(odd)::after {
        display: block;
        top: 50%;
        right: 0;
        width: 1px;
        height: 38px;
        background: #e8bebe;
        transform: translateY(-50%)
    }

    .product-trust-item:nth-child(even)::after {
        display: none
    }
}
