* {
	font-family: sans-serif;
	box-sizing: border-box;
	font-family: 'Raleway', sans-serif;
}

html {
	font-size: 12px;
}

@media screen and (min-width: 600px) {
	html {
		font-size: 16px;
	}
}

html, body {
	margin: 0;
	padding: 0;
	background: #000;
}

.container {
	max-width: 1000px;
	margin: 0 auto;
	background: #FFF;
	padding: 1em 1.4em 60px;
}

h1, h2, variants-title, h4, h5, h6, p {
	margin-top: 0;
}

#variants-title {
	font-weight: 400;
}

h1 {
	margin: 0 0 0.5em;
	font-weight: 400;
}

h3 {
	font-weight: 600;
}

p {
	line-height: 1.3em;
}

.site-title {
	font-family: 'Inspiration', cursive;
	font-size: 4.6em;
	text-align: center;
	margin-bottom: 0;
}

.site-title a {
	font-family: 'Inspiration', cursive;
	text-decoration: none;
	color: inherit;
}

.site-subtitle {
	text-align: center;
	font-size: 0.9em;
	margin-bottom: 2em;
}

.detail .site-title {
	font-size: 2.5em;
}

.detail .site-subtitle {
	font-size: 0.6em;
}


/***********************/
/****** Home Page ******/
/***********************/

.product_list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}

@media screen and (min-width: 600px) {
	.product_list {
		grid-template-columns: repeat(4, 1fr);
	}
}

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

.product_list .product.ghost {
	border: dashed 3px #000;
	padding: 4px;
}

.product_list .product-link {
	text-decoration: none;
	color: inherit;
}

.product_list .product-image-container {
	padding: 50%;
	background-size: cover;
	background-position: 50%;
	position: relative;
	overflow: hidden;
	border: solid 1px #555;
	border-radius: 20px;
}

.product_list .product-image-background {
	background-size: cover;
	background-position: 50%;
	width: 110%;
	position: absolute;
	height: 110%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	filter: blur(5px) brightness(0.6);
}

.product_list .product-image {
	height: 100%;
	width: 100%;
	object-fit: contain;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.product_list .product-title {
	line-height: 1.1em;
	font-size: 1em;
	margin-top: 0.2em;
}








/**************************/
/****** Product Page ******/
/**************************/

.product-info {
	
}

@media screen and (min-width: 600px) {
	.product-info {
		/*display: grid;
		grid-template-columns: 7fr 8fr;
		grid-template-rows: 1fr;
		grid-column-gap: 20px;*/
	}
}

.product-info .product-image {
	max-width: 600px;
	margin: 0 auto;
}

.product-info .product-image img {
	width: 100%;
}

.product-info .product-details {
	max-width: 600px;
	margin: 0 auto;
}

.product-info .product-details h1 {
	
}

.product-info .product-details p.product-description {
	margin-bottom: 40px;
}



.variants {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 20px;
	margin-bottom: 1em;
}

.variants.h {
	grid-template-columns: 6fr 7fr 10fr;
}

.variants.v {
	grid-template-columns: 4fr 5fr 8fr;
}

.variants.s {
	grid-template-columns: 4fr 5fr 7fr 10fr;
}

.variants .variant {
	text-align: center;
}

.variant__image {
	display: block;
	width: 100%;
	border: solid 1px #555;
	box-shadow: 3px 3px 2px rgb(0 0 0 / 30%);
	-webkit-box-shadow: 3px 3px 2px rgb(0 0 0 / 30%);
	-moz-box-shadow: 3px 3px 2px rgb(0 0 0 / 30%);
	background-size: cover;
	background-position: 50%;
}

.variant__image.h4x6 {padding-top: calc(4/6 * 100%);}
.variant__image.v4x6 {padding-top: calc(6/4 * 100%);}

.variant__image.h8x8, 
.variant__image.v8x8 {
	padding-top: calc(8/8 * 100%);
}

.variant__image.h5x7 {padding-top: calc(5/7 * 100%);}
.variant__image.v5x7 {padding-top: calc(7/5 * 100%);}

.variant__image.h8x10 {padding-top: calc(8/10 * 100%);}
.variant__image.v8x10 {padding-top: calc(10/8 * 100%);}


.variant__image.s5x5 {padding-top: calc(5/5 * 100%);}
.variant__image.s8x8 {padding-top: calc(8/8 * 100%);}
.variant__image.s12x12 {padding-top: calc(12/12 * 100%);}
.variant__image.s24x24 {padding-top: calc(24/24 * 100%);}




.variant__name {
	margin: 0;
	font-size: 1.1em;
}

.variant__price {
	margin: 0;
	font-size: 0.8em;
}


a.purchase_link {
	display: block;
	width: 100%;
    padding: 10px 0;
    margin: 0.5em 0 0;
    font-weight: 400;
    line-height: 1em;
    border: solid 2px #000;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    text-align: center;
    font-size: 1.2em;
}






























