#product-cart {
    display: grid;
    justify-content: center;
}

div.js-add2cart.product_add2cart {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;

}

      .material-features {
        background: #fff;
        overflow: hidden;
        margin-bottom: 30px;
        font-family: 'Arial', sans-serif;
      }

      .material-features-header {
          color: black;
          text-align: left;
          margin-top: 20px;
      }

      .material-features-header p {
        font-size: 16px;
        opacity: 0.9;
      }

      .material_block_cont {
        padding: 30px;
      }

      .material_block {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
      }

      .material_item, .material_item_pvd {
        display: block;
        padding: 0;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        transition: all 0.3s ease;
        border: none;
      }

      .material_item:hover, .material_item_pvd:hover {
        transform: none;
        box-shadow: none;
      }

      .material_item_pvd {
        background: transparent;
        border: none;
        position: relative;
      }

      .material_item_pvd .material_item_text {
        position: relative;
      }

      .material_item_pvd .material_item_text::before {
        content: "ПРЕМИУМ";
        position: absolute;
        top: -30px;
        right: 0;
        background: #007bff;
        color: white;
        padding: 5px 15px;
        font-size: 12px;
        font-weight: bold;
        border-radius: 12px;
        letter-spacing: 0.5px;
      }

      .material_item_image {
        width: 100%;
        margin-bottom: 20px;
      }

      .material_item img, .material_item_pvd img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      }

      .no-image-placeholder {
        width: 100%;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
        border-radius: 8px;
      }

      .material_item_text {
        padding: 0;
      }

      .material_item_text h3 {
        font-size: 18px;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
      }

      .material_item_pvd .material_item_text h3 {
        color: #007bff;
      }

      .material_item_text p {
        font-size: 14px;
        line-height: 1.6;
        color: #555;
        text-align: left;
        margin: 0;
      }

      .material_item_pvd .material_item_text p {
        color: #495057;
      }

      /* Адаптивность для планшетов и мобильных */
      @media (max-width: 768px) {
        .material_block {
          grid-template-columns: 1fr;
          gap: 30px;
        }

        .material_item img, .material_item_pvd img, .no-image-placeholder {
          height: 180px;
        }

        .material_item_text h3 {
          font-size: 16px;
          margin-bottom: 10px;
        }

        .material_item_text p {
          font-size: 13px;
        }

        .material-features-header h2 {
          font-size: 24px;
        }

        .material-features-header p {
          font-size: 14px;
        }

        .material_block_cont {
          padding: 20px;
        }
      }

      @media (max-width: 480px) {
        .material_item img, .material_item_pvd img, .no-image-placeholder {
          height: 150px;
        }

        .material_item_text h3 {
          font-size: 15px;
        }

        .material_item_text p {
          font-size: 12px;
        }

        .material-features-header {
          padding: 20px;
        }

        .material-features-header h2 {
          font-size: 20px;
        }
      }