/** Shopify CDN: Minification failed

Line 168:1 Unexpected "{"
Line 168:2 Expected identifier but found "%"
Line 169:23 Unexpected "{"
Line 169:24 Expected identifier but found "%"

**/
/*----------------------------------
  Variables
----------------------------------*/
:root {
  --EndFadeTime: 480ms;
}



/*----------------------------------
  General 
----------------------------------*/
* {
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
  cursor: inherit;
  text-decoration: none;
  font-weight: 500;
}

body {
  display: inline-block;
  background-color: var(--CPB);
  color: var(--CPT);
  scrollbar-gutter: stable both-edges;
  scroll-margin: 120px;
  overscroll-behavior: contain;
  min-height: 100%;
  width: 100%;
  cursor: default;
  font-family: system-ui, Blippo, fantasy, Arial,sans-serif;
}
.body__background {
  position: fixed;
  height: 100%;
  width: 100%;
  pointer-events: none;
  /*background: linear-gradient(90deg, var(--CPBS) 0%, var(--CPB) 20%, var(--CPB) 80%, var(--CPBS) 100%);*/
}
.body__header {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  width: 100%;
}
.body__content {
  min-height: 100lvh;
  z-index: 2;
  position: relative;
  pointer-events: all;
  transition: transform ease var(--EndFadeTime);
}
body.scroll--end .body__content {
}
.body__footer {
  position: relative;
  z-index: 4;
}

.content-blur {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 3;
  backdrop-filter: blur( 0 );
  pointer-events: none;
  opacity: 0;
  transition: opacity ease-out 200ms;
}
.content-blur__background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--CPB);
  opacity: 0.40;
}



a, button, input, iframe {
  cursor: pointer;
}
p, h1, h2, h3, h4, h5, h6 {
  pointer-events: all;
}
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"] {
  cursor: text;
}

button {
  background-color: transparent;
  outline: none;
  border: none;
}


.transition--none {
  transition: none !important;
}

body.transition--none * {
  transition: none !important;
}


body:not([noscript]) .link-noscript {
  display: none !important;
}
body[noscript] .link-noscript {
  display: flex;
}


.logo {
  width: 64px;
  height: 64px;
  overflow: hidden;
}
.logo__icon {
  width: 100%;
  height: 100%;
}

.icon {

}
.icon__line {
  stroke: var(--CPT);
}
.icon__shape {
	fill: var(--CPT);
}

.button {
  position: relative;
  background-color: transparent;
  --TextColor: var(--CAT);
  --TextColorHover: var(--CAB);
	--BackgroundColor: var(--CAB);
	--BackgroundColorHover: var(--CAT);
  --OverlayTransform: translateX(-100%);
  --OverlayTransformHover: translateX(0);
  --BorderRadius: 100px;
	border-radius: var(--BorderRadius);
  color: var(--TextColor);
  overflow: hidden;
 {% comment %} outline: 1px solid var(--CAB);
  outline-offset: -1px;{% endcomment %}
  transition: color ease 160ms;
}
.button:hover {
  color: var(--TextColorHover);
}
.button:before,
.button:after {
	content: "";
  display: block;
	position: absolute;
	z-index: -1;
	border-radius: var(--BorderRadius);
}
.button:before {
	background-color: var(--BackgroundColor);
	top: 1px;
	left: 1px;
	right: 1px;
	bottom: 1px;
}
.button:after {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--BackgroundColorHover);
	transform: var(--OverlayTransform);
	transition: transform ease 160ms;
}
.button:hover:after {
  transform: var(--OverlayTransformHover);
}
.button__icon {

}
.button:hover .button__icon {

}
.button__icon-line {
  stroke: var(--TextColor);
	transition: stroke ease 160ms;
}
.button:hover .button__icon-line {
  stroke: var(--TextColorHover);
}
.button__icon-shape {
	fill: var(--TextColor);
	transition: fill ease 160ms;
}
.button:hover .button__icon-shape {
	fill: var(--TextColorHover);
}

