    /* ======== БАЗОВІ СТИЛІ ======== */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, sans-serif;
      background-color: #f9f9f9;
      color: #333;
      display: flex;
      flex-direction: column; /* Щоб футер міг “прилипнути” внизу */
      min-height: 100vh;     /* Якщо хочемо футер внизу */
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* ======== ШАПКА (header) ======== */
    header {
      background-color: #fff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      padding: 20px;
      position: sticky;
      top: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      max-height: 50px; /* Розмір лого */
    }

    .header-title {
      font-size: 24px;
      margin-left: 20px;
    }

    /* ======== ОСНОВНИЙ КОНТЕНТ ======== */
    main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      flex: 1 0 auto; /* Робимо main “гнучким”, щоб футер був знизу */
    }

    /* ======== СЕКЦІЯ ТОВАРІВ ======== */
    .products-section {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: space-between;
    }

    .product-card {
      position: relative; /* Для бейджа (лейбла) знижки */
      background-color: #fff;
      border: 1px solid #eee;
      border-radius: 4px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      flex: 1 1 calc(20% - 20px); /* 5 карточок в один ряд на широкому екрані */
      min-width: 220px;
      max-width: 240px;
      text-align: center;
      padding: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 14px rgba(0,0,0,0.1);
    }

    .product-image {
      width: 100%;
      height: auto;
      border-radius: 4px;
    }

    .product-card h2 {
      font-size: 18px;
      margin: 10px 0;
    }

    .product-card p.description {
      font-size: 14px;
      line-height: 1.4;
      margin: 10px 0;
    }

    .prices {
      margin: 10px 0;
    }

    .old-price {
      text-decoration: line-through;
      color: #999;
      margin-right: 10px;
    }

    .new-price {
      font-weight: bold;
      font-size: 16px;
      color: #d9534f;
    }

    /* Бейдж “Знижка” */
    .discount-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background-color: #d9534f;
      color: #fff;
      padding: 5px 8px;
      font-size: 12px;
      border-radius: 3px;
    }

    .like-button {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 20px;
      margin-bottom: 10px;
    }

    .like-button.liked {
      color: #d9534f; /* колір сердечка, коли лайкнуто */
    }

    .buy-button {
      background-color: #0066cc;
      color: #fff;
      border: none;
      padding: 10px 15px;
      cursor: pointer;
      border-radius: 4px;
      transition: background-color 0.3s ease;
    }

    .buy-button:hover {
      background-color: #0057a3;
    }

    /* ======== SEO-ТЕКСТ ======== */
    .seo-section {
      margin-top: 40px;
      background-color: #fff;
      padding: 20px;
      border-radius: 4px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .seo-section h2 {
      margin-top: 0;
    }

    .seo-section p {
      line-height: 1.5;
    }

    /* ======== СЕКЦІЯ ДОВІРИ ======== */
    .trust-section {
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      background-color: #fff;
      padding: 20px;
      border-radius: 4px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .trust-item {
      flex: 1 1 calc(33.33% - 20px);
      min-width: 200px;
      text-align: center;
      padding: 10px;
    }

    .trust-item img {
      max-width: 60px;
      margin-bottom: 10px;
    }

    .trust-item h3 {
      margin-bottom: 8px;
      font-size: 18px;
    }

    .trust-item p {
      font-size: 14px;
      line-height: 1.4;
    }

    /* ======== СТАТТЯ (section.article) ======== */
    .article {
      margin-top: 40px;
      background-color: #fff;
      padding: 20px;
      border-radius: 4px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      line-height: 1.5;
    }

    .article h2,
    .article h3 {
      margin-top: 1em;
      margin-bottom: 0.5em;
    }

    /* ======== ФУТЕР (footer) ======== */
    footer {
      background-color: #333;
      color: #fff;
      padding: 30px 20px;
      margin-top: 20px; /* Невеликий відступ від контенту */
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: space-between;
    }

    .footer-column {
      flex: 1 1 calc(25% - 30px);
      min-width: 200px;
    }

    .footer-column h3 {
      margin-bottom: 15px;
      font-size: 18px;
      color: #fff;
    }

    .footer-column ul {
      list-style-type: none;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      color: #ccc;
      font-size: 14px;
    }

    .footer-column ul li a:hover {
      color: #fff;
    }

    /* ======== АДАПТИВНІСТЬ ======== */
    @media (max-width: 768px) {
      .footer-column {
        flex: 1 1 calc(50% - 30px);
      }
      .products-section {
        justify-content: center;
      }
      .product-card {
        flex: 1 1 calc(50% - 20px);
        max-width: 100%;
      }
      .trust-item {
        flex: 1 1 calc(50% - 20px);
      }
    }

    @media (max-width: 480px) {
      .footer-column {
        flex: 1 1 100%;
      }
      .product-card {
        flex: 1 1 100%;
      }
      .trust-item {
        flex: 1 1 100%;
      }
    }