:root {
    --background: #fbf7f4;
    --card: #ffffff;
    --text: #2b2523;
    --muted: #7a6f6a;
    --accent: #b76e79;
    --soft-accent: #ead6d1;
    --border: #e7ddd8;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-bottom: 96px;
    background: var(--background);
    color: var(--text);
    font-family: Arial, "Helvetica Neue", sans-serif;
    line-height: 1.5;
}

body.is-preview-open {
    overflow: hidden;
}

a {
    color: inherit;
}

button,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

textarea {
    width: 100%;
    resize: vertical;
}

input,
select {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid var(--border);
    background: rgba(251, 247, 244, 0.92);
    backdrop-filter: blur(12px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    width: min(1120px, calc(100% - 32px));
    min-height: 68px;
    margin: 0 auto;
    text-decoration: none;
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--soft-accent);
    border-radius: 50%;
    color: var(--accent);
    font-weight: 700;
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: var(--muted);
    font-size: 13px;
}

.hero {
    padding: 56px 0 36px;
    border-bottom: 1px solid var(--border);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 7vw, 72px);
    line-height: 1;
}

.hero__text {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 18px;
}

.page-section {
    padding: 12px 0 64px;
}

.package-summary {
    display: none;
}

.pdf-info {
    display: none;
}

.package-summary {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    gap: 22px;
    margin-bottom: 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #ffffff;
    padding: 22px;
}

.package-summary h2,
.structure-heading h2 {
    margin-bottom: 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.12;
}

.package-summary__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.package-summary article {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fffdfb;
    padding: 14px;
}

.package-summary h3 {
    margin-bottom: 6px;
    font-size: 16px;
}

.package-summary p,
.structure-heading p {
    margin-bottom: 0;
    color: var(--muted);
}

.pdf-info {
    margin-bottom: 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #ffffff;
    padding: 18px;
}

.pdf-info__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.pdf-info__heading h2 {
    margin-bottom: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
}

.pdf-info__heading p {
    max-width: 420px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

.pdf-info__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.pdf-info label {
    display: grid;
    gap: 6px;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.pdf-info input,
.pdf-info textarea {
    min-height: 42px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fffdfb;
    padding: 9px 11px;
    color: var(--text);
    font-weight: 400;
}

.pdf-info input:focus,
.pdf-info textarea:focus {
    outline: 2px solid var(--soft-accent);
    border-color: var(--accent);
}

.pdf-info__wide {
    grid-column: 1 / -1;
}

.constructor-page > .package-summary,
.constructor-page > .pdf-info {
    display: none;
}

.constructor-toolbar {
    display: grid;
    grid-template-columns: minmax(240px, 1.2fr) minmax(320px, 2fr) auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 22px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    padding: 16px;
}

.constructor-toolbar label {
    display: grid;
    gap: 6px;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.constructor-toolbar input,
.constructor-toolbar select {
    min-height: 42px;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #ffffff;
    padding: 9px 11px;
    color: var(--text);
    font-weight: 400;
}

.constructor-toolbar input:focus,
.constructor-toolbar select:focus {
    outline: 2px solid var(--soft-accent);
    border-color: var(--accent);
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.category-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.category-nav--secondary {
    margin-top: 20px;
}

.category-nav__group-link {
    border-color: var(--accent);
    color: var(--accent);
    font-weight: 700;
}

.structure-block {
    margin-top: 0;
}

.structure-block--additional {
    margin-top: 54px;
}

.structure-heading {
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

.additional-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 34px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    padding: 22px;
}

.additional-link h2 {
    margin-bottom: 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.12;
}

.additional-link p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.additional-link .button {
    flex: 0 0 auto;
    border-color: var(--accent);
    background: var(--accent);
    padding: 12px 18px;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(183, 110, 121, 0.18);
}

.additional-link .button:hover {
    background: #a85f6b;
    border-color: #a85f6b;
}

.category-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--card);
    padding: 9px 14px;
    color: var(--text);
    font-size: 14px;
    text-decoration: none;
}

.category-nav strong {
    display: grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--soft-accent);
    color: var(--accent);
    padding: 0 7px;
    font-size: 12px;
}

.category-section {
    scroll-margin-top: 92px;
    padding: 26px 0;
    border-top: 1px solid var(--border);
}

.structure-block > .category-section:first-child {
    border-top: 0;
}

.category-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 18px;
}

