/* ==============================================
   TRUST BADGES - CLEAN STYLE
   ============================================== */

.trust-badges-section {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 24px 0;
    margin: 30px 0;
    border-radius: 8px;
}

.trust-badges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    transition: all 0.2s ease;
    min-width: 200px;
}

.trust-badge:hover {
    transform: translateY(-2px);
}

.trust-badge-icon {
    width: 48px;
    height: 48px;
    background: #fff0f0;
    color: #d32f2f;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.trust-badge-content {
    display: flex;
    flex-direction: column;
}

.trust-badge-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.trust-badge-description {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
}

/* Specific styling for variety but staying subtle */
.trust-badge-icon.secure { background: #e8f5e9; color: #2e7d32; }
.trust-badge-icon.shipping { background: #e3f2fd; color: #1565c0; }
.trust-badge-icon.warranty { background: #f3e5f5; color: #7b1fa2; }
.trust-badge-icon.support { background: #fff3e0; color: #ef6c00; }

/* Responsive */
@media (max-width: 768px) {
    .trust-badges-container {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .trust-badge {
        width: 100%;
        min-width: unset;
    }
}
