/* === БАЗОВІ СТИЛІ === */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #f5f5f5; color: #333; line-height: 1.6; }
.container { max-width: 600px; margin: 0 auto; background: #fff; position: relative; overflow: visible; }

/* === TIMER HEADER === */
.timer-header {
    background: linear-gradient(135deg, #e63946 0%, #d62839 100%);
    padding: 12px 15px;
    color: white;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.timer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}
.timer-icon { font-size: 28px; }
.timer-text { text-align: center; }
.timer-label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 5px; }
.timer-digits { display: flex; align-items: center; gap: 5px; font-size: 24px; font-weight: 900; }
.timer-block { background: rgba(255,255,255,0.2); padding: 5px 10px; border-radius: 8px; min-width: 40px; text-align: center; }

/* === SOCIAL PROOF BAR === */
.social-proof-bar {
    background: linear-gradient(135deg, #2C5AA0 0%, #3b72c5 100%);
    color: white;
    padding: 10px 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}
.proof-item { display: flex; align-items: center; gap: 5px; font-weight: 600; }
.proof-item i { font-size: 16px; color: #FFD700; }
.proof-item strong { color: #FFD700; }

/* === HEADER === */
.header { 
    background: linear-gradient(135deg, #2C5AA0 0%, #3b72c5 100%);
    padding: 20px 15px; 
    text-align: center; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.header-title {
    color: white;
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* === CONTRAST BAR === */
.contrast-bar {
    background: linear-gradient(90deg, #FF7A00 0%, #ff9533 100%);
    color: white; 
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* === HERO SECTION === */
.hero { padding: 0 20px 25px; text-align: center; }
.hero img { width: 100%; height: auto; border-radius: 0; margin-bottom: 15px; }

/* === STOCK ALERT TOP === */
.stock-alert-top {
    background: linear-gradient(135deg, #FF6B6B, #EE5A52);
    color: white;
    padding: 12px 20px;
    margin: 15px 0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

.stock-alert {
    text-align: center;
    color: #e63946;
    font-size: 14px;
    font-weight: 700;
    margin: 15px 0 10px;
}

/* === BENEFITS === */
.benefits-grid { display: flex; flex-direction: column; gap: 8px; margin: 12px 0 20px; }
.benefit-badge { 
    background: transparent; 
    border: none; 
    color: #333; 
    padding: 2px 0; 
    border-radius: 0; 
    font-size: 15px; 
    font-weight: 700; 
    text-align: left; 
    display: block;
    box-shadow: none;
    line-height: 1.4;
    margin: 3px 0;
}

/* === PRICE SECTION === */
.price-section { background: linear-gradient(to bottom, #FFF5E6, #ffffff); padding: 25px 20px; margin: 15px 0 20px; border-radius: 15px; box-shadow: 0 5px 20px rgba(255, 122, 0, 0.1); }
.price-compare { display: flex; justify-content: center; align-items: center; gap: 20px; margin-bottom: 20px; }
.old-price-block { text-align: center; }
.old-price-label { font-size: 13px; color: #999; margin-bottom: 5px; }
.old-price-value { font-size: 24px; color: #999; text-decoration: line-through; font-weight: 600; }
.new-price-block { text-align: center; position: relative; margin-top: 10px; }
.discount-badge { 
    position: absolute; top: -30px; right: -15px; background: #e63946; color: white; 
    padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 900; 
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.4); z-index: 2;
}
.new-price-label { font-size: 14px; color: #FF7A00; margin-bottom: 5px; font-weight: 700; }
.new-price-value { font-size: 42px; color: #FF7A00; font-weight: 900; line-height: 1; }

/* === SAVINGS CALCULATOR === */
.savings-calculator {
    background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
    border: 2px solid #4CAF50;
    border-radius: 12px;
    padding: 15px;
    margin: 20px 0;
}
.calc-title { text-align: center; font-weight: 900; font-size: 16px; color: #2E7D32; margin-bottom: 12px; }
.calc-items { display: flex; flex-direction: column; gap: 8px; }
.calc-item { 
    background: white; 
    padding: 10px 15px; 
    border-radius: 8px; 
    display: flex; 
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
}
.calc-item.highlight { background: #FFD700; border: 2px solid #FF7A00; }
.save-amount { color: #e63946; font-weight: 900; }

/* === GUARANTEES BOX === */
.guarantees-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 20px 0;
}
.guarantee-item {
    background: #F0F7FF;
    border: 2px solid #4A90E2;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #2C5AA0;
}
.guarantee-item i { font-size: 24px; color: #4CAF50; }

/* === URGENCY BLOCK === */
.urgency-block {
    background: linear-gradient(135deg, #FFF3CD, #FFF8E1);
    border-left: 5px solid #FFA500;
    margin: 20px 0;
    padding: 15px 20px;
}
.urgency-content {
    display: flex;
    align-items: center;
    gap: 15px;
}
.urgency-content i { font-size: 32px; color: #FFA500; }
.urgency-text { font-size: 15px; line-height: 1.5; }
.urgency-text strong { color: #e63946; }
.urgency-timer { color: #FF7A00; font-weight: 900; }

/* === BUTTONS === */
.btn-primary, .submit-btn { 
    display: block; 
    width: calc(100% - 40px); 
    max-width: 500px; 
    margin: 20px auto; 
    padding: 20px 30px; 
    background: linear-gradient(180deg, #FF9F05 0%, #FF7A00 100%); 
    color: white; 
    border: none; 
    border-radius: 50px; 
    font-size: 20px; 
    font-weight: 900; 
    text-transform: uppercase; 
    text-decoration: none; 
    text-align: center; 
    cursor: pointer; 
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4); 
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: softGlow 2s ease-in-out infinite;
}

.btn-primary::before, .submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: clickWave 2s ease-out infinite;
}

.btn-primary:hover, .submit-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 12px 35px rgba(255, 122, 0, 0.6);
    animation: none;
}

.btn-primary:hover::before, .submit-btn:hover::before {
    animation: none;
}

.btn-primary:active, .submit-btn:active { 
    transform: translateY(0); 
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.5);
}

/* === SOFT GLOW - ЕДВА ЗАМЕТНАЯ ПУЛЬСАЦИЯ === */
@keyframes softGlow {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
    }
    50% { 
        box-shadow: 0 8px 30px rgba(255, 122, 0, 0.5);
    }
}

/* === CLICK WAVE - ВОЛНА РАСШИРЯЕТСЯ НА КНОПКЕ === */
@keyframes clickWave {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }
    100% {
        width: 600px;
        height: 600px;
        opacity: 0;
    }
}

/* === RIPPLE ANIMATION FOR CLICK === */
.btn-primary::after, .submit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10;
}

.btn-primary:active::after, .submit-btn:active::after {
    animation: clickRipple 0.6s ease-out;
}

@keyframes clickRipple {
    0% { 
        width: 0; 
        height: 0; 
        opacity: 0.9;
    }
    100% { 
        width: 250px; 
        height: 250px; 
        opacity: 0;
    }
}

/* === PULSE ANIMATION === */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}
.pulse { animation: pulse 2s infinite; }

/* === FLOATING CTA === */
.floating-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 10px 15px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    transition: bottom 0.3s ease;
}
.floating-cta.show { bottom: 0; }
.floating-btn {
    display: block;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(180deg, #FF9F05 0%, #FF7A00 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
}
.floating-btn i { margin-right: 8px; }

/* === PROBLEM SECTION === */
.problem-section { background: #FFF3F3; padding: 30px 20px; margin: 20px 0; }
.section-title { font-size: 24px; font-weight: 900; text-align: center; margin-bottom: 20px; color: #333; text-transform: uppercase; }
.problem-list { list-style: none; max-width: 500px; margin: 20px auto; }
.problem-list li { background: white; padding: 15px 20px; margin-bottom: 12px; border-radius: 10px; font-size: 15px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); display: flex; align-items: center; gap: 12px; }
.problem-list li::before { content: '❌'; font-size: 20px; flex-shrink: 0; }

/* === SOLUTION SECTION === */
.solution-section { padding: 0 20px 30px; background: white; margin: 0; }
.solution-box { background: white; border: none; border-radius: 0; padding: 25px 20px; margin: 15px 0; text-align: center; max-width: 100%; }
.solution-title { font-size: 22px; font-weight: 900; color: #2E7D32; margin-bottom: 15px; text-transform: uppercase; }
.solution-text { font-size: 16px; line-height: 1.7; color: #333; max-width: 600px; margin: 0 auto; }
.content-img { width: 100%; height: auto; display: block; margin: 20px auto; border-radius: 0; box-shadow: none; }
.problem-section .content-img { border-radius: 15px; margin-bottom: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
#instruction-img { margin-top: 0; margin-bottom: 20px; }

/* === SPECS SECTION === */
.specs-section { padding: 30px 20px; background: #FFFFF; }
.specs-container { max-width: 550px; margin: 0 auto; }
.specs-list { list-style: none; margin-top: 20px; }
.specs-list li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed #ddd; font-size: 15px; }
.specs-list li:last-child { border-bottom: none; }
.specs-name { color: #666; font-weight: 500; }
.specs-val { font-weight: 700; color: #333; text-align: right; }

/* === COMPARISON TABLE === */
.comparison-section { padding: 30px 20px; background: #FAFAFA; }
.comparison-table { width: 100%; max-width: 550px; margin: 20px auto; border-collapse: collapse; background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.comparison-table thead { background: linear-gradient(135deg, #FF7A00, #FF9F05); color: white; }
.comparison-table th { padding: 15px 10px; font-weight: 900; font-size: 16px; text-transform: uppercase; }
.comparison-table td { padding: 15px 10px; text-align: center; border-bottom: 1px solid #f0f0f0; }
.comparison-table td:first-child { text-align: left; font-weight: 600; padding-left: 20px; }
.comparison-table .yes { color: #4CAF50; font-size: 24px; font-weight: 900; }
.comparison-table .no { color: #e63946; font-size: 24px; font-weight: 900; }

/* === REVIEWS SECTION === */
.reviews-section { padding: 30px 20px; background: white; overflow: hidden; }
.reviews-container { position: relative; max-width: 550px; margin: 0 auto; overflow: hidden; touch-action: pan-y; -webkit-user-select: none; user-select: none; }
.reviews-track { display: flex; transition: transform 0.3s ease-in-out; gap: 10px; cursor: grab; }
.review-slide { flex: 0 0 100%; padding: 0 5px; box-sizing: border-box; min-width: 0; } 
.review-card { background: #F9FAFB; border: 2px solid #E5E7EB; border-radius: 15px; padding: 20px; height: 100%; display: flex; flex-direction: column; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.review-stars { color: #FFB800; font-size: 18px; margin-bottom: 10px; }
.review-text { font-size: 15px; line-height: 1.6; color: #333; margin-bottom: 15px; flex-grow: 1; }
.review-photo { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 10px; margin-bottom: 15px; background: #ddd; }
.review-meta { display: flex; justify-content: space-between; font-size: 13px; color: #666; margin-top: auto; border-top: 1px solid #eee; padding-top: 10px; }
.review-author { font-weight: 700; color: #FF7A00; }
.review-verified { color: #4CAF50; font-weight: 600; font-size: 12px; }
.slider-controls { display: flex; justify-content: center; gap: 20px; margin-top: 25px; }
.slider-btn { width: 45px; height: 45px; border-radius: 50%; border: none; background: #FF7A00; color: white; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(255, 122, 0, 0.3); transition: all 0.3s; }
.slider-btn:hover { background: #e66e00; transform: scale(1.05); }

/* === ORDER FORM SECTION === */
.order-form-section { padding: 0 0 30px 0; background: linear-gradient(to bottom, #FFFAF5, #ffffff); }
.order-form-content { padding: 0 20px; max-width: 600px; margin: 0 auto; }

/* === VIDEO FULL WIDTH === */
.video-container {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    padding: 0 !important;
    border-radius: 0 !important;
    overflow: hidden;
    box-shadow: none !important;
}
.video-container video {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    vertical-align: top !important;
}

/* === FORM STYLES === */
.order-form { max-width: 550px; margin: 30px auto; padding: 30px 20px; background: white; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.input-group { position: relative; margin-bottom: 20px; }
.input-group i { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: #999; font-size: 18px; z-index: 1; }
.field-custom { width: 100%; padding: 18px 20px 18px 55px; border: 2px solid #E5E7EB; border-radius: 12px; font-size: 16px; transition: all 0.3s ease; outline: none; }
.field-custom:focus { border-color: #FF7A00; box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1); }
.field-custom.error { border-color: red; background: #fff0f0; }

/* === BUNDLE OPTIONS === */
.bundle-box { margin: 25px 0; }
.bundle-option { display: block; background: white; border: 3px solid #E5E7EB; border-radius: 15px; padding: 20px; margin-bottom: 15px; cursor: pointer; position: relative; transition: all 0.3s ease; }
.bundle-option:hover { border-color: #FFB366; transform: translateY(-2px); box-shadow: 0 5px 20px rgba(255, 122, 0, 0.15); }
.bundle-option.active { border-color: #FF7A00; background: #FFF9F0; box-shadow: 0 5px 25px rgba(255, 122, 0, 0.2); }
.bundle-option input { display: none; }
.badge-hit { position: absolute; top: -12px; right: 20px; background: #FFD700; color: #000; padding: 5px 15px; border-radius: 20px; font-size: 11px; font-weight: 900; text-transform: uppercase; box-shadow: 0 3px 10px rgba(255, 215, 0, 0.5); border: 2px solid white; }
.badge-hit.best-deal { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; }
.bundle-content { display: flex; justify-content: space-between; align-items: center; gap: 15px; }
.bundle-left strong { display: block; font-size: 18px; font-weight: 900; color: #333; margin-bottom: 5px; }
.bundle-left span { font-size: 13px; color: #666; }
.bundle-right { text-align: right; flex-shrink: 0; }
.bundle-right strong { display: block; font-size: 24px; font-weight: 900; color: #e63946; margin-bottom: 3px; }
.bundle-old-price { font-size: 14px; color: #999; text-decoration: line-through; }

/* === PAYMENT METHODS === */
.payment-methods {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.payment-methods i { font-size: 24px; color: #4A90E2; }

/* === FOOTER === */
.footer { padding: 30px 0; background: #F9FAFB; text-align: center; }
.footer-payment-title { font-size: 16px; font-weight: 800; color: #333; margin: 0 20px 15px; text-transform: uppercase; text-align: center; }
.footer img { width: 100%; max-width: none; height: auto; margin: 0 0 10px 0; border-radius: 0; display: block; }
.footer-links { margin: 20px 20px; font-size: 14px; color: #666; }
.footer-links a { color: #FF7A00; text-decoration: none; font-weight: 600; }
.footer-links a:hover { text-decoration: underline; }

/* === FULL WIDTH IMAGES === */
.full-width-img {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    display: block !important; 
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    vertical-align: top !important;
    object-fit: cover !important;
}

.rounded-img {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    display: block;
    height: auto;
}

#har-img {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin: 0 !important;
}

.specs-section .section-title {
    margin-bottom: 0 !important;
}

.specs-container {
    margin-top: 0 !important;
}

/* === RESPONSIVE === */
@media (min-width: 768px) {
    .container { max-width: 600px; overflow: hidden; }
    .full-width-img { 
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 480px) {
    .header-title { font-size: 18px; }
    .contrast-bar { font-size: 13px; }
    .section-title { font-size: 20px; }
    .new-price-value { font-size: 36px; }
    .btn-primary, .submit-btn { font-size: 18px; padding: 18px 25px; }
    .bundle-left strong { font-size: 16px; }
    .bundle-right strong { font-size: 20px; }
    .timer-digits { font-size: 20px; }
    .social-proof-bar { font-size: 11px; justify-content: center; }
    .guarantees-box { grid-template-columns: 1fr; }
}