      /* Общие стили */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }

        /* Шапка */
        header {
          
    background: linear-gradient(to bottom right, #ad8040, #49351e);


            color: #fff;
            padding: 20px 0;
            text-align: center;
        }

        header h1 {
            margin: 0;
            font-size: 36px;
        }

        /* Навигация */
        nav {
            background: linear-gradient(to bottom right, #ad8040, #49351e);
            text-align: center;
            padding: 10px 0;
        }

        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        nav ul li {
            display: inline;
            margin: 0 10px;
            font-weight: bold;
        }

        nav ul li a {
            text-decoration: none;
            color: #fff;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: #ad8040;
        }
        button {
            color: inherit;
            width: 40%;
            height: auto;
            background-color: #ad8040;
            border-radius: 10px;
            cursor: pointer;
            height: 40px;
            font-weight: bold;
            font-size: 16px;
            color: white;
            border: none;
            transition: color 0.3s ease;
        }
        button:hover {
             background: linear-gradient(to bottom right, #ad8040, #49351e);
             transition: color 0.3s ease;
        }

        /* Главный контент */
         .container {
            max-width: 1400px;
            margin: 20px auto;
            padding: 20px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-around;
        }
        .products-container {
            max-width: 80%;
           display: flex;
    flex-wrap: wrap;
        }
        .product {
            width: 45%;
            margin: 20px;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .product img {
            width: 100%;
        }
        .cart-sidebar {
            width: 20%;
        }
        #reviewsContainer {
            display: flex;
                flex-direction: column;
               
                max-width: 1400px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
        }

        /* Левая колонка */
        .main-content {
            flex: 1;
            margin-right: 20px;
        }

        /* Сайдбар */
        .sidebar {
            width: 300px;
            background-color: #f0f0f0;
            border-radius: 5px;
            padding: 20px;
        }

        .sidebar h2 {
            color: #333;
            margin-top: 0;
        }

        .sidebar .post {
            margin-bottom: 20px;
        }

        .sidebar .post img {
            max-width: 100%;
            border-radius: 5px;
        }

        .sidebar .post h3 {
            margin: 10px 0;
            color: #333;
        }

        /* Секция */
        .section {
            margin-bottom: 40px;
        }

        .section h2 {
            color: #333;
            margin-top: 0;
        }

        .section p {
            color: #555;
        }

        /* Форма обратной связи */
        form {
            max-width: 500px;
            margin: 0 auto;
            background-color: #f0f0f0;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        form input[type="text"],
        form input[type="email"],
        form textarea {
            width: calc(100% - 40px);
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-sizing: border-box;
        }

        form input[type="submit"] {
            background-color: #ad8040;
            color: #fff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        form input[type="submit"]:hover {
            background: linear-gradient(to bottom right, #ad8040, #49351e);
        }

        /* Футер */
        footer {
             background: linear-gradient(to bottom right, #ad8040, #49351e);
            color: #fff;
            text-align: center;
            padding: 20px 0;
         
            bottom: 0;
            width: 100%;
        }

        .logo a {
            text-decoration: none;
            color: inherit;
        }
        .post a {
            text-decoration: none;
            color: inherit;

        }

        .img-box img{
            border-radius: 10px;
            max-width: 100%;
        }
        .img-box {
            display: flex;
            justify-content: center;
        }

          .article-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* Три статьи в строке */
        grid-gap: 20px;
    }

    .article {
        border: 1px solid #ddd;
        border-radius: 5px;
        padding: 20px;
    }

    .article img {
        max-width: 100%;
        height: auto;
        border-radius: 5px;
    }

    .article h2 {
        margin-top: 10px;
        font-size: 1.2rem;
    }

    .article p {
        margin-top: 10px;
        font-size: 1rem;
    }
    .container-blog {
        max-width: 1400px;
            margin: 20px auto;
            padding: 20px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          

    }
    .article a {
         text-decoration: none;
            color: inherit;

    }