
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

        body {
            font-family: 'Inter', sans-serif;
            background-color: #0F172A;
            color: #fff;
            min-height: 100vh;
        }

        i.fas.fa-microphone,i.fas.fa-microphone-slash {
            font-size: 28px;
        }

        /* Скрываем выбор языка, если вам не нужно – удалите эту строчку
        select.voice-lang {
            display: none !important;
        } */

        select.voice-lang.bg-transparent.text-gray-500.text-sm.border-none.focus\:outline-none.cursor-pointer {
            display: none;
        }
        /* Стили для кнопки микрофона */
        .voice-trigger {
            padding: 8px;
            border-radius: 50%;
            transition: all 0.2s ease;
        }
        .voice-trigger:hover {
            background-color: rgba(255, 211, 27, 0.1);
        }
        .voice-trigger.listening {
            background-color: rgba(255, 211, 27, 0.2);
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        .glass-effect {
            background: rgba(30, 41, 59, 0.9);
            backdrop-filter: blur(8px);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        @media (max-width: 768px) {
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
        }

        .category-card {
            transition: all 0.3s ease;
            background: linear-gradient(145deg, #1E293B 0%, #0F172A 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .category-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 211, 27, 0.3);
            box-shadow: 0 10px 25px rgba(255, 211, 27, 0.1);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
        }

        @media (max-width: 1536px) {
            .products-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 1280px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 0.5rem !important;
            }

            .product-card {
                font-size: 0.875rem;
            }

            .product-card .title {
                font-size: 0.875rem;
                line-height: 1.25rem;
            }

            .product-card .price {
                font-size: 1.25rem;
            }

            .mobile-search {
                display: block !important;
            }
        }

        .product-card {
            transition: all 0.3s ease;
            background: linear-gradient(145deg, #1E293B 0%, #0F172A 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .product-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 211, 27, 0.3);
            box-shadow: 0 10px 25px rgba(255, 211, 27, 0.1);
        }

        .btn-primary {
            background: linear-gradient(135deg, #FFD31B 0%, #FFE55C 100%);
            color: #0F172A;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255, 211, 27, 0.2);
        }

        .quantity-btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 211, 27, 0.1);
            color: #FFD31B;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .quantity-btn:hover {
            background: rgba(255, 211, 27, 0.2);
        }

        .quantity-input {
            width: 60px;
            text-align: center;
            background: transparent;
            border: 1px solid rgba(255, 211, 27, 0.2);
            border-radius: 8px;
            color: #fff;
            font-size: 0.875rem;
            padding: 0.25rem;
        }

        .orders-container {
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 1.5rem;
        }

        @media (max-width: 768px) {
            .orders-container {
                grid-template-columns: 1fr;
            }
        }

        .order-list-item {
            transition: all 0.2s ease;
        }

        .order-list-item:hover {
            background: rgba(255, 211, 27, 0.1);
        }

        .order-list-item.active {
            background: rgba(255, 211, 27, 0.15);
            border-color: rgba(255, 211, 27, 0.3);
        }

        .product-row {
            transition: background-color 0.2s;
        }

        .product-row:hover {
            background-color: rgba(30, 41, 59, 0.5);
        }

        .custom-scrollbar::-webkit-scrollbar {
            width: 6px;
        }

        .custom-scrollbar::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
        }

        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: rgba(255, 211, 27, 0.5);
            border-radius: 3px;
        }

        input.w-full.pl-10.pr-20.py-2.rounded-full.bg-dark-lighter.text-gray-300.border.border-gray-700.focus\:outline-none.focus\:border-primary.transition-all {
            background: #0f172a;
        }

        .orders-container {
            display: flex !important;
            grid-template-columns: 250px 1fr;
            gap: 1.5rem;
            flex-direction: column-reverse;
        }

        button:disabled {
            opacity: 1 !important;
            cursor: default;
        }

/* Индикатор, что вошёл разработчик */
    .developer_indicator {
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 10000;
        width: 20px;
        height: 20px;
        background: #0f0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        border-radius: 50%;
        /* анимация мигания: opacity 1 → 0 → 1 */
        animation: blinkAnim 2s infinite;
        /* можно менять ease-in-out или steps(2) для "резкого" мигания */
    }

    @keyframes blinkAnim {
        0%   { opacity: 1; }
        50%  { opacity: 0; }
        100% { opacity: 1; }
        50%  { opacity: 0; }
    }

    /* Для пользователей, предпочитающих уменьшение движения — отключаем анимацию */
    @media (prefers-reduced-motion: reduce) {
        .developer_indicator {
            animation: none;
        }
    }

/* Индикатор, что вошёл разработчик END */