.header {
  position: fixed;
  inset: 0;
  pointer-events: none;
}


/*----------------------------------
  Header
----------------------------------*/
.header-bar{
	pointer-events: all;
  display: flex;
  justify-content: center;
	background-color: var(--CPB);
  z-index: 40;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
	transition: height ease-out 250ms;
}
body.scroll .header-bar{
	height: 70px;
	box-shadow: 0 0 3px var(--CPBS);
}

.header__scale {
	display: flex;
	align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 1840px;
  width: 100%;
  height: auto;
	transform: translateY(0);
  transition: transform ease calc( var(--EndFadeTime) / 2 );
}
body.scroll--end .header__scale {
	transform: translateX(-100%);
  transition: transform ease calc( var(--EndFadeTime) * 2 );
}

.header__progressbar {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	opacity: 0;
	background-color: var(--CAB);
	height: 2px;
	box-shadow: -3px 3px 6px var(--CABSa2);
	transform-origin: left top;
	transform: translateX( -100% );
  transition: transform ease 60ms;
}
.header__progressbar.active {
  opacity: 1;
  filter: blur(0.5px);
}

.header__overlay {
	position: absolute;
	width: 100%;
	height: 100%;
  display: flex;
  z-index: 20;
  justify-content: center;
  align-items: center;
	overflow: hidden;
  background-color: var(--CAB);
  color: var(--CAT);
  transform: translateX(100%);
  transition: transform ease var(--EndFadeTime);
}
body.scroll--end .header__overlay {
	transform: translateX( 0 );
}

.header__overlay-text {
  width: 50%;
  min-width: fit-content;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
	transform: translateX(-100%);
	transition: transform ease var(--EndFadeTime);
}
body.scroll--end .header__overlay-text {
	transform: translateX( 0 );
}


.header-section {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  height: 100%;
  width: fit-content;
  overflow: visible;
}


.header-checkbox {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
}


.header-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  white-space: nowrap;
  border: transparent;
  width: 100px;
  background-color: transparent;
  height: 100%;
}

.header-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--CAB);
  transform: translateY(-100%);
  transition: transform ease 160ms;
}
.header-button:hover:before,
.header-button:has(.header-checkbox:checked):before {
  transform: translateY(0);
}


.header-button__text {
  display: flex;
	align-items: center;
  color: var(--CPT);
  position: absolute;
  text-align: end;
  pointer-events: none;
  top: calc( 50% + 14px );
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 3px;
  opacity: 0.7;
  text-transform: uppercase;
  transition: transform ease 100ms, color 200ms, opacity 150ms;
}
.header-button:hover .header-button__text {
  opacity: 1;
}
.header-button:hover .header-button__text,
.header-checkbox:checked ~ .header-button__text{
  color: var(--CAT);
}

body.scroll .header-button__text {
  transform: scale(0);
  opacity: 0;
}

.header-icon {
  transform: translateY( 0 );
  transition: transform ease-out 150ms;
}
body:not(.scroll) .header-icon {
  transform: translateY( -8px );
}

.header-icon__line {
  stroke: var(--CAB);
  transition: transform ease 160ms, stroke ease 160ms;
}
.header-checkbox:hover ~ .header-icon .header-icon__line,
.header-checkbox:checked ~ .header-icon .header-icon__line{
  stroke: var(--CAT);
}


.link-icon {

}
.link-icon__line {
	stroke: var(--CAB);
}
.link-icon__shape {
	fill: var(--CAB);
}


.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row;
  flex-wrap: nowrap;
  gap: 4px;
  position: absolute;
  opacity: 0;
  pointer-events: none;
  --FadeInDirection: 1;
  transform: translateY( -100% );
  transition: opacity 0ms;
}
.header-section:has(.header-checkbox:checked) .header-content {
  pointer-events: all;
  position: fixed;
  inset: 0;
  opacity: 1;
  transform: translateY( 0 );
  transition: transform ease-out 150ms, opacity 50ms;
}

.shop-content {
	left: 100%;
	--FadeInDirection: -1;
}







