@font-face{
	font-family: broadsheet_italic;
	src: url("./assets/fonts/Broadsheet_Italic.ttf");
}
@font-face{
	font-family: "P22 1722 Swash";
	src: url("./assets/fonts/P221722Swash.otf") format("opentype");
	font-weight: normal;
	font-style: normal;
}
@font-face{
	font-family: "P22 1722 Small Caps";
	src: url("./assets/fonts/P221722SmallCaps.otf") format("opentype");
	font-weight: normal;
	font-style: normal;
}
@font-face{
	font-family: "P22 1722 Italic";
	src: url("./assets/fonts/P221722Italic.ttf") format("truetype");
	font-weight: normal;
	font-style: italic;
}
:root {
	--color-french-blue-200: #D1DBE6;
	--color-french-blue-300: #A8BBD1;
	--color-french-blue-400: #7997B7;
	--color-french-blue-500: #56779A;
	--color-french-blue-600: #456284;
	--color-french-blue-700: #394F6B;
	--color-french-blue: var(--color-french-blue-500);

	--color-ivry-gold-200: #E9E6E2;
	--color-ivry-gold-300: #D9D6CE;
	--color-ivry-gold-400: #BCB7AB;
	--color-ivry-gold-500: #7E7766;
	--color-ivry-gold-600: #5C5949;
	--color-ivry-gold: var(--color-ivry-gold-400);
	--color-ivry-gold-transparent: #BCB7AB66;

	--color-pale-sky-100: #E4EDF5;
	--color-pale-sky-200: #C2D7E9;
	--color-pale-sky-300: #AECBE2;
	--color-pale-sky-400: #88B0D2;
	--color-pale-sky-500: #6B96C6;
	--color-pale-sky: var(--color-pale-sky-200);

	--color-iron-grey-400: #A1A5A2;
	--color-iron-grey-500: #707471;
	--color-iron-grey-600: #515452;
	--color-iron-grey-700: #424543;
	--color-iron-grey-800: #262726;
	--color-iron-grey: var(--color-iron-grey-700);
	--color-iron-grey-transparent: #424543AA;

	--color-slate-grey: #67747A;
	--color-slate-grey-transparent: #67747AAA;

	--color-jet-blue-700: #31596D;
	--color-jet-blue-800: #2F4B5B;
	--color-jet-blue-900: #263945;
	--color-jet-blue: var(--color-jet-blue-900);

	--color-cream: #EEEAD9;
	--color-ink: #161616;

	--text-color: rgba(0, 0, 0, 1);
	--tag-color: rgba(0, 0, 0, 0);
	--text-border: rgba(255, 255, 255, 0.8);
	--bgColor-default: rgba(0, 0, 0, 0);
	--bgColor-modal: rgba(0, 0, 0, 0.2);
	--bgColor-modalVeil: rgba(0, 0, 0, 0.4);
	--borderColor-default: rgba(0, 0, 0, 0.2);
	--color-alt: rgba(255, 255, 255, 1.0);
	--bgColor-alt: rgba(100, 100, 100, 0.3);
	--color-icon: rgba(100, 0, 0, 0.2);
	--color-default: rgba(255, 255, 255, 1.0);
}
body {
	margin: 0;
	font-family: 'broadsheet_italic;';
	background: black;
	overflow-x: hidden;
	width: 100vw;
	height: auto;
}
video {
	object-fit: cover;
}
@media screen and (orientation: portrait){
	.foreground{
		position: relative;
		left: 0;
		top: 0;
		background: rgba(0, 0, 0, 0);
		color: #f1f1f1;
		width: 95vw;
		height: 100%;
		display: grid;
		align-content: center;
		margin-left: auto;
		margin-right: auto;
	}
	.videoContainer
	{
		position: fixed;
		height:100%;
		width:auto;
	}
	.videoContainer video
	{
		display: grid;
		height: 100%;
		width: stretch;
		max-width: 100%;
		max-height: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.tagline{
		margin: auto;
		font-style: italic;
		color: var(--tag-color);
		font-size: 4vh;
		-webkit-text-stroke: 1px var(--text-border);
		text-align: center;
	}
	.products{
		display: grid;
		justify-content: center;
		align-items: center;
		align-content: center;
		align-self: center;
		grid-template-rows: 50vh;
		grid-auto-rows: 50vh;
		grid-template-columns: repeat(auto-fit, minmax(40vh, 1fr));
		gap: 1vh;
		row-gap: 0;
		margin-left: auto;
		margin-right: auto;
		width: 80vw;
	}
	.productItem{
		border: 3px solid rgba(100, 200, 100, 0.1);
		border-radius: 5%;
		background-color: rgba(50,100,50,0.02);
		display: grid;
		grid-column: 100%;
		align-items: center;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	.productNames{
		font-family: 'broadsheet_italic';
		color: var(--text-color);
		background: rgba(50, 200, 50, 0.1);
		border: 0.2vh solid rgba(120, 120, 120, 0.3);
		border-radius: 1vh;
		margin-top: 1vh;
		margin-left: 3vh;
		margin-right: 3vh;
	}
	.productImages{
		width: 80%;
		height: auto;
		margin-top: 0vh;
		margin-left: auto;
		margin-right: auto;
	}
	.productButton{
		margin-left: auto;
		margin-right: auto;
		margin-top: 1vh;
		margin-bottom: 2vh;
	}
	.headImage{
		width: 80vw;
		height: auto;
		margin-left: 10%;
	}
	.headImageIcon{
		height: auto;
		width: 20vw;
		margin-left: auto;
        margin-right: auto;
        padding-left: 1%;
	}
	.images{
		display: grid;
		margin-left:auto;
		margin-right:auto;
		margin-top: 5vh;
	}
}
@media screen and (orientation: landscape){
	.foreground{
		position: relative;
		left: 0;
		top: 0;
		background: rgba(0, 0, 0, 0);
		color: #f1f1f1;
		width: 90vw;
		height: 100%;
		display: grid;
		align-content: center;
		margin-left: auto;
		margin-right: auto;
	}
	.videoContainer
	{
		position: fixed;
		height:auto;
		width:100vw;
	}
	.videoContainer video
	{
		display: grid;
		height: 125%;
		width: stretch;
		max-width: 100%;
		max-height: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.tagline{
		margin: auto;
		font-style: italic;
		color: var(--tag-color);
		font-size: 5vh;
		-webkit-text-stroke: 1px var(--text-border);
	}
	.products{
		display: grid;
		justify-content: center;
		align-items: center;
		align-content: center;
		grid-template-rows: 40vh;
		grid-auto-rows: 40vh;
		grid-template-columns: repeat(auto-fit, minmax(30vh, 1fr));
		gap: 5vh;
		margin-left: auto;
		margin-right: auto;
	}
	.productItem{
		border: 3px solid rgba(100, 200, 100, 0.1);
		border-radius: 5%;
		background-color: rgba(50,100,50,0.02);
		display: grid;
		grid-column: 100%;
		align-items: center;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	.productNames{
		font-family: 'broadsheet_italic';
		color: var(--text-color);
		background: rgba(50, 200, 50, 0.1);
		border: 0.2vh solid rgba(120, 120, 120, 0.3);
		border-radius: 1vh;
		margin-top: 1vh;
		margin-left: 3vh;
		margin-right: 3vh;
	}
	.productImages{
		width: 80%;
		height: auto;
		margin-top: 0vh;
		margin-left: auto;
		margin-right: auto;
	}
	.productButton{
		margin-left: auto;
		margin-right: auto;
		margin-top: 1vh;
		margin-bottom: 2vh;
	}
	.headImage{
		width: auto;
		height: 40vh;
		margin-left: 10%;
	}
	.headImageIcon{
		width: 10vw;
		height: auto;
		margin-left: auto;
        margin-right: auto;
        padding-left: 1%;
	}
	.images{
		display: grid;
		margin-left:auto;
		margin-right:auto;
		margin-top: auto;
	}
}
@media screen and (orientation: landscape) and (min-aspect-ratio: 15/16) and (max-aspect-ratio: 2/1){	
	.foreground{
		position: relative;
		left: 0;
		top: 0;
		background: rgba(0, 0, 0, 0);
		color: #f1f1f1;
		width: 90vw;
		height: 100%;
		display: grid;
		align-content: center;
		margin-left: auto;
		margin-right: auto;
	}
	.videoContainer
	{
		position: fixed;
		height:120vh;
		width:120vw;
	}
	.videoContainer video
	{
		display: grid;
		height: 125%;
		width: stretch;
		max-width: 100%;
		max-height: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.tagline{
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 0vh;
		font-style: italic;
		color: var(--tag-color);
		font-size: 5vh;
		-webkit-text-stroke: 1px var(--text-border);
	}
	.products{
		display: grid;
		justify-content: center;
		align-items: center;
		align-content: center;
		grid-template-rows: 80vh;
		grid-auto-rows: 80vh;
		grid-template-columns: repeat(auto-fit, minmax(60vh, 1fr));
		gap: 5vh;
		margin-left: auto;
		margin-right: auto;
		margin-top: 0vh;
	}
	.productItem{
		border: 3px solid rgba(100, 200, 100, 0.1);
		border-radius: 5%;
		background-color: rgba(50,100,50,0.02);
		display: grid;
		grid-column: 90%;
		align-items: center;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	.productNames{
		font-family: 'broadsheet_italic';
		color: var(--text-color);
		background: rgba(50, 200, 50, 0.1);
		border: 0.2vh solid rgba(120, 120, 120, 0.3);
		border-radius: 1vh;
		margin-top: 1vh;
		margin-left: 3vh;
		margin-right: 3vh;
	}
	.productImages{
		width: 80%;
		height: auto;
		margin-top: 0vh;
		margin-left: auto;
		margin-right: auto;
	}
	.productButton{
		margin-left: auto;
		margin-right: auto;
		margin-top: 1vh;
		margin-bottom: 2vh;
	}
	.headImage{
		width: 30vw;
		height: auto;
		margin-left: 10%;
	}
	.headImageIcon{
		width: 10vw;
		height: auto;
		margin-left: auto;
        margin-right: auto;
        padding-left: 1%;
	}
	.images{
		display: grid;
		margin-left:auto;
		margin-right:auto;
		margin-top: 5vh;
	}
}
@media screen (orientation: landscape) and (min-width: 1200px){	
	.foreground{
		position: relative;
		left: 0;
		top: 0;
		background: rgba(0, 0, 0, 0);
		color: #f1f1f1;
		width: 90vw;
		height: 100%;
		display: grid;
		align-content: center;
		margin-left: auto;
		margin-right: auto;
	}
	.videoContainer
	{
		position: fixed;
		height:auto;
		width:3000px;
	}
	.videoContainer video
	{
		display: grid;
		height: stretch;
		width: 120vw;
		max-width: 100%;
		max-height: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	.tagline{
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 0vh;
		font-style: italic;
		color: var(--tag-color);
		font-size: 5vh;
		-webkit-text-stroke: 1px var(--text-border);
	}
	.products{
		display: grid;
		justify-content: center;
		align-items: center;
		align-content: center;
		grid-template-rows: 80vh;
		grid-auto-rows: 80vh;
		grid-template-columns: repeat(auto-fit, minmax(60vh, 1fr));
		gap: 5vh;
		margin-left: auto;
		margin-right: auto;
		margin-top: 0vh;
	}
	.productItem{
		border: 3px solid rgba(100, 200, 100, 0.1);
		border-radius: 5%;
		background-color: rgba(50,100,50,0.02);
		display: grid;
		grid-column: 90%;
		align-items: center;
		justify-content: center;
		text-align: center;
	}
	.productNames{
		font-family: 'broadsheet_italic';
		color: var(--text-color);
		background: rgba(50, 200, 50, 0.1);
		border: 0.2vh solid rgba(120, 120, 120, 0.3);
		border-radius: 1vh;
		margin-top: 1vh;
		margin-left: 3vh;
		margin-right: 3vh;
	}
	.productImages{
		width: 80%;
		height: auto;
		margin-top: 0vh;
		margin-left: auto;
		margin-right: auto;
	}
	.productButton{
		margin-left: auto;
		margin-right: auto;
		margin-top: 1vh;
		margin-bottom: 2vh;
	}
	.headImage{
		width: 30vw;
		height: auto;
		margin-left: 10%;
	}
	.headImageIcon{
		width: 10vw;
		height: auto;
		margin-left: auto;
        margin-right: auto;
        padding-left: 1%;
	}
	.images{
		display: grid;
		margin-left:auto;
		margin-right:auto;
		margin-top: 5vh;
	}
}
.center {
	display: flex;
	justify-content: center;
	align-items: center;
}
.center.headImage {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 50%;
}
.tagline {
	font-family: "P22 1722 Swash", Georgia, serif;
	font-style: normal;
	color: var(--color-cream);
}
.svg-filters {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}
.productCarosel{
	max-width: 100vw;
	width: 100%;
	overflow: hidden;
}
.mainImage{
	max-width: 100vw;
	width: 100%;
	overflow: hidden;
}

.btn-primary {
	--btn-primary-ratio: 691 / 244;
	--btn-primary-pad-x: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	margin: 0;
	padding: 0 var(--btn-primary-pad-x);
	border: 0;
	appearance: none;
	-webkit-appearance: none;
	color: #1a1a1a;
	font-family: broadsheet_italic, Georgia, serif;
	font-size: inherit;
	font-weight: normal;
	line-height: 1;
	white-space: nowrap;
	text-align: center;
	cursor: pointer;
	background-color: transparent;
	background-image: url("./assets/ui/cloud-button.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	width: fit-content;
	min-width: calc(3.5em * var(--btn-primary-ratio));
	aspect-ratio: var(--btn-primary-ratio);
	height: auto;
	transition: filter 0.35s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible {
	filter: brightness(1.06);
	animation: btn-primary-float 2.2s ease-in-out infinite;
}

.btn-primary:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.85);
	outline-offset: 4px;
}

#mc_embed_signup #mc-embedded-subscribe.btn-primary {
	display: flex;
	background-color: transparent;
	height: auto;
	min-height: 0;
	width: fit-content;
	margin: 1.5vh auto 0;
	padding: 0 var(--btn-primary-pad-x);
}

.btn-secondary {
	--btn-secondary-bg: var(--color-cream);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 0.58em 1.7em;
	border: 0;
	border-radius: 999px;
	appearance: none;
	-webkit-appearance: none;
	color: var(--color-ink);
	background-color: var(--btn-secondary-bg);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.55'/%3E%3C/svg%3E");
	background-size: 140px 140px;
	background-blend-mode: multiply;
	font-family: broadsheet_italic, Georgia, serif;
	font-style: italic;
	font-size: inherit;
	font-weight: normal;
	line-height: 1.1;
	letter-spacing: 0.01em;
	white-space: nowrap;
	text-align: center;
	cursor: pointer;
	position: relative;
	isolation: isolate;
	box-shadow:
		0 0 0 1px #111,
		0 0 0 3px rgba(17, 17, 17, 0.28),
		inset 0 0 0 1px rgba(17, 17, 17, 0.45);
	filter: url("#btn-secondary-rough");
}

.btn-secondary::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	box-shadow: inset 0 0 8px 2px rgba(0, 0, 0, 0.28);
	opacity: 0.55;
	mix-blend-mode: multiply;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
	filter: url("#btn-secondary-rough") brightness(0.97);
}

.btn-secondary:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.85);
	outline-offset: 4px;
}

button.btn-secondary.productButton {
	width: 80%;
	max-width: 14em;
}

@property --drift {
	syntax: "<length-percentage>";
	inherits: false;
	initial-value: 0px;
}

.foreground > .images,
.foreground > #mc_embed_shell {
	position: relative;
	z-index: 1;
}

.giveaway-clouds {
	position: absolute;
	z-index: 0;
	left: 0;
	right: 0;
	top: 56%;
	width: 100%;
	height: 0;
	transform: translateY(-50%);
	pointer-events: none;
}

.giveaway-cloud {
	position: absolute;
	top: 50%;
	height: auto;
	max-width: none;
	pointer-events: none;
	user-select: none;
	--drift: 0px;
	--flip: 1;
	--ox: -50%;
	--oy: -50%;
	transform: translate(var(--ox), var(--oy)) translateX(var(--drift)) scaleX(var(--flip));
}

.giveaway-cloud--a {
	left: -22vw;
	width: min(340px, 38vw);
	opacity: 0.5;
	--flip: -1;
	--oy: -18%;
	animation: cloud-drift-right 22s ease-in-out infinite;
}

.giveaway-cloud--b {
	left: 108vw;
	width: min(470px, 52vw);
	opacity: 0.42;
	--flip: 1;
	--oy: -28%;
	animation: cloud-drift-left 29s ease-in-out infinite;
}

.giveaway-cloud--c {
	left: -12vw;
	width: min(610px, 68vw);
	opacity: 0.48;
	--flip: -1;
	--oy: -8%;
	animation: cloud-drift-right 34s ease-in-out infinite;
}

.giveaway-cloud--d {
	left: 96vw;
	width: min(760px, 84vw);
	opacity: 0.3;
	--flip: 1;
	--oy: -22%;
	animation: cloud-drift-left 41s ease-in-out infinite;
}

.giveaway-cloud--e {
	left: -32vw;
	width: min(900px, 100vw);
	opacity: 0.22;
	--flip: -1;
	--oy: 6%;
	animation: cloud-drift-right 48s ease-in-out infinite;
}

@keyframes cloud-drift-left {
	0%, 100% { --drift: 0vw; }
	50% { --drift: -36vw; }
}

@keyframes cloud-drift-right {
	0%, 100% { --drift: 0vw; }
	50% { --drift: 36vw; }
}

@keyframes btn-primary-float {
	0%, 100% { transform: translateY(-0.12em); }
	50% { transform: translateY(-0.42em); }
}

@media (prefers-reduced-motion: reduce) {
	.giveaway-cloud {
		animation: none;
	}

	.btn-primary:hover,
	.btn-primary:focus-visible {
		animation: none;
		transform: translateY(-0.18em);
	}
}

.giveaway-stack {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 6vh 4% 0;
	box-sizing: border-box;
}

.foreground .giveaway-stack {
	padding: 4% 4% 0;
}

.foreground > #mc_embed_shell {
	padding-bottom: 2%;
}

.giveaway-stack > h2,
.giveaway-stack > .mc-field-group {
	position: relative;
	z-index: 2;
	width: 100%;
}

#mc_embed_signup .giveaway-stack .mc-field-group {
	padding-bottom: 0;
	min-height: 0;
	margin-top: -0.4em;
}

