.info-page {
    max-width: 560px;
    margin: 0 auto;
    padding: 24px 16px 34px;
}

.info-header {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.info-header h1 {
    margin: 0;
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.1;
}

.info-header p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.45;
}

.back-link {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid rgba(99, 45, 65, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.66);
    color: var(--accent-dark);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.info-list {
    display: grid;
    gap: 10px;
}

.info-row,
.info-empty {
    min-width: 0;
    padding: 15px;
    border: 1px solid rgba(99, 45, 65, 0.14);
    border-radius: 16px;
    background: rgba(255, 249, 251, 0.9);
    box-shadow: 0 8px 18px rgba(99, 45, 65, 0.06);
}

.info-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
}

.price-group-title {
    margin: 10px 0 0;
    padding: 0 2px;
    color: var(--accent);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
}

.price-row {
    grid-template-columns: minmax(0, 1fr);
}

.info-row h2,
.info-empty strong {
    margin: 0;
    color: var(--accent-dark);
    font-size: 17px;
    line-height: 1.2;
}

.info-row span,
.info-empty span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 14px;
}

.info-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 10px;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 420px) {
    .info-page {
        padding: 18px 12px 28px;
    }

    .info-row {
        grid-template-columns: 1fr;
    }

}
