.image-container {
      width: 216px; height:330px;
      float: left; padding:4px 4px 4px 4px;
      text-align: center;
      margin: 5px;
      box-sizing: border-box;
      border: 1px solid #ccc;
    }
	
	.image-container:hover {
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); /* Shadow effect on hover */
    }
    .image-container img {
      width:100%; margin-left:0px;
      height: 260px;
      display: block;
    }
    .image-overlay {
      position: relative;
    }
    .image-heading {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      background:#293f80;background:-moz-linear-gradient(#293f80, #3560a5);background:-webkit-gradient(linear, 0 0, 0 100%, from(#293f80), to(#3560a5));
      color: #fff;
      font-weight: bold;
      padding: 5px;
      box-sizing: border-box;
      margin: 0;
    }
    .image-price {
      font-size: 15px;
      margin-top: 5px;
      margin-bottom: 5px;
    }
	.image-price crossed-text {text-decoration: line-through;}

    /* Clear float after every 3rd image (optional) */
    .clear {
      clear: both;
    }
   /* Media query for responsiveness */
    @media screen and (max-width: 768px) {
      .image-container {
        width: 100%;
        float: none;
      }
    }
	
@media screen and (max-width: 480px){ 
      .image-container {
        width: 100%;
        float: none;
      }
    }
	