.menu-page {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
  background-color: var(--CSBS);
	transform: translateY(-101%);
	transition: transform ease 200ms;
}
#Header:has( #MenuCheckbox:checked ) #MenuPage {
	transform: translateY(0);
}
body:has( #MenuCheckbox:checked ) #Content
{
	max-height: 100lvh;
}

.nav-list {
	display: flex;
	flex-wrap: nowrap;
	flex-flow: column;
}



@media only screen and (max-width: 1500px) and (min-width: 800px)
{
	.header:has(#MenuCheckbox:checked) .logo {
		opacity: 0;
		pointer-events: none;
	}
}
@media only screen and (min-width: 800px)
{
	/*.nav-list {
		display: flex;
		flex-wrap: nowrap;
		flex-flow: column;
	}
	.nav-entry {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 6px;
		position: relative;
		padding: 0 24px;
		width: fit-content;
		background-color: transparent;
		white-space: nowrap;
	}
	.nav-entry:hover {

	}
 
	.nav-link {
	
	}
	.nav-link__text {
		color: var(--CPT);
		opacity: 0.7;
		transition: color ease var(--EndFadeTime);
	}
	.nav-link:hover .nav-link__text {
		opacity: 1;
	}*/
}

@media only screen and (max-width: 800px)
{
  /*body:has(.header-checkbox:checked) .body__content {
    opacity: 0;
  }
	.header-checkbox:checked {
    z-index: 20;
  }
	.header-content {
		position: fixed;
		z-index: -1;
		inset: 0;
    width: 100lvw;
		display: flex;
    justify-content: center;
    align-items: center;
		background-color: transparent;
		flex-flow: column;
		flex-wrap: wrap;
    opacity: 0;
    pointer-events: none;
    overflow: auto;
  }
  .header-section:has(.header-checkbox:checked) .header-content {
		opacity: 1;
		pointer-events: all;
  }
	.header-section:has(.header-checkbox:checked) .menu-page {
		position: fixed;
    inset: 0;
    height: 100vh;
    width: 100vw;
    overflow-y: visible;
	}
	.header-section:has(.header-checkbox:checked) .nav-list {
		display: flex;
		flex-flow: column;
    height: fit-content;
    width: fit-content;
    gap: 18px;
	}

	.header-section:has(.header-checkbox:checked) {
    overflow: hidden;
  }
  
	.nav-list {
		display: flex;
		flex-flow: column;
	}
	.nav-entry {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
		gap: 6px;
		position: relative;
		padding: 0 24px;
		width: fit-content;
		background-color: transparent;
		white-space: nowrap;
	}
	.nav-entry:hover {

	}

	.nav-link {

	}
	.nav-link__text {
		color: var(--CPT);
		opacity: 0.7;
		transition: color ease var(--EndFadeTime);
	}
	.nav-link:hover .nav-link__text {
		opacity: 1;
	}*/
}



.logo-header {
  display: flex;
	align-items: center;
  position: absolute;
  left: 50%;
  text-align: center;
  background-color: transparent;
  transform-origin: center;
  width: fit-content;
  height: 50%;
  transform: translateX(-50%) scale(0.9);
  transition: transform ease-out 250ms;
}
body.scroll .logo-header {
  transform: translateX(-50%) scale(0.8);
}


.logo-header__svg {
  height: 100%;
}
.logo-header__line {
  fill: var(--CAB);
}

.logo-waves__line {
  stroke: transparent;
  fill: var(--CPT);
  transition: fill ease var(--EndFadeTime);
}

.logo-header__link {
  border-radius: 12px;
  padding: 4px 18px;
  text-decoration: none;
  background-color: transparent;
  color: var(--CPT);
  transition: background-color ease-out 50ms, color ease-out 50ms;
}
.logo-header__link:hover {
  background-color: var(--CAB);
  color: var(--CAT);
}
.logo-header__text {
  font-size: var(--T36);
  font-weight: 700;
}




.nav-cart {
	opacity: 0;
  
  position: fixed;
  right: 50px;
  top: 0;
  transform: translateY( calc( 100lvh - 98px ) );
  width: 64px;
  height: 64px;
  background-color: var(--CAB);
  box-shadow: var(--SAB);
  border-radius: 100px;
}
.nav-shop {
  order: 1;
}
.logo-header {
  order: 2;
}
.nav-menu {
  order: 3;
}


.nav {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  position: relative;
  overflow: visible;
  height: 100%;
}
.nav__checkbox {

}
.nav__content {

}



.menu {
  flex-direction: row-reverse;
  order: 2;
}

.menu-hamburger {
  overflow: visible;
}

.menu-hamburger__line {
  transform-origin: right;
}
.menu-hamburger__line--outer {
  --TransformDirection: 1;
  transform: translateY( 0 );
}
.menu-hamburger__line--bot {
  --TransformDirection: -1;
}
.menu:hover .menu-hamburger__line--outer {

}
.menu:hover .menu-hamburger__line--mid {
  transform: translateX( -4px );
}


#MenuCheckbox:checked ~ #MenuButton .menu-hamburger__line--outer {
  transform:
    rotate( calc( 45deg * var(--TransformDirection) ) )
    translateY( calc( 20px * var(--TransformDirection) ) )
    scale(0.8);
}
#MenuCheckbox:checked ~ #MenuButton .menu-hamburger__line--mid {
  transform: scale(0);
}





