/** Shopify CDN: Minification failed

Line 14:14 Expected ";"

**/
/*
.c-collection_head {
	padding-inline: 15px;
	padding-block: 130px 15px;
	background: var(--cream);
}
*/
body.template-collection-oli .c-collection_head {
	@apply bg-red
}
/*
@media (min-width: 600px) {
	.c-collection_head {
		padding-inline: 20px
	}
}
*/
/*
.c-collection_head svg {
	width: 100%;
	height: auto;
}
*/

.c-collection_main {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	/* background: var(--cream); */
	border-top: 1px solid #000000;
	position: relative;
}

.c-collection_main::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000;
}


.c-collection_product {
	position: relative;
	display: grid;
	grid-template-rows: 1fr auto;
	gap: 25px;
	padding-inline: 10px;
	padding-block: 45px 10px;
	overflow: hidden;
	z-index: 1;
	/* background: var(--cream); */
}


.c-collection_product::before {
	content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0px;
  right: 0;
  height: 100%;
  border-right: 1px solid #000;
  z-index: 5;
}
.c-collection_product::after {
	content: '';
	width: 100%;
	position: absolute;
	bottom: 0;
	border-bottom: 1px solid #000000;
	z-index: 5;
}
.c-collection_product:nth-last-child(-n+4)::after {
  border: 0
}


.c-collection_product .c-product_image {
	position: relative;
	z-index: 2;
	padding-inline: 10px;
	transform-origin: 50% 50%;
	aspect-ratio: 1 / 0.8;
  object-fit: contain;
  width: 100%;
  height: auto;
}

@media (min-width: 1000px) {
	.c-collection_product .c-product_image {
		aspect-ratio: 1 / 1.1;
	}
}

.c-collection_product .c-product_price {
	position: relative;
	z-index: 11;
	font-weight: 600;
	justify-self: end;
	font-size: 14px;
}
.c-collection_product .c-product_price s {
	opacity: 0.3;
	margin-right: 5px;
}

.c-collection_product .c-product_hover {
	position: absolute;
	left: 0;
	bottom: 1px;
  width: calc(100% - 1px);
	height: auto;
	padding-block: 15px;
	padding-inline: 20px;
	opacity: 0;
	z-index: 10;
}

.c-collection_product.zoom .c-product_hover {
	/* background: var(--cream); */
	background: white;
	border-top: 1px solid #000;
}

.c-collection_product .c-product_form {
	color: #000;
	display: flex;
	align-items: center;
	gap: 5px;
}

.c-collection_product .c-product_form input {
	display: none; 
}
.c-collection_product .c-product_form label  {
	position: relative;
	width: 25px;
	height: 25px;
	border: 1px solid #000;
	border-radius: 100%;
	display: grid;
	place-items: center;
	font-size: 9px;
	line-height: 1;
	cursor: pointer;
}

.c-collection_product .c-product_form label.-disabled {
	cursor: default;
	overflow: hidden;
}

.c-collection_product .c-product_form label.-disabled::before {
	content: '';
	position: absolute;
	width: 150%;
	height: 1px;
	transform-origin: 50% 50%;
	transform: rotate(-45deg);
	background: #000;
}
.c-collection_product .c-product_form input:checked + label {
	background: #000;
	color: #fff;
}
.c-collection_product .c-product_form button {
	background: black;
	color: white;
	border-radius: 3px;
	padding: 6px;
}
.c-collection_product .c-product_link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
}
.c-collection_product .c-product_discount {
	position: absolute;
	top: 10px;
	left: 10px;
	display: grid;
	place-items: center;
	z-index: 2;
}
.c-collection_product .c-product_discount span {
	position: absolute;
}

/* Out of stock */
.c-collection_product.is-outofstock .c-product_image {
	opacity: 0.1;
}
.c-collection_product .c-product_line {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.c-collection_product .c-product_line svg {
	display: block;
	width: 100%;
	height: 100%;
}





@media (pointer: fine) and (min-width: 1024px) {
	.c-collection_product:hover .c-product_hover {
		transition: all cubic-bezier(0.15, 0.85, 0.45, 1) 0.3s
	}
	.c-collection_product:hover .c-product_hover {
		opacity: 1
	}
	.c-collection_product .c-product_hover button:hover {
		background: black
	}
	.c-collection_product .c-product_form label:not(.-disabled):hover {
		background: #000;
		color: #fff;
	}
	.c-collection_product:not(.is-outofstock):hover .c-product_imageHover {
		opacity: 1;
	}
	.c-collection_product:not(.is-outofstock):hover .c-product_image {
		opacity: 0;
	}
	.c-collection_product.zoom .c-product_imageHover {
		transform: scale(3);
		transform-origin: 0 0;
	}
	.c-collection_product:not(.zoom) .c-product_imageHover {
		padding: 70px 55px 55px
	}
}

.c-collection_product .c-product_imageHover {	
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 2;
	aspect-ratio: 1 / 1.1;
	object-fit: contain;
	opacity: 0;
}



@media (min-width: 1001px) {
	/* .c-collection_head { padding-block: 240px 15px; } */
	.c-collection_main { grid-template-columns: repeat(4, 1fr); }
	.c-collection_product {
		padding-inline: 20px;
		padding-block: 30px 20px;
		gap: 20px;
	}
	.c-collection_product:nth-of-type(4n+4)::before { display: none; }
	.c-collection_product .c-product_image { padding-inline: 40px; }
	.c-collection_product .c-product_price { font-size: 14px }
	.c-collection_product .c-product_discount {
		top: 20px;
		left: 20px;
		font-size: 22px;
	}
}

@media (max-width: 1000px) {
	.c-collection_product:nth-of-type(2n+2)::before { display: none; }
	.c-collection_product .c-product_discount svg { max-width: 45px; }
	.c-collection_product .c-product_hover, .c-collection_product .c-product_imageHover { display: none; }
}



