/* ── JSON Product Detail ───────────────────────────── */

.json-product-detail
{
    font-size: 15px;
    color: #333;
}

.json-section
{
    margin-bottom: 28px;
}

.json-section__title
{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #222;
}

/* Popis – odrážkový seznam */
.json-section--description .json-section__list
{
    padding-left: 20px;
    margin: 0;
}

.json-section--description .json-section__list li
{
    margin-bottom: 6px;
    line-height: 1.5;
}

/* Praní – ikony */
.json-washing-icons
{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.json-washing-item
{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 80px;
    font-size: 11px;
    color: #555;
    gap: 6px;
}

.json-washing-item img
{
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* Technické parametry – tabulka */
.json-details-table
{
    width: 100%;
    border-collapse: collapse;
}

.json-details-table tr:nth-child(even)
{
    background: #f7f7f7;
}

.json-details-table th,
.json-details-table td
{
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid #ebebeb;
    vertical-align: top;
}

.json-details-table th
{
    font-weight: 600;
    width: 38%;
    color: #444;
}

@media (max-width: 480px)
{
    .json-details-table th,
    .json-details-table td
    {
        display: block;
        width: 100%;
    }

    .json-details-table th
    {
        padding-bottom: 2px;
        border-bottom: none;
    }
}