    html,
    body {
        margin: 0;
        min-height: 100%;
        background: #f4f4f5;
        color: #050505;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    button,
    .button,
    .add-shop-button {
        font-family: inherit;
    }

    #header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        height: 50px;
        padding: 0 14px;
        background: #fff;
        box-sizing: border-box;
    }

    .header_left {
        display: flex;
        align-items: center;
    }

    .header_left img {
        height: 35px;
        object-fit: contain;
        display: block;
    }

    .header_central ul {
        display: flex;
        align-items: center;
        gap: 28px;
        padding: 0;
        margin: 0;
    }

    .header_central li {
        list-style: none;
    }

    .header_central a,
    .header_rigth a,
    .logout-button {
        color: #070707;
        font-size: 15px;
        line-height: 1.2;
        font-weight: 700;
        display: flex;
    }

    .header_central a:hover,
    .header_rigth a:hover,
    .logout-button:hover {
        text-decoration: underline;
    }

    .header_rigth {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .header_rigth p {
        margin: 0;
        overflow: hidden;
        color: #222;
        font-size: 15px;
        white-space: nowrap;
    }

    .logout-form {
        margin: 0;
    }

    .logout-button {
        margin: 0;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .public-language-switcher {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .public-language-switcher__label {
        color: #555;
        font-size: 13px;
        font-weight: 700;
    }

    .public-language-switcher__select {
        min-height: 32px;
        border: 1px solid #d4d4d8;
        background: #fff;
        color: #111;
        padding: 0 8px;
        font: inherit;
        font-size: 14px;
    }

    .dashboard-shell {
        max-width: none;
        margin: 0;
    }

    .sc-alert-strip-stack {
        display: grid;
        gap: 1px;
    }

    .sc-alert-strip {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        min-height: 44px;
        padding: 10px 22px;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-sizing: border-box;
    }

    .sc-alert-strip--danger {
        background: #b42318;
        color: #fff;
    }

    .sc-alert-strip__message {
        font-size: 14px;
        font-weight: 800;
        line-height: 1.35;
    }

    .sc-alert-strip__action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 30px;
        padding: 0 12px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.14);
        color: #fff;
        font-size: 13px;
        font-weight: 900;
        line-height: 1;
        white-space: nowrap;
    }

    .sc-alert-strip__action:hover {
        background: rgba(255, 255, 255, 0.24);
        text-decoration: none;
    }

    .projects-page {
        padding: 84px 60px 70px;
    }

    .projects-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 28px;
        margin-bottom: 46px;
    }

    .projects-head h1 {
        margin: 0;
        color: #050505;
        font-size: 42px;
        line-height: 1.1;
        font-weight: 800;
        letter-spacing: -1px;
    }

    .projects-head-actions {
        display: flex;
        align-items: flex-end;
        flex-direction: column;
        gap: 10px;
    }

    .projects-limit-note {
        max-width: 330px;
        margin: 0;
        color: #666;
        font-size: 13px;
        line-height: 1.35;
        text-align: right;
    }

    .add-shop-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 270px;
        min-height: 48px;
        padding: 0 28px;
        border: 1px solid #8d79dc;
        background: #8d79dc;
        color: #fff;
        font-size: 16px;
        line-height: 1;
        font-weight: 700;
        box-sizing: border-box;
        cursor: pointer;
    }

    .add-shop-button--disabled,
    .add-shop-button:disabled {
        border-color: #d6d6df;
        background: #e7e7ec;
        color: #999;
        cursor: not-allowed;
    }

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

    .project-card {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 310px;
        padding: 38px 36px 36px;
        border: 1px solid #c8c8c8;
        background: #fff;
        box-sizing: border-box;
        transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    }

    .project-card:hover {
        border-color: #9b86ef;
        box-shadow: 0 14px 34px rgba(20, 20, 40, 0.08);
        transform: translateY(-2px);
    }

    .project-card--deleted {
        opacity: 0.5;
    }

    .project-card--deleted:hover {
        border-color: #c8c8c8;
        box-shadow: none;
        transform: none;
    }

    .project-delete-button,
    .project-staff-button {
        position: absolute;
        top: 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: #fff;
        font-size: 18px;
        line-height: 1;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-4px);
        transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease, background 0.18s ease, color 0.18s ease;
    }

    .project-delete-button {
        right: 18px;
        border: 1px solid #e4b5b5;
        color: #b3261e;
    }

    .project-staff-button {
        right: 64px;
        border: 1px solid #d7d3ec;
        color: #6656a8;
    }

    .project-card:hover .project-delete-button,
    .project-card:hover .project-staff-button {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .project-delete-button:hover {
        background: #b3261e;
        border-color: #b3261e;
        color: #fff;
    }

    .project-staff-button:hover {
        background: #8d79dc;
        border-color: #8d79dc;
        color: #fff;
    }

    .project-card-main h2 {
        margin: 0 0 20px;
        padding-right: 92px;
        color: #050505;
        font-size: 32px;
        line-height: 1.15;
        font-weight: 800;
        letter-spacing: -0.5px;
    }

    .project-card-main h2 a {
        color: inherit;
    }

    .project-description {
        max-width: 430px;
        margin: 0;
        color: #555;
        font-size: 14px;
        line-height: 1.45;
    }

    .project-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 22px;
        color: #777;
        font-size: 13px;
    }

    .project-meta span + span::before {
        content: "•";
        margin-right: 10px;
        color: #aaa;
    }

    .project-card-footer {
        display: flex;
        align-items: center;
        gap: 24px;
        margin-top: 56px;
    }

    .project-card-footer form,
    .project-admin-form {
        flex: 0 0 auto;
        margin: 0;
    }

    .project-admin-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 168px;
        min-height: 47px;
        padding: 0 24px;
        border: 1px solid #9b86ef;
        background: #fff;
        color: #8d79dc;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
    }

    .project-admin-button:hover {
        background: #f6f3ff;
    }

    .project-admin-button.disabled,
    .project-admin-button:disabled {
        border-color: #d6d6df;
        color: #aaa;
        background: #f7f7f9;
        cursor: not-allowed;
    }

    .project-public-link {
        min-width: 0;
        color: #555;
        font-size: 13px;
        line-height: 1.35;
        word-break: break-word;
    }

    .muted {
        color: #777;
    }

    .empty-projects {
        max-width: 620px;
        padding: 46px;
        border: 1px solid #c8c8c8;
        background: #fff;
    }

    .empty-projects h2 {
        margin: 0 0 14px;
        font-size: 30px;
        line-height: 1.2;
    }

    .empty-projects p {
        margin: 0 0 28px;
        color: #555;
        font-size: 15px;
        line-height: 1.5;
    }

    .staff-invitations,
    .shared-projects,
    .deleted-projects {
        margin-top: 58px;
    }

    .staff-invitations {
        margin-top: 0;
        margin-bottom: 44px;
    }

    .staff-invitations h2,
    .shared-projects h2,
    .deleted-projects h2 {
        margin: 0 0 24px;
        color: #050505;
        font-size: 28px;
        line-height: 1.2;
        font-weight: 800;
    }

    .staff-invitation-list {
        display: grid;
        gap: 14px;
        max-width: 980px;
    }

    .staff-invitation-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 20px 22px;
        border: 1px solid #c8c8c8;
        background: #fff;
        box-sizing: border-box;
    }

    .staff-invitation-item strong,
    .staff-invitation-item span {
        display: block;
    }

    .staff-invitation-item strong {
        margin-bottom: 6px;
        color: #050505;
        font-size: 18px;
        line-height: 1.25;
        font-weight: 800;
    }

    .staff-invitation-item span {
        color: #666;
        font-size: 13px;
        line-height: 1.35;
    }

    .staff-invitation-actions {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 0 0 auto;
    }

    .staff-invitation-actions form {
        margin: 0;
    }

    .staff-invitation-accept,
    .staff-invitation-reject {
        min-width: 140px;
        min-height: 42px;
        font-size: 14px;
    }

    .site-detail-page {
        padding: 84px 56px 70px;
    }

    .site-detail-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 32px;
        margin-bottom: 36px;
    }

    .site-detail-title {
        min-width: 0;
    }

    .site-detail-back {
        display: inline-flex;
        margin-bottom: 18px;
        color: #666;
        font-size: 14px;
        line-height: 1.2;
        font-weight: 700;
    }

    .site-detail-back:hover {
        color: #8d79dc;
    }

    .site-detail-title h1 {
        margin: 0;
        color: #050505;
        font-size: 42px;
        line-height: 1.1;
        font-weight: 800;
        letter-spacing: -1px;
        word-break: break-word;
    }

    .site-detail-actions {
        display: flex;
        align-items: center;
        gap: 16px;
        flex: 0 0 auto;
        padding-top: 34px;
    }

    .site-detail-actions form {
        margin: 0;
    }

    .site-detail-admin-button {
        min-width: 180px;
    }

    .site-detail-delete-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 168px;
        min-height: 47px;
        padding: 0 24px;
        border: 1px solid #e4b5b5;
        background: #fff;
        color: #b3261e;
        font-size: 16px;
        line-height: 1;
        font-weight: 700;
        box-sizing: border-box;
    }

    .site-detail-delete-button:hover {
        background: #b3261e;
        border-color: #b3261e;
        color: #fff;
    }

    .site-detail-alert {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 24px;
        padding: 16px 18px;
        border: 1px solid #e4b5b5;
        background: #fff;
        color: #b3261e;
        box-sizing: border-box;
    }

    .site-detail-alert strong,
    .site-detail-alert span {
        font-size: 14px;
        line-height: 1.45;
    }

    .site-detail-card {
        max-width: 980px;
        padding: 36px;
        border: 1px solid #c8c8c8;
        background: #fff;
        box-sizing: border-box;
    }

    .site-detail-card h2 {
        margin: 0 0 28px;
        color: #050505;
        font-size: 28px;
        line-height: 1.2;
        font-weight: 800;
    }

    .site-detail-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        border-top: 1px solid #e5e5e8;
    }

    .site-detail-field {
        min-width: 0;
        padding: 20px 0;
        border-bottom: 1px solid #e5e5e8;
    }

    .site-detail-field:nth-child(odd) {
        padding-right: 28px;
    }

    .site-detail-field:nth-child(even) {
        padding-left: 28px;
        border-left: 1px solid #e5e5e8;
    }

    .site-detail-field span {
        display: block;
        margin-bottom: 8px;
        color: #777;
        font-size: 13px;
        line-height: 1.2;
        font-weight: 700;
    }

    .site-detail-field strong,
    .site-detail-field a {
        color: #050505;
        font-size: 17px;
        line-height: 1.35;
        font-weight: 700;
        overflow-wrap: anywhere;
    }

    .site-detail-field a {
        color: #8d79dc;
    }

    .site-detail-field a:hover {
        text-decoration: underline;
    }

    .site-staff-card {
        margin-top: 24px;
    }

    .site-staff-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 20px;
    }

    .site-staff-head h2 {
        margin-bottom: 8px;
    }

    .site-staff-head p,
    .site-staff-limit,
    .site-staff-empty {
        margin: 0;
        color: #666;
        font-size: 14px;
        line-height: 1.45;
    }

    .site-staff-form {
        display: grid;
        grid-template-columns: minmax(260px, 1fr) auto;
        gap: 14px;
        align-items: end;
        padding-bottom: 22px;
        border-bottom: 1px solid #e5e5e8;
        margin-bottom: 18px;
    }

    .site-staff-field {
        display: grid;
        gap: 8px;
        min-width: 0;
    }

    .site-staff-field label {
        color: #555;
        font-size: 12px;
        line-height: 1.2;
        font-weight: 800;
        text-transform: uppercase;
    }

    .site-staff-field input {
        width: 100%;
        min-height: 47px;
        box-sizing: border-box;
        border: 1px solid #d1d5db;
        padding: 10px 12px;
        color: #111827;
        background: #fff;
        font-family: inherit;
        font-size: 15px;
        line-height: 1.35;
    }

    .site-staff-field input:focus {
        border-color: #8d79dc;
        box-shadow: 0 0 0 3px rgba(141, 121, 220, 0.14);
        outline: none;
    }

    .site-staff-limit {
        padding: 14px 16px;
        border: 1px solid #ead6a7;
        background: #fff8e8;
        color: #7a4d00;
        margin-bottom: 18px;
    }

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

    .site-staff-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 14px 0;
        border-bottom: 1px solid #e5e5e8;
    }

    .site-staff-row:last-child {
        border-bottom: 0;
    }

    .site-staff-row strong,
    .site-staff-row span {
        display: block;
    }

    .site-staff-row strong {
        color: #050505;
        font-size: 16px;
        line-height: 1.35;
        font-weight: 800;
        overflow-wrap: anywhere;
    }

    .site-staff-row span {
        margin-top: 3px;
        color: #777;
        font-size: 13px;
        line-height: 1.35;
    }

    .site-staff-row form {
        margin: 0;
        flex: 0 0 auto;
    }

    .site-staff-remove {
        min-width: 124px;
        min-height: 40px;
        font-size: 14px;
    }

    .onboarding-page {
        max-width: 1120px;
        padding: 72px 56px 70px;
    }

    .onboarding-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 32px;
        margin-bottom: 32px;
    }

    .onboarding-head h1,
    .onboarding-complete h1 {
        margin: 0 0 14px;
        color: #050505;
        font-size: 42px;
        line-height: 1.1;
        font-weight: 800;
        letter-spacing: 0;
    }

    .onboarding-head p,
    .onboarding-complete p {
        max-width: 680px;
        margin: 0;
        color: #555;
        font-size: 15px;
        line-height: 1.55;
    }

    .onboarding-head-actions {
        display: flex;
        align-items: center;
        gap: 14px;
        margin: 34px 0 0;
        flex: 0 0 auto;
    }

    .onboarding-head-actions form {
        margin: 0;
    }

    .onboarding-form {
        display: grid;
        gap: 24px;
    }

    .onboarding-step,
    .onboarding-complete {
        padding: 30px;
        border: 1px solid #c8c8c8;
        background: #fff;
        box-sizing: border-box;
    }

    .onboarding-step--hidden {
        display: none;
    }

    .onboarding-step-title {
        margin-bottom: 20px;
    }

    .onboarding-step-title span {
        display: block;
        margin-bottom: 7px;
        color: #777;
        font-size: 12px;
        line-height: 1.2;
        font-weight: 800;
        text-transform: uppercase;
    }

    .onboarding-step-title h2 {
        margin: 0;
        color: #050505;
        font-size: 24px;
        line-height: 1.2;
        font-weight: 800;
        letter-spacing: 0;
    }

    .onboarding-options-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .onboarding-option {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        column-gap: 12px;
        row-gap: 5px;
        align-items: flex-start;
        min-height: 58px;
        padding: 15px;
        border: 1px solid #d9dbe4;
        background: #fff;
        box-sizing: border-box;
    }

    .onboarding-option input[type="radio"],
    .onboarding-option input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin: 1px 0 0;
    }

    .onboarding-option strong {
        min-width: 0;
        color: #050505;
        font-size: 15px;
        line-height: 1.35;
    }

    .onboarding-option small,
    .onboarding-option em {
        grid-column: 2;
        color: #666;
        font-size: 13px;
        line-height: 1.35;
        font-style: normal;
    }

    .onboarding-option em {
        color: #9a5a00;
        font-weight: 700;
    }

    .onboarding-option--disabled {
        background: #f7f7f9;
        color: #888;
    }

    .onboarding-option--disabled strong {
        color: #777;
    }

    .onboarding-domain {
        display: grid;
        grid-template-columns: minmax(220px, 280px) minmax(320px, 640px);
        gap: 18px;
        align-items: stretch;
    }

    .onboarding-domain-toggle {
        min-height: 76px;
        align-items: center;
    }

    .onboarding-domain-toggle span {
        display: grid;
        gap: 4px;
    }

    .onboarding-domain-toggle small {
        grid-column: auto;
    }

    .onboarding-domain-fields {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .onboarding-domain-field {
        display: grid;
        gap: 8px;
        min-width: 0;
    }

    .onboarding-domain-field span {
        color: #555;
        font-size: 12px;
        line-height: 1.2;
        font-weight: 800;
        text-transform: uppercase;
    }

    .onboarding-domain-field input[type="text"],
    .onboarding-domain-field input[type="email"] {
        width: 100%;
        min-height: 42px;
        box-sizing: border-box;
        border: 1px solid #d1d5db;
        border-radius: 7px;
        padding: 9px 12px;
        color: #111827;
        background: #fff;
        font-size: 15px;
        line-height: 1.4;
        font-family: inherit;
    }

    .onboarding-domain-field input[type="text"]:focus,
    .onboarding-domain-field input[type="email"]:focus {
        border-color: #8d79dc;
        box-shadow: 0 0 0 3px rgba(141, 121, 220, 0.14);
        outline: none;
    }

    .onboarding-actions {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 14px;
        margin-top: 8px;
    }

    .onboarding-secondary-action {
        border-color: #d6d6df;
        color: #444;
    }

    .onboarding-secondary-action:hover {
        background: #f3f3f6;
        border-color: #c3c4ce;
        color: #111;
    }

    .onboarding-warning-list {
        display: grid;
        gap: 10px;
        margin: 22px 0 24px;
    }

    .onboarding-warning {
        padding: 12px 14px;
        border: 1px solid #ead6a7;
        background: #fff8e8;
        color: #7a4d00;
        font-size: 14px;
        line-height: 1.4;
    }

    .messages {
        max-width: 1180px;
        padding: 0;
        margin: 0 auto 22px;
    }

    .messages li {
        list-style: none;
        background: #fff;
        border-left: 4px solid #8d79dc;
        padding: 13px 16px;
        margin-bottom: 8px;
    }

    .panel,
    .item-card,
    .auth-box {
        background: #fff;
        border: 1px solid #e5e7ef;
        padding: 22px;
    }

    .auth-box {
        border-radius: 8px;
        box-shadow: 0 18px 46px rgba(13, 24, 46, 0.08);
        padding: 30px;
    }

    .auth-heading {
        margin-bottom: 22px;
    }

    .auth-heading h1 {
        margin: 0 0 8px;
        font-size: 30px;
        line-height: 1.15;
    }

    .auth-heading p,
    .auth-switch {
        color: #4b5566;
        font-size: 15px;
        line-height: 1.45;
        margin: 0;
    }

    .form-grid,
    .social-auth-form {
        margin: 0;
    }

    .auth-field {
        margin-bottom: 15px;
    }

    .form-grid label {
        display: block;
        margin-bottom: 6px;
        font-weight: 700;
    }

    .form-grid input,
    .form-grid select,
    .form-grid textarea {
        width: 100%;
        min-height: 46px;
        box-sizing: border-box;
        border: 1px solid #c6cdd9;
        border-radius: 6px;
        color: #111827;
        background: #fff;
        padding: 10px 12px;
    }

    .form-grid input:focus,
    .form-grid select:focus,
    .form-grid textarea:focus {
        border-color: #2366d1;
        box-shadow: 0 0 0 3px rgba(35, 102, 209, 0.16);
        outline: none;
    }

    .auth-submit,
    .google-auth-button {
        align-items: center;
        border-radius: 6px;
        box-sizing: border-box;
        cursor: pointer;
        display: inline-flex;
        font-size: 15px;
        font-weight: 700;
        justify-content: center;
        line-height: 1.2;
        min-height: 48px;
        padding: 12px 16px;
        transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
        width: 100%;
    }

    .auth-submit {
        background: #151d2e;
        border: 1px solid #151d2e;
        color: #fff;
        margin-top: 3px;
    }

    .auth-submit:hover {
        background: #22304a;
        border-color: #22304a;
    }

    .google-auth-button {
        background: #fff;
        border: 1px solid #c6cdd9;
        color: #111827;
        gap: 11px;
    }

    .google-auth-button:hover {
        background: #f7f9fc;
        border-color: #8d98ad;
        box-shadow: 0 8px 24px rgba(13, 24, 46, 0.09);
    }

    .google-auth-mark {
        align-items: center;
        border: 1px solid #d4d9e4;
        border-radius: 50%;
        color: #2366d1;
        display: inline-flex;
        flex: 0 0 24px;
        font-size: 16px;
        height: 24px;
        justify-content: center;
        line-height: 1;
        width: 24px;
    }

    .auth-divider {
        align-items: center;
        color: #667085;
        display: flex;
        font-size: 13px;
        gap: 12px;
        line-height: 1;
        margin: 20px 0;
        text-transform: lowercase;
    }

    .auth-divider::before,
    .auth-divider::after {
        background: #e2e7ef;
        content: "";
        flex: 1;
        height: 1px;
    }

    .auth-switch {
        margin-top: 20px;
        text-align: center;
    }

    .auth-switch a {
        color: #14604a;
        font-weight: 700;
    }

    .auth-switch a:hover {
        text-decoration: underline;
    }

    .auth-help {
        color: #667085;
        font-size: 13px;
        line-height: 1.45;
        margin-top: 6px;
    }

    .auth-help ul,
    .auth-field .errorlist,
    .auth-errors .errorlist {
        margin: 7px 0 0;
        padding-left: 18px;
    }

    .auth-field .errorlist,
    .auth-errors {
        border: 1px solid #f3b3b0;
        border-radius: 6px;
        background: #fff2f1;
        color: #9c1c1c;
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 15px;
        padding: 10px 12px;
    }

    .auth-field .errorlist {
        list-style-position: inside;
        margin-top: 7px;
        padding-left: 12px;
    }

    .auth-page {
        max-width: 470px;
        margin: 64px auto;
        padding: 0 20px;
    }

    @media (max-width: 1180px) {
        .projects-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 820px) {
        #header {
            height: auto;
            min-height: 72px;
            flex-wrap: wrap;
            padding: 14px 22px;
        }

        .header_central ul {
            flex-wrap: wrap;
            gap: 14px;
        }

        .projects-page {
            padding: 44px 22px;
        }

        .site-detail-page {
            padding: 44px 22px;
        }

        .onboarding-page {
            padding: 44px 22px;
        }

        .onboarding-head {
            flex-direction: column;
            gap: 20px;
        }

        .onboarding-head h1,
        .onboarding-complete h1 {
            font-size: 34px;
        }

        .onboarding-head-actions,
        .onboarding-secondary-action {
            width: 100%;
        }

        .onboarding-head-actions {
            align-items: stretch;
            flex-direction: column;
        }

        .onboarding-options-grid,
        .onboarding-domain {
            grid-template-columns: 1fr;
        }

        .onboarding-domain-fields {
            grid-template-columns: 1fr;
        }

        .projects-head {
            align-items: flex-start;
            flex-direction: column;
            margin-bottom: 28px;
        }

        .site-detail-head {
            flex-direction: column;
            gap: 24px;
            margin-bottom: 28px;
        }

        .site-detail-title h1 {
            font-size: 34px;
        }

        .site-detail-actions {
            align-items: stretch;
            flex-direction: column;
            width: 100%;
            padding-top: 0;
        }

        .site-detail-actions form,
        .site-detail-admin-button,
        .site-detail-delete-button {
            width: 100%;
        }

        .staff-invitation-item,
        .staff-invitation-actions,
        .site-staff-row {
            align-items: stretch;
            flex-direction: column;
        }

        .staff-invitation-actions,
        .staff-invitation-actions form,
        .site-staff-row form,
        .staff-invitation-accept,
        .staff-invitation-reject,
        .site-staff-remove {
            width: 100%;
        }

        .site-staff-form {
            grid-template-columns: 1fr;
        }

        .site-detail-card {
            padding: 28px 24px;
        }

        .site-detail-card h2 {
            font-size: 24px;
        }

        .site-detail-grid {
            grid-template-columns: 1fr;
        }

        .site-detail-field:nth-child(odd),
        .site-detail-field:nth-child(even) {
            padding-right: 0;
            padding-left: 0;
            border-left: 0;
        }

        .projects-head-actions {
            align-items: stretch;
            width: 100%;
        }

        .projects-limit-note {
            max-width: none;
            text-align: left;
        }

        .projects-head h1 {
            font-size: 34px;
        }

        .add-shop-button {
            width: 100%;
            min-width: 0;
        }

        .projects-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .project-card {
            min-height: auto;
            padding: 28px 24px;
        }

        .project-card-main h2 {
            font-size: 26px;
        }

        .project-card-footer {
            align-items: flex-start;
            flex-direction: column;
            gap: 14px;
            margin-top: 36px;
        }

        .project-admin-button {
            width: 100%;
        }
    }



    /* css компонента підказки */


    .sc-help-stack {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 14px 0 18px;
    }

    .sc-help-card {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        border: 1px solid rgba(37, 99, 235, 0.18);
        border-radius: 16px;
        background:
            linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.04)),
            #ffffff;
        color: #0f172a;
        text-decoration: none;
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
        transition:
            transform 0.18s ease,
            box-shadow 0.18s ease,
            border-color 0.18s ease,
            background 0.18s ease;
    }

    .sc-help-card--link:hover {
        transform: translateY(-1px);
        border-color: rgba(37, 99, 235, 0.38);
        box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
        background:
            linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(14, 165, 233, 0.07)),
            #ffffff;
        color: #0f172a;
    }

    .sc-help-card__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 34px;
        width: 34px;
        height: 34px;
        border-radius: 999px;
        background: #2563eb;
        color: #ffffff;
        font-size: 18px;
        font-weight: 800;
        line-height: 1;
    }

    .sc-help-card__body {
        display: flex;
        flex-direction: column;
        gap: 3px;
        min-width: 0;
    }

    .sc-help-card__body strong {
        font-size: 15px;
        font-weight: 800;
        color: #0f172a;
    }

    .sc-help-card__body small {
        font-size: 13px;
        line-height: 1.45;
        color: #64748b;
    }

    .sc-help-card__arrow {
        margin-left: auto;
        color: #2563eb;
        font-size: 20px;
        font-weight: 800;
    }

    .sc-help-line {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 12px;
        border: 1px dashed rgba(100, 116, 139, 0.34);
        border-radius: 12px;
        background: #f8fafc;
        color: #475569;
        font-size: 13px;
    }

    .sc-help-line__label {
        font-weight: 700;
        color: #334155;
    }

    .sc-help-line code {
        padding: 3px 7px;
        border-radius: 7px;
        background: #e2e8f0;
        color: #0f172a;
        font-size: 13px;
        font-weight: 700;
    }

    .sc-help-line__empty {
        color: #94a3b8;
        font-style: italic;
    }

    @media (max-width: 640px) {
        .sc-help-card {
            align-items: flex-start;
            padding: 13px;
        }

        .sc-help-card__arrow {
            display: none;
        }

        .sc-help-card__icon {
            width: 30px;
            height: 30px;
            flex-basis: 30px;
            font-size: 16px;
        }
    }

    /* css компонента підказки */



    /* push start */
    .push {
        position: fixed;
        right: -400px;
        bottom: 150px;
        width: 400px;
        max-width: 90vw;
        box-shadow: 0px 0px 4px 0px #02006833;
        transition: 0.2s ease-out;
        opacity: 0;
        background-color: #fff;
        z-index: 1110;
        border-radius: 2px;
        box-sizing: border-box;
        padding: 20px;
    }


    .show_push {
        right: 100px;
        opacity: 1 !important;
    }


    .push_error {
        border-left: 2px solid red;
    }

    .push_positive {
        border-left: 2px solid green;
    } 


    .push_info {
        border-left: 2px solid yellow;
    } 

    .push_neutral {
        border-left: 2px solid green;
    } 



    .push_content {
        display: flex;
        align-items: flex-start;
    }

    .push_content > p {
        margin-left: 15px;
    }

    .push_exit_btn {
        font-size: 14px;
        font-weight: 500;
        line-height: 17px;
        letter-spacing: 0em;
        color: green;
        margin-top: 17px;
        margin-left: 40px;
        cursor: pointer;
        transition: 0.2s ease-out;
    }

    .push_exit_btn:hover {
        opacity: 0.5;
    }
    /* push end */