.category-heading h2 {
    margin-bottom: 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 5vw, 42px);
}

.category-heading p,
.instruction {
    max-width: 760px;
    color: var(--muted);
}

.category-heading span {
    flex: 0 0 auto;
    border: 1px solid var(--soft-accent);
    border-radius: 999px;
    padding: 6px 12px;
    color: var(--accent);
    font-size: 14px;
}

.category-heading [data-category-visible-count],
.category-heading [data-category-total-count] {
    display: none;
}

.category-heading span:has([data-category-visible-count]) {
    display: none;
}

.category-actions {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 8px;
    min-width: max-content;
    white-space: nowrap;
}

.category-actions button {
    flex: 0 0 auto;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #ffffff;
    padding: 6px 12px;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}

.instruction {
    border-left: 3px solid var(--accent);
    padding-left: 14px;
}

.decor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 18px;
}

[data-category-slug="cvetovaya-gamma"] .decor-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
}

[data-category-slug="cvetovaya-gamma"] .decor-card__image {
    aspect-ratio: 1 / 1;
}

[data-category-slug="cvetovaya-gamma"] .decor-card__body {
    padding: 10px;
}

[data-category-slug="cvetovaya-gamma"] .decor-card__status {
    margin-bottom: 5px;
    font-size: 11px;
}

[data-category-slug="cvetovaya-gamma"] .decor-card h3 {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.25;
}

[data-category-slug="cvetovaya-gamma"] .decor-card__select {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
}

[data-category-slug="cvetovaya-gamma"] .decor-card__heart {
    width: 21px;
    height: 21px;
}

[data-category-slug="cvetovaya-gamma"] .selection-controls {
    margin-top: 10px;
    padding-top: 10px;
}

[data-category-slug="cvetovaya-gamma"] .selection-controls textarea {
    min-height: 72px;
}

[data-category-slug="cvetovaya-gamma"] .decor-card__body textarea::placeholder {
    color: transparent;
}

.decor-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--card);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.decor-card.is-selected {
    border-color: var(--accent);
    box-shadow: 0 14px 36px rgba(183, 110, 121, 0.2);
    transform: translateY(-2px);
}

.decor-card__select {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    padding: 0;
    color: var(--accent);
    box-shadow: 0 8px 22px rgba(43, 37, 35, 0.12);
}

.decor-card.is-selected .decor-card__select {
    background: rgba(255, 255, 255, 0.95);
}

.decor-card__heart {
    width: 24px;
    height: 24px;
    fill: transparent;
    stroke: var(--accent);
    stroke-width: 2;
    stroke-linejoin: round;
    transition: fill 140ms ease, transform 140ms ease;
}

.decor-card.is-selected .decor-card__heart {
    fill: var(--accent);
    transform: scale(1.04);
}

.decor-card__image {
    aspect-ratio: 1 / 1;
    background: var(--soft-accent);
    cursor: zoom-in;
}

.decor-card--gallery .decor-card__image {
    cursor: default;
}

[data-category-slug="cvetovaya-gamma"] .decor-card__image {
    cursor: default;
}

.decor-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.decor-card__body {
    padding: 16px;
}

.decor-card__body label {
    display: grid;
    gap: 8px;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}

