﻿/* ============================================================================
   Shared read-only information details
   ----------------------------------------------------------------------------
   Reusable label/value rows, numeric alignment, section divider, and mobile
   stacking for information dialogs.

   Source: Pasted text(20260903-154552).txt:1334-1388 and 1417-1427.
   ============================================================================ */

.store-info-details {
    min-width: 0;
    overflow: hidden;
    background: var(--store-white);
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-sm);
}

.store-info-detail-row {
    display: grid;
    grid-template-columns: minmax(8rem, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 1rem;
    min-width: 0;
    min-height: 2.75rem;
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid var(--store-divider);
}

    .store-info-detail-row:last-child {
        border-bottom: 0;
    }

.store-info-detail-label {
    min-width: 0;
    color: var(--store-text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.4;
}

.store-info-detail-value {
    min-width: 0;
    color: var(--store-text-main);
    font-size: 0.875rem;
    font-weight: 650;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.store-info-detail-money, .store-info-detail-number {
    font-variant-numeric: tabular-nums;
}

.store-info-section {
    margin-top: 1.35rem;
    padding-top: 1.35rem !important;
    border-top: 1px solid var(--store-divider) !important;
}

@media screen and (max-width: 600px) {
    .store-info-detail-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.15rem;
        padding: 0.7rem 0.85rem;
    }

    .store-info-detail-label {
        font-size: 0.72rem;
    }
}
