.button-container {
            display: flex;
            justify-content: flex-end; /* Выравнивание по правому краю */
           
            width: 100%;
            box-sizing: border-box;
        }

        /* --- БАЗОВЫЕ СТИЛИ КНОПКИ --- */
        .addbtn {
            appearance: none;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 2px;
            font-size: 14px;
            font-weight: 300;
            padding: 4px 4px;
            border-radius: 100px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            line-height: 1;
        }

        /* --- СТИЛЬ: Dark Elegant (Темный Премиум) --- */
        .addbtn-dark {
            background-color: #0f172a;
            color: #e2e8f0;
            border: 1px solid #1e293b;
            /* Тонкая тень */
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
        }

        .addbtn-dark:hover {
            background-color: #1e293b;
            border-color: #38bdf8; /* Голубая подсветка границ */
            color: #fff;
            /* Эффект неонового свечения при наведении */
            box-shadow: 0 0 20px rgba(56, 189, 248, 0.4); 
            transform: translateY(-2px);
        }

        /* Анимация цвета иконки */
        .addbtn-dark svg {
            color: #38bdf8;
            transition: transform 0.3s ease;
        }
        
        .addbtn-dark:hover svg {
            transform: rotate(90deg); /* Поворот плюса при наведении */
        }

        .addbtn-dark:active {
            transform: scale(0.96);
            box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
        }

        /* Стили иконки */
        .icon {
            width: 30px;
            height: 30px;
            stroke-width: 1.5;
        }


/*выбор пакетов*/
.esim-wrapper {
            
            justify-content: center;
            align-items: center;
           
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            
        }

        .esim-widget {
            background: white;
            padding: 25px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            width: 100%;
            max-width: 660px; /* Чуть шире, чтобы все красиво влезло */
        }

        .widget-header {
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .widget-header h3 {
            margin: 0;
            color: #333;
            font-size: 18px;
        }

        /* --- Стили для списка опций --- */
        .package-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 20px;
            max-height: 400px;
            overflow-y: auto;
            padding-right: 5px;
        }

        .package-list::-webkit-scrollbar {
            width: 6px;
        }
        .package-list::-webkit-scrollbar-thumb {
            background-color: #ddd;
            border-radius: 3px;
        }

        /* Карточка одной опции */
        .package-option {
            display: flex;
            align-items: center; /* Вертикальное выравнивание */
            padding: 12px 15px;
            border: 2px solid #eee;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .package-option:hover {
            border-color: #bbb;
            background-color: #fafafa;
        }

        .package-option.selected {
            border-color: #000;
            background-color: #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .radio-circle {
            width: 18px;
            height: 18px;
            border: 2px solid #ccc;
            border-radius: 50%;
            margin-right: 12px;
            flex-shrink: 0;
            position: relative;
        }

        .package-option.selected .radio-circle {
            border-color: #000;
        }
        
        .package-option.selected .radio-circle::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 10px;
            height: 10px;
            background-color: #000;
            border-radius: 50%;
        }

        /* --- КОЛОНКИ ВНУТРИ СТРОКИ --- */
        
        /* 1. Данные (Слева) */
        .col-data {
            font-weight: 700;
            font-size: 15px;
            color: #333;
            min-width: 60px; /* Фиксируем ширину, чтобы столбец был ровным */
        }

        /* 2. Дни (По центру) */
        .col-days {
            flex-grow: 1; /* Занимает всё свободное место в центре */
            text-align: center; /* Центрирует текст */
            font-size: 14px;
            color: #777;
            font-weight: 500;
            border-left: 1px solid #eee; /* Легкие разделители для красоты (опционально) */
            border-right: 1px solid #eee;
            margin: 0 10px; /* Отступы от линий */
        }

        /* 3. Цена (Справа) */
        .col-price {
            font-weight: 700;
            font-size: 15px;
            color: #333;
            text-align: right;
            min-width: 80px; /* Фиксируем ширину цены */
        }

        /* Итоговый блок */
        .price-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 10px;
            margin-top: 20px;
        }

        .price-value {
            font-size: 20px;
            font-weight: 800;
            color: #222;
        }
        
        .price-usd {
            font-size: 11px;
            color: #999;
            text-align: right;
        }

        .buy-btn {
            width: 100%;
            margin-top: 15px;
            padding: 14px;
            border: none;
            border-radius: 10px;
            background: #222;
            color: white;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.1s;
        }
        .buy-btn:hover { background: #000; }
        .buy-btn:active { transform: scale(0.98); }

/*конец выбора пакетов*/
