.space-main--guide {
    opacity: 1;
    transform: none;
    animation: none !important;
}

.guide-flow {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0 72px;
    color: var(--space-white);
}

.guide-flow-intro {
    max-width: 760px;
    margin-bottom: 38px;
}

.guide-flow-intro h1 {
    max-width: 680px;
    margin: 8px 0 12px;
    color: var(--space-white);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.03;
    letter-spacing: 0;
}

.guide-flow-intro > p:last-child {
    max-width: 650px;
    margin: 0;
    color: var(--space-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.guide-step {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
    opacity: 0;
    transform: translateY(12px);
}

.guide-step + .guide-step {
    margin-top: 30px;
}

.guide-step.is-visible {
    animation: guideStepReveal 360ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.guide-step.is-server-visible {
    opacity: 1;
    transform: none;
    animation: none;
}

.guide-step-marker {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    align-items: center;
}

.guide-step-marker span {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border: 1px solid rgba(94, 219, 255, 0.52);
    border-radius: 50%;
    background: #08182a;
    color: #68dfff;
    font-size: 0.84rem;
    font-weight: 900;
}

.guide-step-marker i {
    width: 1px;
    min-height: 38px;
    flex: 1;
    margin-top: 8px;
    background: linear-gradient(180deg, rgba(94, 219, 255, 0.48), rgba(255, 176, 91, 0.2));
}

.guide-step-content {
    min-width: 0;
    padding: 3px 0 12px;
}

.guide-step-label {
    margin: 0 0 5px;
    color: #ffbc73;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.guide-step h2 {
    margin: 0;
    color: var(--space-white);
    font-size: 1.55rem;
    line-height: 1.2;
    letter-spacing: 0;
}

.guide-step-description {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--space-muted);
    line-height: 1.65;
}

.guide-step-description a,
.guide-product-note a {
    color: #66d7ff;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: rgba(102, 215, 255, 0.42);
    text-underline-offset: 3px;
}

.guide-platform-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.guide-platform-grid button {
    display: grid;
    min-width: 0;
    min-height: 78px;
    gap: 5px;
    align-content: center;
    padding: 13px 15px;
    border: 1px solid var(--space-line);
    border-radius: 7px;
    background: rgba(8, 20, 35, 0.82);
    color: var(--space-white);
    text-align: left;
    cursor: pointer;
    transition: transform 150ms ease, border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.guide-platform-grid button:hover {
    border-color: rgba(94, 219, 255, 0.5);
    transform: translateY(-2px);
}

.guide-platform-grid button.is-active {
    border-color: #53d6ff;
    background: rgba(18, 112, 169, 0.22);
    box-shadow: inset 3px 0 0 #53d6ff;
}

.guide-platform-grid strong {
    font-size: 0.96rem;
}

.guide-platform-grid span {
    min-width: 0;
    color: var(--space-muted);
    font-size: 0.75rem;
    overflow-wrap: anywhere;
}

.guide-step-heading-row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    justify-content: space-between;
}

.guide-current-choice {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(95, 255, 194, 0.34);
    border-radius: 6px;
    background: rgba(95, 255, 194, 0.08);
    color: #7fffc8;
    font-size: 0.74rem;
    font-weight: 900;
}

.guide-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.guide-product-card {
    min-height: 460px;
}

.guide-product-card[hidden] {
    display: none;
}

.guide-product-card.is-entering {
    animation: guideProductReveal 280ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.guide-product-card.is-selected {
    border-color: #7fffc8;
    box-shadow: 0 0 0 3px rgba(95, 255, 194, 0.09);
}

.guide-product-card .space-shop-card-body {
    grid-template-rows: auto 1fr auto;
    min-height: 285px;
    gap: 14px;
    padding: 16px;
}

.guide-product-card .space-product-image {
    max-height: 170px;
}

.guide-product-title-row {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.guide-product-title-row h2 {
    min-width: 0;
    margin: 0;
}

.guide-product-price {
    display: inline-flex;
    min-height: 26px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0 9px;
    border: 1px solid rgba(255, 185, 104, 0.45);
    border-radius: 6px;
    background: rgba(255, 185, 104, 0.1);
    color: #ffc47f;
    font-size: 0.7rem;
    font-weight: 900;
    white-space: nowrap;
}

.guide-product-price.is-free {
    border-color: rgba(95, 255, 194, 0.42);
    background: rgba(95, 255, 194, 0.1);
    color: #7fffc8;
}

.guide-product-card .guide-product-description {
    margin: 0;
    color: #b9c7d9;
    font-size: 0.82rem;
    line-height: 1.55;
}

.guide-select-button {
    display: inline-flex;
    width: 100%;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid rgba(95, 255, 194, 0.42);
    border-radius: 6px;
    background: rgba(95, 255, 194, 0.09);
    color: #86ffd0;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 900;
    cursor: pointer;
    transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.guide-select-button:hover,
.guide-select-button.is-selected {
    border-color: #7fffc8;
    background: #7fffc8;
    color: #03130f;
}

.guide-install-product {
    margin-top: 18px;
}

.guide-install-product[hidden] {
    display: none;
}

.guide-install-hero {
    display: grid;
    grid-template-columns: minmax(210px, 280px) minmax(0, 1fr);
    min-height: 190px;
    overflow: hidden;
    border: 1px solid rgba(94, 219, 255, 0.3);
    border-radius: 7px;
    background: rgba(7, 19, 33, 0.88);
}

.guide-install-hero > img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: contain;
    border-right: 1px solid var(--space-line);
    background: #02060d;
}

.guide-install-hero > div {
    display: grid;
    min-width: 0;
    gap: 8px;
    align-content: center;
    padding: 22px;
}

.guide-install-hero > div > span {
    color: #66d7ff;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.guide-install-hero h3 {
    margin: 0;
    color: var(--space-white);
    font-size: 1.45rem;
    line-height: 1.15;
}

.guide-install-hero p {
    max-width: 690px;
    margin: 0;
    color: var(--space-muted);
    font-size: 0.83rem;
    line-height: 1.55;
}

.guide-install-download,
.guide-install-complete {
    display: inline-flex;
    width: fit-content;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 14px;
    border: 1px solid rgba(94, 219, 255, 0.48);
    border-radius: 6px;
    background: #1686d9;
    color: #fff;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.25;
    text-decoration: none;
    cursor: pointer;
    overflow-wrap: anywhere;
    transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.guide-install-download:hover,
.guide-install-complete:hover {
    border-color: #69dcff;
    background: #2099ec;
    color: #fff;
    transform: translateY(-1px);
}

.guide-install-actions {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: guide-install-action;
}

.guide-install-actions li {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 190px;
    gap: 15px;
    align-content: start;
    padding: 16px;
    border: 1px solid var(--space-line);
    border-radius: 7px;
    background: rgba(8, 20, 35, 0.82);
    counter-increment: guide-install-action;
}

.guide-install-actions li::after {
    content: counter(guide-install-action, decimal-leading-zero);
    position: absolute;
    top: 15px;
    right: 15px;
    color: rgba(255, 188, 115, 0.82);
    font-size: 0.68rem;
    font-weight: 900;
}

.guide-install-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(94, 219, 255, 0.35);
    border-radius: 6px;
    background: rgba(30, 142, 210, 0.13);
    color: #6adfff;
    font-size: 0.95rem;
    font-weight: 900;
}

.guide-install-icon.is-text {
    font-size: 0.62rem;
    letter-spacing: 0;
}

.guide-button-symbol {
    flex: 0 0 auto;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
}

.guide-install-actions li > div {
    min-width: 0;
}

.guide-install-actions strong {
    display: block;
    color: var(--space-white);
    font-size: 0.84rem;
    line-height: 1.3;
}

.guide-install-actions p {
    margin: 7px 0 0;
    color: var(--space-muted);
    font-size: 0.74rem;
    line-height: 1.5;
}

.guide-install-actions b {
    color: #dce9f7;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.guide-install-complete {
    min-width: 170px;
    margin-top: 14px;
    border-color: rgba(95, 255, 194, 0.45);
    background: #137c5b;
}

.guide-install-complete:hover {
    border-color: #7fffc8;
    background: #19966f;
}

.guide-game-field {
    display: grid;
    max-width: 540px;
    gap: 8px;
    margin-top: 16px;
    color: var(--space-muted);
    font-size: 0.78rem;
    font-weight: 900;
}

.guide-game-field select {
    width: 100%;
    min-height: 46px;
    padding: 0 42px 0 13px;
    border: 1px solid var(--space-line-strong);
    border-radius: 7px;
    background: #0a1422;
    color: var(--space-white);
    font: inherit;
    cursor: pointer;
}

.guide-existing-config {
    display: flex;
    max-width: 720px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--space-line);
}

.guide-existing-config > div {
    display: grid;
    min-width: 0;
    gap: 4px;
}

.guide-existing-config strong {
    color: var(--space-white);
    font-size: 0.9rem;
    line-height: 1.35;
}

.guide-existing-config span {
    color: var(--space-muted);
    font-size: 0.76rem;
    line-height: 1.45;
}

.guide-interface-link {
    display: inline-flex;
    min-height: 42px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    border: 1px solid #2f94f6;
    border-radius: 7px;
    background: #1677d8;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.guide-interface-link:hover {
    border-color: #73bdff;
    background: #2189ec;
    transform: translateY(-1px);
}

.guide-interface-link:not([href]) {
    pointer-events: none;
    opacity: 0.5;
}

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

.guide-config-modal {
    position: fixed;
    z-index: 1200;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
}

.guide-config-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 5, 12, 0.82);
    backdrop-filter: blur(5px);
    cursor: default;
}

.guide-config-modal-panel {
    position: relative;
    display: grid;
    width: min(1180px, 100%);
    max-height: min(820px, calc(100dvh - 40px));
    grid-template-rows: auto auto auto auto auto minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--space-line-strong);
    border-radius: 8px;
    background: #07111f;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
    animation: guideModalReveal 220ms ease-out both;
}

