/* body {
	font-family: monospace;
	font-size: 12pt;
	font-weight: 400;
	line-height: 140%;
	background-color: #111;
	color: #c0ffbd;
}
* {
	font-size: 12pt;
	background-color: #111;
	color: #9ef999;
}
img {
	filter: contrast(1000%) opacity(.05) saturate(0%);
	max-width: 100%;
	height: auto;
} */

dialog[open] {
	position: fixed;
	left: auto;
	margin: 0;
	height: 100dvh;
	/* animation: toasty 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55); */
}
dialog::backdrop {
	--webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	background-color: #3333;
}



body {
	font-size: 18px;
	font-family: "Figtree", serif;
	font-optical-sizing: auto;
	font-weight: 450;
	font-style: normal;
	line-height: 140%;
	color: #444;
	letter-spacing: -.01em;
}

h1, h2, h3, h4, h5, b, strong {
	font-family: "Figtree", serif;
	font-optical-sizing: auto;
	font-weight: 700;
	letter-spacing: -.01em;
	color: #222;
}

h1 {
	font-family: Georgia,times new roman,Times,serif;
	font-size: 2.75rem;
	line-height: 110%;
	letter-spacing: -.044em;
	margin: 0;
	padding-block: .5em;
}

.Cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	grid-gap: 1rem;
	}
@media screen and (max-width: 620px) {
	.Cards {
		grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
	}
}
.Cards .Card {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr auto;
	/* grid-gap: 1rem; */
	}
/* .Cards .Card  a {
	display: block;
	} */
.Cards .Card .Card__Thumbnail {
	display: block;
	width: 100%;
	height: auto;
	}



.ProductPage {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 2rem;
}
.ProductPage > picture {
	grid-row: 1/2;
}
@media screen and (min-width: 768px) {
	.ProductPage {
		grid-template-columns: 2fr 1fr;
		grid-gap: 2rem;
		position: relative;
	}
	.ProductPage > picture {
		grid-column: 1/2;
		position:sticky;
		top:0px;
		align-self:start;
	}
	.ProductPage > article {
		grid-column: 2/3;
		position: sticky;
		top: 0;
		align-self: start;
		padding-block: 1rem;
	}
}
.ProductPage > figure {
	margin: 0;
	padding: 0;
	}
.ProductPage > figure > img {
	width: 100%;
	height: auto;
	}
.ProductPage > picture * {
	width: 100%;
	height: auto;
	}




.Buyability {
	display: inline-flex;
	/* padding-inline: .75em; */
	}
.Buyability > * {
	appearance: none;
	font: inherit;
	background: transparent;
	border: none;
	padding: .25em 1em;
	border: 1px solid #0005;
	border-radius: 5px;
	}
.Buyability > *:last-child {
	/* flex-grow: 1; */
	text-align: center
	}
.Buyability > *:not(:first-child) {
	border-left: none;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	}
.Buyability > *:not(:last-child) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	}
.Buyability > * strong {
	display: inline-block;
	min-width: 2ch;
	text-align: right;
	}