#mc_embed_signup .giveaway-stack input.email {
	position: relative;
	z-index: 2;
	background-color: #f4f1e6;
}

.shop-page {
	--shop-image-height: clamp(210px, 18vw, 250px);
	--shop-featured-image-height: clamp(300px, 40vh, 440px);
}

.product-page {
	--shop-image-height: clamp(210px, 30vw, 400px);
	--shop-featured-image-height: clamp(300px, 40vh, 440px);
}

.shop-page > .images {
	margin-bottom: 4.5vh;
}

.shop-page > .tagline {
	margin-top: 2vh;
	margin-bottom: 3vh;
}

.shop-video-strip {
	width: 100vw;
	max-width: 100vw;
	margin: 0 0 5vh calc(50% - 50vw);
	overflow: hidden;
}

.shop-video-track {
	display: flex;
	width: max-content;
	animation: shop-video-scroll 48s linear infinite;
}

.shop-video-set {
	display: flex;
	align-items: stretch;
	gap: 2px;
	padding-right: 2px;
}

.shop-video-clip {
	display: block;
	flex: 0 0 auto;
	height: min(38vh, 360px);
	width: auto;
	max-width: none;
	object-fit: cover;
	background: #000;
}

@keyframes shop-video-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.shop-video-track {
		animation: none;
	}

	.shop-video-strip {
		overflow-x: auto;
	}
}

