:root {
    --primary: #2979ff; /* Neon Blue - Спортивний акцент */
    --primary-dark: #1565c0;
    --black: #121212;
    --dark-gray: #1e1e1e;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text: #333;
    --text-light: #e0e0e0;
    --green: #00c853; /* Для рейтингу */
}

/* Base */
body {
    -webkit-user-select: none; user-select: none;
    font-family: 'Montserrat', sans-serif;
    color: var(--text); background: var(--white);
    margin: 0; padding: 0; overflow-x: hidden;
}
* { box-sizing: border-box; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 15px; }
.section { padding: 60px 0; }
.bg-dark { background: var(--dark-gray); color: var(--white); }
.bg-black { background: #000; color: var(--white); }
.white { color: var(--white); }

/* Header */
.header { background: var(--white); padding: 15px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.header-wrap { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 900; font-size: 20px; color: var(--black); }
.logo span { color: var(--primary); }
.btn-small { background: var(--black); color: white; padding: 8px 20px; border-radius: 5px; text-decoration: none; font-weight: 700; font-size: 13px; }

/* Hero */
.hero { background: radial-gradient(circle at center, #f5f5f5 0%, #e0e0e0 100%); padding: 50px 0; overflow: hidden; }
.hero-container { display: flex; flex-direction: column; align-items: center; gap: 30px; text-align: center; }
.badge-top { background: var(--primary); color: white; padding: 5px 12px; font-weight: 800; font-size: 12px; border-radius: 4px; display: inline-block; margin-bottom: 15px; }
.hero h1 { font-size: 32px; line-height: 1.1; margin-bottom: 15px; font-weight: 900; color: var(--black); }
.hero h1 span { color: var(--primary); }
.subtitle { font-size: 16px; margin-bottom: 25px; color: #555; max-width: 500px; }

.features-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 25px; }
.f-item { background: var(--black); color: white; padding: 6px 12px; border-radius: 4px; font-size: 12px; font-weight: 700; text-transform: uppercase; }

.price-block { margin-bottom: 25px; }
.old-price { text-decoration: line-through; color: #999; font-size: 18px; margin-right: 15px; }
.new-price { color: var(--primary); font-size: 42px; font-weight: 900; }

.hero-image { position: relative; width: 100%; max-width: 450px; }
.hero-image img { width: 100%; border-radius: 15px; box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
.magnet-badge { position: absolute; bottom: 20px; right: -10px; background: var(--primary); color: white; padding: 10px 20px; font-weight: 800; font-size: 14px; transform: rotate(-5deg); border: 2px solid white; box-shadow: 0 5px 15px rgba(41, 121, 255, 0.4); }

/* Buttons */
.btn-main {
    display: flex; justify-content: center; align-items: center; text-align: center;
    background: var(--primary); color: white; padding: 18px 30px; width: 100%; max-width: 450px; margin: 0 auto;
    border-radius: 50px; font-size: 18px; font-weight: 800; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer;
    box-shadow: 0 10px 25px rgba(41, 121, 255, 0.3); transition: transform 0.2s, background 0.3s;
}
.btn-main:hover { background: var(--primary-dark); transform: translateY(-3px); }
.btn-blocked { background: #777 !important; cursor: not-allowed; box-shadow: none; transform: none; }
.pulse-btn { animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(41, 121, 255, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(41, 121, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(41, 121, 255, 0); } }
.timer-text { margin-top: 15px; font-size: 14px; color: #777; font-weight: 600; }

/* Section Styles */
.section-title { text-align: center; font-size: 26px; margin-bottom: 20px; text-transform: uppercase; font-weight: 900; }
.section-desc { text-align: center; max-width: 700px; margin: 0 auto 40px; color: #666; font-size: 15px; }

/* Benefits */
.benefits-grid { display: grid; gap: 15px; grid-template-columns: 1fr; }
.b-card { background: white; padding: 25px; border-radius: 10px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border-left: 4px solid var(--primary); }
.b-icon { font-size: 30px; margin-bottom: 10px; }
.b-card h3 { font-size: 18px; margin-bottom: 5px; font-weight: 700; }
.b-card p { font-size: 14px; color: #555; }

/* Visual */
.two-col-grid { display: grid; gap: 30px; }
.visual-img img { width: 100%; border-radius: 10px; }
.visual-text h3 { color: var(--primary); font-size: 20px; margin-bottom: 15px; font-weight: 800; }
.visual-text p { color: #ccc; margin-bottom: 20px; }
.check-list li { list-style: none; position: relative; padding-left: 25px; margin-bottom: 10px; color: #aaa; font-size: 14px; }
.check-list li:before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: bold; }
.check-list strong { color: white; }

/* Capacity */
.capacity-grid { display: grid; gap: 20px; }
.c-item { text-align: center; }
.c-item img { width: 100%; border-radius: 10px; margin-bottom: 10px; border: 1px solid #eee; }
.c-item p { font-size: 14px; color: #555; }

/* --- GOOGLE REVIEWS BLOCK (CUSTOM) --- */
.google-review-header {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #333;
}
.g-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.g-logo { font-family: sans-serif; font-weight: bold; font-size: 18px; letter-spacing: -1px; }
.g-shopping { color: #fff; font-weight: 400; margin-left: 5px; }
.g-rating { color: #fff; font-weight: bold; font-size: 20px; }
.g-rating span { font-size: 24px; }
.g-verified { color: #ccc; font-size: 11px; margin-bottom: 15px; display: flex; align-items: center; gap: 5px; text-transform: uppercase; font-weight: 600; }
.g-progress-wrap { background: #333; height: 6px; border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.g-progress-bar { background: var(--green); height: 100%; border-radius: 3px; }
.g-stats { display: flex; justify-content: space-between; font-size: 12px; color: #888; }
.g-green { color: var(--green); font-weight: bold; }

.btn-write-review {
    display: block; width: 100%; background: transparent; border: 1px solid var(--primary); color: var(--primary);
    padding: 12px; border-radius: 30px; font-weight: 700; margin-bottom: 30px; cursor: pointer; transition: 0.2s;
}
.btn-write-review:hover { background: var(--primary); color: white; }

.reviews-list { display: grid; gap: 15px; }
.review-item { background: #1a1a1a; padding: 15px; border-radius: 12px; border: 1px solid #333; }
.ri-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.ri-avatar { width: 35px; height: 35px; background: #673ab7; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 14px; }
.ri-info { flex: 1; }
.ri-name { font-size: 14px; font-weight: 700; color: white; }
.ri-stars { color: #ffc107; font-size: 12px; }
.ri-badge { background: rgba(0, 200, 83, 0.2); color: #00c853; font-size: 10px; padding: 2px 6px; border-radius: 4px; text-transform: uppercase; border: 1px solid #00c853; }
.ri-text { color: #ccc; font-size: 13px; line-height: 1.4; margin-bottom: 10px; }
.ri-footer { display: flex; justify-content: space-between; font-size: 11px; color: #666; }
.ri-likes { color: #888; }

/* Order Form */
.order-section { background: var(--primary-dark); padding: 60px 0; }
.form-wrapper { background: white; color: var(--text); padding: 30px 20px; border-radius: 15px; max-width: 500px; margin: 0 auto; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.form-wrapper h2 { text-align: center; font-size: 22px; margin-bottom: 5px; }
.form-wrapper > p { text-align: center; font-size: 14px; color: #666; margin-bottom: 20px; }
.product-preview { display: flex; align-items: center; gap: 15px; background: #f5f5f5; padding: 10px; border-radius: 8px; margin-bottom: 20px; }
.product-preview img { width: 50px; height: 50px; object-fit: cover; border-radius: 5px; }
.pp-info h4 { font-size: 14px; margin-bottom: 3px; }
.pp-info p { font-size: 12px; color: #666; margin: 0; }

.input-group { margin-bottom: 15px; }
.input-group label { display: block; margin-bottom: 6px; font-weight: 700; font-size: 12px; text-transform: uppercase; color: #555; }
.input-group input { width: 100%; padding: 14px; border: 1px solid #ddd; border-radius: 6px; font-size: 16px; background: #fff; -webkit-appearance: none; }
.price-final { font-size: 18px; text-align: center; font-weight: 700; margin: 25px 0; border-top: 1px solid #eee; padding-top: 20px; }
.price-final span { color: var(--primary); font-size: 26px; }
.spam-warning { display: none; background: #e3f2fd; color: #1565c0; padding: 10px; border-radius: 5px; text-align: center; margin-bottom: 15px; font-size: 13px; font-weight: 600; border: 1px solid #bbdefb; }
.secure-text { text-align: center; margin-top: 15px; font-size: 11px; color: #999; }

/* Footer */
footer { background: #000; color: #555; text-align: center; padding: 30px 0; font-size: 12px; }
footer a { color: #777; }

/* PC ADAPTATION */
@media (min-width: 768px) {
    .hero { padding: 80px 0; }
    .hero-container { flex-direction: row; text-align: left; justify-content: space-between; gap: 50px; }
    .hero-content { flex: 1; align-items: flex-start; text-align: left; }
    .hero h1 { font-size: 42px; }
    .hero-image { flex: 1; max-width: 500px; }
    .btn-main { margin: 0; display: inline-flex; }
    .features-row { justify-content: flex-start; }
    
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
    .two-col-grid { grid-template-columns: 1fr 1fr; align-items: center; }
    .capacity-grid { grid-template-columns: 1fr 1fr; }
    .reviews-list { grid-template-columns: repeat(3, 1fr); }
}
/* --- Video Section Styles --- */
.video-section {
    background-color: #f9f9f9; /* Світлий фон для контрасту */
    padding: 60px 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px; /* Максимальна ширина відео */
    margin: 0 auto; /* Центрування */
    border-radius: 15px; /* Закруглені кути */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Тінь */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}