/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 480px;
    margin: 0 auto;
    background: #f9f9f9;
}

.container {
    padding: 15px;
}

/* Стилизованная шапка */
.header {
    background: linear-gradient(90deg, #6bf3ff, #2788cd);
    color: white;
    padding: 15px 0;
    text-align: center;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 25px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Главный баннер */
.product-hero {
    text-align: center;
    padding: 20px 0;
    background: white;
    margin: 10px 0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.product-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-title {
    font-size: 24px;
    margin: 10px 0;
    color: #2c3e50;
}

.product-subtitle {
    color: #777;
    margin-bottom: 15px;
    font-size: 16px;
}

.price-block {
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 18px;
}

.new-price {
    font-size: 28px;
    font-weight: bold;
    color: #e74c3c;
}

.discount {
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 16px;
}

.order-btn {
    display: inline-block;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    margin: 10px 0;
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.3);
    transition: transform 0.3s;
}

.order-btn:hover {
    transform: translateY(-2px);
}

/* Преимущества с эмодзи */
.benefits {
    background: white;
    padding: 20px 0;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.benefit-item {
    margin: 20px 0;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    background: #f8f9fa;
}

.emoji {
    font-size: 32px;
    margin-bottom: 10px;
}

.benefit-item h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 18px;
}

.benefit-item p {
    color: #555;
    font-size: 14px;
}
/* Характеристики с картинкой */
.specs {
    background: white;
    padding: 20px 0;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.specs h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.specs-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.specs-list {
    list-style: none;
    padding: 0;
}

.specs-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 15px;
}

.specs-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.specs-item span {
    font-size: 18px;
}

.specs-value {
    text-align: right;
    color: #555;
}

/* Описание с картинкой */
.description {
    background: white;
    padding: 20px 0;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.description h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.desc-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.description p {
    color: #555;
    line-height: 1.7;
    padding: 0 10px;
}

/* Слайдер (Swiper) */
.gallery {
    background: white;
    padding: 20px 0;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.swiper {
    width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.swiper-pagination {
    position: relative;
    margin-top: 15px;
}

.swiper-button-prev, .swiper-button-next {
    color: #2c3e50;
    background: rgba(255, 255, 255, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.swiper-button-prev::after, .swiper-button-next::after {
    font-size: 20px;
}

/* Форма заказа */
.order-form {
    background: white;
    padding: 20px 0;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.order-form h2 {
    text-align: center;
    margin: 20px 0;
    color: #2c3e50;
}

.order-form input {
    width: 100%;
    padding: 12px 15px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 16px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(106, 231, 60, 0.3);
    transition: transform 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* Контакты */
.contacts {
    background: white;
    padding: 20px 0;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.contacts h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contacts p {
    margin: 15px 0;
    /* display: flex; */
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.contacts a {
    color: #3498db;
    text-decoration: none;
}

/* Подвал */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    border-radius: 10px 10px 0 0;
}

.footer p {
    font-size: 14px;
}

.contacts .container {
    text-align: center;
}

.contacts .documents {
    margin-top: 15px;
    line-height: 1.6;
}

.contacts .documents a {
    display: inline-block;
    margin: 2px 0;
}


/* Блок с видеообзором */
.video-review {
    background: white;
    padding: 20px 0;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.video-review h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    margin: 0 auto 15px;
    border-radius: 10px;
    background: #000;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-desc {
    text-align: center;
    color: #555;
    font-size: 14px;
    padding: 0 10px;
}