 :root {
            --primary-color: #0a11edcc;
            /* Основной оттенок */
            --secondary-color: #0a11ed6e;
            /* Вторичный оттенок */
            --bg-light: #F7F7F7;
            /* Светлый фон */
            --text-dark: #333;
            /* Темный текст */
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            text-align: center;
        }

        header {
            background-color: var(--primary-color);
            color: white;
            padding: 20px;
        }

        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
        }

        section {
            margin-bottom: 40px;
        }

        /* Основное расположение товаров */
        .product-grid {
            display: flex;

            /* grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); */
            gap: 20px;
            flex-direction: column;
        }

        /* Блок товара */
        .product-item {
            background-color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: left;
            border-radius: 8px;
            transition: transform 0.3s ease-in-out;
        }

        .product-name {
            display: flex;
        }

        .product-item:hover {
            transform: translateY(-5px);
        }

        /* Изображения товаров */
        .product-image {
            width: 100%;
            min-width: 100px;
            max-width: 100px;
            height: auto;
            object-fit: cover;
            margin-right: 10px;
            border-radius: 8px;
        }

        .product-short {
             margin: 10px
        }

        /* Таблица вариантов */
        table.variant-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
        }

        th,
        td {
            padding: 8px;
            text-align: left;
            border-bottom: 1px solid #DDD;
        }

        tr:nth-child(even) {
            background-color: #F9F9F9;
        }

        thead th {
            background-color: var(--secondary-color);
            color: white;
        }

        tfoot td {
            font-weight: bold;
            color: var(--primary-color);
        }

        /* Информация о компании */
        .about-company {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Контакты */
        .contact-info {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .hidden-phone {
            display: none;
        }

        button.contact-button {
            background-color: var(--primary-color);
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: transform 0.3s ease-in-out;
        }

        button.contact-button:hover {
            transform: scale(1.05);
        }

        /* Условия доставки и оплаты */
        .terms-and-payment {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 20px;
            text-align: center;
        }



                .hidden {
            display: inline;
        }
        table.variant-table tr:nth-child(even) { /* Зебра */
            background-color: #f2f2f2;
        }
        button {
            margin-bottom: 10px;
        }

        .hidden-container {
            display: none;
        }




.contact-detail strong {
    color: #3d8dfb;
}

.contact-label {
    cursor: pointer;
    color: #ff6b6b;
    text-decoration: underline;
}

.showed-contact {
    color: black;
    font-weight: bold;
    text-decoration: none;
}