.guide-config-modal-panel > header {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--space-line);
}

.guide-config-modal-panel > header span {
    color: #5edbff;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.guide-config-modal-panel > header h2 {
    margin: 3px 0 0;
    color: var(--space-white);
    font-size: 1.25rem;
    letter-spacing: 0;
}

.guide-config-modal-panel > header > button {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border: 1px solid var(--space-line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--space-white);
    font-size: 1.4rem;
    cursor: pointer;
}

.guide-config-create-bar {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 18px;
    border-bottom: 1px solid var(--space-line);
    background: rgba(21, 113, 177, 0.08);
}

.guide-config-create-bar p {
    display: grid;
    min-width: 0;
    gap: 3px;
    margin: 0;
}

.guide-config-create-bar strong {
    color: var(--space-white);
    font-size: 0.8rem;
}

.guide-config-create-bar span {
    color: var(--space-muted);
    font-size: 0.72rem;
}

.guide-config-create-bar button {
    display: inline-flex;
    min-height: 38px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 13px;
    border: 1px solid rgba(94, 219, 255, 0.4);
    border-radius: 6px;
    background: rgba(35, 146, 218, 0.13);
    color: #82e5ff;
    font: inherit;
    font-size: 0.75rem;
    font-weight: 900;
    cursor: pointer;
    transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.guide-config-create-bar button:hover {
    border-color: #66d7ff;
    background: #1686d9;
    color: #fff;
}

.guide-config-modal-status {
    min-height: 0;
    padding: 0 18px;
    color: var(--space-muted);
    font-size: 0.8rem;
}

.guide-config-modal-status:not(:empty) {
    padding-top: 12px;
}

.guide-config-modal-status.is-error {
    color: #ff8fa1;
}

.guide-config-tools {
    padding: 11px 18px;
    border-bottom: 1px solid var(--space-line);
    background: rgba(5, 13, 23, 0.82);
}

.guide-config-tools .configs-forum-sort,
.guide-config-tools .configs-forum-search {
    margin: 0;
}

.guide-config-tools .configs-forum-search {
    display: grid;
    gap: 7px;
    color: #b9c6d8;
    font-size: 12px;
    font-weight: 900;
}

.guide-config-tools .configs-forum-search input {
    width: 100%;
    min-height: 38px;
    height: 38px;
    padding: 8px 11px;
    border: 1px solid #263447;
    border-radius: 8px;
    background: #0b111b;
    color: #eef4ff;
    font: inherit;
    font-size: 11px;
    outline: none;
}

.guide-config-tools .configs-forum-search input:focus {
    border-color: #3b8cff;
    box-shadow: 0 0 0 3px rgba(59, 140, 255, 0.18);
}

.guide-config-filter-empty[hidden] {
    display: none;
}

.guide-config-filter-empty {
    display: grid;
    gap: 4px;
    margin: 14px 18px 0;
    padding: 16px;
    border: 1px solid #2b3d54;
    border-radius: 8px;
    background: #0d1723;
    color: var(--space-muted);
    font-size: 0.78rem;
}

.guide-config-filter-empty strong {
    color: var(--space-white);
}

.guide-create-config-modal[hidden] {
    display: none;
}

.guide-create-config-modal {
    position: fixed;
    z-index: 1320;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 18px;
}

.guide-create-config-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 5, 12, 0.76);
    backdrop-filter: blur(6px);
}

