        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }

        body {
            background-color: #f5f5f5;
            display: flex;
        }
		      /* Добавляем прокрутку только для меню */
        .menu {
            padding: 15px 0;
            flex: 1;
            overflow-y: auto;
            min-height: 0;
            
            &::-webkit-scrollbar {
                width: 6px;
            }
            
            &::-webkit-scrollbar-track {
                background: rgba(255, 255, 255, 0.05);
                border-radius: 10px;
            }
            
            &::-webkit-scrollbar-thumb {
                background: rgba(255, 255, 255, 0.2);
                border-radius: 10px;
                transition: background 0.3s;
            }
            
            &::-webkit-scrollbar-thumb:hover {
                background: rgba(255, 255, 255, 0.3);
            }
        }

        /* Боковое меню */
        .sidebar {
            width: 200px;
            background: linear-gradient(180deg, #2c3e50 0%, #1a252f 100%);
            color: white;
            height: 100vh;
            position: fixed;
            left: 0;
            top: 0;
            overflow-y: auto;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .logo {
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid #34495e;
        }

        .logo h2 {
            color: white;
            font-size: 18px;
            margin-bottom: 5px;
        }

        /* Плашка тарифа */
        .tariff-badge {
            margin-top: 8px;
            padding: 6px 8px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 500;
            text-align: center;
            transition: all 0.3s;
        }

        .tariff-trial {
            background: rgba(52, 152, 219, 0.2);
            color: #3498db;
            border: 1px solid rgba(52, 152, 219, 0.3);
        }

        .tariff-active {
            background: rgba(46, 204, 113, 0.2);
            color: #27ae60;
            border: 1px solid rgba(46, 204, 113, 0.3);
        }

        .tariff-warning {
            background: rgba(231, 76, 60, 0.2);
            color: #e74c3c;
            border: 1px solid rgba(231, 76, 60, 0.3);
            animation: pulse 2s infinite;
        }

        .tariff-expired {
            background: rgba(231, 76, 60, 0.3);
            color: #c0392b;
            border: 1px solid #e74c3c;
            font-weight: 600;
        }

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

        .tariff-loading {
            color: #95a5a6;
            font-size: 10px;
        }

        .tariff-days {
            font-weight: 600;
            margin-left: 4px;
        }

        .menu {
            padding: 15px 0;
            flex: 1;
            overflow-y: auto;
            min-height: 0;
        }

        .menu-button {
            display: block;
            padding: 8px 20px;
            color: #ecf0f1;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 13px;
            border-left: 3px solid transparent;
            cursor: pointer;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
        }
		        .menu-button1 {
            display: none;
            padding: 8px 20px;
            color: #00ca76;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 13px;
            border-left: 3px solid transparent;
            cursor: pointer;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
        }
		        .menu-button1:hover {
            background: #34495e;
            border-left-color: #3498db;
        }

        .menu-button:hover {
            background: #34495e;
            border-left-color: #3498db;
        }

        .menu-button.active {
            background: #34495e;
            border-left-color: #3498db;
            font-weight: 500;
        }

        .menu i {
            margin-right: 8px;
            width: 18px;
            text-align: center;
        }

        /* Блок новостей внизу меню */
        .news-section {
            padding: 15px;
            border-top: 1px solid #34495e;
            background: rgba(0, 0, 0, 0.2);
            flex-shrink: 0;
            margin-top: auto;
        }

        .news-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .news-header h3 {
            color: #ecf0f1;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .news-header .all-news-btn {
            background: none;
            border: none;
            color: #3498db;
            font-size: 11px;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 4px;
            transition: all 0.3s;
        }

        .news-header .all-news-btn:hover {
            background: rgba(52, 152, 219, 0.2);
        }

        .latest-news {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            padding: 10px;
            margin-bottom: 12px;
            font-size: 12px;
            color: #bdc3c7;
            line-height: 1.5;
            max-height: 80px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .latest-news.expanded {
            max-height: 200px;
            overflow-y: auto;
            background: rgba(255, 255, 255, 0.1);
        }

        .latest-news:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .latest-news .news-content {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .latest-news.expanded .news-content {
            display: block;
            -webkit-line-clamp: unset;
        }

        .support-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            color: white;
            padding: 10px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            width: 100%;
            cursor: pointer;
            margin-top: 8px;
        }

        .support-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
        }

        .support-btn i {
            font-size: 14px;
        }

        /* Модальное окно новостей */
        .news-modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 25px;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            z-index: 1001;
            max-width: 500px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
        }

        .news-modal h2 {
            color: #2c3e50;
            font-size: 20px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding-right: 30px;
        }

        .news-modal .close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: #7f8c8d;
            transition: color 0.3s;
        }

        .news-modal .close:hover {
            color: #2c3e50;
        }

        .news-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .news-item {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 10px;
            border-left: 3px solid #3498db;
        }

        .news-item .news-date {
            font-size: 11px;
            color: #7f8c8d;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .news-item .news-date i {
            color: #3498db;
            font-size: 10px;
        }

        .news-item .news-text {
            color: #2c3e50;
            font-size: 13px;
            line-height: 1.5;
            white-space: pre-wrap;
        }

        /* Оверлей блокировки */
        .blocked-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }

        .blocked-overlay.active {
            display: flex;
        }

        .blocked-modal {
            background: white;
            padding: 40px;
            border-radius: 12px;
            text-align: center;
            max-width: 400px;
            width: 90%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .blocked-modal i {
            font-size: 60px;
            color: #e74c3c;
            margin-bottom: 20px;
        }

        .blocked-modal h2 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 24px;
        }

        .blocked-modal p {
            color: #7f8c8d;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .blocked-modal button {
            background: #3498db;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s;
        }

        .blocked-modal button:hover {
            background: #2980b9;
        }

        /* Основной контент */
        .content {
            flex: 1;
            margin-left: 200px;
            padding: 20px;
            background-color: #f5f5f5;
            min-height: 100vh;
            transition: margin-left 0.3s ease;
        }

        h1 {
            color: #2c3e50;
            font-size: 24px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        h1 i {
            color: #223a4b;
        }

        /* Панель поиска и сортировки */
        .services-toolbar {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .search-box {
            flex: 1;
            min-width: 250px;
            position: relative;
        }

        .search-box i {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #95a5a6;
            font-size: 14px;
        }

        .search-box input {
            width: 100%;
            padding: 12px 12px 12px 40px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            background: white;
            transition: all 0.3s;
        }

        .search-box input:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
        }

        .sort-box {
            display: flex;
            align-items: center;
            gap: 10px;
            background: white;
            padding: 0 15px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
        }

        .sort-box i {
            color: #3498db;
            font-size: 14px;
        }

        .sort-box select {
            padding: 12px 0;
            border: none;
            font-size: 14px;
            color: #2c3e50;
            background: transparent;
            cursor: pointer;
            min-width: 150px;
        }

        .sort-box select:focus {
            outline: none;
        }

        /* Контейнер для карточек услуг (мобильная версия) */
        .services-cards {
            display: none;
            flex-direction: column;
            gap: 15px;
        }

        .service-card {
            background: white;
            border-radius: 12px;
            padding: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border-left: 4px solid #3498db;
        }

        .service-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .service-card-title {
            font-size: 16px;
            font-weight: 600;
            color: #2c3e50;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .service-card-color {
            width: 12px;
            height: 12px;
            border-radius: 3px;
        }

        .service-card-actions {
            display: flex;
            gap: 8px;
        }

        .service-card-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid #e9ecef;
        }

        .service-card-row:last-child {
            border-bottom: none;
        }

        .service-card-label {
            color: #7f8c8d;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .service-card-value {
            font-weight: 600;
            color: #2c3e50;
            font-size: 14px;
        }

        .service-card-languages {
            display: flex;
            gap: 4px;
            flex-wrap: wrap;
        }

        /* Таблица услуг (десктопная версия) */
        #services-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }

        #services-table thead {
            background: #2c3e50;
            color: white;
        }

        #services-table th {
            padding: 12px 15px;
            text-align: left;
            font-weight: 600;
            font-size: 13px;
        }

        #services-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #e9ecef;
            color: #2c3e50;
            font-size: 13px;
            vertical-align: middle;
        }

        #services-table tbody tr:hover {
            background: #f8f9fa;
        }

        /* Цветовой индикатор */
        .color-indicator {
            width: 16px;
            height: 16px;
            border-radius: 3px;
            display: inline-block;
            vertical-align: middle;
        }

        /* Бейдж длительности */
        .duration-badge {
            background: #e8f0fe;
            color: #2c3e50;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 12px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .duration-badge i {
            color: #3498db;
            font-size: 11px;
        }

        /* Бейдж скидки */
        .discount-badge {
            background: #fef3e9;
            color: #e67e22;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 12px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .discount-badge i {
            color: #e67e22;
            font-size: 11px;
        }

        /* Бейдж себестоимости */
        .cost-badge {
            background: #e8f4fd;
            color: #2c3e50;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 12px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .cost-badge i {
            color: #3498db;
            font-size: 11px;
        }

        /* Индикатор языков */
        .language-indicator {
            display: flex;
            gap: 2px;
            flex-wrap: wrap;
        }

        .lang-dot {
            width: 20px;
            height: 20px;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9px;
            font-weight: bold;
            color: white;
        }

        .lang-cs { background: #d62b2b; }
        .lang-pl { background: #dc143c; }
        .lang-sk { background: #0b4b8a; }
        .lang-uk { background: #0057b8; }
        .lang-ru { background: #b22222; }
        .lang-be { background: #c71585; }
        .lang-de { background: #000000; }
        .lang-en { background: #2e8b57; }

        /* Кнопки действий */
        .edit-btn, .delete-btn, .translation-btn {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 14px;
            margin: 0 3px;
            transition: color 0.3s;
            padding: 5px;
            border-radius: 4px;
        }

        .edit-btn {
            color: #3498db;
        }

        .edit-btn:hover {
            background: #e8f0fe;
        }

        .delete-btn {
            color: #e74c3c;
        }

        .delete-btn:hover {
            background: #fee;
        }

        .translation-btn {
            color: #27ae60;
        }

        .translation-btn:hover {
            background: #e3f7ec;
        }

        /* Кнопка добавления */
        .add-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            padding: 14px 24px;
            border-radius: 50px;
            background: #3498db;
            color: white;
            border: none;
            font-size: 16px;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 100;
        }

        .add-button i {
            font-size: 18px;
        }

        .add-button:hover {
            background: #2980b9;
            transform: scale(1.05);
            box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
        }

        /* Модальное окно */
        .modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            z-index: 1000;
            max-width: 500px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
        }

        .modal h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 20px;
        }

        .modal h3 {
            color: #2c3e50;
            margin: 15px 0 10px;
            font-size: 16px;
            border-bottom: 1px solid #eee;
            padding-bottom: 5px;
        }

        .modal label {
            display: block;
            color: #2c3e50;
            font-weight: 500;
            margin-bottom: 5px;
            font-size: 13px;
        }

        .modal input, .modal select {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            transition: border-color 0.3s;
        }

        .modal input:focus, .modal select:focus {
            outline: none;
            border-color: #3498db;
        }

        .modal button {
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
            margin-right: 10px;
        }

        .modal button.primary {
            background: #3498db;
            color: white;
        }

        .modal button.primary:hover {
            background: #2980b9;
        }

        .modal button.success {
            background: #27ae60;
            color: white;
        }

        .modal button.success:hover {
            background: #229954;
        }

        .modal button.cancel {
            background: #e0e0e0;
            color: #2c3e50;
        }

        .modal button.cancel:hover {
            background: #d0d0d0;
        }

        .modal small {
            color: #666;
            display: block;
            margin-top: -10px;
            margin-bottom: 15px;
            font-size: 12px;
        }

        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 999;
        }

        /* Палитра цветов */
        .color-palette {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 5px;
            margin-bottom: 10px;
        }

        .color-option {
            width: 100%;
            aspect-ratio: 1;
            border-radius: 4px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: transform 0.2s;
        }

        .color-option:hover {
            transform: scale(1.05);
        }

        .color-option.selected {
            border-color: #2c3e50;
            transform: scale(1.02);
        }

        .custom-color-container {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 5px;
            margin-bottom: 15px;
        }

        .custom-color-container input[type="color"] {
            width: 40px;
            height: 30px;
            padding: 0;
            margin-bottom: 0;
        }

        .custom-color-container span {
            font-size: 13px;
            color: #2c3e50;
        }

        /* Чекбоксы языков */
        .languages-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin: 15px 0;
            padding: 10px;
            background: #f8f9fa;
            border-radius: 8px;
        }

        .language-checkbox {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 5px;
        }

        .language-checkbox input[type="checkbox"] {
            width: auto;
            margin-bottom: 0;
        }

        .language-checkbox label {
            margin-bottom: 0;
            cursor: pointer;
            font-size: 13px;
        }

        /* Поле перевода */
        .translation-field {
            margin-bottom: 15px;
        }

        .translation-field label {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .translation-field.disabled {
            opacity: 0.5;
            pointer-events: none;
        }

        /* Кнопка добавления языков */
        .add-languages-btn {
            background: #3498db;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 13px;
            margin-bottom: 15px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .add-languages-btn:hover {
            background: #2980b9;
        }

        /* Индикатор загрузки */
        .loading {
            text-align: center;
            padding: 40px;
            color: #7f8c8d;
        }

        .loading i {
            font-size: 40px;
            margin-bottom: 10px;
            color: #bdc3c7;
        }

        /* Сообщение об отсутствии результатов */
        .no-results {
            text-align: center;
            padding: 40px;
            color: #7f8c8d;
            background: white;
            border-radius: 8px;
            margin-top: 20px;
        }

        .no-results i {
            font-size: 40px;
            margin-bottom: 10px;
            color: #bdc3c7;
        }

        /* ===== МОБІЛЬНІ СТИЛІ ===== */
        @media (max-width: 768px) {
            body {
                overflow-x: hidden;
                position: relative;
            }

            body.menu-open::after {
                content: '';
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0, 0, 0, 0.5);
                z-index: 998;
                animation: fadeIn 0.3s ease;
            }

            .sidebar {
                transform: translateX(-100%);
                width: 280px;
                z-index: 1000;
                overflow-y: hidden;
                display: flex;
                flex-direction: column;
            }

            .sidebar.open {
                transform: translateX(0);
            }

            body.menu-open {
                overflow: hidden;
                position: fixed;
                width: 100%;
                height: 100%;
            }

            body.menu-open .content {
                pointer-events: none;
                opacity: 0.7;
                transition: opacity 0.3s ease;
            }

            .swipe-area {
                position: fixed;
                top: 0;
                left: 0;
                width: 30px;
                height: 100%;
                z-index: 997;
                background: transparent;
            }
            /* Кнопка бургер для відкриття меню */
            .menu-toggle {
                display: block !important;
                position: fixed;
                top: 10px;
                left: 15px;
                z-index: 1001;
                background: #223a4b;
                color: white;
                border: none;
                border-radius: 5%;
                width: 44px;
                height: 44px;
                font-size: 22px;
                cursor: pointer;
                box-shadow: 0 4px 10px rgba(0,0,0,0.2);
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
            }

            .menu-toggle:hover {
                background: #2ecc71;
                transform: scale(1.05);
            }
            .menu-button1 {
                display: block;
				font-weight: 600;
            }
            .sidebar.open ~ .menu-toggle,
            .sidebar.open + .menu-toggle {
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                z-index: 1;
            }

            .content {
                margin-left: 0;
                padding: 15px;
                padding-top: 30px;
                width: 100%;
            }

            h1 {
                font-size: 20px;
                margin-top: 0;
                margin-bottom: 15px;
                justify-content: center;
            }

            /* Скрываем таблицу на мобильных */
            #services-table {
                display: none;
            }

            /* Показываем карточки */
            .services-cards {
                display: flex;
            }

            .services-toolbar {
                flex-direction: column;
                margin-top: 5px;
                margin-bottom: 15px;
            }

            .search-box {
                min-width: 100%;
            }

            .sort-box {
                width: 100%;
            }

            .sort-box select {
                width: 100%;
                min-width: 100%;
            }

            .add-button {
                bottom: 20px;
                right: 20px;
                padding: 12px 20px;
                font-size: 14px;
            }

            /* Адаптация модальных окон */
            .modal {
                width: 95%;
                padding: 20px;
                max-height: 90vh;
            }

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

            .color-palette {
                grid-template-columns: repeat(3, 1fr);
            }

            .modal button {
                width: 100%;
                margin-right: 0;
                margin-bottom: 10px;
            }

            .modal button:last-child {
                margin-bottom: 0;
            }

            .custom-color-container {
                flex-wrap: wrap;
            }

            .blocked-modal {
                padding: 25px 20px;
            }

            .blocked-modal i {
                font-size: 48px;
            }

            .blocked-modal h2 {
                font-size: 20px;
            }

            .blocked-modal p {
                font-size: 14px;
            }

            .blocked-modal button {
                width: 100%;
            }

            @media (max-width: 380px) {
                .service-card-header {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 10px;
                }

                .service-card-actions {
                    width: 100%;
                    justify-content: flex-end;
                }

                .menu-toggle {
                    width: 40px;
                    height: 40px;
                    font-size: 20px;
                }
            }
        }

        @media (min-width: 769px) {
            .menu-toggle {
                display: none !important;
            }
            .swipe-area {
                display: none;
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }