/* Category */

.list-product-categories {
    margin-top: 2em;
    margin-bottom: 2em;
}

.category-tile {
	text-align: center;
	padding: 1em 1em;
	margin-bottom: 1.5em;
	transition: transform .5s;
	color: #333;
  background-color: white;
	border-radius: 1em;
	margin-bottom: 1.5em;
	box-shadow: 0 0 4px grey;
}

.category-tile:hover {
  transform: scale(1.05); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
	color: #000;
}

.category-tile a {
	color: #212529;
}
.category-tile a:hover {
  text-decoration: none; 
}

.category-tile h1 {
	padding-top: 0.65em;
	font-size: 1.5em;
	font-weight: 525;
}

.category-tile img {
	margin: auto;
    width: 100%;
	border-radius: 1em;
	box-shadow: 0 0 4px 2px grey;
}

@media only screen and (max-width: 1100px) {
    .category-tile h1 {
    	font-size: 1em;
    }
}

/* Product */

/* + Product Filter */

.subcategories {
	padding-bottom: 1.5em;
}

.subcategories h1 {
	padding-top: 1.5em;
	font-size: 2.5ch;
	font-weight: 525;
}

.subcategories .form-check {
	padding-top: 0.25em;
}

@media only screen and (max-width: 767px) {
	.subcategories {
		text-align: center;
	}
}

/* + Product Tiles*/

.product-tile  {
	text-align: center;
	padding: 1em 1em;
	margin-bottom: 1.5em;
	transition: transform .5s;
	color: #333;
	background: white;
	border-radius: 1em;
	box-shadow: 0 0 4px grey;
}

.product-tile a {
	color: #212529;
}

.product-text {
	padding-top: 1em;
	padding-right: 0.5em;
	padding-left: 0.5em;
	margin: auto;
	bottom: 3rem;
}	

.product-text h1 {
	text-align: center;
	font-weight: 550;
	font-size: 1.5em;
}

.product-text h2 {
    font-size: 1.5rem;
}

.product-text h2 span {
	font-size: 0.75em;
	vertical-align: top;
}

@media only screen and (max-width: 1100px) {
    .product-text h1 {
    	font-weight: 550;
	    font-size: 1em;
    }

    .product-text h2 {
    	font-size: 1em;
    }
}

.product-tile img {
	margin: auto;
  max-width: 100%;
	border-radius: 1em;
	box-shadow: 0 0 4px 2px grey;
}

.product-tile:hover {
  transform: scale(1.05); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
	color: #000;
}

.product-tile a:hover {
  text-decoration: none; 
}

.product-tile img:hover {
	outline-color: rgba(0,0,0,0.5);
}

/* product-page */

.image-slide-container {
	padding-top: 1em;
}

.product-images .image-slide-container .row {
	padding-bottom: 1em;
}

.image-slides img {
	max-width: 100%;
	border-radius: 0.5em;
}

.product-images {
	padding-right: 1em;
	padding-left: 1em;
}

.product-images .hero-product-image img {
    min-width: 100%;
    height: auto;
    border-radius: 1em;
}

.product-header {
		text-align: center;
}

@media only screen and (min-width: 992px) {
		.product-header {
				text-align: left;
		}
}

/* product-information */

.product-information {
	padding-right: 1em;
	padding-left: 1em;
}
