.s_content {
  text-align: center;
  padding: 30px 0;
  background-color: #f9f9f9;
}

.s_content .product-box {
  display: inline-block;
  width: 220px;
  border: 2px solid #b24000;
  margin: 10px;
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
  background: #fff;
}

.s_content .product-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.s_content .product-box img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.s_content .product-title {
  font-weight: bold;
  font-size: 16px;
  color: #b24000;
}