html {
    scroll-behavior: smooth;
}
 .copy-btn {
    text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff !important;
}
 /* СБРОС, ЖЕСТКО */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 24px;
        }

         /* КОНТЕЙНЕР */
        .crypto-payment {
            max-width: 800px;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        /* КАРТОЧКА КОШЕЛЬКА */
        .wallet-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 32px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.3s ease;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

         .wallet-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-4px);
        }

        /* ЗАГОЛОВОК СЕТИ */
        .wallet-header {
            position: relative;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
            width: 100%;
        }

       .network-icon {
    position: absolute;
    left: 16px;           /* Отступ от левого края */
    top: 50%;             /* Опускаем на середину карточки */
    transform: translateY(-50%);  /* Центрируем по вертикали */
    font-size: 2.5rem;    /* Можно сделать побольше */
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
    z-index: 2;           /* Чтобы была поверх всего */
}

        .network-name {
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: -0.5px;
        }

     /* Общий контейнер: QR слева, статус справа */
.qr-container {
    display: flex;
    flex-direction: row;       /* ряд */
    align-items: center;       /* выравнивание по вертикали */
    gap: 20px;                 /* расстояние между QR и блоком статуса */
    padding: 20px;
    background: transparent;       /* можно поменять */
    border-radius: 10px;
}

/* QR изображение */
.qr-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    flex-direction: row;
}

/* Статус (loader + таймер) */
.payment-status {
    display: flex;
    flex-direction: row;    /* loader сверху, таймер снизу */
    align-items: center;
    gap: 10px;
    font-family: monospace;
}

/* loader */
.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top: 5px solid #d3d8dc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* таймер */
.timer {
    font-size: 15px;
    color: white !important;
}

.imer {
    font-size: 20px;
    color: red;
}

/* анимация вращения */
@keyframes spin {
    100% { transform: rotate(360deg); }
}

   





        .qr-image {
            width: 100%;
            max-width: 240px;
            height: auto;
            border-radius: 16px;
            padding: 8px;
            background: white;
            box-shadow: 0 8px 24px rgba(207, 7, 7, 0.2);
        }

         .qr-image img {
            width: 100%;
            height: auto;
            display: block;
        
        }

        /* АДРЕС КОШЕЛЬКА */
        .address-container {
            width: 100%;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 16px;
            padding: 16px 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            margin-bottom: 16px;
        }

        .address-label {
            color: #dee1e6;
            font-size: 0.8rem;
            
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .address-value {
            color: white;
            font-size: 1rem;
            font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
            word-break: break-all;
            line-height: 1.5;
            margin-bottom: 12px;
            background: rgba(0, 0, 0, 0.2);
            padding: 12px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.03);
        }

    
        /* ===== СТИЛИ ДЛЯ КНОПОК ===== */
 .copy-btn {
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            padding: 10px 20px;
            border-radius: 40px;
            cursor: pointer;
            width: 100%;
            transition: all 0.2s;
        }


/* 🔥 HOVER — при наведении 
*/
.copy-btn:hover {
    background: #3b82f6; /* Синий цвет при наведении */
    border-color: #2563eb;
    transform: scale(1.02);
    box-shadow: 0 0 15px #c6c7c1;
}

/* 🟢 ACTIVE — активная кнопка (на которую кликнули) */
.copy-btn.active {
    background: #b98f1051; /* для активной */
    border-color: #05962c;
    color: white;
    opacity: 0.9;
}

