:root {
            --primary-color: #ff69b4; /* Рожевий під колір товару */
            --dark-color: #333;
            --light-color: #fff;
            --accent-color: #ff0000;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            color: var(--dark-color);
            background-color: #f9f9f9;
        }

        .container {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }

        header {
            background: var(--primary-color);
            color: white;
            text-align: center;
            padding: 10px;
            font-weight: bold;
            text-transform: uppercase;
        }

        .hero {
            text-align: center;
            padding: 20px;
        }

        .hero img {
            width: 100%;
            border-radius: 10px;
        }

        .hero h1 {
            font-size: 24px;
            margin: 15px 0;
            color: var(--primary-color);
            text-transform: uppercase;
        }

        .price-block {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin: 20px 0;
        }

        .old-price {
            text-decoration: line-through;
            color: #888;
            font-size: 20px;
        }

        .new-price {
            color: var(--accent-color);
            font-size: 32px;
            font-weight: 900;
        }

        .btn {
            display: block;
            background: var(--accent-color);
            color: white;
            text-align: center;
            padding: 20px;
            text-decoration: none;
            font-weight: bold;
            font-size: 22px;
            border-radius: 50px;
            margin: 20px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .features {
            padding: 20px;
            background: #fff5f8;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .feature-item img {
            width: 60px;
            margin-right: 15px;
        }

        .product-info {
            padding: 20px;
        }

        .product-info h2 {
            text-align: center;
            color: var(--primary-color);
        }

        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }

        .specs-table td {
            padding: 10px;
            border-bottom: 1px solid #eee;
        }

        .footer-form {
            background: #eee;
            padding: 30px 20px;
            text-align: center;
        }

        input {
            width: 100%;
            padding: 15px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-sizing: border-box;
            font-size: 16px;
        }

        .timer {
            background: #333;
            color: #fff;
            padding: 10px;
            text-align: center;
            font-size: 14px;
        }
        .reviews-block {
    padding: 30px 20px;
    background: #fff;
}
.timer-block {
    background: #333; /* Темний фон для контрасту */
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 20px;
}

.timer-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color); /* Рожевий акцент */
    margin-bottom: 10px;
}

.timer-text {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.timer-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.timer-item {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.timer-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-top: 5px;
    font-weight: 400;
}

.timer-separator {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px; /* Трохи підняти */
}
.reviews-block h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.review-item {
    background: #fdfdfd;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-name {
    font-weight: 700;
    font-size: 16px;
}

.review-stars {
    color: #ffcc00;
    font-size: 14px;
}

.review-text {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    font-style: italic;
}
.how-to-order {
    padding: 30px 20px;
    background: #fff5f8; /* Легкий рожевий фон */
}

.how-to-order h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    background: var(--primary-color);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 900;
    flex-shrink: 0;
}

.step-content h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.step-content p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #555;
}