.guide-create-config-panel {
    position: relative;
    display: grid;
    width: min(470px, 100%);
    gap: 11px;
    padding: 24px;
    border: 1px solid var(--space-line-strong);
    border-radius: 8px;
    background: #091421;
    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.5);
    animation: guideModalReveal 180ms ease-out both;
}

.guide-create-config-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(94, 219, 255, 0.36);
    border-radius: 7px;
    background: rgba(35, 146, 218, 0.12);
    color: #6ee0ff;
    font-size: 1.2rem;
    font-weight: 900;
}

.guide-create-config-product {
    margin: 2px 0 -4px;
    color: #66d7ff;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.guide-create-config-panel h2 {
    margin: 0;
    color: var(--space-white);
    font-size: 1.35rem;
    line-height: 1.2;
    letter-spacing: 0;
}

.guide-create-config-panel > p:not(.guide-create-config-product) {
    margin: 0;
    color: var(--space-muted);
    font-size: 0.82rem;
    line-height: 1.55;
}

.guide-create-config-panel > p strong {
    color: var(--space-white);
}

.guide-create-config-status {
    min-height: 19px;
    color: var(--space-muted);
    font-size: 0.75rem;
    font-weight: 800;
}

.guide-create-config-status.is-error {
    color: #ff93a4;
}