.shop-highlight {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.68fr);
	grid-template-rows: 1fr 1fr;
	gap: 3px;
	width: 100vw;
	max-width: 100vw;
	margin: 0 0 3px calc(50% - 50vw);
	aspect-ratio: 16 / 9;
	max-height: 78vh;
}

.shop-highlight-video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 18%;
	background: #000;
	min-width: 0;
	min-height: 0;
}

.shop-highlight-main {
	grid-column: 1;
	grid-row: 1 / -1;
}

.shop-highlight-girl {
	grid-column: 2;
	grid-row: 1;
}

.shop-highlight-boy {
	grid-column: 2;
	grid-row: 2;
}

.shop-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.62fr);
	gap: 2.4vw 3vw;
	align-items: start;
	width: min(1180px, 88vw);
	margin: 2vh auto 6vh;
}

.shop-featured {
	min-width: 0;
}

.shop-featured-image {
	width: auto !important;
	max-width: 100%;
	max-height: var(--shop-featured-image-height) !important;
	height: auto !important;
	display: block;
	object-fit: contain;
	object-position: center;
	margin: 0 auto;
}

.shop-featured-meta {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	margin-top: 2.1rem;
	font-family: "P22 1722 Swash", Georgia, serif;
	color: var(--color-ink);
	font-size: clamp(1.15rem, 2.4vw, 1.85rem);
	line-height: 1.15;
}

