:root {
	--offblack: #313022;
	--lightbg: hsla(41,63%,42%,0.1);
}

body, html {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0;
	overflow-y: auto;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	color: var(--offblack);
	font-family: "Lora", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}
#default-page-header {
	padding: 2em 4em;
	display: flex;
	justify-content: space-between;	
	align-items: center;	
}
h1 {
	font-size: 2.25em;
	font-weight: 600;
}
h1 a:link,
h1 a:visited,
h1 a:hover,
h1 a:active {
	color: unset;
	text-decoration: none;
}
h2 {
	font-size: 2em;
}
h3 {
	font-size: 1.5em;
}
footer {
	margin-top: 20em;
	min-height: 10em;
	display: flex;
	padding: 2em 4em;
	background: hsla(41,63%,42%,0.1);
	position: relative;
	align-items: center;
}

footer ul {
	display: flex;
	padding: 0;
	margin: auto;
	list-style-type: none;
	justify-content: flex-start;
	grid-gap: 5em;
}

footer a:link, 
footer a:visited, 
footer a:hover, 
footer a:active {
	color: unset;	
}

#copyright {
	position: absolute;
	bottom: 0.125em;
	left: 0;
	right: 0;
	text-align: center;
}

#cart-button {
	border: none;
	background: none;
	cursor: pointer;
	position: relative;			
}
#cart-button.with-cart::after {
	content: "";
	background: url('/img/sparkles-48.png');
	background-size: contain;
	height: 18px;
	width: 18px;
	display: flex;
	position: absolute;
	top: 19px;
	left: 31px;
}
main {
	display: flex;
	flex-direction: column;
	align-items: flex-start;			
}
.product-gallery-list {
	list-style-type: none;
	display: flex;
	padding: 0;
	width: 100%;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: auto;			
}
.product-tile, .product-tile a {
	display: flex;
	flex-direction: column;	
	text-align: center;
	align-items: center;		
}
.product-tile {
	transition: transform 0.2s;
	border-radius: 2px;			
	width: 400px;				
}
.product-tile a {
	grid-gap: 0.375em;
	padding: 1.5em;
}
.product-tile a:link, .product-tile a:visited,
.product-tile a:active, .product-tile a:hover {
	color: black;
	text-decoration: none;			
}
.product-tile-image {
	height: 350px;
	width: 350px;
}
.product-tile-name {
	font-size: 1.25em;			
}

.product-tile-price {
	font-size: 1.125em;
}

#product-page-main {
	grid-gap: 1em;
	align-items: stretch;
	width: 100%;
	max-width: 1600px;
	margin: auto;
}

#product-page-main > *,
#catalog-page-main > *  {
	margin: 0 4em;
}

#product-page-above-fold {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	grid-gap: 8vw;
	align-items: flex-start;
}

#product-page-above-fold > div {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

#product-page-main h2 {
	margin-top: 0;
	font-size: 1.75em;
	font-weight: 500;
}

#product-page-image-gallery {
	display: flex;
	grid-gap: 3vw;
}

#product-page-image-gallery > fieldset {
	border: none;
	background: none;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 0;
}

#product-page-image-gallery .image-stack {
	position: relative;
	display: flex;
	width: 420px;
	height: 420px;
	max-width: 100%;
}

#product-page-image-gallery .image-stack img {
	position: absolute;
	opacity: 0;
}

#product-page-image-gallery .image-stack img.displayed-in-stack {
	opacity: 1;
}

input[name="image_picker"]:checked + .image-picker-tile::after {
	opacity: 1;
}

.image-picker-tile {
	cursor: pointer;
	position: relative;
}

.image-picker-tile::after {
	content: "";
	position: absolute;
	height: 16px;
	width: 16px;
	top: 0.5em;
	left: 0.5em;
	background: url('/img/star-64.png');
	background-size: contain;
	opacity: 0;
}

.sr-only {
    position: fixed !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden !important;
    left: -99999999px !important;
    top: -999999999px !important;
    opacity: 0 !important;
}

.image-stack fieldset {
	border: none;
	background: none;
	position: absolute;
	bottom: 0.25em;
	left: 0.25em;
	display: flex;
	padding: 0.25em;
	grid-gap: 0.25em;
}

.image-stack fieldset label {
	display: inline-flex;
	height: 16px;
	width: 16px;
	border-radius: 50%;	
}

.image-stack fieldset label:first-of-type {
	background: white;
	border: 2px solid hsl(0,0%,10%);
}

.image-stack fieldset label:nth-of-type(2) {
	background: hsl(0,0%,10%);
	border: 2px solid white;
}

