@font-face {
  font-family: 'Manrope';
  src: url('/fonts/manrope-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('/fonts/manrope-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/montserrat-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/montserrat-800.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/montserrat-900.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}


       /* --- 1. БАЗА ТА КОЛЬОРИ (ВАРІАНТ B - HOT SALE) --- */
        :root {
            --primary: #f59e0b;       /* Помаранчевий/Золотий */
            --primary-dark: #d97706;
            --primary-light: #fffbeb;
            --accent: #dc2626;        /* Червоний (Терміновість) */
            --text-dark: #111827;
            --text-gray: #4b5563;
            --bg-page: #f9fafb;
            --bg-card: #ffffff;
            --radius: 12px;
            --shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.15);
        }

        body {
            font-family: 'Manrope', sans-serif;
            margin: 0; padding: 0;
            background: var(--bg-page);
            color: var(--text-dark);
            -webkit-font-smoothing: antialiased;
            padding-bottom: 0;
        }

        .container {
            max-width: 480px;
            margin: 0 auto;
            background: var(--bg-card);
            min-height: 100vh;
            overflow-x: hidden;
            box-shadow: 0 0 40px rgba(0,0,0,0.1);
        }

        h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: var(--text-dark); line-height: 1.1; }
        h2 { font-size: 26px; font-weight: 800; margin-bottom: 25px; text-align: center; text-transform: uppercase; letter-spacing: -0.5px; }
        h3 { font-size: 19px; font-weight: 700; margin: 0 0 10px 0; }
        p { line-height: 1.5; color: var(--text-gray); margin-bottom: 15px; font-size: 15px; }
        img { max-width: 100%; display: block; border-radius: var(--radius); }
        
        .section { padding: 40px 20px; border-bottom: 2px solid #f3f4f6; }
        .bg-accent-light { background-color: var(--primary-light); }

        /* --- КНОПКА (ВИПРАВЛЕНА) --- */
        .btn {
            display: flex; justify-content: center; align-items: center;
            width: 100%; 
            max-width: 350px; /* Обмеження ширини */
            margin: 0 auto;   /* Центрування */
            padding: 18px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: #fff; border: none; border-radius: var(--radius);
            font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 800; text-transform: uppercase;
            text-decoration: none; cursor: pointer;
            box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
            transition: transform 0.2s; position: relative; overflow: hidden;
            box-sizing: border-box; /* Щоб не вилазило */
        }
        .btn:active { transform: scale(0.96); }
        .btn::after {
            content: ''; position: absolute; top: 0; left: -100%;
            width: 50%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
            transform: skewX(-20deg); animation: shine 2.5s infinite;
        }
        @keyframes shine { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }

        /* --- HERO --- */
        .top-bar {
            position: sticky; top: 0; z-index: 100;
            background: rgba(255,255,255,0.98);
            padding: 12px 20px; border-bottom: 2px solid var(--primary);
            display: flex; justify-content: space-between; align-items: center; font-weight: 800; font-family: 'Montserrat', sans-serif;
        }
        .hero-img-wrap { position: relative; border-bottom: 3px solid var(--primary); }
        .badge {
            position: absolute; top: 15px; left: 15px;
            background: var(--accent); color: white;
            padding: 8px 14px; border-radius: 6px; font-weight: 900; font-size: 16px;
            font-family: 'Montserrat', sans-serif; text-transform: uppercase;
            box-shadow: 0 5px 15px rgba(220, 38, 38, 0.5);
            transform: rotate(-2deg);
        }
        .hero-content { padding: 25px 20px; text-align: center; }
        
        .price-box-hero {
            background: var(--primary-light); border: 2px solid var(--primary);
            padding: 15px; border-radius: var(--radius); margin: 20px 0;
            display: flex; justify-content: center; align-items: center; gap: 15px;
        }
        .price-new { font-size: 48px; font-weight: 900; color: var(--accent); line-height: 1; font-family: 'Montserrat', sans-serif; }
        .price-old { font-size: 22px; text-decoration: line-through; color: var(--text-gray); }
        .timer-alert { color: var(--accent); font-weight: 700; font-size: 14px; margin-top: 15px; display: flex; align-items: center; justify-content: center; gap: 5px;}

        /* --- BLOCKS --- */
        .features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .feature-card {
            background: #fff; padding: 15px; border-radius: var(--radius);
            text-align: center; border: 2px solid #eee; transition: 0.3s;
        }
        .feature-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
        .f-icon { font-size: 36px; margin-bottom: 5px; display: block; }
        .f-title { font-weight: 800; font-size: 16px; margin-bottom: 5px; color: var(--text-dark); font-family: 'Montserrat', sans-serif; }
        .f-desc { font-size: 13px; margin: 0; color: var(--text-gray); line-height: 1.3;}

        .zig-zag-item { margin-bottom: 40px; border-bottom: 1px dashed #ddd; padding-bottom: 30px; }
        .zig-zag-item:last-child { margin-bottom: 0; border-bottom: none; }
        .zz-img { width: 100%;  object-fit: cover; margin-bottom: 15px; border: 2px solid #eee; }
        
        .specs-wrap { background: #fff; border-radius: var(--radius); border: 2px solid #eee; padding: 20px; }
        .specs-list { list-style: none; padding: 0; margin: 0; }
        .specs-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #eee; font-size: 15px; }
        .specs-list li:last-child { border-bottom: none; }
        .spec-label { font-weight: 600; }
        .spec-val { font-weight: 800; color: var(--text-dark); }
        
        .kit-box { background: var(--primary-light); padding: 20px; border-radius: var(--radius); margin-top: 20px; text-align: center; border: 2px solid var(--primary); }

        .video-wrapper {
            position: relative; border-radius: var(--radius); overflow: hidden;
            border: 3px solid var(--primary); box-shadow: var(--shadow); cursor: pointer; aspect-ratio: 16/9; background: #000;
        }
        .play-btn {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 70px; height: 70px; background: var(--primary);
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-size: 30px; color: #fff; animation: pulse-orange 2s infinite;
            box-shadow: 0 0 0 5px rgba(255,255,255,0.2);
        }
        @keyframes pulse-orange { 0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); } 70% { box-shadow: 0 0 0 25px rgba(245, 158, 11, 0); } 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); } }

        .review-scroll { display: flex; gap: 15px; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; }
        .review-card { min-width: 280px; background: #fff; padding: 20px; border-radius: var(--radius); scroll-snap-align: center; border: 2px solid #eee; }
        
        .faq-item { border: 2px solid #eee; border-radius: var(--radius); margin-bottom: 10px; background: #fff; overflow: hidden; }
        .faq-head { padding: 15px; font-weight: 800; font-family: 'Montserrat', sans-serif; display: flex; justify-content: space-between; cursor: pointer; }
        .faq-body { max-height: 0; overflow: hidden; padding: 0 15px; transition: 0.3s; font-size: 14px; }
        .faq-item.active .faq-body { padding: 15px; padding-top: 0; max-height: 200px; }
        .faq-item.active .faq-head { color: var(--primary); }

        .form-area { background: #fff; border: 3px solid var(--accent); border-radius: var(--radius); padding: 25px 20px; box-shadow: var(--shadow); }
        .form-inp { width: 100%; padding: 15px; border: 2px solid #d1d5db; border-radius: var(--radius); margin-bottom: 15px; box-sizing: border-box; font-size: 16px; font-family: 'Manrope', sans-serif; transition: 0.3s; }
        .form-inp:focus { border-color: var(--primary); outline: none; }
        
        .qty-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 20px; }
        .qty-card {
            border: 2px solid #d1d5db; padding: 12px 5px; border-radius: var(--radius);
            text-align: center; cursor: pointer; position: relative; transition: 0.2s; background: #fff;
        }
        .qty-card.active { border: 2px solid var(--accent); background: var(--primary-light); }
        .qty-card input { display: none; }
        .discount-tag { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; font-size: 11px; padding: 3px 8px; border-radius: 4px; font-weight: 900; text-transform: uppercase; }

        /* Антиспам */
        .robot-check { position: absolute; left: -9999px; }

        .sticky-bar {
            position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
            width: 100%; max-width: 480px; background: #fff; padding: 10px 15px;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.15); z-index: 99; display: none; box-sizing: border-box; border-top: 2px solid var(--primary);
        }
 	/* Стиль таймера */
.timer-container {
    margin: 15px;
    text-align: center;
    background: #fff;
    border: 1px dashed #ccc;
    border-radius: 8px;
    padding: 10px;
    min-width: 200px;
}

.timer-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 2px;
}

.timer-clock {
    font-size: 24px;
    font-weight: 800;
    color: #e74c3c;
    font-family: monospace;
    line-height: 1;
}
/* СІТКА КРОКІВ */
.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* КАРТКА КРОКУ */
.step-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    position: relative;
    transition: transform 0.2s;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-color: var(--primary); /* Підсвітка кольором сайту */
}

/* НОМЕР КРОКУ (Кружечок) */
.step-num {
    background: var(--primary);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    position: absolute;
    top: 10px;
    left: 10px;
}

/* ІКОНКА */
.step-icon {
    font-size: 32px;
    margin-right: 15px;
    margin-left: 10px;
}

/* ТЕКСТ */
.step-text h3 {
    font-size: 16px;
    margin: 0 0 5px 0;
    font-weight: 800;
    color: #333;
}

.step-text p {
    font-size: 13px;
    margin: 0;
    color: #666;
    line-height: 1.3;
}

/* СТРІЛКИ (Ховаємо на мобільному, показуємо на ПК) */
.step-arrow {
    display: none; /* На телефонах вони займають місце */
    font-size: 24px;
    color: #ccc;
    font-weight: bold;
}

/* --- АДАПТИВ ДЛЯ ПК (Якщо екран широкий) --- */
@media (min-width: 768px) {
    .steps-grid {
        flex-direction: row; /* В рядок */
        align-items: flex-start;
        justify-content: space-between;
    }

    .step-item {
        flex-direction: column; /* Іконка зверху */
        text-align: center;
        flex: 1;
        padding: 20px 10px;
    }

    .step-icon {
        margin: 0 0 10px 0;
        font-size: 40px;
    }

    .step-num {
        left: 50%;
        transform: translateX(-50%);
        top: -10px;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .step-arrow {
        display: flex; /* Показуємо стрілки */
        align-items: center;
        align-self: center;
        margin: 0 10px;
    }
}
/* КНОПКА В ШАПЦІ */
.header-btn {
    background: var(--accent); /* Колір "Акцент" (червоний/помаранчевий) */
    color: #fff !important;    /* Білий текст */
    padding: 8px 15px;         /* Відступи всередині */
    border-radius: 8px;        /* Закруглені кути */
    text-decoration: none;     /* Прибрати підкреслення */
    font-size: 12px;           /* Розмір шрифту */
    font-weight: 800;          /* Жирний шрифт */
    text-transform: uppercase; /* Великі літери */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* Тінь */
    transition: transform 0.2s; /* Плавна анімація */
    display: inline-block;
}

.header-btn:active {
    transform: scale(0.95);    /* Ефект натискання */
}