.shop-featured-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.45rem;
	min-width: 0;
}

.shop-featured-name {
	text-align: left;
	font-family: "P22 1722 Small Caps", "P22 1722 Swash", Georgia, serif;
	font-variant-caps: small-caps;
}

.shop-featured-desc {
	margin: 0;
	max-width: 28em;
	font-family: "P22 1722 Italic", "P22 1722 Swash", Georgia, serif;
	font-style: italic;
	font-size: 0.95rem;
	line-height: 1.35;
	color: var(--color-iron-grey-600);
	text-align: left;
}

.shop-featured-copy .shop-card-colors {
	margin-top: 0.2rem;
}

.shop-featured-price {
	text-align: right;
	flex-shrink: 0;
	font-size: clamp(1.7rem, 3.4vw, 2.7rem);
	line-height: 1;
}

.shop-featured .btn-primary {
	margin: 0.15rem 0 0;
	width: fit-content;
	font-size: 0.55em;
}

.shop-rail {
	display: flex;
	flex-direction: column;
	gap: 1.15rem;
}

.shop-card {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0 0 1.15rem;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	overflow: hidden;
	box-sizing: border-box;
}

.shop-card-image {
	width: auto !important;
	max-width: 100%;
	max-height: var(--shop-image-height) !important;
	height: auto !important;
	display: block;
	object-fit: contain;
	object-position: center;
	margin: 0 auto;
}

