.mark-detail {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px 64px;
}
/* Подавляем красные буллиты ●, которые шаблон prom_sl навешивает через ul > li:before */
.mark-detail ul > li:before,
.mark-detail ol > li:before {
    content: none !important;
    display: none !important;
}
/* Обнуляем padding-left, который шаблон prom_sl ставит для li (под буллит) */
.mark-detail ul > li,
.mark-detail ol > li {
    padding: 0 !important;
    margin: 0 !important;
}
.mark-detail-header { margin-bottom: 24px; }
.mark-detail-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 6px;
}
.mark-detail-cat {
    font-size: 14px;
    color: #6b7280;
}

.mark-detail-section {
    margin-bottom: 32px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}
.mark-detail-section h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 14px;
    color: #d51c29;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 8px;
}

.mark-detail-composition {
    background: #fafafa;
    border-radius: 6px;
    padding: 16px;
}
.mark-detail-composition svg {
    display: block;
    max-width: 100%;
    height: auto;
}

.mark-detail-details {
    margin-top: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 8px 12px;
}
.mark-detail-details summary {
    cursor: pointer;
    font-size: 14px;
    color: #4b5563;
}
.mark-detail-details[open] summary { margin-bottom: 12px; }

.mark-detail-properties {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    background: transparent;
    border: 0;
    padding: 0;
}
@media (min-width: 768px) {
    .mark-detail-properties { grid-template-columns: 1fr 1fr; }
}
.mark-detail-prop-block {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px 20px;
}
.mark-detail-prop-block h2 {
    font-size: 16px;
    margin-bottom: 10px;
}
.mark-detail-prop-block table { width: 100%; border-collapse: collapse; }
.mark-detail-prop-block td { padding: 6px 8px; border-bottom: 1px solid #f3f4f6; font-size: 14px; }

.mark-detail-analogues {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.mark-detail-analogues li {
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
    color: #1f2937;
}

.mark-detail-products .mark-products-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
}
@media (min-width: 768px) {
    .mark-detail-products .mark-products-list {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    .mark-detail-products .mark-products-list {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
.mark-products-link {
    display: block;
    padding: 8px 12px;
    background: #f9fafb;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #1f2937;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
}
.mark-products-link:hover {
    background: #fff;
    border-color: #d51c29;
    color: #d51c29;
    text-decoration: none;
}
.mark-products-empty {
    color: #6b7280;
    font-style: italic;
}
.mark-products-pager {
    margin-top: 16px;
}
.mark-detail-source {
    font-size: 13px;
    color: #9ca3af;
    text-align: right;
    margin-top: 24px;
}
