/* Токены TSK25 на :root — панели без .sk-c25-guide (Контент СоцСетей и др.) */
:root {
    --c25-brand: #497952;
    --c25-brand-dark: #127023; /* ФТЗ */
    --c25-brand-mid: #5f9a69;
    --c25-brand-soft: #e8efe6; /* ФСЗ */
    --c25-brand-softest: #f3f7f2; /* ССЗ */
    --c25-brand-beige: #f8f6f1; /* ФБ */
    --c25-ozon: #005bff;
    --c25-ozon-soft: #e8f0ff;
    --c25-ozon-text: #003d99;
    --c25-1c-soft: #fff4e6;
    --c25-1c-border: #f5d9a8;
    --c25-1c-text: #9a6018;
    --c25-manual: #16a34a;
    --c25-green: #6b9e62;
    --c25-amber: #c9a227;
    --c25-red: #c45c5c;
    --c25-ink: #3d4438;
    --c25-text: #4f574b;
    --c25-muted: #8a9a86;
    --c25-line: #e2ddd4;
}

.sk-c25-guide-cell { padding: 0 !important; background: #f8f6f1; }
.sk-c25-guide {
    /* ОФЗ — Основной фирменный зелёный (локально, если :root переопределят) */
    --c25-brand: #497952;
    --c25-brand-dark: #127023; /* ФТЗ — фирменный тёмно-зелёный */
    --c25-brand-mid: #5f9a69;
    --c25-brand-soft: #e8efe6; /* ФСЗ — фирменный светло-зелёный */
    --c25-brand-softest: #f3f7f2; /* ССЗ — светло-светло-зелёный */
    --c25-brand-beige: #f8f6f1; /* ФБ — фирменный бежевый */
    --c25-ozon: #005bff;
    --c25-ozon-soft: #e8f0ff;
    --c25-ozon-text: #003d99;
    --c25-1c-soft: #fff4e6;
    --c25-1c-border: #f5d9a8;
    --c25-1c-text: #9a6018;
    --c25-manual: #16a34a;
    --c25-green: #6b9e62;
    --c25-amber: #c9a227;
    --c25-red: #c45c5c;
    --c25-ink: #3d4438;
    --c25-text: #4f574b;
    --c25-muted: #8a9a86;
    --c25-line: #e2ddd4;
    color: var(--c25-text);
    font: 14px/1.5 system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    padding: 20px;
}
.sk-c25-guide * { box-sizing: border-box; }

.sk-c25-hero {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 22px;
    padding: 24px 26px; margin-bottom: 14px; border-radius: 18px;
    background: linear-gradient(135deg, var(--c25-brand) 0%, var(--c25-brand-mid) 72%, #9ab894 100%);
    color: #fff; box-shadow: 0 10px 28px rgba(73, 121, 82, .22);
}
.sk-c25-hero h2 { margin: 4px 0 8px; color: #fff; font-size: 25px; font-weight: 700; line-height: 1.25; }
.sk-c25-hero p { max-width: 720px; margin: 0; color: #f0f5ee; }
.sk-c25-eyebrow { color: #dce8d8; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.sk-c25-hero__actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; flex-wrap: wrap; min-width: 420px; }

.sk-c25-tokens {
    display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; padding: 10px 14px;
    border: 1px dashed var(--c25-line); border-radius: 14px; background: #fff;
}
.sk-c25-tokens span { display: inline-flex; align-items: center; gap: 7px; color: var(--c25-muted); font-size: 12px; }
.sk-c25-tokens i { width: 14px; height: 14px; border: 1px solid rgba(61,68,56,.12); border-radius: 50%; background: var(--token); }

.sk-c25-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.sk-c25-card {
    overflow: hidden; min-width: 0; border: 1px solid var(--c25-line); border-radius: 16px;
    background: #fff; box-shadow: 0 3px 12px rgba(61, 68, 56, .06);
}
.sk-c25-card--wide { grid-column: 1 / -1; }
.sk-c25-card[hidden] { display: none; }
.sk-c25-card > summary {
    display: grid; grid-template-columns: 40px minmax(0, 1fr) auto; align-items: center; gap: 10px;
    min-height: 52px; padding: 10px 14px; cursor: pointer; list-style: none; user-select: none;
    border-bottom: 1px solid transparent; background: #faf9f6;
}
.sk-c25-card > summary::-webkit-details-marker { display: none; }
.sk-c25-card[open] > summary { border-bottom-color: var(--c25-line); }
.sk-c25-card > summary::after { content: "▾"; margin-left: 6px; color: var(--c25-brand-mid); font-size: 15px; }
.sk-c25-card:not([open]) > summary::after { transform: rotate(-90deg); display: inline-block; }
.sk-c25-card > summary b {
    display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px;
    background: var(--c25-brand-soft); color: var(--c25-brand-dark); font-size: 13px; font-weight: 700;
}
.sk-c25-card > summary span { color: var(--c25-ink); font-size: 15px; font-weight: 600; }
.sk-c25-card > summary em { color: var(--c25-muted); font-size: 11px; font-style: normal; }
.sk-c25-card__body { padding: 16px; }
.sk-c25-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sk-c25-stack { display: grid; gap: 12px; }

.sk-c25-btn {
    min-height: 36px; padding: 8px 16px; border: 1px solid var(--c25-line); border-radius: 10px;
    background: #fff; color: var(--c25-text); font: inherit; font-weight: 600; cursor: pointer;
    transition: background .15s, border-color .15s, transform .12s;
}
.sk-c25-btn:hover:not(:disabled) { border-color: var(--c25-brand-mid); transform: translateY(-1px); }
.sk-c25-btn:disabled { opacity: .45; cursor: not-allowed; }
.sk-c25-btn--primary {
    border-color: var(--c25-brand, #497952);
    background: var(--c25-brand, #497952);
    color: #fff;
}
.sk-c25-btn--primary:hover:not(:disabled) {
    background: var(--c25-brand-dark, #127023);
    border-color: var(--c25-brand-dark, #127023);
}
.sk-c25-btn--secondary {
    border-color: #c8d8c4;
    background: var(--c25-brand-soft, #e8efe6);
    color: var(--c25-brand-dark, #127023);
}
.sk-c25-btn--success { border-color: var(--c25-green, #6b9e62); background: var(--c25-green, #6b9e62); color: #fff; }
.sk-c25-btn--danger { border-color: #f0c8c8; background: #fdf5f5; color: #a94444; }
.sk-c25-btn--ghost { border-color: transparent; background: transparent; color: var(--c25-brand-dark, #127023); }
/* Кнопка для сайта — pill как .green-btn / табы #prod на витрине */
.sk-c25-btn--site {
    min-height: 30px;
    padding: 7px 25px;
    border-color: var(--c25-brand);
    background: var(--c25-brand);
    color: #fff;
    border-radius: 180px;
    font-size: 12px;
    font-weight: 700;
    line-height: 14px;
    box-shadow: 0 4px 7px rgba(83, 83, 83, 0.15);
}
.sk-c25-btn--site:hover:not(:disabled) {
    background: var(--c25-brand-dark);
    border-color: var(--c25-brand-dark);
    transform: translateY(-1px);
}
.sk-c25-icon-btn {
    min-width: 34px; min-height: 34px; padding: 6px 10px; border: 1px solid var(--c25-line); border-radius: 10px;
    background: #faf9f6; color: var(--c25-text); font: inherit; font-weight: 600; cursor: pointer;
}
.sk-c25-icon-btn:hover { border-color: var(--c25-brand-mid); color: var(--c25-brand-dark); background: var(--c25-brand-soft); }
.sk-c25-icon-btn--danger { color: var(--c25-red); }

.sk-c25-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.sk-c25-form-grid label, .sk-c25-stack > label { display: grid; gap: 6px; }
.sk-c25-form-grid label > span, .sk-c25-stack > label > span { color: var(--c25-muted); font-size: 12px; font-weight: 600; }
.sk-c25-form-grid small, .sk-c25-stack small { color: var(--c25-muted); font-size: 11px; }
.sk-c25-form-grid small.is-error { color: var(--c25-red); }
.sk-c25-input, .sk-c25-select, .sk-c25-textarea {
    width: 100%; min-height: 38px; padding: 8px 12px; border: 1px solid #d8d2c8; border-radius: 12px;
    outline: none; background: #fff; color: var(--c25-ink); font: inherit;
    transition: box-shadow .15s, border-color .15s;
}
.sk-c25-input:focus, .sk-c25-select:focus, .sk-c25-textarea:focus {
    border-color: var(--c25-brand-mid); box-shadow: 0 0 0 3px rgba(73, 121, 82, .14);
}
.sk-c25-input.is-success { border-color: var(--c25-green); background: #f4faf3; }
.sk-c25-input.is-error { border-color: var(--c25-red); background: #fdf7f7; }
.sk-c25-input:disabled, .sk-c25-select:disabled, .sk-c25-textarea:disabled, .sk-c25-textarea[readonly] {
    background: #f3f1ec; color: #a8a196;
}
.sk-c25-textarea { min-height: 76px; resize: vertical; }
.sk-c25-input-unit { position: relative; }
.sk-c25-input-unit .sk-c25-input { padding-right: 40px; }
.sk-c25-input-unit b { position: absolute; top: 10px; right: 12px; color: var(--c25-muted); }

.sk-c25-check, .sk-c25-radio, .sk-c25-switch {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    position: relative;
}
.sk-c25-check input, .sk-c25-radio input {
    position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
    opacity: 0; appearance: none; -webkit-appearance: none; pointer-events: none;
}
.sk-c25-switch input[type="checkbox"] {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    opacity: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    pointer-events: none !important;
}
.sk-c25-check, .sk-c25-radio { position: relative; }
/* Чекбокс — квадрат как фильтр «Бренд» на витрине; radio — круг */
.sk-c25-check > i, .sk-c25-radio > i {
    position: relative; flex: 0 0 auto; width: 16px; height: 16px; margin-top: 2px;
    border: 1px solid #d0d0d0; background: #fff; box-sizing: border-box;
}
.sk-c25-check > i { border-radius: 2px; }
.sk-c25-radio > i { border-radius: 50%; width: 18px; height: 18px; border-width: 2px; border-color: #c5bfb4; }
.sk-c25-check input:checked + i, .sk-c25-radio input:checked + i { border-color: var(--c25-brand); background: var(--c25-brand); }
.sk-c25-check input:checked + i::after {
    content: ""; position: absolute; inset: 0;
    background: center / 10px 10px no-repeat
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2.5 6.2l2.4 2.4 4.6-5.2'/%3E%3C/svg%3E");
}
.sk-c25-check input.is-indeterminate + i { border-color: var(--c25-brand); background: var(--c25-brand-mid); }
.sk-c25-check input.is-indeterminate + i::after {
    content: ""; position: absolute; left: 3px; right: 3px; top: 7px; height: 2px;
    background: #fff; border-radius: 1px;
}
.sk-c25-radio input:checked + i::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: #fff; }
.sk-c25-check > span, .sk-c25-radio > span, .sk-c25-switch > span { display: grid; color: var(--c25-text); }
.sk-c25-check small, .sk-c25-radio small, .sk-c25-switch small { color: var(--c25-muted); font-size: 11px; }
.sk-c25-check.is-disabled, .sk-c25-radio.is-disabled, .sk-c25-switch.is-disabled { opacity: .5; cursor: not-allowed; }

/* Fallback без <i>: бокс/тумблер на span::before (иначе клик есть, а картинки нет) */
.sk-c25-check:not(:has(> i)) > input[type="checkbox"] + span,
.sk-c25-switch:not(:has(> i)) > input[type="checkbox"] + span {
    display: flex; align-items: flex-start; gap: 10px;
}
.sk-c25-check:not(:has(> i)) > input[type="checkbox"] + span::before {
    content: ""; flex: 0 0 16px; width: 16px; height: 16px; margin-top: 2px;
    border: 1px solid #d0d0d0; border-radius: 2px; background: #fff; box-sizing: border-box;
}
.sk-c25-check:not(:has(> i)) > input[type="checkbox"]:checked + span::before {
    border-color: var(--c25-brand); background-color: var(--c25-brand);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2.5 6.2l2.4 2.4 4.6-5.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center; background-size: 10px 10px;
}
.sk-c25-switch:not(:has(> i)) > input[type="checkbox"] + span::before {
    content: ""; flex: 0 0 40px; width: 40px; height: 22px; margin-top: 1px;
    border-radius: 14px; background: #d8d2c8;
    box-shadow: inset 0 0 0 0 transparent;
    background-image: radial-gradient(circle at 11px 11px, #fff 0 8px, transparent 9px);
    transition: background-color .15s, background-position .15s;
    background-repeat: no-repeat; background-position: 0 0;
}
.sk-c25-switch:not(:has(> i)) > input[type="checkbox"]:checked + span::before {
    background-color: var(--c25-brand);
    background-image: radial-gradient(circle at 29px 11px, #fff 0 8px, transparent 9px);
}

/* Toggle ОФЗ — как рабочий .uk-switch на витрине (серый OFF / #497952 ON) */
.sk-c25-switch > i {
    display: inline-block !important;
    position: relative;
    flex: 0 0 40px;
    width: 40px;
    height: 22px;
    margin-top: 1px;
    border-radius: 14px;
    background: #d8d2c8;
    transition: background .15s;
    box-sizing: border-box;
}
.sk-c25-switch > i::after {
    content: ""; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px;
    border-radius: 50%; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.15); transition: transform .15s;
}
.sk-c25-switch input:checked + i { background: var(--c25-brand); }
.sk-c25-switch input:checked + i::after { transform: translateX(18px); }

.sk-c25-filter {
    display: grid; grid-template-columns: minmax(220px, 2fr) repeat(3, minmax(130px, 1fr)) auto;
    align-items: end; gap: 12px; padding: 14px; border: 1px dashed var(--c25-line); border-radius: 14px;
    background: #faf9f6;
}
.sk-c25-filter label { display: grid; gap: 6px; }
.sk-c25-filter label > span { color: var(--c25-muted); font-size: 11px; font-weight: 600; }
.sk-c25-filter__actions { display: flex; gap: 8px; }
.sk-c25-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.sk-c25-chips span {
    padding: 5px 10px; border: 1px solid #c8d8c4; border-radius: 20px;
    background: var(--c25-brand-soft); color: var(--c25-brand-dark); font-size: 12px;
}
.sk-c25-chips button { border: 0; background: transparent; color: inherit; cursor: pointer; }

/* Segmented control — как чипы «Все | Активные» на панели Товары */
.sk-c25-seg {
    display: inline-flex;
    align-items: stretch;
    flex-shrink: 0;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}
.sk-c25-seg__btn {
    border: 0;
    border-left: 1px solid #cbd5e1;
    background: #fff;
    color: #475569;
    padding: 6px 12px;
    font: inherit;
    font-size: 12px;
    line-height: 1.25;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s, color .15s;
}
.sk-c25-seg__btn:first-child { border-left: 0; }
.sk-c25-seg__btn:hover:not(:disabled) {
    background: var(--c25-brand-soft, #e8efe6);
    color: var(--c25-brand-dark, #127023);
}
.sk-c25-seg__btn.is-active {
    background: var(--c25-brand-soft, #e8efe6);
    color: var(--c25-brand-dark, #127023);
    font-weight: 600;
}
.sk-c25-seg__btn:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.sk-c25-search {
    display: flex; align-items: center; min-height: 38px; padding: 0 12px; border: 1px solid #d8d2c8;
    border-radius: 12px; background: #fff; color: var(--c25-muted);
}
.sk-c25-hero .sk-c25-search { min-width: 280px; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.15); color: #fff; }
.sk-c25-search--wide { width: 100%; }
.sk-c25-search.is-focus { border-color: var(--c25-brand-mid); box-shadow: 0 0 0 3px rgba(73,121,82,.12); }
.sk-c25-search input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; color: inherit; font: inherit; }
.sk-c25-hero .sk-c25-search input::placeholder { color: #dce8d8; }
.sk-c25-search kbd { padding: 2px 6px; border: 1px solid var(--c25-line); border-radius: 6px; background: #faf9f6; color: var(--c25-muted); font-size: 10px; }
.sk-c25-search button { border: 0; background: transparent; color: var(--c25-muted); cursor: pointer; }
.sk-c25-search-results { overflow: hidden; border: 1px solid var(--c25-line); border-radius: 12px; }
.sk-c25-search-results > b { display: block; padding: 8px 12px; background: #faf9f6; font-size: 11px; color: var(--c25-muted); }
.sk-c25-search-results button {
    display: grid; width: 100%; padding: 10px 12px; border: 0; border-top: 1px solid var(--c25-line);
    background: #fff; text-align: left; cursor: pointer;
}
.sk-c25-search-results button:hover { background: var(--c25-brand-soft); }
.sk-c25-search-results small { color: var(--c25-muted); }

.sk-c25-table-wrap { overflow: auto; border: 1px solid var(--c25-line); border-radius: 14px; }
.sk-c25-table { width: 100%; border-collapse: collapse; }
.sk-c25-table th {
    padding: 10px 12px; background: #f0ede6; color: var(--c25-ink); font-size: 11px;
    font-weight: 600; text-align: left; letter-spacing: .02em;
}
.sk-c25-table td { padding: 10px 12px; border-top: 1px solid var(--c25-line); color: var(--c25-text); vertical-align: middle; }
.sk-c25-table td small { display: block; color: var(--c25-muted); }
.sk-c25-table tr:hover td { background: #faf9f6; }
.sk-c25-table tr.is-selected td { background: var(--c25-brand-soft); }
.sk-c25-table tr.is-error td:first-child { border-left: 4px solid var(--c25-red); }
.sk-c25-pagination { display: flex; align-items: center; justify-content: flex-end; gap: 6px; margin-top: 10px; }
.sk-c25-pagination span { margin-right: auto; color: var(--c25-muted); font-size: 12px; font-weight: 500; }
/* Стрелки / страницы: как кнопки панелей (ФСЗ + ОФЗ / ФТЗ) */
.sk-c25-pagination button,
.sk-c25-pagination .sk-c25-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--c25-brand);
    border-radius: 10px;
    background: var(--c25-brand-soft);
    color: var(--c25-brand-dark);
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s, transform .12s;
}
.sk-c25-pagination button:hover:not(:disabled),
.sk-c25-pagination .sk-c25-btn:hover:not(:disabled) {
    background: var(--c25-brand);
    border-color: var(--c25-brand);
    color: #fff;
    transform: translateY(-1px);
}
.sk-c25-pagination button.is-active,
.sk-c25-pagination .sk-c25-btn.is-active {
    border-color: var(--c25-brand);
    background: var(--c25-brand);
    color: #fff;
}
.sk-c25-pagination button.is-active:hover:not(:disabled),
.sk-c25-pagination .sk-c25-btn.is-active:hover:not(:disabled) {
    background: var(--c25-brand-dark);
    border-color: var(--c25-brand-dark);
    color: #fff;
}
.sk-c25-pagination button:disabled,
.sk-c25-pagination .sk-c25-btn:disabled {
    opacity: 1;
    cursor: not-allowed;
    background: #e8ece8;
    border-color: #c5cec5;
    color: #6b776b;
    box-shadow: none;
    transform: none;
}
.sk-c25-table-head {
    display: flex; align-items: center; justify-content: space-between; min-height: 40px;
    padding: 9px 12px; border: 1px solid var(--c25-line); border-radius: 10px;
    background: #f0ede6; font-weight: 600;
}
.sk-c25-table-head.is-group { background: var(--c25-brand-soft); color: var(--c25-brand-dark); }
.sk-c25-table-head.is-active { border-color: var(--c25-brand-mid); color: var(--c25-brand-dark); box-shadow: inset 0 -2px 0 var(--c25-brand); }
.sk-c25-table-head button { border: 0; background: transparent; color: inherit; cursor: pointer; }

.sk-c25-tabs { display: flex; gap: 4px; margin-bottom: 16px; border-bottom: 2px solid var(--c25-line); }
.sk-c25-tabs button {
    padding: 10px 14px; border: 0; border-bottom: 3px solid transparent; background: transparent;
    color: var(--c25-muted); font: inherit; cursor: pointer;
}
.sk-c25-tabs button.is-active { border-bottom-color: var(--c25-brand); color: var(--c25-brand-dark); font-weight: 700; }
.sk-c25-tabs i { padding: 2px 7px; border-radius: 12px; background: #ebe6dc; font-size: 10px; font-style: normal; }
.sk-c25-tabs--pill { gap: 8px; border: 0; }
.sk-c25-tabs--pill button { border: 1px solid var(--c25-line); border-radius: 20px; background: #fff; }
.sk-c25-tabs--pill button.is-active { border-color: var(--c25-brand); background: var(--c25-brand-soft); }

.sk-c25-type { display: grid; gap: 8px; }
.sk-c25-type h1, .sk-c25-type h2, .sk-c25-type h3, .sk-c25-type p { margin: 0; }
.sk-c25-type h1 { color: var(--c25-ink); font-size: 24px; }
.sk-c25-type h2 { color: var(--c25-ink); font-size: 18px; }
.sk-c25-type h3 { color: var(--c25-text); font-size: 15px; }
.sk-c25-type .is-secondary, .sk-c25-type small { color: var(--c25-muted); }
.sk-c25-type a { color: var(--c25-brand-dark); font-weight: 600; }
.sk-c25-type code { width: fit-content; padding: 4px 8px; border-radius: 8px; background: #f0ede6; color: #5c6558; }

.sk-c25-alert-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.sk-c25-alert { display: flex; gap: 10px; padding: 12px; border: 1px solid; border-radius: 12px; }
.sk-c25-alert > i {
    display: grid; place-items: center; flex: 0 0 26px; width: 26px; height: 26px;
    border-radius: 50%; color: #fff; font-style: normal; font-weight: 700; font-size: 12px;
}
.sk-c25-alert p { margin: 3px 0 0; font-size: 12px; }
.sk-c25-alert.is-info { border-color: #c8d8c4; background: var(--c25-brand-soft); color: var(--c25-brand-dark); }
.sk-c25-alert.is-info > i { background: var(--c25-brand); }
.sk-c25-alert.is-success { border-color: #c8e4c4; background: #f4faf3; color: #3d6b38; }
.sk-c25-alert.is-success > i { background: var(--c25-green); }
.sk-c25-alert.is-warning { border-color: #f0e0b0; background: #fdfaf2; color: #7a6520; }
.sk-c25-alert.is-warning > i { background: var(--c25-amber); }
.sk-c25-alert.is-error { border-color: #f0c8c8; background: #fdf7f7; color: #8b3a3a; }
.sk-c25-alert.is-error > i { background: var(--c25-red); }
.sk-c25-alert.is-neutral { border-color: var(--c25-line); background: #faf9f6; color: #5c6558; }
.sk-c25-alert.is-neutral > i { background: var(--c25-muted); }

.sk-c25-progress > div { display: flex; justify-content: space-between; margin-bottom: 6px; }
.sk-c25-progress > div span { color: var(--c25-muted); font-size: 11px; }
.sk-c25-progress > i { display: block; overflow: hidden; height: 10px; border-radius: 8px; background: #ebe6dc; }
.sk-c25-progress > i em { display: block; height: 100%; border-radius: inherit; background: var(--c25-brand); }
.sk-c25-progress.is-success > i em { background: var(--c25-green); }
.sk-c25-progress.is-error > i em { background: var(--c25-red); }
.sk-c25-loader { display: flex; align-items: center; gap: 10px; color: var(--c25-muted); }
.sk-c25-loader i {
    width: 20px; height: 20px; border: 2px solid #c8d8c4; border-top-color: var(--c25-brand);
    border-radius: 50%; animation: sk-c25-spin .85s linear infinite;
}
@keyframes sk-c25-spin { to { transform: rotate(360deg); } }

.sk-c25-choice-list { overflow: hidden; border: 1px solid var(--c25-line); border-radius: 14px; }
.sk-c25-choice-list header, .sk-c25-choice-list > label { padding: 10px 12px; border-bottom: 1px solid var(--c25-line); }
.sk-c25-choice-list header { display: flex; align-items: center; justify-content: space-between; background: #faf9f6; }
.sk-c25-choice-list header small { color: var(--c25-muted); }
.sk-c25-choice-list > label:last-child { border-bottom: 0; }

.sk-c25-badge {
    display: inline-flex; align-items: center; width: fit-content; padding: 4px 10px;
    border-radius: 14px; font-size: 11px; font-weight: 600;
}
.sk-c25-badge.is-info { background: var(--c25-brand-soft); color: var(--c25-brand-dark); }
.sk-c25-badge.is-success { background: #e4f2e2; color: #3d6b38; }
.sk-c25-badge.is-warning { background: #faf3e0; color: #7a6520; }
.sk-c25-badge.is-error { background: #fce8e8; color: #8b3a3a; }
.sk-c25-badge.is-neutral { background: #ebe6dc; color: #5c6558; }
.sk-c25-badge.is-auto { background: var(--c25-ozon-soft); color: var(--c25-ozon-text); border: 1px solid var(--c25-ozon); }
.sk-c25-badge.is-manual { background: #e8f5e6; color: var(--c25-manual); border: 1px solid var(--c25-green); }
.sk-c25-price-auto {
    padding: 4px 8px; border: 1px solid var(--c25-ozon) !important; border-radius: 8px;
    background: var(--c25-ozon-soft) !important; color: var(--c25-ozon-text) !important; font-weight: 700;
}
.sk-c25-price-manual { color: var(--c25-manual) !important; font-weight: 700; }

.sk-c25-fold { margin-bottom: 8px; border: 1px solid var(--c25-line); border-radius: 12px; }
.sk-c25-fold summary { display: flex; justify-content: space-between; padding: 10px 12px; cursor: pointer; background: #faf9f6; font-weight: 600; }
.sk-c25-fold summary i { color: var(--c25-muted); font-size: 11px; font-style: normal; font-weight: 400; }
.sk-c25-fold p { margin: 0; padding: 12px; color: var(--c25-muted); }
.sk-c25-fold.is-warning { border-color: #f0e0b0; }
.sk-c25-fold.is-warning summary { background: #fdfaf2; color: #7a6520; }

.sk-c25-modal-demo {
    overflow: hidden; max-width: 520px; margin: 0 auto; border: 1px solid var(--c25-line);
    border-radius: 16px; box-shadow: 0 12px 32px rgba(61, 68, 56, .12);
}
.sk-c25-modal-demo header, .sk-c25-modal-demo footer {
    display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; background: #faf9f6;
}
.sk-c25-modal-demo header div { display: grid; }
.sk-c25-modal-demo header small { color: var(--c25-muted); }
.sk-c25-modal-demo header button { border: 0; background: transparent; font-size: 20px; cursor: pointer; color: var(--c25-muted); }
.sk-c25-modal-demo main { padding: 14px; }
.sk-c25-modal-demo main p { margin-top: 0; color: var(--c25-muted); }
.sk-c25-modal-demo main label { display: grid; gap: 6px; }
.sk-c25-modal-demo footer { justify-content: flex-end; gap: 8px; border-top: 1px solid var(--c25-line); }

.sk-c25-empty { display: grid; place-items: center; padding: 24px; text-align: center; }
.sk-c25-empty > i { font-size: 32px; color: #c5bfb4; font-style: normal; }
.sk-c25-empty p { margin: 4px 0 12px; color: var(--c25-muted); }
.sk-c25-tooltip-demo {
    position: relative; padding: 6px 10px; border-bottom: 1px dashed var(--c25-brand-mid);
    color: var(--c25-brand-dark); cursor: help;
}
.sk-c25-tooltip-demo i {
    display: none; position: absolute; z-index: 3; left: 0; bottom: calc(100% + 8px); width: 200px;
    padding: 8px; border-radius: 10px; background: var(--c25-ink); color: #fff; font-size: 11px; font-style: normal;
}
.sk-c25-tooltip-demo:hover i { display: block; }
.sk-c25-help {
    width: 28px; height: 28px; border: 1px solid #c8d8c4; border-radius: 50%;
    background: var(--c25-brand-soft); color: var(--c25-brand-dark); font-weight: 700; cursor: help;
}
.sk-c25-inline-help { display: grid; padding-left: 10px; border-left: 3px solid var(--c25-brand-mid); }
.sk-c25-inline-help small { color: var(--c25-muted); }
.sk-c25-toolbar {
    display: flex; align-items: center; gap: 8px; padding: 10px 12px;
    border: 1px dashed #c8d8c4; border-radius: 14px; background: var(--c25-brand-soft);
}
.sk-c25-toolbar > span { flex: 1; }
.sk-c25-no-results { padding: 44px; text-align: center; color: var(--c25-muted); }
.sk-c25-no-results b, .sk-c25-no-results span { display: block; }
.sk-c25-note { display: block; margin-top: 10px; color: var(--c25-muted); font-size: 11px; }

/* --- 25: цветовые акценты --- */
.sk-c25-attn-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.sk-c25-attn {
    display: flex; align-items: center; gap: 10px; padding: 11px 13px;
    border-radius: 12px; background: #fff; border: 1px solid var(--c25-line);
}
.sk-c25-attn b { flex: 0 0 36px; font-size: 11px; color: var(--c25-muted); }
.sk-c25-attn.is-brand { border-left: 5px solid var(--c25-brand); background: var(--c25-brand-soft); }
.sk-c25-attn.is-softest { border-left: 5px solid var(--c25-brand-mid); background: var(--c25-brand-softest); }
.sk-c25-attn.is-beige { border-left: 5px solid #d8d2c8; background: var(--c25-brand-beige); }
.sk-c25-attn.is-warn { border: 2px solid #f0dfa0; background: #fdfaf2; color: #7a6520; }
.sk-c25-attn.is-error::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--c25-red); flex-shrink: 0; }
.sk-c25-attn.is-violet { border-color: #d8c8f0; background: #f8f4fd; color: #5c4580; }
.sk-c25-attn.is-warm { border-color: #f0c8b0; background: #fdf6f2; color: #8b4e30; }
.sk-c25-attn.is-info span::after { content: " NEW"; padding: 2px 6px; margin-left: 6px; border-radius: 8px; background: #4a8fad; color: #fff; font-size: 10px; font-weight: 700; }
.sk-c25-attn.is-pulse span::after {
    content: " ●"; color: var(--c25-red); animation: sk-c25-pulse 1.4s ease-in-out infinite;
}
.sk-c25-attn.is-gradient {
    border: 0; color: #fff;
    background: linear-gradient(120deg, var(--c25-brand) 0%, #8a6bb8 55%, #d4845c 100%);
}
@keyframes sk-c25-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* --- 26: подсветка и оконтовка --- */
.sk-c25-cell {
    display: inline-flex; align-items: center; min-height: 36px; padding: 6px 10px;
    border-radius: 10px; font-weight: 600;
}
.sk-c25-compare-grid, .sk-c25-step-grid { display: grid; gap: 8px; }
.sk-c25-compare-grid header, .sk-c25-step-grid header,
.sk-c25-compare-grid > div, .sk-c25-step-grid > div {
    display: grid; grid-template-columns: 44px 1fr 1fr; gap: 10px; align-items: center;
}
.sk-c25-step-grid header, .sk-c25-step-grid > div { grid-template-columns: 44px 1fr 1fr 120px; }
.sk-c25-compare-grid header span, .sk-c25-step-grid header span {
    font-size: 11px; font-weight: 700; color: var(--c25-muted); text-transform: uppercase;
}
.sk-c25-compare-grid > div b, .sk-c25-step-grid > div b { font-size: 11px; color: var(--c25-muted); }
.sk-c25-fill.is-brand, .sk-c25-input.sk-c25-fill.is-brand { background: var(--c25-brand-soft) !important; color: var(--c25-brand-dark); border-color: #c8d8c4; }
.sk-c25-fill.is-softest, .sk-c25-input.sk-c25-fill.is-softest { background: var(--c25-brand-softest) !important; color: var(--c25-brand-dark); border-color: #d5e0d2; }
.sk-c25-fill.is-beige, .sk-c25-input.sk-c25-fill.is-beige { background: var(--c25-brand-beige) !important; color: var(--c25-ink); border-color: #e2ddd4; }
.sk-c25-fill.is-manual, .sk-c25-input.sk-c25-fill.is-manual { background: #fff !important; color: var(--c25-manual); border-color: #86efac; font-weight: 700; }
.sk-c25-fill.is-ozon, .sk-c25-input.sk-c25-fill.is-ozon { background: var(--c25-ozon-soft) !important; color: var(--c25-ozon-text); border-color: var(--c25-ozon); }
.sk-c25-fill.is-1c, .sk-c25-input.sk-c25-fill.is-1c { background: var(--c25-1c-soft) !important; color: var(--c25-1c-text); border-color: var(--c25-1c-border); }
.sk-c25-fill.is-auto, .sk-c25-input.sk-c25-fill.is-auto { background: var(--c25-ozon-soft) !important; color: var(--c25-ozon-text); border-color: var(--c25-ozon); }
.sk-c25-fill.is-warn, .sk-c25-input.sk-c25-fill.is-warn { background: #fdfaf2 !important; color: #7a6520; border-color: #f0dfa0; }
.sk-c25-fill.is-error, .sk-c25-input.sk-c25-fill.is-error { background: #fdf5f5 !important; color: #8b3a3a; border-color: #f0c8c8; }
.sk-c25-border.is-brand, .sk-c25-input.sk-c25-border.is-brand { background: #fff !important; border: 2px solid var(--c25-brand); color: var(--c25-brand-dark); }
.sk-c25-border.is-manual, .sk-c25-input.sk-c25-border.is-manual { background: #fff !important; border: 2px solid var(--c25-manual); color: var(--c25-manual); }
.sk-c25-border.is-ozon, .sk-c25-input.sk-c25-border.is-ozon { background: #fff !important; border: 2px solid var(--c25-ozon); color: var(--c25-ozon-text); }
.sk-c25-border.is-1c, .sk-c25-input.sk-c25-border.is-1c { background: #fff !important; border: 2px solid var(--c25-1c-border); color: var(--c25-1c-text); }
.sk-c25-border.is-error, .sk-c25-input.sk-c25-border.is-error { background: #fff !important; border: 2px solid var(--c25-red); color: #8b3a3a; }

/* --- 27: 4 шага градации --- */
.sk-c25-step.is-1, .sk-c25-input.sk-c25-step.is-1 { background: #f6faf5 !important; color: var(--c25-text); border-color: #e8efe6; }
.sk-c25-step.is-2, .sk-c25-input.sk-c25-step.is-2 { background: #e3efe1 !important; color: var(--c25-brand-dark); border-color: #d0e0cc; }
.sk-c25-step.is-3, .sk-c25-input.sk-c25-step.is-3 { background: #b8d4b0 !important; color: #2d4a28; border-color: #9fc498; font-weight: 700; }
.sk-c25-step.is-4, .sk-c25-input.sk-c25-step.is-4 {
    background: var(--c25-brand) !important; color: #fff !important; border-color: var(--c25-brand-dark);
    font-weight: 700; box-shadow: 0 2px 8px rgba(73, 121, 82, .35);
}
.sk-c25-input.sk-c25-step.is-1.is-edit { background: #eef5ec !important; color: var(--c25-ink); border-color: #c8d8c4; font-weight: 700; }
.sk-c25-input.sk-c25-step.is-2.is-edit { background: #d4e6d0 !important; color: var(--c25-brand-dark); border-color: #a8c8a0; font-weight: 700; }
.sk-c25-input.sk-c25-step.is-3.is-edit { background: #8fbc86 !important; color: #1e3a18; border-color: #6fa866; font-weight: 700; }
.sk-c25-input.sk-c25-step.is-4.is-edit {
    background: var(--c25-brand-dark) !important; color: #fff !important; border-color: #354a30;
    font-weight: 700; box-shadow: 0 2px 10px rgba(70, 96, 66, .45);
}
.sk-c25-step-grid > div small { color: var(--c25-muted); font-size: 11px; }

/* --- 28: панели фильтров --- */
.sk-c25-fpanel {
    padding: 14px 16px; border: 1px dashed var(--c25-line); border-radius: 14px;
    background: linear-gradient(180deg, #faf9f6 0%, #fff 100%);
}
.sk-c25-fpanel__title { margin-bottom: 10px; font-size: 12px; font-weight: 700; color: var(--c25-muted); text-transform: uppercase; letter-spacing: .04em; }
.sk-c25-fpanel__title small { font-size: 11px; font-weight: 400; text-transform: none; color: #a8a196; margin-left: 6px; }
.sk-c25-fpanel__list { display: flex; flex-wrap: wrap; gap: 10px; align-items: stretch; }
.sk-c25-fpanel__list--inline { gap: 8px; }
.sk-c25-fchip {
    display: inline-flex; align-items: center; gap: 10px; min-height: 50px; min-width: 140px;
    padding: 10px 14px 10px 12px; border: 1px solid var(--c25-line); border-radius: 12px;
    background: #fff; cursor: pointer; font: inherit; font-weight: 700; color: var(--c25-ink);
    transition: border-color .15s, box-shadow .15s, transform .12s;
}
.sk-c25-fchip i { display: block; width: 4px; height: 30px; border-radius: 3px; flex-shrink: 0; }
.sk-c25-fchip:hover:not(:disabled) { border-color: var(--c25-brand-mid); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(73,121,82,.12); }
.sk-c25-fchip.is-active { border-color: var(--c25-brand); background: var(--c25-brand-soft); box-shadow: 0 0 0 2px rgba(73,121,82,.15); }
.sk-c25-fchip--reset { min-width: 72px; justify-content: center; padding-left: 14px; color: var(--c25-muted); }
.sk-c25-vchip {
    padding: 5px 12px; border: 1px solid var(--c25-line); border-radius: 16px;
    background: #fff; color: var(--c25-brand-dark); font: inherit; font-size: 12px; font-weight: 600; cursor: pointer;
}
.sk-c25-vchip.is-active { border-color: var(--c25-brand); background: var(--c25-brand-soft); }
.sk-c25-vchip.is-danger { color: var(--c25-red); border-color: #f0c8c8; }
.sk-c25-vchip.is-danger.is-active { background: #fdf5f5; border-color: var(--c25-red); }
.sk-c25-fpanel--compact .sk-c25-fpanel__title { margin-bottom: 8px; }
.sk-c25-fpanel--row {
    display: grid; grid-template-columns: auto 1fr 160px auto auto; gap: 10px; align-items: end;
}
.sk-c25-fpanel--row .sk-c25-fpanel__title { margin-bottom: 0; align-self: center; white-space: nowrap; }
.sk-c25-fpanel--fold { padding: 0; border-style: solid; }
.sk-c25-fpanel--fold summary {
    display: flex; justify-content: space-between; padding: 12px 14px; cursor: pointer;
    font-weight: 700; color: var(--c25-ink); list-style: none;
}
.sk-c25-fpanel--fold summary::-webkit-details-marker { display: none; }
.sk-c25-fpanel--fold summary i { color: var(--c25-muted); font-size: 11px; font-style: normal; font-weight: 400; }
.sk-c25-fpanel--fold .sk-c25-fpanel__list { padding: 0 14px 14px; }

/* 23 — сэндвич меню витрины (образец .sk-nav-close-burger) */
.sk-c25-nav-burger-demo {
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: 18px;
    align-items: start;
}
.sk-c25-nav-burger-demo__panel {
    position: relative;
    padding: 88px 14px 16px;
    border-radius: 14px;
    background: linear-gradient(
        115deg,
        var(--c25-brand-dark),
        var(--c25-brand),
        var(--c25-brand-mid),
        var(--c25-brand)
    );
    box-shadow: 0 6px 18px rgba(61, 68, 56, 0.18);
    min-height: 200px;
}
.sk-c25-nav-burger {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    background: rgba(18, 112, 35, 0.45); /* ФТЗ */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    cursor: default;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
}
.sk-c25-nav-burger span {
    display: block;
    position: relative;
    width: 20px;
    height: 2px;
    background: #fff;
}
.sk-c25-nav-burger span:before,
.sk-c25-nav-burger span:after {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
}
.sk-c25-nav-burger span:before { top: -7px; }
.sk-c25-nav-burger span:after { bottom: -7px; }
.sk-c25-nav-burger--solid {
    position: static;
    transform: none;
    background: rgba(255, 255, 255, 0.98);
    border-color: #fff;
}
.sk-c25-nav-burger--solid span,
.sk-c25-nav-burger--solid span:before,
.sk-c25-nav-burger--solid span:after {
    background: var(--c25-brand-dark); /* ФТЗ */
}
.sk-c25-nav-burger-demo__list {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
}
.sk-c25-nav-burger-demo__list li {
    padding: 6px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.sk-c25-nav-burger-demo__meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    color: var(--c25-text);
    font-size: 13px;
}
.sk-c25-nav-burger-demo__meta small {
    display: block;
    margin-top: 2px;
    color: var(--c25-muted);
    font-size: 11px;
}
.sk-c25-nav-burger-demo__meta code {
    font-size: 11px;
}

@media (max-width: 1100px) {
    .sk-c25-hero { display: grid; }
    .sk-c25-hero__actions { justify-content: flex-start; min-width: 0; }
    .sk-c25-grid { grid-template-columns: 1fr; }
    .sk-c25-card--wide { grid-column: auto; }
    .sk-c25-filter { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .sk-c25-nav-burger-demo { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .sk-c25-guide { padding: 10px; }
    .sk-c25-hero { padding: 18px; }
    .sk-c25-hero .sk-c25-search { min-width: 100%; }
    .sk-c25-form-grid, .sk-c25-alert-grid, .sk-c25-filter, .sk-c25-attn-grid { grid-template-columns: 1fr; }
    .sk-c25-fpanel--row { grid-template-columns: 1fr; }
    .sk-c25-step-grid header, .sk-c25-step-grid > div,
    .sk-c25-compare-grid header, .sk-c25-compare-grid > div { grid-template-columns: 36px 1fr; }
    .sk-c25-step-grid > div small { display: none; }
    .sk-c25-step-grid header span:last-child { display: none; }
    .sk-c25-toolbar { align-items: stretch; flex-direction: column; }
}