.shop-card-body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0.95rem 1.15rem 0;
	box-sizing: border-box;
}

.shop-card-heading {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0.8rem;
	width: 100%;
}

.shop-grid-card .shop-card-heading {
	min-height: calc(clamp(1.05rem, 1.7vw, 1.35rem) * 1.15 * 3);
}

.shop-card-name {
	margin: 0;
	font-family: "P22 1722 Small Caps", "P22 1722 Swash", Georgia, serif;
	font-style: normal;
	font-variant-caps: small-caps;
	color: var(--color-ink);
	font-size: clamp(1.05rem, 1.7vw, 1.35rem);
	text-align: left;
	line-height: 1.15;
	min-width: 0;
}

.shop-card-price {
	margin: 0;
	font-family: "P22 1722 Swash", Georgia, serif;
	font-style: normal;
	font-weight: normal;
	color: var(--color-ink);
	font-size: clamp(1.4rem, 2.4vw, 1.95rem);
	line-height: 1;
	text-align: right;
	flex-shrink: 0;
}

.shop-card-desc {
	margin: 0.4rem 0 0;
	font-family: "P22 1722 Italic", "P22 1722 Swash", Georgia, serif;
	font-style: italic;
	font-size: 0.9rem;
	line-height: 1.35;
	color: var(--color-iron-grey-600);
	text-align: left;
}

