/** Shopify CDN: Minification failed

Line 6:0 Unexpected "<"

**/
<style> 
.hp-trust-icons {
    padding: 20px 0;
}

.hp-trust-inner {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 1100px;
    margin:
        0 auto;
}

.hp-icon-item {
    width: calc(33.33% - 8px);
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 10px 8px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.02);
    transition: transform .12s ease, box-shadow .12s ease;
}

.hp-icon-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.hp-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    color: #111827;
    /* default icon color, follows theme — feel free to adjust */
}

.hp-icon-item svg.icon path {
    fill: #fec401;
}

.hp-text {
    min-width: 0;
}

.hp-title {
    font-weight: 600;
    font-size: 15px;
    color: #111827;
}

.hp-sub {
    font-size: 13px;
    color: #6b7280;
    margin-top: 3px;
    line-height: 1.25;
    white-space: normal;
}

.hp-icon-item svg.icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

/* Responsive */
@media (max-width: 780px) {
    .hp-trust-inner {
        gap: 8px;
    }

    .hp-icon-item {
        flex: 1 1 48%;
        padding: 10px;
    }

    .hp-icon {
        width: 8px;
        height: 38px;
        flex: 0 0 38px;
    }

    .hp-title {
        font-size: 14px;
    }

    .hp-sub {
        font-size: 11px;
    }

    .hp-icon-item svg.icon {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 300px) {
    .hp-icon-item {
        flex: 100%;
        align-items: center;
        text-align: left;
        padding: 12px;
    }

    .hp-text {
        min-width: auto;
    }

    .hp-title,
    .hp-sub {
        white-space: normal;
    }
} 