.decor-card__status {
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

.decor-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.decor-card p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.category-section.inline-gallery-block {
    margin-top: 34px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    padding: 22px;
}

.inline-gallery-block .category-heading {
    margin-bottom: 0;
}

.inline-gallery-block .category-heading h2 {
    margin-bottom: 8px;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.12;
}

.inline-gallery-block .category-actions {
    align-items: center;
}

.inline-gallery-block .category-actions button {
    border-color: var(--accent);
    background: var(--accent);
    padding: 12px 18px;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(183, 110, 121, 0.18);
}

.inline-gallery-block .category-actions button:hover {
    background: #a85f6b;
    border-color: #a85f6b;
}

.inline-gallery-block [data-category-content] {
    margin-top: 22px;
    border-top: 1px solid var(--border);
    padding-top: 22px;
}

.selection-controls {
    margin-top: 16px;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.selection-controls textarea,
.decor-card__body textarea {
    min-height: 86px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fffdfb;
    padding: 10px 12px;
    color: var(--text);
    font-weight: 400;
}

.selection-controls textarea:focus,
.decor-card__body textarea:focus {
    outline: 2px solid var(--soft-accent);
    border-color: var(--accent);
}

.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.chip-group button,
.selection-item__chips span {
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fffdfb;
    padding: 7px 10px;
    color: var(--muted);
    font-size: 13px;
}

.chip-group button.is-active {
    border-color: var(--accent);
    background: var(--soft-accent);
    color: var(--text);
}

.bottom-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.94);
    padding: 14px max(16px, calc((100% - 1120px) / 2));
    box-shadow: 0 -12px 30px rgba(43, 37, 35, 0.1);
    backdrop-filter: blur(14px);
}

.bottom-bar__count {
    flex: 0 0 auto;
    color: var(--text);
    font-size: 16px;
}

.bottom-bar__count strong {
    color: var(--accent);
    font-size: 20px;
}

.bottom-bar__actions {
    display: flex;
    gap: 10px;
}

.button {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 11px 16px;
    font-weight: 700;
}

.button--secondary {
    border-color: var(--border);
    background: #ffffff;
    color: var(--text);
}

.button--primary {
    background: var(--accent);
    color: #ffffff;
}

.button:disabled {
    cursor: wait;
    opacity: 0.72;
}

.selection-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    width: min(460px, 100%);
    overflow-y: auto;
    border-left: 1px solid var(--border);
    background: var(--background);
    padding: 24px;
    box-shadow: -20px 0 50px rgba(43, 37, 35, 0.16);
}

.selection-panel__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.selection-panel__header h2 {
    margin-bottom: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
}

.selection-panel__close {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #ffffff;
    color: var(--text);
    font-size: 24px;
    line-height: 1;
}

.selection-panel__empty {
    border: 1px dashed var(--border);
    border-radius: 8px;
    background: #ffffff;
    padding: 18px;
    color: var(--muted);
}

.selection-list {
    display: grid;
    gap: 14px;
}

.selection-item {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #ffffff;
    padding: 12px;
}

.selection-item img {
    width: 92px;
    height: 92px;
    border-radius: 6px;
    object-fit: cover;
    background: var(--soft-accent);
}

.selection-item__body > p {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 12px;
}

.selection-item h3 {
    margin-bottom: 8px;
    font-size: 16px;
}

.selection-item__comment {
    margin-bottom: 8px;
    color: var(--text);
    font-size: 14px;
}

.selection-item__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.selection-item__chips span {
    padding: 5px 8px;
    font-size: 12px;
}

.selection-item button {
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
}

.preview-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 24px;
}

.preview-modal[hidden] {
    display: none;
}

.preview-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(43, 37, 35, 0.62);
    backdrop-filter: blur(8px);
}

.preview-modal__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(1040px, 100%);
}

.preview-modal__media {
    position: relative;
    display: inline-grid;
    max-width: 100%;
    max-height: 82vh;
}

.preview-modal__media img {
    grid-area: 1 / 1;
    max-width: 100%;
    max-height: 82vh;
    border-radius: 8px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.preview-modal__close,
.preview-modal__arrow,
.preview-modal__select {
    position: absolute;
    z-index: 3;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    color: var(--accent);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px) saturate(1.25);
}

.preview-modal__close:hover,
.preview-modal__arrow:hover,
.preview-modal__select:hover {
    background: rgba(255, 255, 255, 0.44);
}

.preview-modal__close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    color: var(--text);
    font-size: 28px;
    line-height: 1;
}