.shop-featured-desc,
.shop-card-desc {
	-webkit-text-stroke: 0.2px rgba(255, 255, 255, 0.7);
	paint-order: stroke fill;
	text-shadow:
		0 0 0.6px rgba(255, 255, 255, 0.55),
		0 0 2px rgba(255, 255, 255, 0.22);
	white-space: pre-line;
}

.shop-card-colors {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	margin-top: 0.75rem;
	width: 100%;
}

.shop-card-swatches {
	display: flex;
	align-items: center;
	gap: 0.42rem;
}

.shop-card-swatch {
	width: 0.88rem;
	height: 0.88rem;
	padding: 0;
	border: 1px solid rgba(22, 22, 22, 0.22);
	border-radius: 50%;
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	background-clip: padding-box;
}

.shop-card-swatch.is-selected {
	box-shadow: 0 0 0 2px var(--color-cream), 0 0 0 3px var(--color-ink);
}

.shop-card-color-name {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 0.68rem;
	font-weight: 300;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-ink);
}

.shop-card .btn-primary {
	width: fit-content;
	max-width: 100%;
	margin: 0.7rem 0 0;
	font-size: 0.85em;
}

.shop-categories {
	width: min(1180px, 88vw);
	margin: 8vh auto 50px;
	display: flex;
	flex-direction: column;
	gap: 5.5vh;
}

.shop-category {
	border: 1px solid rgba(255, 255, 255, 0.92);
	box-sizing: border-box;
}

.shop-category-header {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.95rem 1.15rem 0.9rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.92);
}

.shop-category-icon {
	width: 2.35rem;
	height: auto;
	display: block;
	flex-shrink: 0;
	filter:
		drop-shadow(0 0 0.6px rgba(255, 255, 255, 0.95))
		drop-shadow(0 0 2px rgba(255, 255, 255, 0.85))
		drop-shadow(0 0 6px rgba(255, 255, 255, 0.45));
}

.shop-category-title {
	margin: 0;
	font-family: "P22 1722 Italic", "P22 1722 Swash", Georgia, serif;
	font-style: italic;
	font-weight: normal;
	color: var(--color-iron-grey);
	font-size: clamp(1.55rem, 3vw, 2.35rem);
	line-height: 1;
}

.shop-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shop-grid-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.92);
	border-bottom: 1px solid rgba(255, 255, 255, 0.92);
	box-sizing: border-box;
}

.shop-grid-card:nth-child(4n) {
	border-right: 0;
}

.shop-grid-card-image {
	width: auto !important;
	max-width: 100%;
	max-height: var(--shop-image-height) !important;
	height: auto !important;
	display: block;
	object-fit: contain;
	object-position: center;
	margin: 0 auto;
}