/* Отключаем hover эффект для активной кнопки */
.copy-btn.active:hover {
    background: #b98f1051; /* Оставляем */
    transform: none;
    box-shadow: none;
}


        /* ТЕЛЕФОНЫ */
        @media (max-width: 600px) {
            body {
                padding: 16px;
            }
            .wallet-card {
                padding: 24px;
            }

              .qr-image {
                max-width: 200px;
            }
            .network-name {
                font-size: 1.3rem;
            }
            .address-value {
                font-size: 0.9rem;
                padding: 10px;
            }
        }

         /* УВЕДОМЛЕНИЕ */
        .toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: #1e293b;
            color: white;
            padding: 12px 24px;
            border-radius: 100px;
            font-size: 0.95rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .toast.show {
            opacity: 1;
        }

         /* НОВЫЙ БЛОК */
        .office-panel {
            background: rgba(10, 15, 30, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 48px;
            padding: 40px 32px;
            margin-top: 20px;
            box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
            position: relative;
            overflow: hidden;
        }

        .office-panel::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -20%;
            width: 140%;
            height: 140%;
            background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.15), transparent 60%);
            z-index: 0;
            pointer-events: none;
        }

         .office-title {
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 32px;
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 12px;
        }

         .office-title span {
            background: linear-gradient(135deg, #60a5fa, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .geo-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 32px;
            position: relative;
            z-index: 1;
        }

         .select-block {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .select-label {
            color: #94a3b8;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-left: 8px;
        }

         .select {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 40px;
            padding: 16px 24px;
            color: white;
            font-size: 1.1rem;
            font-weight: 500;
            appearance: none;
            -webkit-appearance: none;
            cursor: pointer;
            transition: all 0.2s ease;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 20px center;
            background-size: 20px;
         
        }

        .anal{
            text-shadow: 0 0 8px cyan, 0 0 15px blue;
    color: white;
    font-weight: 500;
        }

         .select:hover {
            border-color: #3b82f6;
            background-color: rgba(59, 130, 246, 0.1);
        }

        .select option {
            background: #141b2b;
            color: white;
        }

        /* КНОПКА ОПЛАЧЕНО */
        .paid-button-container {
            display: flex;
            justify-content: center;
            margin-top: 24px;
            position: relative;
            z-index: 1;
        }

         .btn-paid {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            border: none;
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            padding: 24px 80px;
            border-radius: 80px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 20px 40px -10px #2563eb, 0 0 0 2px rgba(255, 255, 255, 0.1) inset;
            text-transform: uppercase;
            width: 100%;
            max-width: 400px;
            position: relative;
            overflow: hidden;
        }

         .btn-paid:hover {
            transform: scale(1.05);
            box-shadow: 0 30px 60px -10px #3b82f6, 0 0 0 3px rgba(255, 255, 255, 0.3) inset;
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
        }

        .btn-paid:active {
            transform: scale(0.98);
        }

        .btn-paid::after {
            content: '🚀';
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .btn-paid:hover::after {
            right: 20px;
            opacity: 1;
        }

        @media (max-width: 600px) {
            body { padding: 16px; }
            .wallet-card { padding: 24px; }
            .qr-image { max-width: 180px; }
            .network-name { font-size: 1.3rem; }
            .geo-grid { grid-template-columns: 1fr; }
            .btn-paid { font-size: 1.4rem; padding: 20px 40px; }
            .btn-paid::after { font-size: 1.6rem; right: 20px; }
            .office-panel { padding: 32px 20px; }
            .office-title { font-size: 1.5rem; }
        }

        /* Это увидят ВСЕ */
.wallet-card {
    background: #1e293b; /* Обычный темный фон */
    border-radius: 32px;
    /* все остальные стили */
}

/* Это добавят СОВРЕМЕННЫЕ браузеры */
.wallet-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* ===== ЗАГРУЗОЧНЫЙ ЭКРАН ===== */
.by-amphetamin {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0f1e;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.by-amphetamin.active {
    opacity: 1;
    visibility: visible;
}

.loading-content {
    text-align: center;
    padding: 40px 60px;
    border-radius: 60px;
    background: #1a1f2e;
    box-shadow: 0 0 100px rgba(0, 255, 255, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.2);
}

/* Для старых браузеров - просто фон */
@supports (backdrop-filter: blur(1px)) {
    .loading-content {
        background: rgba(26, 31, 46, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
}

.by-fentanil {
    font-size: 5rem;
    margin-bottom: 10px;
    animation: float 3s ease-in-out infinite;
}

.by-hashish {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.by-hashish span {
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* Анимированный лоадер */
.loader {
    width: 60px;
    height: 60px;
    margin: 20px auto;
    border: 4px solid rgba(0, 255, 255, 0.2);
    border-top: 4px solid #00ffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.message {
    color: #94a3b8;
    font-size: 1.2rem;
    margin-top: 20px;
    letter-spacing: 1px;
}

/* Анимации */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Для телефонов */
@media (max-width: 600px) {
    .loading-content {
        padding: 30px 40px;
        border-radius: 40px;
        margin: 0 20px;
    }
    .by-hashish {
        font-size: 2rem;
    }
    .by-fentanil{
        font-size: 4rem;
    }
}

/* ===== TELEGRAM КОНТАКТ ===== */
.telegram-block {
    margin-bottom: 32px;
    width: 100%;
}

.telegram-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 4px 4px 4px 20px;
    transition: all 0.2s ease;
}

.telegram-input-wrapper:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.telegram-prefix {
    color: #94a3b8;
    font-size: 1.5rem;
    font-weight: 500;
    margin-right: 8px;
}

.telegram-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 20px 16px 0;
    color: white;
    font-size: 1.1rem;
    outline: none;
    font-family: inherit;
}

.telegram-input::placeholder {
    color: #475569;
    font-style: italic;
}

.telegram-hint {
    color: #64748b;
    font-size: 0.8rem;
    margin-top: 8px;
    margin-left: 12px;
}

/* Для старых браузеров - поддержка */
.telegram-input {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 40px;
}

/* Телефоны */
@media (max-width: 600px) {
    .telegram-input {
        padding: 14px 16px 14px 0;
        font-size: 1rem;
    }
    .telegram-prefix {
        font-size: 1.3rem;
    }
}

.device-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.device-link {
    color: #94a3b8;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255,255,255,0.05);
    transition: all 0.2s;
}

.device-link:hover {
    background: #3b82f6;
    color: white;
}

.device-link.active {
    background: #2563eb;
    color: white;
    font-weight: bold;
}

/* ===== СТИЛИ ДЛЯ ТЕКСТОВОГО ПОЛЯ ===== */
.textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 16px 20px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    transition: all 0.2s ease;
}

.textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    background: rgba(0, 0, 0, 0.4);
}

.textarea::placeholder {
    color: #64748b;
    font-style: italic;
}

.comment-hint {
    color: #64748b;
    font-size: 0.8rem;
    margin-top: 8px;
    margin-left: 12px;
}

/* Для старых браузеров */
.textarea {
    background: rgba(0, 0, 0, 0.5);
}

/* Курсор-рука для всех элементов с классом .copy-btn */
.copy-btn {
    cursor: pointer; /* Это даёт тот самый эффект "руки" */
}
.label{
    color: white !important;
}

 




/* Класс для подсветки текста */
.telegram-input {
    animation: textGlow 6s ease-out infinite;
    
}


@keyframes textGlow {
    0% {
        color: #ffd700;
        text-shadow: 0 0 5px gold, 0 0 10px orange;
    }
    12% {
        color: #ffaa00;
        text-shadow: 0 0 8px gold, 0 0 15px orange, 0 0 20px red;
    }
    25% {
        color: #00ffff;
        text-shadow: 0 0 10px cyan, 0 0 20px blue;
    }
    37% {
        color: #aa80ff;
        text-shadow: 0 0 12px violet, 0 0 18px purple;
    }
    50% {
        color: #ffb3ff;
        text-shadow: 0 0 15px pink, 0 0 25px hotpink;
    }
    62% {
        color: #99ff99;
        text-shadow: 0 0 12px lime, 0 0 20px green;
    }
    75% {
        color: #ffaa00;
        text-shadow: 0 0 8px gold, 0 0 15px orange, 0 0 20px red;
    }
    87% {
        color: #ffd700;
        text-shadow: 0 0 5px gold, 0 0 10px orange;
    }
    100% {
        color: white;
        text-shadow: none;
    }
}

/*если ты это читаешь ! то можешь выключить vpn ! я уже нашел тебя !*/









/* БЛОКИ ТОВАРОВ */
.products-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.product-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    width: 300px;
}

.product-img-css {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

/* ========== ЛАЙТБОКС ========== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 9999;
}

.lightbox.active {
    display: block;
}

/* ЕБАНЫЙ СКРОЛЛ - ТОЛЬКО CSS, СУКА! */
.lightbox-container {
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    display: flex;
    scroll-behavior: smooth;
}

/* ПРЯЧЕМ СКРОЛЛБАР, НО СКРОЛЛ РАБОТАЕТ */
.lightbox-container::-webkit-scrollbar {
    display: none;
}
.lightbox-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* СЛАЙДЫ */
.lightbox-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.lightbox-image {
    max-width: 95%;
    max-height: 90vh;
    object-fit: contain;
}

.close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 10000;
}







/* ДЛЯ ТЕЛЕФОНОВ - БЛОКИ НА ВСЮ ШИРИНУ */
@media (max-width: 600px) {
    .products-container {
        padding: 0 !important;
        gap: 1px !important;
    }
    
    .product-item {
        width: 100% !important;
        border-radius: 0 !important;
    }
    
    .product-img-css {
        width: 100% !important;
        height: 300px !important;
    }
}

.product-item h3 {

    color: #000000 !important;
}



/*---------------------------------*/


/* ===== СТРЕЛКИ ДЛЯ ПК И НОУТБУКОВ ===== */
.lightbox-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-arrow-left {
    left: 20px;
}

.lightbox-arrow-right {
    right: 20px;
}

/* НА ТЕЛЕФОНАХ ПРЯЧЕМ СТРЕЛКИ */
@media (max-width: 768px) {
    .lightbox-arrow {
        display: none;
    }
}

/* ДЛЯ ПЛАНШЕТОВ - МАЛЕНЬКИЕ СТРЕЛКИ */
@media (min-width: 769px) and (max-width: 1024px) {
    .lightbox-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .lightbox-arrow-left {
        left: 10px;
    }
    
    .lightbox-arrow-right {
        right: 10px;
    }
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}


*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}

dialog{
    background-color: rgb(6, 81, 28);
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    height: 200px;
    box-shadow: 0px 4px 6px rgba(230, 32, 32, 0.1); 
}

dialog::backdrop{
    background: rgba(21, 4, 4, 0.5);
}


nav,
footer,
header,
aside {
  display: block;
}


html{
  height: 100%;
}
body {
  min-height: 100vh;
  margin: 0;
  
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
 
}

.sex-porno {
  animation: textGlow 6s ease-out infinite;
}

/*@keyframes textGlow {
    0% {
        color: #ffd700;
        text-shadow: 0 0 5px gold, 0 0 10px orange;
    }
    12% {
        color: #ffaa00;
        text-shadow: 0 0 8px gold, 0 0 15px orange, 0 0 20px red;
    }
    25% {
        color: #00ffff;
        text-shadow: 0 0 10px cyan, 0 0 20px blue;
    }
    37% {
        color: #aa80ff;
        text-shadow: 0 0 12px violet, 0 0 18px purple;
    }
    50% {
        color: #ffb3ff;
        text-shadow: 0 0 15px pink, 0 0 25px hotpink;
    }
    62% {
        color: #99ff99;
        text-shadow: 0 0 12px lime, 0 0 20px green;
    }
    75% {
        color: #ffaa00;
        text-shadow: 0 0 8px gold, 0 0 15px orange, 0 0 20px red;
    }
    87% {
        color: #ffd700;
        text-shadow: 0 0 5px gold, 0 0 10px orange;
    }
    100% {
        color: white;
        text-shadow: none;
    }
}*/


input,
button,
textarea {
  font-family: inherit;
}


input::-ms-clear {
  display: none;
}
button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

img {
  vertical-align: top;
  pointer-events: none;
  
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

.u-section-1 {
  display: flex !important;
  flex-direction: row !important;
  
  flex: 0;
  border: 1px green;
 
  flex-wrap: wrap ;  
  align-items: center;
  
}
.u-section-1 > div {
  width: 100%;
}



.u-section-1 p {
  flex-grow: 1 !important;
  width: 100%;  
  text-align: center;
  line-height: 1.5em;
  color: white !important;  
  padding: 5mm;
}

.u-section-1 .u-text-1 {
  text-transform: uppercase;
  font-size: 3rem;
  margin: 60px auto 0;
  margin-top: -10px !important;
  margin-bottom: 40px !important;
}

.u-section-1 .u-text-2 {
  margin: 40px 187px 0;
  margin-top: -10px !important;
  color: green;
}

.u-section-1 .u-btn-1 {
  text-transform: none;
  font-size: 0.875rem;
  background-image: none;
  margin: 32px auto 60px;
}

@media (max-width: 1199px) {

  .u-section-1 .u-text-2 {
    position: relative;
    margin-left: 87px;
    margin-right: 87px;
    color: green;
  }
}

@media (max-width: 991px) {
  .u-section-1 .u-text-1 {
    width: 720px;
  }

  .u-section-1 .u-text-2 {
    margin-left: auto;
    margin-right: auto;
    width: 720px;
    color: green;
  }
}

@media (max-width: 767px) {

  .u-section-1 .u-text-1 {
    width: 540px;
  }

  .u-section-1 .u-text-2 {
    width: 540px;
    color: green;
  }
}

@media (max-width: 575px) {
  .u-section-1 .u-text-1 {
    width: 280px;
    font-size: 2.25rem;
    margin-bottom: 20px;
  }

  .u-section-1 .u-text-2 {
    width: 100%;
    color: green;
  }
}
.u-sheet{
  height: 90%;
}

.u-section-1 {
  background-image:     linear-gradient(0deg, rgba(3, 18, 7, 0.5)),
        url("/img/3.jpg");
  background-size: 100%;
  height: 28vh !important;/* размер главной картинки для ПК */
}
@media (max-width: 510px) {
  .u-section-1 {
    height: 50vh !important; /* размер главной картинки для МОБИЛКИ */
    max-height:unset;
  }
}
.u-section-1 .u-text-1 {
  text-transform: none;
  font-size: 3rem;
  margin: 60px auto 0;
}

.u-section-1 .u-text-2 {
  margin: 40px 187px 0;
  color: green; 
}

.u-section-1 .u-btn-1 {
  text-transform: none;
  font-size: 0.875rem;
  background-image: none;
  margin: 32px auto 60px;
}

@media (max-width: 1199px) {

  .u-section-1 .u-text-2 {
    position: relative;
    margin-left: 87px;
    margin-right: 87px;
    color: green;
  }
}

@media (max-width: 991px) {

  .u-section-1 .u-text-1 {
    width: 720px;
  }

  .u-section-1 .u-text-2 {
    margin-left: auto;
    margin-right: auto;
    width: 720px;
    color: green;
  }
}

@media (max-width: 767px) {

  .u-section-1 .u-text-1 {
    width: 540px;
  }

  .u-section-1 .u-text-2 {
    width: 540px;
    color: green;
  }
}

@media (max-width: 575px) {
  .u-section-1 .u-text-1 {
    width: 280px;
    font-size: 1.8rem;
    margin-bottom: 20px !important;
  }

  .u-section-1 .u-text-2 {
    width: 280px;
    color: rgb(232, 13, 13);
  }
}

*{
  font-family: 'Inter', sans-serif;
}
.btn {
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 2px solid #e74c3c;
  border-radius: 0.6em;
  color: #0c5308;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin-left: 10px;
  padding: 0.6em 2.0em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.btn:hover, .btn:focus {
  color: rgb(238, 24, 24);
  outline: 0;
}
.fifth {
  border-color: #2e3521;
  border-radius: 3px;
  color: #fff;
  background-color: #525252;
  position: relative;
  z-index: 1;
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
}
.fifth:after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 100%;
  background: #FFF;
  z-index: -1;
  -webkit-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
}
.fifth:hover {
  color: #084e15;
}
.fifth:hover:after {
  width: 110%;
}
.product-item {
  display: flex;
  flex-direction: column;
  
  position: relative;
  width: 24%;
  text-align: center;
  margin: 0 auto;
  
  background: rgba(0, 0, 0, 0.3);
  font-family: "Open Sans";
  transition: .3s ease-in;
  margin-bottom: 14px;
  border-radius: 3px;
  border: 1px solid #e2e2e2;
  border-bottom: 3px solid #e2e2e2;
}
.product-item:hover {
  border-bottom: 3px solid #6ebb0a;
}
.product-item img {
  height: 60%;
  display: block;
  width: 100%;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.product-list {
  padding: 15px 0;
}
.product-list h3 {
  font-size: 18px;
  font-weight: 400;
  color: #e2dddd !important;
  margin: 0 0 10px 0;
}
.price {
  font-size: 16px;
  color: #6ebb0a;
  display: block;
  margin-bottom: 12px;
}
.button {
  text-decoration: none;
  display: inline-block;
  padding: 0 12px;
  background: rgb(79, 79, 12);
  color: white;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 28px;
  transition: .3s ease-in;
}
.product-item:hover .button {
  background: #6ebb0a;
  color: #ffffff;
}
/* START */
.header{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 85px;
    padding: 0 20px;
}
.header-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    width: 100%;
    max-width: 1200px;
}
.first-header-container img{
    max-width: 140px;
}
.second-header-container{
    display: flex;
}

.bls {
    position: relative;
    overflow: hidden;
    color: rgb(220, 18, 18);
  }
  /**
   * The "shine" element
   */
  
  .bls:after {
    content: "";
    height: 200%;
    left: -230%;
    opacity: 0;
    position: absolute;
    top: -10%;
    transform: rotate(-10deg);
    width: 200%;
    background: linear-gradient(to right, rgba(233, 24, 24, 0.13) 0%, rgba(233, 8, 8, 0.13) 77%, rgba(255, 255, 255, 0.5) 92%, rgba(218, 14, 14, 0) 100%);
  }
  /* Hover state - trigger effect */
  
  .bls:hover:after {
    left: -30%;
    opacity: 1;
    top: -50%;
    transition-duration: 0.5s, 0.5s, 0.12s;
    transition-property: left, top, opacity;
    transition-timing-function: ease;
  }
  /* Active state */
  
  .bls:active:after {
    opacity: 0;
  }
.body{
    width: 100%;
    
}
.main{
    background: #eeeeee;
    width: 100%;
    display: flex;
    justify-content: center;
}
.main-container{
    width: 100%;
    max-width: 1100px;
    -webkit-box-shadow: 0px 0px 47px 2px rgba(234, 34, 34, 0.62);
    -moz-box-shadow: 0px 0px 47px 2px rgba(228, 10, 10, 0.62);
    box-shadow: 0px 0px 47px 2px rgba(216, 8, 8, 0.62);
}
.main-container img{
    width: 100%;
}
.gray-text{
    display: flex;
    padding: 24px 20px;
    width: 100%;
    min-height: 75px;
    justify-content: center;
    background: #dd0d0d;
    border-bottom: 1px solid #797979;
}
.gray-text-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.gray-text-container img{
    width: 6px;
    height: 6px;
}
.gray-text-container p{
    font-size: 22px;
    font-weight: 500;
    
    color: red;
}
.dote{
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
}
.u-section-1{
  border-bottom: 1px solid #e2e2e2;
}
.cards{
    align-items: center;
    width: 100%;
    padding: 80px 20px;
    padding-bottom: 80px;
    border-top: 1px solid green;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/3.jpg");
}
.cards-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
    width: 100%;
    max-width: 1200px;
}
.card{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 24%;
    float: left;
    overflow: hidden;
    padding: 16px;
    margin-bottom: 20px;
    transition: 0.4s ease;
    border-radius: 20px 2px 20px 2px;
    -webkit-box-shadow: 0px 0px 18px 6px rgba(136,  136,  136, 0.14);
    -moz-box-shadow: 0px 0px 18px 6px rgba(136,  136,  136, 0.14);
    box-shadow: 0px 0px 18px 6px rgba(136,  136,  136, 0.14);
}
.ugl1{
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: -30px;
    left: -30px;
    background: #df0d0d77;
    transform: rotate(40deg);
}
.ugl2{
    position: absolute;
    width: 50px;
    height: 50px;
    top: -30px;
    right: -30px;
    background: rgba(255, 210, 8, 0.438);
    transform: rotate(40deg);
}
.card img{
    width: 100%;
    max-height: 300px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.card p{
    font-size: 18px;
    font-weight: 500;
}
.card a{
    display: flex;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    margin-top: 20px;
}
.card a{
    font-size: 20px;
    font-weight: 500;
    background: rgb(255, 210, 8);
    border-radius: 8px;
    transition: 0.4s ease;
}
.card a:hover{
    background-color: rgb(216, 216, 216);
}
.card:hover {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
    -webkit-box-shadow: 0px 0px 31px 6px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 31px 6px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 31px 6px rgba(0, 0, 0, 0.15);
}
.instruction{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F6F6F6;
    padding: 28px 20px;
    border-top: 2px solid #e2e2e2;
    border-bottom: 3px solid #e2e2e2;
}
.instruction-container{
    max-width: 1200px;
    width: 100%;
}
.instruction h2{
    font-size: 32px;
    font-weight: 700;
    color: #e51515;
    margin-bottom: 18px;
    text-align: center;
    margin-top: 0 !important;
}
.instruction p{
    font-size: 16px;
    font-weight: 400;
    color: #d81717;
    line-height: 140%;
    text-align: center;
}
.map{
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    background-color: #898989;
}

.text-crypto {
   /* Помещает текст ПЕРВЫМ (сверху) */
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 20px;
  text-align: center;
  color: white !important;
}
.map-container{
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.map-container h2{
    font-size: 20px !important;
    font-weight: 700;
    color: #FFF;
    line-height: 32px !important; 
    font-weight: 300 !important;
    margin: 0;
}
.map-container ul{
    list-style: none;
    margin:0 !important;
    padding-left: 0px !important;
}
.map-container ul li{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-weight: 300 ;
    margin: 0;
}
.map-container ul li a{
    color: #FFF;
}
.map-container ul li a:hover{
    color: rgb(0, 174, 255);
}
.map-container ul li:last-child{
    margin-bottom: auto;
}
.footer-logo-container{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo-container img{
  max-width: 50px;
}
.footer-logo-container p{
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  letter-spacing: 2px;
}





  
@media screen and (max-width: 768px) {
    .map-container h2{
        font-size: 32px;
    }
    .map-container ul{
        padding-left: 30px;
    }
    .map-container ul li{
        font-size: 16px;
    }
    .gray-text-container p{
        font-size: 20px;
    }
    .card p{
        font-size: 16px;
    }
    .cards-container{
        gap: 2%;
    }
    .product-item{
      width: 32%;
    }
    .card{
        width: 32%;
    }
    .gray-text-container p{
        font-size: 18px;
    }
    .gray-text-container{
        gap: 24px;
    }
}
/*#menu__toggle {
  opacity: 0;
  
}

#menu__toggle:checked ~ .menu__btn > span {
  background-color:white;
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  background-color: white;
  top: 0;
  transform: rotate(0);
}
#menu__toggle:checked ~ .menu__btn > span::after {
  background-color: white;
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.menu__btn {
  display: none;
  align-items: center;
  position: fixed;
  top: 40px;
  left: 20px;

  width: 26px;
  height: 26px;

  cursor: pointer;
  z-index: 11;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;

  width: 100%;
  height: 2px;

  background-color: white;

  transition-duration: .25s;
}
.menu__btn > span::before {
  content: '';
  top: -8px;
}
.menu__btn > span::after {
  content: '';
  top: 8px;
}*/

.menu__box {
  display: block;
  position: fixed;
  visibility: hidden;
  top: 0;
  left: -100%;

  width: 300px;
  height: 100%;

  margin: 0;
  padding: 80px 0;

  list-style: none;

  background-color: #ECEFF1;
  box-shadow: 1px 0px 6px rgba(225, 225, 8, 0.2);
  z-index: 10;
  transition-duration: .25s;
}

/*.menu__item {
  display: block;
  padding: 12px 24px;

  color: #e8efe8 ;

  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 600;

  text-decoration: none;

  transition-duration: .25s;
}
.menu__item:hover {
  background-color: #2f66dc;
}*/

/*@media screen and (max-width: 480px){
  .map-container{
    flex-direction: column;
    align-items: center;
  }
  .footer-logo-container{
    margin-top: 30px;
  }
  .map-container ul li,
  .map-container h2{
    text-align: center;
  }*/
  .menu__btn{
    display: flex;
  }
    /*.second-header-container{
        width: 27px;
        height: 27px;
    }*/
    /*.second-header-container a{
        display: none ;
    }*/
  
    .cards-container{
        gap: 2%;
    }
    .card{
        width: 49%;
    }
    .product-item{
      width: 49%;
    }
    .gray-text-container{
        gap: 10px;
    }
    .dote{
        display: none;
    }
    .gray-text-container p{
        word-break: break-all;
        font-size: 14px;
    }
  

@media screen and (max-width: 360px){
    .cards-container{
        gap: 0;
    }
    .card{
        width: 100%;
    }
    .product-item{
      width: 100%;
    }
}

.product-item {
  border-bottom: 3px solid transparent; /* Прозрачная граница, чтобы не прыгала верстка */
  transition: border-color 0.2s; /* Плавность по желанию */
}



/*---------------------*/



/* РАСТЯГИВАЕМ office-panel НА ВСЮ ШИРИНУ - НАДЁЖНЫЙ ВАРИАНТ */
.office-panel {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    border-radius: 0 !important;
    overflow-x: hidden !important;
}

/* ЧТОБЫ КОНТЕНТ НЕ ПРИЛИПАЛ К КРАЯМ НА ТЕЛЕФОНЕ */
@media (max-width: 768px) {
    .office-panel {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}



/*-----------------------*/

/* ФИКС ДЛЯ СКРОЛЛА ВНУТРИ ИЗОБРАЖЕНИЯ */
.lightbox-container {
    scroll-snap-type: none !important;  /* ОТКЛЮЧАЕМ СНАП */
}

/*==========================*/

/* СКРОЛЛ В КАРТОЧКЕ ТОВАРА ДЛЯ img */
.product-img-css {
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
}

/* ЕСЛИ ХОЧЕШЬ СКРОЛЛИТЬ КАРТИНКУ ВНУТРИ КАРТОЧКИ - ОБЕРНИ В КОНТЕЙНЕР */
.product-img-container {
    width: 100%;
    height: 250px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.product-img-container img {
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
} 
 
/*-капча-----------*/

/* ===== КАПЧА МОДАЛЬНОЕ ОКНО ===== */
.captcha-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 20000;
    justify-content: center;
    align-items: center;
}

.captcha-modal.active {
    display: flex;
}

.captcha-content {
    background: #1e293b;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 350px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.captcha-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.captcha-content p {
    color: #94a3b8;
    margin-bottom: 20px;
}

.captcha-question {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.captcha-input {
    width: 100%;
    padding: 12px;
    font-size: 1.2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    margin-bottom: 15px;
}

.captcha-input:focus {
    outline: none;
    border-color: #3b82f6;
}

.captcha-submit {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    width: 100%;
    transition: all 0.3s;
}

.captcha-submit:hover {
    transform: scale(1.02);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.captcha-error {
    color: #ef4444;
    margin-top: 10px;
    font-size: 0.9rem;
}

.captcha-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #94a3b8;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.2s;
}

.captcha-close:hover {
    color: white;
}

.iphon{
    color: rgb(189, 204, 21);
}

.iphon2{
    color:rgb(181, 230, 153)
}

.iphon3{
    color:rgb(20, 233, 45)
}

.iphon4{
    color: rgb(244, 161, 9);
}

.iphon1{
    color:rgb(102, 185, 223)
}