/**
 * Freeperie - Styles Frontend
 * Styles pour l'interface utilisateur publique
 */

/* ============================================
   TABLEAU DE BORD CAGNOTTE
   ============================================ */
.credit-change.positive {
    color: #0f834d;
    font-weight: bold;
}

.credit-change.negative {
    color: #cc1818;
    font-weight: bold;
}

/* ============================================
   PRIX DES PRODUITS
   ============================================ */
span.gratuit {
    color: #0f834d;
    font-weight: bold;
}

/* ============================================
   TAGS DES PRODUITS
   ============================================ */
.custom-all-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.custom-tag-label {
    display: inline-block;
    background: #f0f0f0;
    color: #333;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   BOUTON RETOUR
   ============================================ */
.back-button {
    margin-bottom: 15px;
}

.back-button a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.back-button a:hover {
    background: #e0e0e0;
}

.back-button .arrow {
    font-size: 18px;
    line-height: 1;
}

/* ============================================
   PANIER - LIGNE POINTS UTILISÉS
   ============================================ */
tr.points-utilises th,
tr.points-utilises td {
    border-top: 1px solid #e0e0e0;
    padding-top: 10px;
}

tr.points-utilises th {
    color: #0f834d;
    font-weight: 600;
}

tr.points-utilises td strong {
    color: #0f834d;
}
