﻿/* _trust-bar.css */

/* ==========================================================================
   Stiluri pentru Social Proof Section (Trust Bar V2)
   ========================================================================== */

.social-proof-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 15px 0;
}

.trust-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 90px;
}

.stat-number {
    font-family: 'Black Ops One', sans-serif;
    font-size: 1.8rem;
    font-weight: 400; /* Fontul este deja bold */
    color: #ffffff;
    line-height: 1.1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #ccc;
    margin-top: 4px;
}

.trust-platforms {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: -6px ; /* MODIFICAT: Trage elementul în sus cu 5px */
    padding-bottom: 10px;
}

    /* ===== STILURI NOI ADAUGATE PENTRU LINK-URI ===== */
    .trust-platforms a {
        text-decoration: none; /* Elimină sublinierea link-ului */
    }

.platform-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer; /* Indică faptul că elementul este clicabil */
    transition: transform 0.2s ease-in-out; /* Adaugă tranziție pentru hover */
}

.trust-platforms a:hover .platform-badge {
    transform: translateY(-2px); /* Efect subtil de ridicare la hover */
}