.shop-featured .productCarosel,
.shop-card .productCarosel {
	position: relative;
	width: 100%;
	height: var(--shop-image-height);
}

.shop-featured .productCarosel {
	height: var(--shop-featured-image-height);
}

.shop-grid-card .productCarosel {
	position: relative;
	width: 92%;
	height: var(--shop-image-height);
	margin: 0.6rem auto 0.5rem;
}

.productCarosel .slick-list,
.productCarosel .slick-track,
.productCarosel .slick-slide,
.productCarosel .slick-slide > div {
	height: 100%;
}

.productCarosel .slick-track {
	display: flex;
	align-items: center;
}

.productCarosel .slick-slide {
	display: flex !important;
	align-items: center;
	justify-content: center;
}

.productCarosel .slick-slide > div {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.productCarosel .slick-slide img {
	width: auto !important;
	max-width: 100% !important;
	max-height: var(--shop-image-height) !important;
	height: auto !important;
	margin: 0 auto;
	object-fit: contain !important;
	object-position: center;
}

.shop-featured .productCarosel .slick-slide img {
	max-height: var(--shop-featured-image-height) !important;
}

.productCarosel .slick-prev,
.productCarosel .slick-next {
	width: 1.55rem;
	height: 1.85rem;
	z-index: 1;
	border-radius: 0;
	background: transparent;
}

.productCarosel .slick-prev:hover,
.productCarosel .slick-prev:focus,
.productCarosel .slick-next:hover,
.productCarosel .slick-next:focus {
	background: transparent;
}

.productCarosel .slick-prev {
	left: 0.2rem;
}

.productCarosel .slick-next {
	right: 0.2rem;
}

.productCarosel .slick-prev:before,
.productCarosel .slick-next:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	opacity: 1;
	font-size: 0;
	background-color: transparent;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M20.2 5.2 9.4 16l10.8 10.8 2.3-2.3L14 16l8.5-8.5-2.3-2.3z' fill='%23EEEAD9' stroke='%23424543' stroke-width='1.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.productCarosel .slick-next:before {
	transform: scaleX(-1);
}

.shop-featured .mainImage,
.shop-card .mainImage {
	position: relative;
	width: 100%;
	height: var(--shop-image-height);
}

.shop-featured .mainImage {
	height: var(--shop-featured-image-height);
}

.shop-grid-card .mainImage {
	position: relative;
	width: 92%;
	height: var(--shop-image-height);
	margin: 0.6rem auto 0.5rem;
}

.mainImage .slick-list,
.mainImage .slick-track,
.mainImage .slick-slide,
.mainImage .slick-slide > div {
	height: 100%;
}

.mainImage .slick-track {
	display: flex;
	align-items: center;
}

.mainImage .slick-slide {
	display: flex !important;
	align-items: center;
	justify-content: center;
}

.mainImage .slick-slide > div {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.mainImage .slick-slide img {
	width: auto !important;
	max-width: 100% !important;
	max-height: var(--shop-image-height) !important;
	height: auto !important;
	margin: 0 auto;
	object-fit: contain !important;
	object-position: center;
}

.shop-featured .mainImage .slick-slide img {
	max-height: var(--shop-featured-image-height) !important;
}

.mainImage .slick-prev,
.mainImage .slick-next {
	width: 1.55rem;
	height: 1.85rem;
	z-index: 1;
	border-radius: 0;
	background: transparent;
}

.mainImage .slick-prev:hover,
.mainImage .slick-prev:focus,
.mainImage .slick-next:hover,
.mainImage .slick-next:focus {
	background: transparent;
}

.mainImage .slick-prev {
	left: 30%;
	margin-left: auto;
}

.mainImage .slick-next {
	right: 30%;
	margin-right: auto;
}

.mainImage .slick-prev:before,
.mainImage .slick-next:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	opacity: 1;
	font-size: 0;
	background-color: transparent;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M20.2 5.2 9.4 16l10.8 10.8 2.3-2.3L14 16l8.5-8.5-2.3-2.3z' fill='%23EEEAD9' stroke='%23424543' stroke-width='1.75' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.mainImage .slick-next:before {
	transform: scaleX(-1);
}

.smallCarosel {
	height: 15vh;
	width: auto;
	margin: 5vh 0;
}

.smallCaroselImage{
	height: 100%;
	width: auto;
	border-radius: 5vw;
	border: rgba(0, 0, 0, 1.0);
}

.productCarosel .slick-slide .smallCaroselImage img{
	max-height: 15vh !important;
}

.shop-grid-card-body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	padding: 0.95rem 1.15rem 0.9rem;
	background: transparent;
	box-sizing: border-box;
}