.theme {
  position: relative;
  width: 50%;
  min-width: fit-content;
}
.theme__title {
  display: none;
}
.theme__options {
  display: flex;
  justify-content: center;
	flex-wrap: nowrap;
  gap: 12px;
}

.theme-option {
  position: relative;
	width: 48px;
	height: 48px;
	padding: 6px;
	border-radius: 50%;
}
.theme-option:has(.theme-checkbox:checked) {
  background-color: var(--CAT);
}
.theme-checkbox {
	position: absolute;
	inset: 0;
	opacity: 0;
  z-index: 2;
}
.theme-icon {
	height: 100%;
	width: 100%;
	transform: scale(0.75) rotate( 0deg );
	transition: transform ease 250ms;
}
.theme-option:hover .theme-icon {
	transform: scale(1.0) rotate( 360deg );
}

.theme-icon__line {
	stroke: var(--CAT);
}
.theme-option:has(.theme-checkbox:checked) .theme-icon__line {
	stroke: var(--CAB);
}

.theme-icon__shape {
	fill: var(--CAT);
}
.theme-option:has(.theme-checkbox:checked) .theme-icon__shape {
	fill: var(--CAB);
}




.cart-button {
	position: relative;
}

.cart-button__link {
	display: none;
}
body[noscript] .cart-button__link {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	z-index: 1;
}
.cart-icon {

}
.cart-icon__path {

}

.js-cart {
	display: flex;
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: red;
	z-index: 7;
	width: 350px;
	max-width: 100dvw;
	opacity: 0;
	transform: translateX( 100% );
}
.js-cart--active {
	display: flex;
	opacity: 1;
	transform: translateX( 0 );
	transition: transform ease-in-out 250ms;
}

.js-cart__header {
	width: 100%;
	height: fit-content;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	border-bottom: 1px solid green;
	justify-content: space-between;
	padding: 12px;
}
.js-cart__title {

}
.js-cart__close {
	width: 32px;
	height: 32px;
}









.footer {
  position: relative;
  overflow: hidden;
}
body:not( [noscript] ) .footer {

}

.footer__background {
	position: absolute;
  inset: 0;
	background-color: var(--CSB);
}


.footer__content {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 30px 20px 30px 20px;
  overflow: hidden;
}
.footer__content-scale {
  display: flex;
  position: relative;
  align-items: start;
  margin: auto;
  padding: 50px;
  max-width: 1920px;
  scrollbar-gutter: stable;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 20px 5svw;
}

.title-footer {
	font-size: var(--T18);
  text-transform: capitalize;
  color: var(--CAB);
  margin-bottom: 12px;
  font-weight: 500;
}
.text-footer {
	font-size: var(--T14);
  color: var(--CST);
  font-weight: 600;
}