.guide-create-config-status.is-success {
    color: #7fffc8;
}

.guide-create-config-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.guide-create-config-actions button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--space-line-strong);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--space-white);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 900;
    cursor: pointer;
}

.guide-create-config-actions button.is-primary {
    border-color: rgba(95, 255, 194, 0.43);
    background: #137c5b;
}

.guide-create-config-actions button:hover:not(:disabled) {
    border-color: #66d7ff;
}

.guide-create-config-actions button.is-primary:hover:not(:disabled) {
    border-color: #7fffc8;
    background: #19966f;
}

.guide-create-config-actions button:disabled {
    opacity: 0.55;
    cursor: wait;
}

.guide-config-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-rows: max-content;
    align-items: start;
    align-content: start;
    gap: 14px;
    overflow-y: auto;
    padding: 16px 18px 20px;
    scrollbar-gutter: stable;
}

.guide-config-grid .configs-forum-card {
    box-sizing: border-box;
    height: auto;
    min-height: 300px;
    align-self: start;
    overflow: visible;
    padding: 16px;
    gap: 11px;
    border-color: #2b3d54;
    background: linear-gradient(180deg, #111a27 0%, #0d1622 100%);
    box-shadow: none;
}

.guide-config-grid .configs-forum-card[hidden] {
    display: none !important;
}

.guide-config-grid .configs-forum-card:hover {
    border-color: #426281;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.guide-config-grid .configs-forum-card-head {
    gap: 10px;
}

.guide-config-grid .configs-forum-card-head h2 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
}