.image-stack::before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: hsl(0,0%,10%);
	opacity: 0;
	transition: opacity 0.2s ease-out;
}

.image-stack.dark::before {
	opacity: 1;
}

#back-to-shop {
	position: relative;
	padding: 0.125em 0.25em;
	align-self: flex-start;
	font-size: 1.125em;
}

#cart-page-main #back-to-shop, 
#t-and-c-page-main #back-to-shop, 
#checkout-page-main #back-to-shop {
	margin-left: 3.25em;
}

#back-to-shop:link,
#back-to-shop:visited,
#back-to-shop:active,
#back-to-shop:hover {
	color: black;
}

#back-to-shop::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: hsl(41,63%,42%);
	opacity: 0;
	transition: opacity 0.1s; 
}

#product-page-feature-description {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	color: black;
}

#product-page-feature-description > p {
	font-size: 18px;
	white-space: pre-line;	
}

#product-page-variant-options {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.product-page-variant-radio-box {
	border: none;
	font-size: 1.375em;
	font-weight: 600;
	display: inline-flex;
	flex-wrap: wrap;
	padding: 0;
	margin: 0 0 1em 0;
}

label.for-product-page-variant-radio-box {
	font-size: 20px;
	font-weight: 600;
	margin: 1em 0 0.25em 0;
	align-self: flex-start;
}

.product-page-variant-radio-box label:not(:first-child) {
	width: 2.5em;
	height: 2.5em;
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	border: 1px solid black;
	background: white;
	cursor: pointer;
	position: relative; 
}

.product-page-variant-radio-box label:not(:first-child)::after {
	content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: hsl(41, 63%, 42%);
    opacity: 0;
    transition: opacity 0.1s;
}

.product-page-variant-radio-box label:not(:first-child):hover::after {
	opacity: 0.2
}

.product-page-variant-radio-box input:checked + label {
	background: black;
	color: white;
}

.product-page-variant-radio-box input:checked + label:hover::after {
	opacity: 0;
}

#product-page-add-to-cart-button-box {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	align-self: flex-end;
}

#product-page-add-to-cart-button {
	background: black;
	border: none;
	color: white;
	font-weight: bold;
	font-size: 1.125em;
	padding: 0.75em 1.25em;
	border-radius: 3px;
	cursor: pointer;
	font-family: inherit;
}

#product-page-price {
	font-size: 1.125em;
	font-weight: 550;
	padding: 0 1em;
	margin: auto;
}

.add-to-cart-notif {
	opacity: 0;
	transition: opacity 0.3s ease;
	margin: 0.75em 0;	
	position: relative;
	padding: 0.125em 0.25em;
	font-size: 1.125em;
	cursor: pointer;
	align-self: flex-end;
}


.add-to-cart-notif::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: hsl(41,63%,42%);
	opacity: 0;
	transition: opacity 0.1s;
	z-index: -1; 
}


#product-page-add-to-cart-button-box.show-checkout + .add-to-cart-notif {
	opacity: 1;
}

.add-to-cart-notif a:link,
.add-to-cart-notif a:visited,
.add-to-cart-notif a:hover,
.add-to-cart-notif a:active {
	color: black;
}

#cart-page-main,
#t-and-c-page-main,
#checkout-page-main, 
#confirmation-page-main,
#tips-page-main {
	align-items: center;
}

#cart-page-list {
	list-style-type: none;
	padding: 4em 6em;
	border-radius: 3px;
	background: hsla(41,64%,42%,0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	border: 1px solid hsla(41,64%,22%,0.2);
}

#cart-page-list:empty::before {
	content: "add something to your cart"
}

#cart-page-list:empty + a {
	opacity: 0;
} 

#cart-page-list li {
	display: flex;
	align-items: center;
	grid-gap: 2em;
	padding: 0.75em 1.5em;
	border-top: 1px solid hsla(41,64%,22%,0.2);
	width: 100%;
	justify-content: space-between;
}

#cart-page-list li:last-of-type {
	border-bottom: 1px solid hsla(41,64%,22%,0.2);
}

#cart-page-proceed-to-checkout-button:link ,
#cart-page-proceed-to-checkout-button:visited ,
#cart-page-proceed-to-checkout-button:active ,
#cart-page-proceed-to-checkout-button:hover {
	text-decoration: none;
	color: white;
}

#cart-page-proceed-to-checkout-button {
	padding: 1em 2em;
	background: black;
	font-weight: bold;
	font-size: 1em;
	border-radius: 3px;
	margin-top: 3em;
	opacity: 1;
	transition: opacity 0.2s;
	color: white;
	font-family: "Lora", serif;
}