.footer-contact {

}
.footer-contact__title {
  color: var(--CAB);
}
.footer-contact__detail {
  display: flex;
	align-items: center;
  gap: 6px;
}

.footer-social {

}
.footer-social__title {

}
.footer-social__list {
  display: flex;
  flex-flow: row;
  gap: 10px;
}
.footer-social__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
}
.footer-social__icon {
  transform: scale( 0.8 );
  transition: transform ease-out 350ms;
}
.footer-social__icon:hover {
  transform: scale( 1.0 );
}
.footer-social__icon-path {
  fill: var(--CST);
}
.footer-social__icon:hover .social__icon-path {
  fill: var(--CAB);
}

.footer__products__link {
  color: var(--CST);
}


.footer-nav {
  display: flex;
  flex-flow: column;
}
.footer-nav__title {
  padding: 0 12px;
}
.footer-payment {
  width: fit-content;
  height: fit-content;
}
.footer-payment__title {

}


.footer-icon {

}
.footer-icon__line {
  stroke: var(--CAB);
}


.footer__end {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: var(--CAB);
	box-shadow: 0 0 6px var(--CABS), inset 0 0 3px var(--CABS);
  width: 100%;
  padding: 8px 30px;
  font-weight: 1000;
}
.footer__end-scale {
  max-width: 1920px;
  width: 1920px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}


body:not([noscript]) .footer__end {
	overflow: hidden;
	transform: translateX( calc( -100% - 6px) );
	transition: transform ease var(--EndFadeTime);
}
body.scroll--end .footer__end {
  transform: translateX( 0 );
}
body:not([noscript]) .footer__end-scale {
	transform: translateX( 100% );
  transition: transform ease var(--EndFadeTime);
}
body.scroll--end .footer__end-scale {
	transform: translateX( 0 );
}



.policies {
  display: flex;
	align-items: center;
  position: relative;
  justify-content: end;
}
.policy-link {
  display: flex;
  justify-content: center;
  align-items: center;
	font-size: var(--T14);
  overflow: hidden;
  position: relative;
  font-weight: 500;
  color: var(--CAT);
  outline: 2px solid var(--CAB);
  outline-offset: -1px;
  padding: 10px 16px;
  border-radius: 100px;
  transition: padding ease 160ms, color ease 160ms;
}
.policy-link:hover {
  padding: 10px 28px;
  color: var(--CAB);
}

.policy-icon {
  padding-right: 6px;
}
.policy-link:hover .policy-icon {

}

.policy-icon__shape {
  fill: var(--CAT);
  transition: fill ease 160ms;
}
.policy-link:hover .policy-icon__shape {
  fill: var(--CAB);
}
.policy-icon__line {
  stroke: var(--CAT);
	transition: stroke ease 160ms;
}
.policy-link:hover .policy-icon__line {
  stroke: var(--CAB);
}

.copyright {
	font-size: var(--T14);
  color: var(--CAT);
  font-weight: 500;
  padding: 10px 0;
  user-select: none;
}


@media only screen and (max-width: 750px) {

  .footer__content-scale {
    flex-direction: column;
  }
  .footer__content-box {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: start;
    min-height: 100%;
  }
  .title-footer, .text-footer {
    text-align: center;
  }
  .payment-options__list {
    display: flex;
    justify-content: center;
  }

  .footer__end-scale {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .policies {
    flex-direction: column;
    justify-content: start;
  }
  .copyright {
    margin: auto;
  }

}






/*----------------------------------
  Snippets 
----------------------------------*/
.shopify-policy__title {
	font-size: var(--T24);
  font-weight: 600;
  padding: 150px 25px 0 25px;
}
.shopify-policy__body {
  padding: 45px 25px 100px 25px;
}
.shopify-policy__body p {
	font-size: var(--T18);
  font-weight: 500;

}
.shopify-policy__body strong {
	font-size: var(--T24);
  display: flex;
  font-weight: 900;
  margin-top: 42px;
}