.guide-config-grid .configs-forum-card-stats {
    gap: 6px;
}

.guide-config-grid .configs-forum-meta {
    margin: 0;
    padding-bottom: 9px;
    line-height: 1.35;
}

.guide-config-grid .configs-forum-description-block {
    min-height: 0;
}

.guide-config-grid .configs-forum-description-excerpt {
    margin: 0;
    -webkit-line-clamp: 3;
}

.guide-config-grid .configs-forum-card > .configs-forum-media-view,
.guide-config-grid .configs-forum-card > .configs-forum-videos-view,
.guide-config-grid .configs-forum-card > .configs-forum-json-view { display: none; }

.guide-config-grid .configs-forum-import {
    position: static;
    width: 100%;
    flex: 0 0 auto;
    margin-top: auto;
    padding-top: 11px;
}

.guide-config-grid .configs-forum-import .configs-forum-button {
    min-height: 40px;
}

body.guide-config-modal-open {
    overflow: hidden;
}

@keyframes guideStepReveal {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes guideProductReveal {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes guideModalReveal {
    from { opacity: 0; transform: translateY(10px) scale(0.99); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 980px) {
    .guide-platform-grid,
    .guide-products-grid,
    .guide-config-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-install-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-install-actions li {
        min-height: 160px;
    }
}

@media (max-width: 640px) {
    .guide-flow {
        width: min(100% - 20px, 1240px);
        padding-top: 24px;
    }

    .guide-flow-intro h1 {
        font-size: 2rem;
    }

    .guide-step {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 10px;
    }

    .guide-step-marker span {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .guide-step h2 {
        font-size: 1.18rem;
    }

    .guide-platform-grid,
    .guide-products-grid,
    .guide-config-grid {
        grid-template-columns: 1fr;
    }

    .guide-platform-grid {
        gap: 7px;
    }

    .guide-platform-grid button {
        min-height: 64px;
    }

    .guide-step-heading-row {
        display: grid;
    }

    .guide-current-choice {
        width: fit-content;
    }

    .guide-install-hero {
        grid-template-columns: 1fr;
    }

    .guide-install-hero > img {
        height: 155px;
        min-height: 155px;
        border-right: 0;
        border-bottom: 1px solid var(--space-line);
    }

    .guide-install-hero > div {
        padding: 16px;
    }

    .guide-install-download,
    .guide-install-complete {
        width: 100%;
    }

    .guide-existing-config {
        display: grid;
        gap: 12px;
    }

    .guide-interface-link {
        width: 100%;
    }

    .guide-install-actions {
        grid-template-columns: 1fr;
    }

    .guide-install-actions li {
        min-height: 0;
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
    }

    .guide-config-modal {
        padding: 8px;
    }

    .guide-config-modal-panel {
        max-height: calc(100dvh - 16px);
    }

    .guide-config-grid {
        padding: 12px;
    }

    .guide-config-tools {
        padding: 12px;
    }

    .guide-config-grid .configs-forum-card {
        min-height: 340px;
    }

    .guide-config-create-bar {
        display: grid;
        gap: 10px;
        padding: 12px;
    }

    .guide-config-create-bar button {
        width: 100%;
        white-space: normal;
    }

    .guide-create-config-panel {
        padding: 19px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .guide-step.is-visible,
    .guide-product-card.is-entering,
    .guide-config-modal-panel {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
