    .product-card {
      border: 1px solid #e5e7eb;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .product-card:hover {
      transform: translateY(-4px);
      border-color: #d1d5db;
      box-shadow: 0 12px 28px rgba(0,0,0,.08);
    }

    .product-thumb {
      display: flex;
      justify-content: center;
      padding: .75rem;
      border-bottom: 1px solid #f0f2f5;
      background: #fff;
    }
    .product-thumb img {
      object-fit: cover;
      height: 220px;        /* одинаковая высота превью */
      border-radius: .25rem;
    }

    .product-title {
      font-size: 1.05rem;
      color: #16a34a;       /* зелёный акцент, как на примере */
      margin: 0;
    }

    .product-spec {
      background: #f6f7f9;
      border: 1px solid #eef0f2;
      border-radius: .5rem;
    }

    .product-price {
      color: #16a34a;
      font-size: 1.25rem;
    }
