.shop-container {
  display: flex;
  flex-direction: row;
  font-size: 30px;
  text-align: center;
  flex-wrap: wrap;
}

.shop-item {
  background-color: #f1f1f1;
  padding: 10px;
  flex: 25%;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 800px) {
  .shop-container {
    flex-direction: column;
  }
}

/* Responsive  */
@media (min-width: 1024px) and (max-width: 1024px) {
.shop-item {
      box-sizing: content-box;
  }
  .mobile-motorala{
    height: 150px;
  }
  .mouse{
    height: 150px;
  }

  .memory{
    margin-top: 10px;
    margin-bottom: 10px;
    height: 200px;
  }
}

.product-card {
  background-color: white;
  padding: 20px;
  text-align: center;
  transition: transform 0.15s;
}

.product-card:hover {
  transform: scale(1.06);
}

.product-card h3 {
  margin: 0px;
  min-height: 105px;
}

.offer {
  color: green;
  font-weight: bold;
  font-size: 16px;
}
.price {
  color: red;
  font-size: 14px;
  font-weight: bold;
}

ul {
  list-style-type: none;
  padding: 10px;
  width: 100%;
}

li {
  margin: 10px;
}

li a {
  display: block;
  background-color: #f1f1f1;
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
}

li a:hover {
  background-color: #555;
  color: white;
}