.preview-modal__arrow {
    top: 50%;
    width: 46px;
    height: 46px;
    font-size: 42px;
    line-height: 1;
    transform: translateY(-50%);
}

.preview-modal__arrow--prev {
    left: 14px;
}

.preview-modal__arrow--next {
    right: 14px;
}

.preview-modal__arrow:disabled {
    cursor: default;
    opacity: 0.35;
}

.preview-modal__select {
    top: 14px;
    left: 14px;
    width: 52px;
    height: 52px;
}

.preview-modal__select.is-selected .decor-card__heart {
    fill: var(--accent);
}

.preview-modal__comment {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    display: grid;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.28);
    padding: 12px;
    color: var(--text);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px) saturate(1.2);
}

.preview-modal__comment[hidden] {
    display: none;
}

.preview-modal__comment span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-shadow: 0 1px 12px rgba(43, 37, 35, 0.44);
}

.preview-modal__comment textarea {
    width: 100%;
    min-height: 76px;
    resize: vertical;
    border: 1px solid rgba(255, 255, 255, 0.54);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
    padding: 11px 12px;
    color: var(--text);
    font: inherit;
    outline: none;
}

.preview-modal__comment textarea:focus {
    border-color: rgba(183, 110, 121, 0.82);
    box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.18);
}

.show-more {
    display: block;
    margin: 22px auto 0;
    border: 1px solid var(--accent);
    border-radius: 999px;
    background: #ffffff;
    padding: 11px 18px;
    color: var(--accent);
    font-weight: 700;
}

.show-more[hidden] {
    display: none;
}

.empty,
.empty-state {
    border: 1px dashed var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.56);
    padding: 24px;
    color: var(--muted);
}

@media (max-width: 640px) {
    body {
        padding-bottom: 140px;
    }

    .container,
    .brand {
        width: min(100% - 24px, 1120px);
    }

    .hero {
        padding-top: 40px;
    }

    .category-heading {
        display: block;
    }

    .category-heading span,
    .category-actions button {
        display: inline-block;
        margin-top: 4px;
    }

    .constructor-toolbar {
        grid-template-columns: 1fr;
    }

    .package-summary {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .additional-link {
        align-items: stretch;
        flex-direction: column;
        padding: 16px;
    }

    .package-summary__grid {
        grid-template-columns: 1fr;
    }

    .pdf-info__heading {
        display: block;
    }

    .pdf-info__heading h2 {
        margin-bottom: 8px;
    }

    .pdf-info__grid {
        grid-template-columns: 1fr;
    }

    .filter-grid {
        grid-template-columns: 1fr;
    }

    .category-nav {
        position: sticky;
        top: 69px;
        z-index: 8;
        margin-inline: -12px;
        padding: 10px 12px;
        background: rgba(251, 247, 244, 0.94);
        scroll-snap-type: x proximity;
    }

    .category-nav a {
        scroll-snap-align: start;
    }

    .category-actions {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .decor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    [data-category-slug="cvetovaya-gamma"] .decor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bottom-bar {
        align-items: stretch;
        flex-direction: column;
        padding: 12px;
    }

    .bottom-bar__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .button {
        padding-inline: 12px;
        font-size: 14px;
    }

    .selection-panel {
        padding: 18px 14px 150px;
    }

    .preview-modal {
        padding: 14px;
    }

    .preview-modal__arrow {
        width: 38px;
        height: 38px;
        font-size: 34px;
    }

    .preview-modal__close {
        top: 10px;
        right: 10px;
    }

    .preview-modal__select {
        top: 10px;
        left: 10px;
        width: 44px;
        height: 44px;
    }

    .preview-modal__arrow--prev {
        left: 10px;
    }

    .preview-modal__arrow--next {
        right: 10px;
    }

    .preview-modal__comment {
        right: 10px;
        bottom: 10px;
        left: 10px;
        padding: 10px;
    }

    .preview-modal__comment textarea {
        min-height: 68px;
    }

    .selection-item {
        grid-template-columns: 78px 1fr;
    }

    .selection-item img {
        width: 78px;
        height: 78px;
    }
}