#checkout-page-main > section, 
#confirmation-page-main > section,
#tips-page-main > section {
	display: flex;
	flex-direction: column;
	background: hsla(41,64%,42%,0.1);
	border: 1px solid hsla(41,64%,22%,0.2);
	align-items: stretch;
	padding: 3em 6em;
	width: 30em;
	max-width: 100%;
	margin-top: 2em;
	border-radius: 4px;
}

#tips-page-main > section {
	background: none;
	border: none;
}

#checkout-page-main > section h3,
#confirmation-page-main > section h3, 
#tips-page-main > section h3 {
	text-align: center;
	margin-bottom: 3em;
}	

#checkout-page-main fieldset, 
#tips-page-main fieldset {
	border: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

#tips-page-main fieldset {
	flex-direction: unset;
}

#checkout-page-main .checkout-input-inline {
	margin-top: 1.25em;
}

#checkout-page-main input[type='text'], 
#checkout-page-main input[type='email'], 
#checkout-page-main select {
	padding: 1.25em 0.75em 0.75em 0.75em;
	padding-top: 2em;
	border: 1px solid hsla(41,64%,22%,0.2);
	border-radius: 3px;
	margin-top: 2em;
}

#checkout-page-main input[type='text'] + label,
#checkout-page-main input[type='email'] + label,
#checkout-page-main select + label {
	position: relative;
	height: 0;
}

#checkout-page-main input[type='text'] + label span,
#checkout-page-main input[type='email'] + label span,
#checkout-page-main select + label span {
	position: absolute;
	top: -3.25em;
	left: 0.75em;
	opacity: 0.7;
}

#shipping-address-input2 {
	margin-top: 1.5em;
}

#cc-number-input {
	position: relative;
}

#cc-number-input + label::after {
	content: "";
	display: flex;
	position: absolute;
	height: 16px;
	width: 16px;
	background-image: url(/img/lock-32.png);
	background-size: contain;
	right: 1em;
	top: -2.25em;
}

#card-misc-numbers {
	display: flex;
	align-items: flex-end;
}

#card-misc-numbers input {
	width: 5em;
}

#cc-exp-slash {
	align-self: center;
	padding: 0.5em;
}

#card-misc-numbers input[type='text'] + label span {
	left: -5.25em;
}

#cc-csc-input {
	margin-left: auto;
}

#cc-csc-input + label {
	margin-right: auto;
}

#shipping-detail {
	padding: 0.125em;
	display: flex;
	transition: opacity 0.3s;
	background: whitesmoke;
	font-family: monospace;
	margin: 1em 0 1em 0.25em;
}

#shipping-detail:empty {
	opacity: 0;
}

fieldset#tips-amounts {
	grid-gap: 1.75em;
	flex-wrap: wrap;
	width: 420px;
	max-width: 100%;
	justify-content: center;
	margin:auto;
}

fieldset#tips-ack {
	display: flex;
	align-items: baseline;
	grid-gap: 0.5em;
	margin-top: 1em;
}

fieldset#tips-ack input {
	transform: translateY(3px); 
}

#tips-amounts label {
	width: 4em;
	height: 4.5em;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 2px solid #96b894;
	border-radius: 16px;
	color: #11290f;
	font-size: 1.5em;
	background-color: #d7ecd5;
	transition: background-color 0.2s cubic-bezier(0, 0, 0.1, 1.07);
	cursor: pointer;
	position: relative;
}

#tips-amounts label > span:first-child {
	font-weight: 600;
}

#tips-amounts label > span:last-child {
	position: absolute;
	bottom: 0.5em;
	font-size: 0.75em;
}

#tips-amounts input:checked + label {
	border: 2px solid #11290f;
	color: #eaf7e9;
	background-color: #11290f;
	
}

#dialog-edit-custom[open] {
	display: flex;
	flex-direction: column;
	background-color: #11290f;
	color: white;
	padding: 4em 8em;
	border: 2px solid #96b894;
	border-radius: 16px;
}

#dialog-edit-custom::backdrop {
	backdrop-filter: blur(10px);
}

#custom-input-box {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: white;
	font-family: "Lora";
	padding: 4em;
	border-radius: 8px;
	font-size: 24px;
	font-weight: 600;
}

#dialog-edit-custom input[type=text] {
	text-align: right;
	background: none;
	color: white;
	font-family: "Lora";
	border: none;
	font-size: 24px;
	font-weight: 600;
	border-bottom: 2px solid white;
}

#dialog-edit-custom input[type=text]:focus {
	outline: none;
}

