/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html, body {
    overflow-x: hidden;
}

body {
    background: #f9f5e8;
    text-align: center;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    color: #333;
}

/* Заголовки */
.section-title,
.product-title {
    font-size: 22px;
    font-weight: bold;
    color: #2d6a4f;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* Блоки */
.product-section,
.features-section,
.description-section,
.specs-section,
.reviews3_section,
.how-to-order,
.order-form-section {
    width: 100%;
    padding: 15px;
    background: #fff;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.product-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Кнопки */
.order-button {
    display: block;
    margin: 15px auto;
    padding: 12px;
    background: linear-gradient(90deg, #ff8c42, #ff6a00);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    width: 90%;
    text-align: center;
    transition: 0.2s;
    cursor: pointer;
    border: none;
}
.order-button:hover { background: linear-gradient(90deg, #ff6a00, #ff8c42); }

/* Преимущества */
.features-container {
    background: #f8f8f8;
    border-radius: 15px;
    padding: 10px;
}
.feature-item {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 5px 0;
}
.feature-image {
    width: 60px;
    height: 60px;
    margin-right: 12px;
}
.feature-text {
    font-size: 14px;
    font-weight: bold;
    flex: 1;
}

/* Описание */
.description-item {
    background: #f8f8f8;
    border-radius: 15px;
    padding: 12px;
    margin-bottom: 15px;
}
.description-image {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 8px;
}
.description-text {
    font-size: 15px;
    font-weight: bold;
}
.video-container video {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Характеристики */
.specs-container {
    background: #f8f8f8;
    border-radius: 15px;
    padding: 15px;
}
.specs-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.dots {
    flex: 1;
    border-bottom: 1px dashed #aaa;
    margin: 0 8px;
}

/* Отзывы */
.review_item {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 15px;
    margin: 15px auto;
}
.review_item p {
    font-size: 14px;
    margin-top: 10px;
}
.review_item img {
    max-width: 100%;
    border-radius: 16px;
}

/* Шаги заказа */
.order-step {
    display: flex;
    align-items: center;
    background: #f8f8f8;
    border-radius: 20px;
    padding: 12px;
    margin-bottom: 12px;
}
.order-step:nth-child(even) { flex-direction: row-reverse; }
.order-image {
    width: 65px;
    height: 65px;
    border-radius: 50%;
}
.order-text {
    font-size: 14px;
    font-weight: bold;
    flex: 1;
    text-align: left;
    padding: 0 10px;
}

/* Форма */
.order-form {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.order-form label {
    text-align: left;
    font-weight: bold;
    font-size: 16px;
}
.order-form input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 12px;
}
.gradient-button {
    background: linear-gradient(90deg, #ff8c42, #ff6a00);
    border: none;
    padding: 14px;
    font-size: 18px;
    color: white;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
}

/* Цены */
.price-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: #f0f7e8;
    padding: 15px 20px;
    border-radius: 20px;
    margin: 15px auto;
    width: 90%;
    box-sizing: border-box;
}
.old-price, .new-price {
    flex: 1;
    text-align: center;
    min-width: 0;
}
.price-label {
    font-size: 14px;
    font-weight: normal;
    color: #6c757d;
    display: block;
    margin-bottom: 5px;
}
.price-strikethrough {
    font-size: 24px;
    font-weight: bold;
    text-decoration: line-through;
    color: #888;
    display: inline-block;
}
.price-today {
    font-size: 28px;
    font-weight: bold;
    color: #2d6a4f;
    display: inline-block;
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); text-shadow: 0 0 2px rgba(45,106,79,0.3); }
    50% { transform: scale(1.03); text-shadow: 0 0 8px rgba(45,106,79,0.5); }
    100% { transform: scale(1); text-shadow: 0 0 2px rgba(45,106,79,0.3); }
}

/* Таймер */
.timer-block {
    background: #fff;
    border-radius: 40px;
    padding: 6px 12px;
    margin: 10px auto;
    width: 90%;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    border: 1px solid #ffe0b3;
}
.timer-title { font-size: 12px; font-weight: 600; color: #b45f06; margin-bottom: 3px; }
.timer-digits { display: flex; justify-content: center; gap: 6px; }
.timer-item { background: #fef5e8; border-radius: 16px; padding: 3px 0; min-width: 50px; }
.timer-number { font-size: 20px; font-weight: bold; color: #e67e22; line-height: 1.2; }
.timer-label { font-size: 9px; color: #a0522d; }

/* Бегущая строка */
.top-marquee {
    background: #ff8c42;
    color: #fff;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 14px;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.top-marquee-inner {
    display: inline-block;
    animation: marquee 15s linear infinite;
    padding-left: 100%;
}
.top-marquee-inner span {
    margin: 0 12px;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Реквизиты */
.requisites-panel {
    display: none;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    margin: 15px auto 0;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
}
.requisites-panel.show {
    display: block;
}
.requisites-title {
    font-weight: bold;
    font-size: 16px;
    color: #2d6a4f;
    margin-bottom: 12px;
    border-left: 4px solid #ff8c42;
    padding-left: 10px;
}
.req-line {
    margin-bottom: 8px;
    color: #333;
}
.requisites-toggle {
    cursor: pointer;
}

/* Подвал */
.footer {
    background: #e9ecef;
    padding: 15px;
    text-align: center;
    color: #6c757d;
    font-size: 12px;
    border-top: 1px solid #dee2e6;
    border-radius: 20px 20px 0 0;
}
.footer-link {
    color: #2d6a4f;
    text-decoration: none;
    display: block;
    margin-top: 5px;
}
.footer-link:hover { color: #ff8c42; text-decoration: underline; }