/** Shopify CDN: Minification failed

Line 37:6 Expected ":"

**/

/* Phase 4: explicit gap for flex/grid blocks that previously inherited
   the universal `* { gap: 1rem }` rule (now removed). Uses :where() for
   zero specificity so explicit gap declarations elsewhere win. */
:where(
  section.gallery,
  .shopify-product-form label.message-input div p,
  .date-picker__header,
  .date-picker__cell,
  .popup div,
  .switch,
  .promo,
  image-carousel main-carousel > img,
image-carousel picture,
  image-carousel carousel-thumbnails button
) {
  gap: 1rem;
}

#shopify-section-product-template {
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	gap: 2rem;
}

section.content {
	display: flex;
	flex-flow: column;
	gap: 1rem;
	flex-`grow: 2;
	flex-basis: 30rem;
	max-width: Min(50rem, 100%);
}
.product_name {
	font-size: clamp(7vw, 2rem);
}
section.gallery {
	display: flex;
	flex-flow: column nowrap;
	flex-grow: 1;
	flex-basis: 10rem;
	flex-shrink: 0;
	min-height: 40vh;
	height: 55vh;
	max-height: 70vh;
	min-width: min(20rem, 100%);
}

section.gallery picture {
	position: relative;
	height: 100%;
	width: 100%;
}

section.gallery picture img {
	position: absolute;
	width: 100%;
	display: none;
	height: 100%;
	object-fit: contain;
}

section.gallery picture img[active] {
	display: block;
}

section.gallery .thumbnails {
	display: flex;
	overflow-x: auto;
	justify-content: flex-start;
	gap: 1rem;
}

section.gallery .thumbnails button img {
	height: 100%;
	width: auto;
}
section.gallery .thumbnails button {
	position: relative;
	appearance: none;
	padding: 0;
	height: auto;
	width: auto;
	background-size: cover;
	background-position: center;
	background-color: transparent;
	opacity: 0.3;
}

section.gallery .thumbnails button[active] {
	opacity: 1;
}

section.gallery .thumbnails button:hover,
section.gallery .thumbnails button:focus {
	opacity: 0.75;
}

.tags {
	display: flex;
	gap: 1rem;
	max-width: 100%;
	overflow-x: auto;
	white-space: nowrap;
	flex-wrap: wrap;
}

.tags a {
	background-color: rgb(var(--accent));
	padding: 0.5rem 1rem;
	width: fit-content;
	border-radius: 1rem;
	text-transform: uppercase;
	font-weight: 600;
}
.shopify-product-form {
	width: 100%;
}
.shopify-product-form label.message-input {
	width: 100%;
	max-width: 30rem;
}
.shopify-product-form label.message-input div textarea {
	width: 100%;
	height: 100%;
	padding: 7.5% 7.5%;
	background-color: none;
}
.shopify-product-form label.message-input div {
	position: relative;
	width: 100%;
	aspect-ratio: 8/4;
	height: 100%;
	border-radius: 0.5rem;
	overflow: hidden;
}
.shopify-product-form label.message-input div p {
	position: absolute;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 7.5% 7.5% 14% 7.5%;
	color: black;
	text-align: center;
	line-height: normal;
	inset: 0;
	cursor: text;
	font-size: 2.5em;
	opacity: 0.8;
}
.shopify-product-form label.message-input div img.message {
	inset: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: transparent;
	color: rgb(var(--text));
}
.shopify-product-form .requested-date {
	width: 100%;
	max-width: 30rem;
}
.shopify-product-form .requested-date p {
	margin-bottom: 0.5rem;
}
.date-picker {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.date-picker__calendar {
	position: static;
	width: min(22rem, 100%);
	padding: 1rem;
	border-radius: 0.75rem;
	background: rgb(var(--white));
	display: block;
}
.date-picker__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.75rem;
}
.date-picker__title {
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.85rem;
}
.date-picker__nav {
	border: none;
	background: transparent;
	color: rgb(var(--accent));
	width: 1.5rem;
	height: 1.5rem;
	padding: 0;
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
}
.date-picker__nav:hover {
	color: rgba(var(--accent) / 0.8);
}
.date-picker__weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 0.25rem;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(var(--text) / 0.6);
	margin-bottom: 0.5rem;
	justify-items: center;
	text-align: center;
}
.date-picker__weekdays span {
	text-align: center;
}
.date-picker__grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 0.35rem;
}
.date-picker__cell {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 0.5rem;
	border: none;
	background: rgba(var(--accent) / 0.08);
	color: rgb(var(--text));
	font-size: 0.9rem;
	padding: 0.25rem;
	cursor: pointer;
	transition:
		transform 120ms ease,
		background 120ms ease;
}
.date-picker__cell:hover {
	background: rgba(var(--accent) / 0.2);
	transform: translateY(-1px);
}
.date-picker__cell.is-empty {
	background: transparent;
	cursor: default;
}
.date-picker__cell.is-disabled {
	background: rgba(var(--text) / 0.05);
	color: rgba(var(--text) / 0.35);
	cursor: not-allowed;
}
.date-picker__cell.is-outside {
	opacity: 0.5;
}
.date-picker__cell.is-today {
	border: 1px solid rgba(var(--accent) / 0.5);
}
.date-picker__cell.is-selected {
	background: rgb(var(--accent));
	color: rgb(var(--accent-text));
}

.shopify-product-form button[name="add"]:disabled {
	opacity: 0.55;
	background-color: rgba(var(--text) / 0.25);
	color: rgba(var(--text) / 0.7);
	filter: none;
}
.popup h3 {
	text-align: center;
}
.popup p {
	text-align: start;
	opacity: 0.5;
	overflow: auto;
	font-size: 0.75rem;
	line-height: 175%;
}
.popup div {
	width: 100%;
	display: flex;
	justify-content: stretch;
	align-items: center;
}
.popup figure {
	opacity: 0.7;
	font-weight: 700;
	font-size: 1.25rem;
	margin-left: auto;
}

.popup button,
.popup .button {
	padding: 1rem 2rem;
	background-color: rgb(var(--accent));
}
.popup button:hover,
.popup .button:hover {
	background-color: rgb(var(--accent));
	filter: brightness(1.3);
}
.popup .buttons {
	justify-content: center;
}
.popup #deny {
	background-color: rgba(222, 222, 222, 0.2);
}
.popup #deny:hover {
	filter: brightness(0.7);
}

.popup > div > img {
	width: 2.5rem;
}
main .description table {
	width: 100%;
	border-collapse: collapse;
}
main .description th,
td {
	width: 50%;
	text-align: left;
	vertical-align: top;
}
main .description th {
	padding-bottom: 1rem;
}
main .description ul {
	margin: 0;
	list-style-position: inside;
}
main .description h3 {
	font-size: 1.25rem;
	text-transform: capitalize;
}
main .description a {
	margin-left: 0.5rem;
	font-weight: bold;
	padding: 0;
}
main .description a:hover {
	color: rgb(var(--accent));
	background-color: transparent;
	padding: 0;
}
.upsell {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	position: relative;
	cursor: pointer;
	user-select: none;
	padding: 0.5rem 1rem;
	border-radius: 0.25rem;
	background-color: rgba(var(--accent) / 1);
	/*border-left: 0.25rem solid rgba(var(--accent) / 1);
	border-radius: 0.25rem;*/
	color: rgb(var(--accent-text));
	filter: brightness(1);
	transition: filter 200ms ease-in-out;
}
.upsell.popup-upsell {
	display: none;
}
.upsell:hover {
	filter: brightness(1.1);
}
.upsell .text {
	display: flex;
	flex-flow: column;
	gap: 0;
}
.upsell .text h5 {
	font-size: 1rem;
	text-transform: capitalize;
}
.upsell .text p {
	opacity: 0.75;
	font-size: 0.75rem;
}
.upsell input {
	display: none;
}
.upsell .money {
	color: rgb(var(--accent-text)) !important;
}
.upsell .money[old-price]::before {
	color: var(--secondary);
}
.switch {
	display: flex;
	flex-direction: row;
	padding: 0.2rem;
	border-radius: 0.75rem;
	width: 3rem;
	height: 1.5rem;
	border-width: 0.1rem;
	border-style: solid;
	border-color: rgba(var(--text) / 0);
	background-color: rgb(var(--white));
	transition: 0.3s cubic-bezier(1, 0, 0, 1) border-color;
}

.switch span {
	min-width: 1rem;
	border-radius: 1rem;
	height: 100%;
	aspect-ratio: 1 / 1;
	background-color: rgb(var(--accent));
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	transition: 0.3s cubic-bezier(1, 0, 0, 1) min-width;
}

.upsell input:checked + .switch span {
	min-width: 100%;
}
.upsell input:checked + .switch {
	border-color: rgba(var(--text) / 1);
}

.promo {
	display: flex;
	background-color: #f8f8f8;
	padding: 10px;
	text-align: center;
	border: 1px solid #ddd;
	margin-top: 10px;
}

.promo h1 {
	margin: 0;
	font-size: 16px;
}

.money {
	display: flex;
	align-items: center;
	gap: 0.5ch;
	font-weight: 700;
	font-size: 1.15rem;
}
.money::after {
	font-weight: 500;
	font-size: 0.8rem;
}

image-carousel {
	display: flex;
	width: 100%;
	flex-flow: column nowrap;
	flex: 1 0 30rem;
	max-width: 100%;
	height: 100%;
	min-height: 40vh;
	gap: 0;
	max-height: 70vh;
	min-width: min(20rem, 100%);
	align-items: center;
	overflow: visible;
}
image-carousel main-carousel {
	display: flex;
	gap: 2rem;
	position: relative;
	flex-flow: row nowrap;
	align-items: stretch;
	justify-content: flex-start;
	aspect-ratio: 1/1;
	overflow: auto hidden;
	scroll-snap-stop: always;
	scroll-snap-type: x mandatory;
	overscroll-behavior-x: contain;
	scrollbar-width: none;
	scroll-behavior: smooth;
	overflow-anchor: none;
	isolation: isolate;
	max-width: 100%;
	padding: 5%;
}
image-carousel > *::-webkit-scrollbar {
	display: none;
}
image-carousel main-carousel > img,
image-carousel picture {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 0 100%;
	height: auto;
	width: 100%;
	user-select: none;
	object-fit: contain;
	transition: opacity 0.2s ease;
	/* padding: 8%; */
	scroll-snap-align: center;
	isolation: isolate;
}
image-carousel picture.combined img {
	height: 100%;
	object-fit: contain;
	-webkit-touch-callout: none;
	touch-action: auto;
}
image-carousel picture.combined .badge {
	position: absolute;
	top: 0%;
	right: 12%;
	z-index: 3;
	width: 25%;
	aspect-ratio: 1/1;
	-webkit-backface-visibility: hidden;
	overflow: visible;
}
image-carousel picture.combined .badge svg {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: visible;
}
image-carousel picture.combined img.front {
	z-index: 2;
	position: absolute;
	inset: auto;
	width: 68%;
	height: auto;
	margin-top: auto;
	bottom: 1%;
	mix-blend-mode: multiply;
	filter: none;
}
image-carousel img.message {
	background-color: white;
}
image-carousel picture.stack {
	display: flex;
	gap: 0%;
	justify-content: space-between;
	padding: 5%;
	flex-flow: column nowrap;
}
image-carousel picture.stack > img,
image-carousel picture.stack > message-preview {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	opacity: 1;
	z-index: 2;
}
image-carousel carousel-thumbnails {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	/* justify-content: flex-start; */
	align-items: center;
	position: relative;
	overflow-y: hidden;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	min-width: inherit;
	max-width: 20rem;
	margin: 0;
	flex: 1;
	padding: 0.5rem 0.6rem;
	gap: 0.15rem;
	overscroll-behavior-x: contain;
	border-radius: 0.75rem;
	list-style: none;
	--mask-opacity-right: 0;
	--mask-opacity-left: 0;
	mask-image: linear-gradient(
		to right,
		rgba(0, 0, 0, var(--mask-opacity-left)),
		black 20%,
		black 80%,
		rgba(0, 0, 0, var(--mask-opacity-right))
	);
	background-color: rgba(255, 255, 255, 0);
	transition-property: margin, padding, background-color;
	transition-duration: 0.2s;
	transition-timing-function: ease-out;
	touch-action: manipulation;
}
image-carousel carousel-thumbnails button {
	--thumbnail-size: 4rem;
	position: relative;
	padding: 0;
	width: auto;
	height: auto;
	border-radius: 0.35rem;
	width: 2rem;
	height: var(--thumbnail-size);
	overflow: hidden;
	filter: brightness(0.65);
	border: 0.15rem solid hsla(var(--text) / 0);
	transition: all 0.2s ease-in-out;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: transparent;
}
image-carousel carousel-thumbnails button[active] {
	width: var(--thumbnail-size);
	filter: brightness(1);
	margin: 0 0.15rem;
	border: 0.15rem solid hsla(var(--text) / 1);
}
image-carousel carousel-thumbnails button picture,
image-carousel carousel-thumbnails button img {
	position: absolute;
	inset: auto;
	width: var(--thumbnail-size);
	height: var(--thumbnail-size);
}
image-carousel carousel-thumbnails button picture.combined {
	padding: 10%;
}
message-preview pre {
	position: relative;
	width: 100%;
	height: 100%;
	white-space: pre;
}
message-preview img {
	position: absolute;
	width: 100%;
	inset: 0;
	height: 100%;
	aspect-ratio: 8/4;
}
image-carousel .box {
	width: auto;
}
image-carousel main-carousel .glow .box {
	filter: drop-shadow(0rem 0rem 1rem rgba(126, 255, 61, 0.75));
}
/* image-carousel main-carousel .glow:after {
	animation: btn-glow 20s infinite linear;
	background: linear-gradient(
			-20deg,
			#00f8f1,
			#00f8f120 16.5%,
			#00f8f1 33%,
			#00f8f110 49.5%,
			#00f8f1 66%,
			#00f8f100 85.5%,
			#00f8f1 100%
		)
		0 100% / 100% 200%;
	position: absolute;
	inset: -5%;
	width: 110%;
	inset: 0 10%;
	width: 80%;
	display: block;

	border-radius: inherit;

	content: "";
	z-index: -1;
	transform: translateZ(0);
	filter: blur(1.5rem);
	opacity: 1;
	transition: opacity 0s linear 0s;
	transition: transform 200ms ease;
} */