.shop-grid-card .btn-primary {
	font-size: 1em;
	margin-top: auto;
}

.cart-button {
	position: fixed; 
	right: 15%; 
	top: 30px;
	width: 40px;
	height: 40px;
	background: var(--color-ivry-gold);
	border: 2px solid black;
	display: flex;
	border-radius: 8px;
}

.cart-button a{
	position: relative;
	margin: 4px auto auto auto;
}

@media (max-width: 800px) {
	.shop-highlight {
		grid-template-columns: 1fr 1fr;
		width: 100vw;
		max-width: 100vw;
		margin-left: calc(50% - 50vw);
		aspect-ratio: auto;
		max-height: none;
	}

	.shop-highlight-main {
		grid-column: 1 / -1;
		grid-row: auto;
		aspect-ratio: 16 / 9;
		height: auto;
	}

	.shop-highlight-girl,
	.shop-highlight-boy {
		grid-column: auto;
		grid-row: auto;
		aspect-ratio: 16 / 9;
		height: auto;
	}

	.shop-layout {
		grid-template-columns: 1fr;
	}

	.shop-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.shop-grid-card:nth-child(4n) {
		border-right: 1px solid rgba(255, 255, 255, 0.92);
	}

	.shop-grid-card:nth-child(2n) {
		border-right: 0;
	}
}

.snipcart-layout__content {
    background: var(--color-slate-grey-transparent);
}

.snipcart-layout {
    height: auto;
}

.snipcart-cart__content {
    border-radius: 5vh;
    padding-left: 1vw;
    padding-right: 1vw;
}

.product_container {
	display: flex;
	margin-top: 5vh;
}

.product-featured-meta {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	margin-top: auto;
	margin-bottom: auto;
	font-family: "P22 1722 Swash", Georgia, serif;
	color: var(--color-ink);
	font-size: clamp(1.15rem, 2.4vw, 1.85rem);
	line-height: 1.15;
    background: var(--color-ivry-gold-transparent);
    border-radius: 10px;
    padding: 10px;
    height: fit-content;
}

.product-featured-image-div {
	
}

.product-featured-desc {
	margin: 0;
	max-width: 28em;
	font-family: "P22 1722 Italic", "P22 1722 Swash", Georgia, serif;
	font-style: italic;
	font-size: 0.95rem;
	line-height: 1.35;
	color: var(--color-pale-sky-600);
	text-align: left;
}

.slick-dotted.slick-slider{
	overflow: visible;
}

.column {
	flex: 50%;
}


@media screen and (orientation: portrait){
	.mainImage .slick-prev {
		left: 1%;
		margin-left: auto;
	}

	.mainImage .slick-next {
		right: 1%;
		margin-right: auto;
	}
	.cart-button {
		right: 15%; 
	}
	.product-featured-meta{
		margin-right: auto;
	}
	.product-button {
		width: 100%;
		min-width: 40%;
		font-size: 0.8rem;
	}
}

@media screen and (min-width: 800px){
	.cart-button {
		right: 10%; 
	}
	.product-featured-meta{
		margin-right: auto;
	}
}

.product-featured-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.45rem;
	min-width: 0;
	margin-left: auto;
}

.product-featured-copy .shop-card-colors {
	margin-top: 0.2rem;
}

.product-featured-price {
	text-align: right;
	flex-shrink: 0;
	font-size: clamp(1.7rem, 3.4vw, 2.7rem);
	line-height: 1;
	margin-right: auto;
}

.product-button {
	margin: auto;
}

.snipcart-form__label {
    color: white;
}

.snipcart-item-quantity__label {
	color: white;
}

.snipcart-shipping-rates-list {
	color: var(--color-iron-grey);
}

.snipcart-form__label.snipcart-form-radio__label {
	color: var(--color-iron-grey);
}

.snipcart-payment-card-form {
    background: white;
    padding: 10px;
    border-radius: 10px;
}

.snipcart-flash-message {
    background: #9e2215;
    border-radius: 10px;
}

.snipcart-cart-summary {
    background-color: var(--color-iron-grey-800);
    border-radius: 10px;
}

.snipcart-cart__footer-buttons .snipcart-button-link{
    margin-top: 16px;
    color: var(--color-french-blue-200);
}

* { min-height: 0; min-width: 0; } 