#custom-button-row {
	display: flex;
	justify-content: space-between;
	align-items:baseline; 
}

#custom-button-row input {
	color: white;
	font-family: "Lora";
	text-decoration: underline;
	padding: 0;
	border: none;
	background: none;
	font-size: 16px;
	cursor: pointer;
}

#custom-button-row input:first-child {
	font-size: 20px;
}

#checkout-page-cart, 
#confirmation-page-cart {
	list-style-type: none;
	padding: 0;
}

#checkout-page-cart li,
#confirmation-page-cart li {
	display: flex;
	align-items: center;
	padding: 0.5em;
	grid-gap: 0.5em;
	border-bottom: 1px solid hsla(41,64%,22%,0.2);
}

#checkout-page-cart li span:last-child,
#confirmation-page-cart li span:last-child {
	margin-left: auto;
	font-weight: 600;
}

#checkout-page-final-order-summary p, 
#confirmation-page-order-summary p {
	margin: 0.125em 0;
	display: inline;
	margin-left: auto;
}

#checkout-page-final-order-summary p span, 
#confirmation-page-order-summary p span {
	font-weight: 600;
	margin-left: 1em;
	margin-right: 0.5em;
	display: inline-block;
	min-width: 2.75em;
	text-align: right;
}

#checkout-button {
	padding: 1em 5em;
	background: black;
	font-weight: bold;
	font-size: 1.125em;
	border-radius: 3px;
	margin-top: 3em;
	opacity: 1;
	transition: opacity 0.2s;
	color: white;
	font-family: "Lora", serif;
	border: none;
	cursor: pointer;
	position: relative;
}

#checkout-button:disabled {
	opacity: 0.9;
	cursor: unset;
	color: black;
}

#checkout-button + span {
	display: none;
	transform: translate(0,-2.75em);
	filter: invert(1);
	height: 0;
	position: relative;
}

#checkout-button:disabled + span {
	display: flex;	
}

#checkout-button + span::after {
	content: "";
	background-image: url("/img/w-footer.png");
	background-size: contain;
	height: 32px;
	width: 32px;
	animation: waiting 2s infinite;
	position: absolute;
	left: -0.5em;
}

#checkout-payment-error-message {
	text-align: center;
	color: red;
	opacity: 1;
	transition: opacity 0.2s;
}

#checkout-payment-error-message:empty {
	opacity: 0;
}

#confirmation-order-details {
	grid-gap: 1em;
}

#confirmation-order-details > section {
	display: flex;
	flex-direction: column;
}

#confirmation-page-order-summary + p {
	text-align: center;
	font-size: 1.25em;
	font-weight: 700;
	margin-top: 3em;
}

#product-page-admin {
	margin-top: 20em;
	border-top: 3px solid;
	padding-top: 10em;
	display: flex;
	flex-direction: column;
	grid-gap: 3em;	
}

#product-page-admin fieldset {
	border: 0;
	padding: 0;
	margin: 0;
	display: contents;
}

#product-page-depictions-admin {
	display: flex;
}

#product-page-depictions-admin > span {
	display: flex;
	flex-direction: column;	
}

#catalog-page-product-browser {
	display: flex;
	flex-direction: column;
	align-self: stretch;
}

#catalog-page-group-by-options {
	border: none;
	padding: 0;
	margin: 0;
	display: flex;
	grid-gap: 1em;
	align-items: baseline;	
}

#catalog-page-group-by-options label {
	font-weight: 650;
	font-size: 1.125em;
	cursor: pointer;
}

#catalog-page-group-by-options label:hover {
	background: var(--lightbg);
}

#catalog-page-group-by-options input:checked + label {
	border-bottom: 2px solid var(--offblack);
}
.catalog-page-category-section {
	margin: 2em 0;
}
.catalog-page-category-section h3 {
	margin: 2em 0;
}
.catalog-page-category-section ul {
	padding: 2em;
	list-style-type: none;
	display: flex;
	flex-direction: column;
	grid-gap: 1em;
	background: var(--lightbg);	
}
.catalog-product-tile, .catalog-product-tile a {
	display: flex;
}
.catalog-product-tile {
	transition: transform 0.2s;
	border-radius: 2px;	
	background: white;		
}
.catalog-product-tile a {
	grid-gap: 2em;
	padding: 0 1.5em;				
}
.catalog-product-tile a:link, .catalog-product-tile a:visited,
.catalog-product-tile a:active, .catalog-product-tile a:hover {
	color: black;
	text-decoration: none;			
}
.catalog-product-tile a > section {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.catalog-product-tile-name {
	font-size: 1.25em;			
}

.catalog-product-tile-price {
	font-size: 1.125em;
}

#catalog-page-admin ul {
	display: flex;
	flex-direction: column;
	list-style-type: none;
	grid-gap: 1em;	
}	

