/* ==========================================================================
   FEATURE: NOTES DE FRAIS — additions (timeline + expense receipt mockup)
   ========================================================================== */


/* ---- Expense receipt mockup ---- */
.feature-page .feature-mock-receipt {
    padding: var(--h-space-5);
}

.feature-page .feature-mock-receipt-head {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: var(--h-space-3);
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--h-border-color-lightest);
}

.feature-page .feature-mock-receipt-photo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #1a76d1;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.feature-page .feature-mock-receipt-id {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.feature-page .feature-mock-receipt-id strong {
    color: var(--h-navy);
    font-size: 14px;
    font-weight: 700;
}

.feature-page .feature-mock-receipt-id span {
    color: var(--h-text-muted);
    font-size: 12px;
}

.feature-page .feature-mock-receipt-chip {
    font-size: 10.5px;
    font-weight: 700;
    padding: var(--h-space-1) var(--h-space-2);
    border-radius: 999px;
    background: var(--h-gray-100);
    color: var(--h-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.feature-page .feature-mock-receipt-rows {
    margin: 14px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-page .feature-mock-receipt-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--h-text-muted);
    font-variant-numeric: tabular-nums;
}

.feature-page .feature-mock-receipt-row dt {
    margin: 0;
}

.feature-page .feature-mock-receipt-row dd {
    margin: 0;
}

.feature-page .feature-mock-receipt-total {
    font-weight: 700;
    color: var(--h-navy);
    font-size: 15px;
    padding-top: var(--h-space-2);
    border-top: 1px solid var(--h-border-color-lightest);
    margin-top: var(--h-space-1);
}

.feature-page .feature-mock-receipt-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--h-border-color-lightest);
    gap: 10px;
    flex-wrap: wrap;
}

.feature-page .feature-mock-receipt-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--h-space-1);
    font-size: 11.5px;
    font-weight: 600;
    padding: var(--h-space-1) 10px;
    border-radius: 999px;
}

.feature-page .feature-mock-receipt-pill-ok {
    background: var(--h-teal-pale);
    color: var(--h-teal);
}

.feature-page .feature-mock-receipt-export {
    display: inline-flex;
    align-items: center;
    gap: var(--h-space-1);
    font-size: 11.5px;
    color: var(--h-text-muted);
    font-family: monospace;
}

