    /* Общие стили */
    * {
        --padding: 0%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-size: 14px;
        /* background-color: #F9F9F9;
        color: #333333; */
        background-color: var(--color-background);
        color: #656565;
        line-height: 1.6;
    }

    /* input {
        display: inline-block;
        padding: 6px 10px;
        background-color: rgba(0, 0, 0, 0);
        color: #727272;
        text-decoration: none;
        border: #cacaca solid 2px;
        border-radius: 6px;
        min-height: 40px;
    } */

    /* Основной контент */
    .container {
        /* max-width: 1200px; */
        /* margin: 0 auto; */
        /* margin: 0 15%;
        padding: 2rem 0; */
        background-color: var(--color-second-background);
        margin: 0 var(--padding);
        padding: 30px 15%;

    }

    .disabled {
        text-decoration: none;
        color: #636363;
        cursor: not-allowed;
    }

    .category-list {
        display: flex;
        justify-content: center;
        margin: 25px auto;
        flex-wrap: wrap;
        column-gap: 110px;
        /*90px*/
        row-gap: 45px;
        max-width: 1000px;
    }

    .category-card {
        display: flex;
        text-decoration: none;
        color: #363F56;
        gap: 10px;
    }

    .category-card img {
        height: 80px;
        /*5.5rem;*/
        /*65px*/

    }

    .category-card .category-name {
        /* margin: 10px 0px; */
        font-size: 20px;
        font-weight: 500;
    }

    .category-card .category-count {
        /* margin: 10px 0px; */
        font-size: 14px;
        font-weight: 400;
        color: #AFBBC5;
    }

    .cta-button {
        transition: all 0.3s ease;
        display: inline-block;
        padding: 6px 10px;
        background-color: var(--color-button);
        color: #ffffff;
        text-decoration: none;
        border: var(--color-button) solid 2px;
        border-radius: 6px;
        /* font-weight: 600; */
        cursor: pointer;
    }

    .cta-button:hover {
        transition: all 0.3s ease;
        background-color: rgba(0, 0, 0, 0);
        color: var(--color-button);
    }

    .line-button {
        transition: all 0.3s ease;
        display: inline-block;
        padding: 6px 10px;
        background-color: rgba(0, 0, 0, 0);
        color: #ffffff;
        text-decoration: none;
        border: var(--color-button) solid 2px;
        border-radius: 6px;
        /* font-weight: 600; */
        cursor: pointer;
    }

    .line-button:hover {
        transition: all 0.3s ease;
        background-color: var(--color-button);
        color: #ffffff;
    }

    .white-text {
        color: var(--color-button);
    }

    .white-text:hover {
        color: #ffffff;
    }

    .info-block {
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 1rem 1.25rem;
        margin-bottom: 1.5rem;
    }

    .modal {
        display: none;
        position: fixed;
        z-index: 999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        justify-content: center;
        align-items: center;
    }

    .modal-content {
        text-align: center;
        background-color: #ffffff;
        padding: 20px;
        border-radius: 12px;
        max-width: 420px;
        width: 20%;
    }

    .modal-content .cta-button {
        margin-top: 10px;
        padding: 8px 16px;
        font-size: 1em;
        width: 100%;
        min-height: 40px;
    }

    .modal-content #paymentSection {
        margin-top: 10px;
    }

    .modal-content .pay-comment {
        padding: 10px;
        background-color: #6e81b260;
        color: #202020;
        border-radius: 6px;
    }

    /* .modal-content input {
        display: inline-block;
        padding: 6px 10px;
        background-color: rgba(0, 0, 0, 0);
        color: #727272;
        text-decoration: none;
        border: #cacaca solid 2px;
        border-radius: 6px;
        width: 100%;
        min-height: 40px;
    } */

    #inputAmount {
        text-align: left;
    }

    .input-field {
        display: inline-block;
        padding: 6px 10px;
        background-color: rgba(0, 0, 0, 0);
        color: #727272;
        text-decoration: none;
        border: #cacaca solid 1px;
        border-radius: 6px;
        width: 100%;
        min-height: 40px;
        max-width: 200px;
        /* font-weight: 600; */
    }

    .close-button {
        float: right;
        font-size: 22px;
        cursor: pointer;
    }

    .hidden {
        display: none;
    }

    .qr-img {
        height: 230px;
        fill: var(--color-button);
        /* Главный цвет иконки */
    }

    #loginForm {
        text-align: center;
    }

    #registerForm {
        text-align: center;
    }

    #loginForm .input-field,
    #registerForm .input-field {
        max-width: 250px;
        margin-bottom: 15px;
    }

    /* ------------------Ярлык---------- */
    #support-widget {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 99;
    }


    .support-toggle {
        background-color: var(--color-button);
        color: white;
        padding: 0.75rem 1.25rem;
        border-radius: 30px;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: all 0.2s ease;
    }

    /* При наведении */
    .support-toggle:hover {
        background-color: var(--color-button-hover);
    }

    /* Контейнер с контентом */
    .support-content {
        position: absolute;
        bottom: 60px;
        right: 5%;
        background: white;
        border: 1px solid #ccc;
        border-radius: 12px;
        padding: 1rem;
        width: 240px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        transition: opacity 0.2s ease, transform 0.2s ease;
        opacity: 1;
        transform: translateY(0);
        /* pointer-events: auto; */
        /* will-change: opacity, transform; */
        z-index: 100;
    }

    /* Скрытие с анимацией */
    .support-content.hidden-sup {
        opacity: 0;
        transform: translateY(10px);
        pointer-events: none;
    }

    /* QR */
    .qr-image {
        width: 100%;
        height: auto;
        margin-top: 0.5rem;
        border-radius: 6px;
        border: 1px solid #eee;
    }

    /* --- Для блока каждой покупки --- */
    .purchase-card {
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 1rem 1.25rem;
        margin-bottom: 1rem;
    }

    /* Контейнер для всех карточек */
    .purchases-list {
        display: flex;
        flex-direction: column;
        /* gap: 1rem; */
    }

    /* Если пусто — центрированный текст */
    /* .no-purchases {
        text-align: center;
        color: #666666;
        padding: 2rem 0;
    } */

    /* ------------------Ярлык---------- */



    /* Адаптивность */
    @media (max-width: 768px) {
        .container {
            margin: 0;
            padding: 0 1rem;
        }

        .main-header {
            flex-direction: column;
            padding: 0;
        }

        .site-header {
            flex-direction: column;
            gap: 1rem;
        }

        .site-nav {
            flex-direction: column;
            align-items: center;
            margin-bottom: 1rem;
            margin-top: 1rem;
        }

        .user-nav {
            flex-direction: column;
            align-items: center;
            margin-bottom: 1rem;
        }

        .hero {
            padding: 1rem 0 3rem 0;
        }

        .hero h1,
        .hero p,
        .hero a {
            margin: 0 2rem;
        }

        .hero h1 {
            font-size: 2rem;
        }

        .hero p {
            font-size: 1rem;
        }

        .filter form {
            display: flex;
            flex-direction: column;
        }

        .footer-contacts img {
            display: none;
        }

        .footer {
            column-gap: 10px;
        }

        .account-details {
            flex-direction: column;
        }
    }