#catalog-page-admin li {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	grid-gap: 0.5em;
}

#catalog-page-admin li a {
	width: 100%;
}

.red {
	color: red;
	font-weight: bold;
}

#t-and-c-page-main > section {
	max-width: 720px;
	text-align: center;
}

@keyframes fadeup {
	0% {
		opacity: 0.5;	
	}	50% {
		opacity: 0.9;
	}	100% {
		opacity: 1;	
	}
}

@keyframes fadeout {
	0% {
		opacity: 1	
	} 100% {
		opacity: 0;	
	}
}

@keyframes waiting {
	0% {
		opacity: 1;
	}	50% {
		opacity: 0.3;
	}	100% {
		opacity: 1;	
	}
}

@media only screen and (min-width:1200px) {
	.product-tile:hover a, .catalog-product-tile:hover a {
		box-shadow: 2.2px 4.4px 4.4px hsl(41deg 63% 42% / 0.23),
					-2.2px 4.4px 4.4px hsl(0deg 0% 0% / 0.13),
					-0.2px -0.4px 2.4px hsl(0deg 0% 0% / 0.13),
					0.2px -0.4px 2.4px hsl(0deg 0% 0% / 0.13);
		transform: scale(1.002,1.002);
		transform-origin: center;			
	}
	#back-to-shop:hover::after,
	.add-to-cart-notif:hover::before {
		opacity: 0.1;
	}
}

@media only screen and (max-width:1100px) {
	#product-page-above-fold {
		flex-direction: column-reverse;
		grid-gap: 4em;
		margin-top: 2em;
		align-items: center;
	}
	#product-page-image-gallery {
		grid-gap: 1em;
		flex-direction: column-reverse;	
	}
	#product-page-image-gallery fieldset {
		flex-direction: row;
	}
	
	footer ul {
		flex-direction: column;
		grid-gap: 0.25em;	
	}	
}

@media only screen and (max-width:500px) {
	#cart-page-list {
		width: 100%;		
		max-width: 100%;
		padding-left: 1em;	
		padding-right: 1em;	
	}

	#default-page-header, footer {
		padding: 0.5em;	
	}
	#product-page-main > *,
	#catalog-page-main > *  {
		margin: 0 0.5em;
	}
	#catalog-page-product-browser {
		margin: 0;	
	}
	#catalog-page-group-by-options,
	.catalog-page-category-section > header {
		margin: 0 0.5em;	
	}
	.catalog-page-category-section ul {
		padding: 2em 0;
		background: none;	
	}
	.catalog-product-tile a {
		flex-direction: column;
		padding-left: 0;
		padding-right: 0;
		align-items: center;	
	}
	.catalog-product-tile a > section {
		padding: 0 0.5em;
		align-items: center;
		text-align: center;
	}
	#cart-page-main #back-to-shop, 
	#checkout-page-main #back-to-shop {
		margin-left: 0.25em;	
	}
	#product-page-above-fold {
		margin: 0;
		align-items: unset;	
	}
	#product-page-image-gallery {
		justify-content: unset;
	}
	#product-page-image-gallery .image-stack {
		max-height: 100vw;	
	}
	#product-page-image-gallery .image-stack img {
		max-width: 100%;
		height: auto;	
	}
	#product-page-image-gallery fieldset img {
		max-width: 30vw;
		height: auto;	
	}
	#product-page-feature-description {
		margin: 0 0.5em;	
	}
	.product-tile {
		max-width: 100%;	
	}
	.product-tile img {
		max-width: 100%;
		height: auto;
	}
	.product-tile a {
		padding: 1.5em 0; 	
	}
	#checkout-page-main > section, 
	#confirmation-page-main > section,
	#tips-page-main > section { 
		padding: 3em 0;	
		border: none;
		margin-top: 0;
		background-color: none;
	}
	fieldset#tips-amounts {
		width: 350px;
		grid-gap: 3em;
	}
	fieldset#tips-amounts label {
		cursor: unset;	
	}
	#dialog-edit-custom[open] {
		padding: 4em 2em;	
	}
	#checkout-page-main fieldset {
		margin: 0;
	}
	
	#cart-page-main h2,
	#checkout-page-main h2,
	#confirmation-page-main h2 {
		margin-top: 3em;	
	}	
}

.my-config {
  --darkmode: 1;
  --h-accent: 223;
  --s-accent: 100%;
  --l-accent: 61%;
}




