:root {
    --primary-color: #2c3e50;
    --secondary-color: #7e3ce7;
    --accent-color: #3498db;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --light-text: #7f8c8d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    overflow: hidden; /* Добавьте это */
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #7e3ce7;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Шапка */
.new-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-icon {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.8rem;
}

.logo-text span {
    color: var(--secondary-color);
}

.header-contacts {
    display: flex;
    align-items: center;
}

.phone-link {
    font-weight: 600;
    color: var(--primary-color);
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--secondary-color);
}

.phone-link i {
    margin-right: 8px;
    color: var(--secondary-color);
}

/* Герой-секция */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 120px 0 60px;
    margin-top: 60px;
}

.hero-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    text-align: center;
}

.discount-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.discount-badge span {
    font-size: 1.2rem;
    font-weight: 800;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.hero-section h1 span {
    color: var(--secondary-color);
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.features-list i {
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 3px;
}

.price-block {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.old-price {
    text-decoration: line-through;
    color: var(--light-text);
    font-size: 1.5rem;
    margin-right: 20px;
}

.new-price {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 800;
}

.timer {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 20px;
}

.timer p {
    margin-bottom: 10px;
    font-weight: 600;
}

.timer-digits {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

.main-product-image {
    max-height: 400px;
    object-fit: contain;
}

.badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.badge {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 5px;
}

.badge i {
    margin-right: 5px;
}

/* Преимущества */
.benefits-section {
    padding: 60px 0;
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.power-icon {
    background: linear-gradient(45deg, #3498db, #2980b9);
}

.weight-icon {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.universal-icon {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
}

.safe-icon {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
}

.benefit-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Галерея */
.gallery-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.gallery-swiper {
    padding: 30px 0;
}

.swiper-slide {
    width: auto;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-pagination-bullet {
    background: var(--light-text);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary-color);
}

/* Видеообзор */
.video-section {
    padding: 60px 0;
    background-color: white;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Характеристики */
.specs-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.specs-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
}

.specs-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 20px;
}

.specs-table {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #eee;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 15px 0;
    vertical-align: top;
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--primary-color);
    width: 40%;
}

.specs-table i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Отзывы */
.reviews-section {
    padding: 60px 0;
    background-color: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
}

.review-rating {
    color: #f1c40f;
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.review-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.2;
    position: absolute;
    left: -10px;
    top: -15px;
}

.review-date {
    color: var(--light-text);
    font-size: 0.8rem;
    text-align: right;
}

/* Форма заказа */
.order-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.order-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.order-image {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    text-align: center;
    position: relative;
}

.price-box {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    display: inline-block;
}

.old-price {
    text-decoration: line-through;
    font-size: 1.2rem;
    opacity: 0.8;
}

.new-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.economy {
    font-size: 0.9rem;
    margin-top: 5px;
}

.order-form {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: white;
}

.order-form h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.form-subtitle {
    color: var(--light-text);
    margin-bottom: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-text);
}

.form-group input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #c0392b;
}

.submit-btn i {
    margin-right: 10px;
}

.form-footer {
    margin-top: 20px;
    font-size: 0.9rem;
}

.stock-info {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.stock-info i {
    margin-right: 5px;
}

.privacy-policy {
    display: flex;
    align-items: center;
}

.privacy-policy input {
    margin-right: 10px;
}

/* FAQ */
.faq-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
    background-color: #f9f9f9;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px 25px;
}

/* Футер */
.new-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    color: white;
}

.footer-logo .logo-text span {
    color: var(--secondary-color);
}

.footer-logo p {
    margin-top: 15px;
    color: #bdc3c7;
}

.footer-contacts {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-contacts h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-contacts p {
    margin-bottom: 10px;
    color: #bdc3c7;
}

.footer-contacts i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
}

.footer-links {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: #bdc3c7;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-text, .hero-image {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .features-list {
        text-align: left;
    }
    
    .price-block {
        justify-content: center;
    }
    
    .specs-image {
        margin-bottom: 30px;
    }
    
    .order-image, .order-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .new-price {
        font-size: 2rem;
    }
    
    .benefit-card {
        padding: 20px 15px;
    }
    
    .faq-question, .faq-answer {
        padding: 15px;
    }
}