html, body {
  overflow: hidden;
}

body {
  font-family: Arial, sans-serif;
  margin: 0px;
  padding: 0px;
  min-height: 98%;
  background: transparent;
  justify-content: center;
}

/* ===== MULTI-GRID ===== */
.product-grid {
  position: relative;
  top: 0rem;
  left: 0rem;
  width: 98%;
  display: -ms-grid; /* IE10 */
  display: grid;
  grid-template-columns: repeat(1, minmax(1, 1fr));
  background: transparent;
  margin: 0;
  margin: 1rem auto;
  max-width: 98%;
  padding: 5px;
  justify-items: center;
}

.product-card {
  position: relative;
  left: 0rem;
  top: 0rem;
  width: 98%;
  max-width: 98%;
  margin: 0;
  margin-bottom: 1rem;
  font-family: "Open Sans", arial, sans-serif;
  text-align: center;
  background: #f8fff2;
  padding: 10px;
  border: 2px solid #f0f0f0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -ms-box-sizing: border-box; 
  -moz-box-sizing: border-box; 
  -o-box-sizing: border-box; 
  -webkit-box-sizing: border-box; 
  box-sizing: border-box;  
  -webkit-box-shadow: 0px 4px 10px #132009;
  -moz-box-shadow: 0px 4px 10px #132009;
  box-shadow: 0px 4px 10px #132009;
  justify-content: center;
  display: inline-block;
}

.product-card h4 {
  font-size: 1em;
  color: #132009;
  margin-bottom: 0rem;
}

.product-card p {
  font-size: 1em;
  color: #132009;
  margin-bottom: 1rem;
}

.product-card-link {
  color: rgb(248, 255, 242);
  font-weight: bold;
  text-decoration: none;
}

.product-card-link:hover {	
  text-decoration: none;
}

/* ===== PRODUCT CARD BUTTON (shared) ===== */
.product-card-button {
  position: relative;
  width: 98%;
  margin: auto;
  padding: 12px 24px;
  cursor: pointer;
  color: rgb(248, 255, 242);
  font-weight: bold;
  font-family: "Open Sans", arial, sans-serif;
  font-size: 1em;
  letter-spacing: 0.2em;
  overflow-wrap: break-word;
  text-align: center;
  text-decoration: rgb(248, 255, 242);
  text-decoration-color: rgb(248, 255, 242);
  text-shadow: 1px 1px 2px #132009;
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  text-transform: uppercase;
  max-width: 98%;
  background: #436C1D;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-style: none;
  border-left-style: none;
  border-right-style: none;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-top-style: none;
  box-sizing: border-box;
  -webkit-box-shadow: 0 4px 5px #132009;
  -moz-box-shadow: 0 4px 5px #132009;
  box-shadow: 0px 4px 5px #132009;
  margin-bottom: 1.5rem;
  transition: 0.3s;
  display: inline-block;
}

.product-card-button a {
  color: rgb(248, 255, 242);
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
}

.product-card-button a:hover {
  color: #D6F20D;
  font-weight: bold;
  text-decoration: none;
}

.product-card-button:hover {
  color: #D6F20D;
  text-decoration: none;
  background: #20360f;
}

/* ===== PRODUCT IMAGES ===== */
.product-card img {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 0rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

    /* ======================================== START MEDIA QUERY [SCREEN BREAKS] ======================================== */

@media (min-width: 1535px) {
 
}