*,
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
::after,
::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
:focus {
  outline: 0;
  box-shadow: none;
}
::selection {
  background: #171717;
  color: #fff;
}
::-moz-selection {
  background: #171717;
  color: #fff;
}
a:empty,
article:empty,
div:empty,
dl:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty,
p:empty,
section:empty,
ul:empty {
  display: none;
}
a {
  transition: all 0.3s ease;
  text-decoration: none;
  background-color: transparent;
  color: inherit;
}
a:hover {
  text-decoration: none;
  color: var(--color-btn-bg);
}
ol,
ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}
button {
  background: 0 0;
  border: none;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  text-transform: none;
  vertical-align: baseline;
  min-width: 0;
  overflow: visible;
  height: auto;
  cursor: pointer;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}
.center {
  text-align: center;
}
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}
.with-icon {
  display: inline-flex;
  align-items: flex-start;
  vertical-align: top;
}
.media {
  display: block;
  position: relative;
  overflow: hidden;
}
.media--transparent {
  background-color: transparent;
}
.media--square {
  padding-bottom: 100%;
}
.media--adapt {
  padding-bottom: calc(var(--height-ratio) * 100%);
}
.media--adapt > img {
  width: auto;
  height: auto;
}
.media--portrait {
  padding-bottom: 125%;
}
.media--landscape {
  padding-bottom: 66.6%;
}
.media--circle {
  padding-bottom: 100%;
  border-radius: 50%;
}
.media iframe,
.media noscript img,
.media video,
.media > img {
  object-fit: cover;
  object-position: var(--image-focal-points, center center);
  position: absolute;
  width: 100%;
  height: 100%;
}
.placeholder {
  background: var(--color-image-background);
}
.placeholder--adapt,
.placeholder--square {
  padding-top: 100%;
  height: 0;
}
.placeholder--landscape {
  padding-top: 66.6%;
}
.placeholder--landscape svg {
  height: 100%;
  width: auto;
}
.placeholder--portrait {
  padding-top: 125%;
  height: 0;
}
.placeholder-svg {
  top: 0;
}
.placeholder svg {
  position: absolute;
  left: 50%;
  max-width: 80rem;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  fill: currentcolor;
  background: var(--color-image-background);
}
.placeholder-svg {
  color: var(--color-placeholder-svg);
  fill: currentColor;
  position: absolute;
}
.bg-image-bg {
  background: var(--color-image-background);
}
.custom-bg {
  background: var(--background, #fff);
}
details summary::-webkit-details-marker {
  display: none;
}
.circle-divider::after {
  content: "\2022";
  margin: 0 1rem 0 1.2rem;
}
.no-js .no-js-hidden {
  display: none !important;
}
body {
  background-color: var(--color-body-background);
  --color-placeholder-svg: #7d7d7d;
}
.opacity-0 {
  opacity: 0;
}
.container {
  max-width: var(--container-max-width);
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .container {
    padding-left: var(--container-padding-x);
    padding-right: var(--container-padding-x);
  }
}
.btn {
  padding: 1rem 2rem;
  line-height: 1.3;
  white-space: nowrap;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  text-transform: uppercase;
}
.btn-sm {
  font-size: 0.8rem;
  padding: var(--btn-sm-padding, 8px 16px);
}
.btn-md {
  padding: var(--btn-md-padding, 10px 10px);
}
.btn-lg {
  padding: var(--btn-lg-padding, 12px 24px);
}
.btn-loader {
  z-index: 2;
  position: absolute;
  inset: 0;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  color: inherit;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
  transition: transform 0.4s ease-in-out;
}
.with-loader--show svg {
  display: none;
}
.with-loader--show .btn-content {
  opacity: 0;
}
.with-loader--show .btn-loader {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}
.btn-text {
  border: none;
  border-radius: 0;
  padding-left: 0;
  background: 0 0;
  color: var(--color-body-text);
  padding: 0;
  border-bottom: 2px solid var(--color-body-text);
  cursor: pointer;
}
.btn-text:hover {
  color: var(--color-body-text);
}
.btn-icon {
  width: var(--btn-size, 40px);
  height: var(--btn-size, 40px);
  border-radius: var(--border-radius, 4px);
  border: 1px solid var(--color-btn-icon-border, var(--color-border));
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-icon svg {
  width: var(--icon-size, 20px);
  height: var(--icon-size, 20px);
}
.btn-secondary {
  background: var(--color-secondary-btn-background);
}
.btn-secondary,
.shopify-challenge__button {
  --border-size: 2px;
  color: var(--color-btn-secondary-text);
  border: var(--border-size) solid var(--color-btn-secondary-border);
}
.btn-secondary:not(:disabled):focus,
.btn-secondary:not(:disabled):hover,
.shopify-challenge__button:not(:disabled):focus,
.shopify-challenge__button:not(:disabled):hover {
  background: var(--color-btn-bg-hover);
  border-color: var(--color-btn-bg-hover);
  color: var(--color-btn-text-hover);
  box-shadow: 0 0 0 0.2rem var(--color-btn-bg-hover);
}
.btn-secondary:disabled,
.shopify-challenge__button:disabled {
  border-color: var(--color-disabled);
  color: var(--color-disabled);
  cursor: not-allowed;
}
.btn-primary {
  color: var(--color-btn-text);
  background: var(--color-btn-bg);
  border: var(--border-size, 2px) solid var(--color-btn-bg);
  border-radius: 4px;
}
.btn-primary:not(:disabled):focus,
.btn-primary:not(:disabled):hover {
  color: var(--color-btn-text-hover);
  box-shadow: 0 0 0 0.2rem var(--color-btn-bg-hover);
  background: var(--color-btn-bg-hover);
  border-color: var(--color-btn-bg-hover);
}
.btn-primary:disabled {
  background: var(--color-disabled);
  border-color: var(--color-disabled);
  cursor: not-allowed;
}
.btn-primary:active {
  background: var(--color-btn-bg-hover);
}
.btn-primary .loading-overlay {
  background: inherit;
}
.btn-white {
  color: var(var(--color-btn-white), --color-btn-bg);
  background: #fff;
  border: 2px solid #fff;
  border-radius: 4px;
}
.btn-white:not(:disabled):focus,
.btn-white:not(:disabled):hover {
  color: #fff;
  box-shadow: 0 0 0 0.2rem var(--color-btn-bg-hover);
  background: var(--color-btn-bg-hover);
  border-color: var(--color-btn-bg-hover);
}
.btn-white:disabled {
  background: var(--color-disabled);
  border-color: var(--color-disabled);
  cursor: not-allowed;
}
.btn-white:active {
  background: var(--color-btn-bg-hover);
}
.btn-white .loading-overlay {
  background: inherit;
}
.btn-with-icon {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}
.btn-with-icon svg {
  width: 1rem;
  height: 1rem;
}
.btn-fw {
  width: 100%;
  display: inline-flex;
  justify-content: center;
}
.btn-content {
      display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
      line-height: normal;
}
.shopify-challenge__container .shopify-challenge__button {
  max-width: 8rem;
}
.wide-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
@media (min-width: 768px) {
  .btn-sm {
    font-size: 0.8rem;
    --btn-sm-padding: 10px 20px;
  }
  .btn-md {
    --btn-md-padding: 12px;
  }
  .btn-lg {
    --btn-lg-padding: 16px 32px;
  }
}
.swiper-nav-item {
  width: var(--nav-btn-size, 3.5rem);
  height: var(--nav-btn-size, 3.5rem);
  background: var(--btn-background, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius, 4px);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border: solid 1px var(--color-border);
}
.swiper-nav-item:hover {
  background: var(--background-hovered, var(--color-body-text));
  border-color: var(--color-border-hovered, var(--color-body-text));
}
.swiper-nav-item:hover svg {
  color: #fff;
}
.swiper-nav-item svg {
  width: var(--nav-arrow-size, 1rem);
  height: var(--nav-arrow-size, 1rem);
  color: var(--color-svg-icon, var(--color-body-text));
}
.tooltip {
  --tooltip-min-width: 7rem;
  --tooltip-font-size: 0.8rem;
  text-align: center;
  background: var(--color-tooltip-bg, #000);
  color: var(--color-tooltip-text, #fff);
  padding: 0.3rem 0.6rem;
  border-radius: 0.2rem;
  display: block;
  position: absolute;
  z-index: 20;
  box-shadow: -4px 6px 8px -1px rgba(0, 0, 0, 0.3);
  font-size: var(--tooltip-font-size);
  letter-spacing: normal;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}
.tooltip.show {
  opacity: 1;
}
.tooltip.hide {
  opacity: 0;
}
.tooltip:after {
  border: solid transparent 0.4rem;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
}
.tooltip--left:after {
  border-left: solid var(--color-tooltip-bg, #000) 0.4rem;
  bottom: -0.4rem;
  right: 0;
  top: calc(50% - 0.4rem);
  transform: translateX(100%);
}
.tooltip--top:after {
  border-top: solid var(--color-tooltip-bg, #000) 0.4rem;
  bottom: -0.75rem;
  left: 50%;
  transform: translate(-50%);
}
.tooltip--right:after {
  border-right: solid var(--color-tooltip-bg, #000) 0.4rem;
  left: -0.75rem;
  top: calc(50% - 0.4rem);
}
.tooltip--bottom:after {
  border-bottom: solid var(--color-tooltip-bg, #000) 0.4rem;
  top: -0.75rem;
  left: 50%;
  transform: translate(-50%);
}
[data-tooltip-text] {
  position: relative;
}
.accordion {
  border-bottom: 1px solid var(--accordion-color-border, var(--color-border));
}
.accordion-header {
  display: flex;
  position: relative;
  list-style: none;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.accordion-header-icon {
  padding-top: 4px;
  display: flex;
  align-items: center;
}
.accordion-header-icon svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease-in-out;
}
.accordion-header__title {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.accordion[open]:not(.is-closing) .accordion-header span svg {
  transform: rotateX(180deg);
}
.accordion-panel {
  transition: height 0.5s ease-in-out;
  overflow: hidden;
}
.accordion-content {
  padding-bottom: 1rem;
  color: var(--color-accordion-content, var(--color-secondary-text));
}
.accordion-content:after {
  transform: translateY(-5px);
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
  transition-property: transform, opacity;
  opacity: 0;
  content: "";
  display: block;
}
.accordion[open]:not(.is-closing) .accordion-content:after {
  transform: translateY(0);
  opacity: 1;
}
.modal {
  --close-btn-size: 2.5rem;
  overflow-y: scroll;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 20;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: opacity 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-content {
  position: relative;
  max-width: var(--modal-content-max-width, 90%);
  background: var(--color-modal-content-bg, #fff);
  margin: auto;
}
.modal-close {
  position: absolute;
  top: -0.8rem;
  right: -0.8rem;
  z-index: 2;
}
.modal-close-btn {
  background: var(--color-btn-bg);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--close-btn-size);
  height: var(--close-btn-size);
  border-radius: 4px;
  cursor: pointer;
}
.modal-close-btn svg {
  width: 1rem;
  height: 1rem;
}
.modal.hide {
  opacity: 0;
  z-index: -1;
  display: none;
}
.modal.fade-out {
  opacity: 0;
}
@media (min-width: 1024px) {
  .modal-content {
    max-width: 960px;
  }
}
.loading-overlay {
  width: 100%;
  position: absolute;
  top: 25%;
  left: 0;
}
.notification-container {
  position: fixed;
  top: 2rem;
  right: 0;
  z-index: 100;
}
.notification--info {
  --text-color: #004085;
  --background-color: #ffffff;
  --border-color: #004085;
}
.notification--success {
  --text-color: #57a772;
  --background-color: #ffffff;
  --border-color: #57a772;
}
.notification--warning {
  --text-color: #b3921f;
  --background-color: #ffffff;
  --border-color: #b3921f;
}
.notification--error {
  --text-color: #b55b5b;
  --background-color: #ffffff;
  --border-color: #b55b5b;
}
.notification-content {
  margin-right: 2rem;
  padding: 1rem 4rem 1rem 2rem;
  background: var(--background-color);
  color: var(--text-color);
  border: 1px solid var(--border-color);
  box-shadow: rgba(0, 0, 0, 0.1) 0 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0 4px 6px -2px;
  border-radius: 4px;
  position: relative;
  max-width: 20rem;
  font-size: 0.9rem;
}
.notification-content .h6 {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.notification-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding-right: 0.5rem;
  padding-top: 0.5rem;
}
.notification button {
  cursor: pointer;
  transition: background 0.3s ease-in-out;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.notification button svg {
  color: var(--text-color);
  width: 1.2rem;
  height: 1.2rem;
}
.notification button:hover {
  background: rgba(48, 48, 48, 0.1);
}
.breadcrumb > div {
  column-gap: 0.4rem;
}
.breadcrumb-separator {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.breadcrumb-separator svg {
  width: 1rem;
  height: 1rem;
}
.breadcrumb__item {
  line-height: 1.5;
  padding: 0.8rem 0;
  flex: none;
}
.breadcrumb-page-title {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
input,
select {
  width: 100%;
  height: var(--input-height, 2.5rem);
  border: 1px solid var(--color-input-border);
  border-radius: var(--border-radius, 4px);
  transition: border-color 0.2s ease-in-out;
  background: 0 0;
  color: var(--color-body-text);
  padding: 0 1rem;
}
input:focus,
input:hover,
select:focus,
select:hover {
  border-color: var(--color-input-border-focused);
}
textarea {
  border: 1px solid var(--color-input-border);
  color: var(--color-body-text);
  border-radius: 4px;
  transition: border-color 0.2s ease-in-out;
}
textarea:focus,
textarea:hover {
  border-color: var(--color-input-border-focused);
}
input[error] {
  border: 1px solid var(--color-input-error);
}
input[success] {
  border: 1px solid var(--color-input-success);
}
select {
  max-width: 100%;
  padding: 1rem;
  appearance: none;
}
.select {
  max-width: 14rem;
  position: relative;
  display: flex;
  justify-content: center;
}
.select .icon-caret {
  height: 0.8rem;
  width: 0.8rem;
  pointer-events: none;
  position: absolute;
  top: calc(50% - 0.2rem);
  right: 1.5rem;
  top: 1rem;
}
textarea {
  resize: vertical;
  width: 100%;
  padding: 0.5rem;
  background: 0 0;
  border: 1px solid var(--color-input-border);
}
textarea:focus,
textarea:hover {
  border-color: var(--color-input-border-focused);
}
.custom-select {
  --border-color: var(--color-input-border);
  --icon-size: 16px;
  position: relative;
  border: 1px solid var(--border-color);
}
.custom-select.open {
  border: 1px solid var(--border-color);
}
.custom-select select {
  display: none;
}
.custom-select .select-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  height: 100%;
  column-gap: 4px;
}
.custom-select .select-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.2s ease-in-out;
}
.custom-select .select-arrow svg {
  color: var(--color-text-primary);
  width: var(--icon-size);
  height: var(--icon-size);
}
.custom-select .active .select-arrow {
  transform: rotateX(180deg);
}
.custom-select .options-container {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  position: absolute;
  width: 100%;
  max-height: 20rem;
  overflow-y: auto;
  opacity: 1;
  z-index: 6;
  background: var(--color-body-background, #fff);
}
.custom-select .options-container.hide {
  opacity: 0;
  visibility: hidden;
}
.custom-select.options-top .options-container {
  bottom: 105%;
  box-shadow: 0 -10px 30px 0 rgba(0, 0, 0, 0.1);
}
.custom-select.options-top .options-container.hide {
  bottom: calc(100% + 1rem);
}
.custom-select.options-bottom .options-container {
  top: calc(100% + 1px);
  box-shadow: 0 -2px 30px 0 rgba(0, 0, 0, 0.1);
}
.custom-select.options-bottom .options-container.hide {
  top: calc(100% + 20px);
}
.custom-select .option-item {
  width: 100%;
  cursor: pointer;
  color: var(--color-subtext);
  transition: color 0.1s ease-in-out;
}
.custom-select .option-item:hover {
  color: var(--color-text-primary);
}
.ab-select {
  --input-height: 3rem;
  width: var(--select-width, 15rem);
  position: relative;
}
.ab-select select {
  border-radius: 4px;
  color: var(--color-body-text);
  font-size: 1rem;
  font-weight: 600;
  padding: 0 1rem;
  border: 1px solid var(--color-border);
}
.ab-select svg {
  height: 1.1rem;
  width: 1.1rem;
  pointer-events: none;
  position: absolute;
  right: 0.5rem;
  top: 1rem;
}
fieldset {
  --input-height: 3rem;
}
.field {
  margin-bottom: 1rem;
  --input-height: 3rem;
}
.field label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.field-msg {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 0.8rem;
  gap: 0.5rem;
}
.field-msg--error {
  color: var(--color-input-error);
}
.field-msg--success {
  color: var(--color-input-success);
}
.form-message {
  margin-bottom: 2rem;
}
.form-message h6,
.form-message p {
  display: flex;
  align-items: center;
}
.form-message svg {
  margin-right: 0.6rem;
}
.form-message .errors {
  font-size: 0.9rem;
}
.form-message ul {
  margin-top: 0.8rem;
}
.form-message--error svg {
  color: var(--color-input-error);
}
.field.checkbox label {
  display: inline-flex;
  align-items: baseline;
  column-gap: 12px;
  font-weight: 400;
  cursor: pointer;
}
.field.checkbox input {
  visibility: hidden;
  height: 0;
  position: absolute;
  z-index: 2;
  left: 0;
}
.field.checkbox .mark {
  width: var(--mark-size, 20px);
  height: var(--mark-size, 20px);
  border: var(--border-size, 2px) solid var(--color-input-border);
  border-radius: var(--border-radius, 4px);
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.field.checkbox .mark:after {
  content: "";
  visibility: hidden;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.field.checkbox input:checked ~ .mark {
  background-color: var(--color-btn-bg);
  border-color: var(--color-btn-bg);
}
.field.checkbox input:checked ~ .mark::after {
  visibility: visible;
}
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.price-bar {
  --slider-thumb-size: 22px;
  height: 0.4rem;
  position: relative;
  margin-right: var(--slider-thumb-size);
  transform: translateY(0);
}
.price-bar div {
  display: block;
}
.price-bar__inactive {
  height: 4px;
  width: calc(100% + var(--slider-thumb-size) / 2);
  background: #e6e6e6;
  border-radius: 4px;
}
.price-bar__active {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
  width: calc(100% + var(--slider-thumb-size) / 2);
  background: var(--color-body-text);
  border-radius: 4px;
}
.price-bar__control--min {
  width: var(--slider-thumb-size);
  height: var(--slider-thumb-size);
  background: #fff;
  border: 2px solid var(--color-body-text);
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.price-bar__control--max {
  width: var(--slider-thumb-size);
  height: var(--slider-thumb-size);
  background: #fff;
  border: 2px solid var(--color-body-text);
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .btn-text {
    padding-left: 0;
  }
  .swiper-nav-item {
    width: 2rem;
    height: 2rem;
  }
  .swiper-nav-item svg {
    width: 1.1rem;
    height: auto;
  }
}
.share-button .accordion {
  border-bottom: none;
  border-top: none !important;
  position: relative;
}
.share-button .accordion-header {
  justify-content: start;
  display: inline-flex;
  gap: 1rem;
  cursor: pointer;
}
.share-button .accordion-header:hover {
  text-decoration: underline;
}
.share-button .accordion-panel {
  position: absolute;
  width: 100%;
}
.share-button__fallback .accordion-content {
  background: #fff;
  display: flex;
  align-items: center;
  top: 3rem;
  left: 0.1rem;
  z-index: 3;
  width: 100%;
  min-width: max-content;
  padding-bottom: 0;
}
.share-button__fallback button {
  width: 4.4rem;
  padding: 1rem 0;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.share-button .field {
  min-width: auto;
  min-height: auto;
  transition: none;
  position: relative;
  width: 100%;
  display: flex;
  padding: 1rem 4.4rem 1rem 1rem;
  margin-bottom: 0;
  border: 1px solid var(--color-input-border);
}
.share-button .field input {
  border: none;
  height: 1.6rem;
  padding: 0;
}
.share-button__message {
  height: 1.6rem;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}
.share-buttons {
  display: flex;
  column-gap: 1rem;
}
.share-buttons ul {
  margin-bottom: 0;
}
.share-buttons ul li {
  display: inline-flex;
}
.share-buttons ul li a {
  display: flex;
}
.share-buttons ul li a svg {
  color: var(--color-body-text);
  fill: var(--color-body-text);
  transition: color 0.3s ease-in-out, fill 0.3s ease-in-out;
  width: 1.1rem;
  height: 1.1rem;
}
.share-buttons ul li:hover a svg {
  color: var(--color-btn-bg);
  fill: var(--color-btn-bg);
}
.share-buttons__copy {
  display: flex;
  cursor: pointer;
}
.share-buttons__copy svg {
  width: 1.5rem;
  height: 1.5rem;
}
.image-zoom-lens {
  width: 10rem;
  height: 10rem;
  border: 1px solid var(--color-btn-bg);
  position: absolute;
  z-index: 10;
  background: #fff;
  opacity: 0.4;
}
.image-zoom-pane__container {
  display: block;
  border: 1px solid var(--color-btn-bg);
  position: fixed;
  top: 0;
  z-index: 10;
  overflow: hidden;
}
.image-zoom-pane__container.hide {
  display: none;
}
.image-zoom-pane img {
  max-width: none;
  width: 100%;
}
@media (min-width: 1024px) {
  .image-zoom-lens:empty {
    display: block;
  }
  .image-zoom-lens.hide {
    display: none;
  }
}
@media (max-width: 1199px) {
  .image-zoom-lens {
    width: 8rem;
    height: 8rem;
  }
}
.ajax-drawer {
  inset: 0;
  z-index: 12;
}
.ajax-drawer__container {
  --width: 20rem;
  width: 40%;
  max-width: var(--width);
  height: 100%;
  background: var(--color-body-background);
  margin-left: auto;
}
.ajax-drawer__overlay {
  position: absolute;
  width: 100%;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  transition-property: background, opacity;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.ajax-drawer__content {
  position: relative;
  z-index: 13;
  height: 100%;
}
.ajax-drawer__header {
  padding: 0.8rem 1.6rem;
  background: var(--color-drawer-header-bg, #f4f4f4);
  height: 60px;
}
.ajax-drawer__header h5 {
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.ajax-drawer__header h5 svg {
  width: 30px;
  margin-right: 10px;
}
.ajax-drawer__header button {
  color: var(--color-body-text);
  display: flex;
}
.ajax-drawer__header button svg {
  width: 2rem;
  height: 2rem;
}
.ajax-drawer__footer {
  border-top: 1px solid var(--color-border);
}
@media (max-width: 767.5px) {
  .ajax-drawer__container {
    width: 85%;
  }
}
.ab-tab__panel--active {
  display: block;
}
.ab-tab__panel--active .tab-content {
  animation: fadeIn 0.7s ease-in-out 0s forwards;
}
.ab-tab__content {
  color: var(--color-tab-content, var(--color-body-text));
}
.ab-tab__navs {
  border-bottom: 1px solid var(--color-border);
}
.ab-tab__navs ul {
  display: flex;
  justify-content: center;
}
.ab-tab__nav {
  margin: 0 2rem;
  padding: 1rem 0;
  font-weight: 600;
  color: var(--color-secondary-text);
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
.ab-tab__nav::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  margin: 0 auto;
  background: var(--color-body-text);
  transform: scale(0, 1);
  transition: transform 350ms;
}
.ab-tab__nav:hover {
  color: var(--color-body-text);
}
.ab-tab__nav--active {
  color: var(--color-heading);
}
.ab-tab__nav--active:after {
  transform: scale(1, 1);
  width: 100%;
}
.ab-accordion__btn {
  padding: 1rem 0;
  font-size: 1.125rem;
  position: relative;
}
.ab-accordion__btn svg {
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
}
.ab-accordion__content {
  transition: max-height 0.5s ease-in-out;
}
@media (min-width: 768px) {
  .ab-tab__panel {
    display: none;
  }
  .ab-tab__panel--active {
    display: block;
  }
  .ab-tab__panel--active .tab-content {
    animation: fadeIn 0.7s ease-in-out 0s forwards;
  }
  .ab-accordion__btn {
    display: none;
  }
}
@media (max-width: 767px) {
  .ab-tab__navs {
    display: none;
  }
  .ab-accordion {
    border-bottom: 1px solid var(--color-border);
  }
  .ab-accordion__content {
    max-height: var(--accordion-content-max-height, 0);
    overflow: hidden;
  }
  .ab-accordion.open .ab-accordion__btn svg {
    transform: rotateX(180deg) translateY(50%);
  }
}
.link-copier {
  position: relative;
}
.link-copier__btn {
  display: flex;
  cursor: pointer;
}
.link-copier__btn svg {
  width: 1.5rem;
  height: 1.5rem;
}
.link-copier__success {
  position: absolute;
  font-size: 0.8rem;
  color: var(--color-success);
  max-width: 10rem;
  white-space: nowrap;
}
.image-zoom-lens {
  width: 10rem;
  height: 10rem;
  border: 1px solid var(--color-btn-bg);
  position: absolute;
  z-index: 10;
  background: #fff;
  opacity: 0.4;
}
.image-zoom-pane__container {
  display: block;
  border: 1px solid var(--color-btn-bg);
  background: #fff;
  box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  z-index: 10;
  overflow: hidden;
}
.image-zoom-pane__container.hide {
  display: none;
}
.image-zoom-pane__container .loading-overlay {
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-zoom-pane__container .spinner {
  width: 4rem;
  height: 4rem;
}
.image-zoom-pane img {
  max-width: none;
  width: 100%;
}
@media (min-width: 1024px) {
  .image-zoom-lens:empty {
    display: block;
  }
  .image-zoom-lens.hide {
    display: none;
  }
}
@media (max-width: 1199px) {
  .image-zoom-lens {
    width: 8rem;
    height: 8rem;
  }
}
.page-loader {
  --background-color: var(--color-body-background, #ffffff);
  --spinner-size: 5rem;
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--background-color);
  transition: opacity 1s ease-in-out;
}
.page-loader .spinner {
  display: inline-block;
  width: var(--spinner-size);
  height: var(--spinner-size);
  vertical-align: -0.125em;
  border: 0.2rem solid var(--spinner-color, var(--color-accent));
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: 1s linear infinite spinner;
  animation: 1s linear infinite spinner;
}
.countdown {
  column-gap: var(--x-gap, 1rem);
  font-size: var(--font-size, 1rem);
}
.countdown-digit {
  font-size: var(--digit-size, 2.5rem);
  color: var(--color-number);
  text-align: left;
}
.countdown-divider {
  font-size: var(--divider-size, 2rem);
  padding-left: var(--x-gap, 1rem);
  color: var(--color-label);
}
.countdown-label {
  color: var(--color-label);
  text-align: left;
}
@media (min-width: 576px) {
  .countdown {
    --x-gap: 2rem;
    --digit-size: 4rem;
    --divider-size: 4rem;
    --font-size: 1.5rem;
  }
}
:root {
  font-size: calc(var(--font-base-size, 16) * 1px);
}
body {
  font-family: var(--font-body-family);
  font-weight: 400;
  font-style: var(--font-body-style);
  color: var(--color-body-text);
  line-height: var(--body-line-height);
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-family: var(--font-heading-family);
  line-height: var(--heading-line-height);
  font-weight: var(--font-heading-weight);
}
p {
  line-height: var(--body-line-height);
}
a {
  color: var(--color-text-link);
}
a:hover {
  color: var(--color-text-link-hover);
}
.text-font-body {
  font-family: var(--font-body-family);
}
.text-font-heading {
  font-family: var(--font-heading-family);
}
.section-title {
  margin: 2rem auto;
  text-align: center;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-secondary {
  color: var(--color-text-secondary);
}
.text-link {
  color: var(--color-text-link);
}
.text-link:hover {
  color: var(--color-text-link-hover);
  text-decoration: underline;
}
.small-text {
  font-size: 0.8rem;
}
.small-text svg {
  width: 1rem;
  height: auto;
}
.uppercase {
  text-transform: uppercase;
}
.text-color-subtext {
  color: var(--color-subtext);
}
.text-color-error {
  color: var(--color-error);
}
.text-nowrap {
  white-space: nowrap;
}
.text-ellipsis {
  text-overflow: ellipsis;
}
.text-xs {
  font-size: 0.75rem;
}
.text-sm {
  font-size: 0.875rem;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 1.3;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 1.3;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 1.3;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1.3;
}
.text-6xl {
  font-size: 3.75rem;
  line-height: 1.3;
}
.text-7xl {
  font-size: 4.5rem;
  line-height: 1.3;
}
.text-8xl {
  font-size: 6rem;
}
.text-9xl {
  font-size: 8rem;
}
.text-custom-size {
  font-size: var(--mobile-font-size, 1rem);
}
@media (min-width: 992px) {
  .text-custom-size {
    font-size: var(--font-size, 1rem);
  }
}
@media (min-width: 576px) {
  .text-sm-center {
    text-align: center;
  }
  .text-sm-left {
    text-align: left;
  }
  .text-sm-right {
    text-align: right;
  }
}
@media (min-width: 768px) {
  .text-md-center {
    text-align: center;
  }
  .text-md-left {
    text-align: left;
  }
  .text-md-right {
    text-align: right;
  }
}
@media (min-width: 992px) {
  .text-lg-center {
    text-align: center;
  }
  .text-lg-left {
    text-align: left;
  }
  .text-lg-right {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .text-xl-center {
    text-align: center;
  }
  .text-xl-left {
    text-align: left;
  }
  .text-xl-right {
    text-align: right;
  }
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
@media (min-width: 320px) and (max-width: 767.5px) {
  .h1,
  h1 {
    font-size: 2rem;
  }
  .h2,
  h2 {
    font-size: 1.75rem;
  }
  .h3,
  h3 {
    font-size: 1.5rem;
  }
  .h4,
  h4 {
    font-size: 1.25rem;
  }
  .h5,
  h5 {
    font-size: 1.125rem;
  }
  .h6,
  h6 {
    font-size: 1rem;
  }
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.3;
  }
}
@media (min-width: 768px) {
  .h1,
  h1 {
    font-size: 2.25rem;
  }
  .h2,
  h2 {
    font-size: 2rem;
  }
  .h3,
  h3 {
    font-size: 1.75rem;
  }
  .h4,
  h4 {
    font-size: 1.5rem;
  }
  .h5,
  h5 {
    font-size: 1.25rem;
  }
  .h6,
  h6 {
    font-size: 1.125rem;
  }
}
.txt-content table {
  border-collapse: collapse;
}
.txt-content table td,
.txt-content table th {
  border-bottom: 1px solid var(--color-border);
  padding: 0.4rem 0;
  text-align: center;
}
.txt-content table tr td:last-child {
  border-right: 1px solid var(--color-border);
}
.txt-content table tr td:first-child {
  border-left: 1px solid var(--color-border);
}
.txt-content table th {
  background: var(--color-text-secondary);
  color: #fff;
}
.txt-content a {
  display: inline-flex;
  height: fit-content;
  color: var(--color-accent);
  position: relative;
}
.txt-content a:hover {
  color: var(--color-text-link-hover);
}
.txt-content ol,
.txt-content ul {
  padding-left: 2rem;
  margin: 1rem 0;
}
.txt-content ul {
  list-style: disc;
}
.txt-content ol {
  list-style: decimal;
}
.txt-content li {
  margin-bottom: 0.5rem;
}
.txt-content p {
  margin: 1rem 0;
}
.txt-content p:empty {
  display: block;
  height: 1rem;
}
header {
  border-bottom: 1px solid var(--color-border);
}
.header-search {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 350ms cubic-bezier(0, 0, 0.2, 1);
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  overflow-y: scroll;
}
.header-search__container {
  background: var(--color-header-search-bg, #fff);
  transform: translateY(-50%);
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.header-search--show .header-search__container {
  transform: translateY(0);
}
.header-search--show {
  z-index: 25;
  visibility: visible;
  opacity: 1;
}
.header-search__close {
  color: var(--color-body-text);
}
.header-wrapper {
  transition: background 0.3s ease-in-out;
}
#shopify-section-header {
  background-color: var(--color-header-background, #fff);
  border-bottom: solid 1px var(--color-border);
}
.header-container {
  --offset-x: 40px;
  --header-height: 60px;
  --color-level1: var(--color-header-text);
  --color-mobile-navigation-toggle: var(--color-header-text);
  background-color: var(--color-header-background, #fff);
  color: var(--color-header-text);
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
      line-height: normal;
  max-width: none;
}
.header-sticky-container .container {
  align-items: center;
}
.header-sub_menu {
  height: auto;
  background-color: var(--color-header-background, #fff);
  color: var(--color-header-text);
  justify-content: space-between;
  line-height: normal;
  max-width: none;
  border-top: 1px solid var(--color-border);
  padding: 10px 0;
}
.header-container a,
.header-sub_menu a {
  color: var(--color-level1);
}
.header-wrapper .header-container {
  align-items: center;
}
.header-container .header-logo {
  text-align: -webkit-center;
}
.header-container .header-logo h1 {
  color: inherit;
  font-size: 1.3rem;
  letter-spacing: 1px;
}
.header-container .header-logo h1 > a {
  display: inline-flex;
  line-height: 0;
}
.header-container .header-logo h1 > a:hover {
  color: inherit;
}
.header-container .secondary-menu {
  --color-menu-icon: var(--color-header-text);
}
@media (min-width: 992px) {
  .header-container > * {
    flex: 1 1 calc(100% / 3);
  }
  .header-sticky-container .container > * {
    flex: 1 1 calc(100% / 3);
  }
}
.header-logo a {
  line-height: 0;
  display: block;
}
.announcement-bar {
  background: var(--color-announcement-bg);
  color: var(--color-announcement-text);
  height: 2.2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.announcement-bar__messages {
  position: relative;
  height: 100%;
  flex: 1 1 auto;
}
.announcement-bar .announcement-text {
  color: var(--color-announcement-text);
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.6s ease-in-out;
  transform: translateY(10px);
}
.announcement-bar .announcement-text--active {
  opacity: 1;
  transform: translateY(0);
}
.announcement-bar button {
  padding-right: 1rem;
  padding-left: 0.5rem;
  background: var(--color-announcement-bg);
  color: var(--color-announcement-text);
  cursor: pointer;
}
.announcement-bar button svg {
  width: 1.2rem;
  height: 1.2rem;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.marquee-bar {
  width: fit-content;
  display: flex;
  line-height: 30px;
  transform: translateX(0);
  animation: marquee calc(0.4 * var(--marquee-duration)) linear infinite
    forwards;
}
.marquee-bar:hover {
  animation-play-state: paused;
}
.announcement-bar__messages:hover .marquee-bar {
  animation-play-state: paused;
}
@media (min-width: 768px) {
  .marquee-bar {
    animation: marquee calc(0.6 * var(--marquee-duration)) linear infinite
      forwards;
  }
}
@media (min-width: 992px) {
  .marquee-bar {
    animation: marquee calc(0.8 * var(--marquee-duration)) linear infinite
      forwards;
  }
}
@media (min-width: 1200px) {
  .marquee-bar {
    animation: marquee calc(1 * var(--marquee-duration)) linear infinite
      forwards;
  }
}
.no-js .announcement-bar .announcement-text:first-of-type {
  opacity: 1;
  transform: translateY(0);
}
.header-style-1 {
  position: relative;
}
.header-style-2 .header-logo {
  text-align: left;
}
.header-style-2 .main-navigation > ul {
  justify-content: center;
}
.template-index .header-transparent {
  position: absolute;
  width: 100%;
  height: var(--header-height);
  z-index: 2;
}
.template-index .header-transparent .header-container {
  --color-level1: var(--color-header-transparent-text);
  --color-mobile-navigation-toggle: var(--color-header-transparent-text);
  background: 0 0;
  color: var(--color-header-transparent-text);
}
.template-index .header-transparent .header-container .secondary-menu {
  --color-menu-icon: var(--color-header-transparent-text);
}
@media (min-width: 992px) {
  .template-index .header-transparent.header-container {
    left: 50%;
    transform: translateX(-50%);
  }
}
.header-sticky {
  position: relative;
  z-index: 11;
}
#shopify-section-header {
  position: relative;
  z-index: 12;
}
.header-sticky .header-sticky-container {
  position: absolute;
  z-index: -11;
  opacity: 0;
}
.header-sticky--onScroll {
  position: sticky !important;
  top: 0;
      display: flex
;
    justify-content: center;
}
.header-sticky--onScroll .header-sticky {
  height: var(--header-height);
}
.header-sticky--onScroll .header-sticky-container {
  opacity: 1;
      width: 95%;
    border-radius: 10px;
}
.header-sticky--onScroll.header-sticky--show .header-sticky-container {
  
    margin-top: 5px;
}
.header-sticky--show {
  transition: transform 0.3s ease-in-out;
  z-index: 11;
}
.header-sticky--show .header-container {
  animation: slideDown 1s ease-in-out;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
}
.header-sticky--hide .header-container {
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}
.header-sticky .main-navigation ul {
  justify-content: center;
}
.top-bar {
  height: var(--topbar-height, 2.5rem);
  border-bottom: 1px solid #e9e9e9;
  background: var(--color-topbar-background);
  color: var(--color-topbar-text);
  flex-direction: column;
  justify-content: center;
}
.top-bar a {
  color: var(--color-topbar-text);
}
.top-bar__social-media li {
  height: 100%;
  width: 2rem;
  display: inline-block;
}
.top-bar__social-media li svg {
  width: 1rem;
  height: 1rem;
}
.top-bar .custom-select {
  --border-color: transparent;
  --icon-size: 14px;
  font-size: 0.9rem;
}
.navigation-wrapper {
  --color-border: #eaeaea;
}
.header-wrapper:has(.menu-layout-1:hover),
.header-wrapper:has(.menu-layout-2:hover),
.header-wrapper:has(.menu-layout-3:hover) {
  background-color: var(--color-header-background);
}
.main-navigation {
  overflow: inherit;
  height: inherit;
}
.main-navigation__dropdown:focus-within,
ul.nav-bar > li:focus .main-navigation__dropdown,
ul.nav-bar > li:hover .main-navigation__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.main-navigation__dropdown {
  position: absolute;
  z-index: 3;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out,
    visibility 0.3s ease-in-out;
  transform: translateY(1.8rem);
  background-color: var(--color-body-background);
  color: var(--color-subtext);
  box-shadow: 0 100px 100px 0 rgba(0, 0, 0, 0.15);
  border-top: 1px solid var(--color-border);
}
.main-navigation__dropdown a {
  color: var(--color-menu);
}

.main-navigation .menu-layout-1__featured-products {
  position: relative;
}
.main-navigation .menu-layout-1__featured-products .h5 {
  color: var(--color-header-text);
}
.main-navigation .menu-layout-1__featured-products .swiper-nav-item {
  --nav-btn-size: 2.5rem;
  position: absolute;
  top: 30%;
  z-index: 2;
}
.main-navigation .menu-layout-1__featured-products .swiper-prev {
  left: -4rem;
}
.main-navigation .menu-layout-1__featured-products .swiper-next {
  right: -4rem;
}
.main-navigation .menu-layout-1__featured-products:hover .swiper-prev {
  left: 0.5rem;
}
.main-navigation .menu-layout-1__featured-products:hover .swiper-next {
  right: 0.5rem;
}
.mobile-navigation .menu-layout-1__product-list {
  scroll-snap-type: x mandatory;
}
.mobile-navigation .menu-layout-1__product-list .product-card {
  flex: 0 0 280px;
  max-width: 75%;
  scroll-snap-align: start;
  margin-bottom: 0;
}
.menu-layout-2 .product-card {
  margin-bottom: 0;
}
.menu-layout-2__promotions {
  --bs-gutter-x: 0.5rem;
}
.menu-layout-2__image-banner .media {
  padding-bottom: calc(100% * var(--height-ratio));
}
.mobile-navigation .menu-layout-2 .product-card__title {
  font-size: 0.9rem;
}
.mobile-navigation .menu-layout-2 .product-card .product-price {
  --product-price-size: 0.9rem;
}
.main-navigation .menu-layout-3 img {
  transition: transform 2s cubic-bezier(0.15, 0.75, 0.5, 1) 0s;
}
.main-navigation .menu-layout-3 .media:hover img {
  transform: scale3d(1.1, 1.1, 1.1);
}
.menu-layout-3 .menu-level-2 {
  max-width: 50%;
}
.mobile-navigation .menu-layout-3 .mobile-navigation__level-2 > * {
  border-bottom: 1px solid var(--color-border);
}
.mobile-navigation .menu-layout-3 .accordion-content img {
  margin-top: 0.8rem;
  object-position: var(--image-focal-points, center center);
}
.main-navigation .menu-layout-regular {
  position: relative;
}
.main-navigation .menu-layout-regular .main-navigation__dropdown {
  overflow: initial;
  box-shadow: 10px 20px 20px 0 rgba(0, 0, 0, 0.1);
  border-top: none;
}
.main-navigation .menu-layout-regular .main-navigation__dropdown-container {
  width: 100%;
}
.main-navigation .menu-layout-regular ul {
  width: 100%;
}
.main-navigation .menu-layout-regular li.menu-level-2 {
  transition: background 0.3s ease-in-out;
  position: relative;
  padding: 12px 20px;
  line-height: 1;
}
.main-navigation .menu-layout-regular li.menu-level-2:not(:last-child){
  border-bottom: solid 1px var(--color-border);
}
.main-navigation .menu-layout-regular li.menu-level-2:first-child {
  border-radius: 4px 4px 0 0;
}
.main-navigation .menu-layout-regular li.menu-level-2:last-child {
  border-radius: 0 0 4px 4px;
}
.mega-menu-desk .menu-level-2.links {
    transition: background .3s ease-in-out;
    position: relative;
    line-height: 1;
    border-bottom: solid 1px var(--color-border);
    padding: 15px 0px;  
}
.mega-menu-desk .menu-level-2.links:last-child {
    border: none;
}
.main-navigation .menu-layout-regular li.menu-level-2 svg {
  width: 0.8rem;
  height: 0.8rem;
}
.main-navigation .menu-layout-regular li.menu-level-2:hover {
      text-decoration: underline;
}

.main-navigation .menu-layout-regular li.menu-level-2:hover ul {
  transform: translate(0);
  opacity: 1;
  visibility: visible;
}
.main-navigation .menu-layout-regular li.menu-level-2 ul {
  margin-left: calc(100% - 1.2rem);
  background-color: var(--color-header-background);
  box-shadow: 11px 12px 20px -2px rgba(0, 0, 0, 0.05);
  border-left: 1px solid var(--color-border);
  border-radius: 4px;
  transform: translateY(1.8rem);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out,
    visibility 0.3s ease-in-out;
  visibility: hidden;
  min-width: 100%;
  width: max-content;
}
.main-navigation .menu-layout-regular li.menu-level-2 ul li {
  padding: 12px 0;
}
.mobile-navigation .menu-layout-regular a.menu-level-2, .mobile-navigation .menu-layout-1 a.menu-level-2-regular {
  padding: 1.2rem 1.25rem 1.2rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.mega-menu-desk > *:not(:last-child) {
  border-right: solid 1px var(--color-border);
}
.mobile-navigation {
  --mobile-nav-header-height: 56px;
  --mobile-nav-header-color: #ffffff;
}
.mobile-navigation__header {
  height: var(--mobile-nav-header-height);
  background: var(--color-body-text);
  color: var(--mobile-nav-header-color);
}
.mobile-navigation__header svg {
  color: var(--mobile-nav-header-color);
}
.mobile-navigation__header button {
  display: flex;
}
.mobile-navigation .btn-back {
  transition: 0.3s opacity ease-in-out;
}
.mobile-navigation .btn-back svg {
  width: 1.5rem;
  height: 1.5rem;
}
.mobile-navigation__toggle {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-navigation__toggle svg {
  color: var(--color-mobile-navigation-toggle);
  width: 1.75rem;
  height: 1.75rem;
}
.mobile-navigation__overlay {
  background: rgba(0, 0, 0, 0.4);
  transition-property: background, opacity;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: 15;
}
.mobile-navigation__drawer {
  width: 85%;
  max-width: 22.8rem;
  min-width: var(--mobile-nav-drawer-min-width, 320px);
  background: var(--color-body-background, #fff);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 20;
  margin-left: -1px;
}
.mobile-navigation__level-1 > li {
  border-bottom: 1px solid var(--color-border);
}
.mobile-navigation__level-1 .menu-level-1 a {
  color: inherit;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1.2rem 1.25rem 1.2rem 1.5rem;
  line-height: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: var(--color-menu);
}
.mobile-navigation__level-1 .menu-level-1 button > svg {
  width: 1.4rem;
  height: 1.4rem;
  display: inline;
  vertical-align: middle;
  color: var(--color-menu);
}
.mobile-navigation__level-2 {
  position: absolute;
  height: 100%;
  width: 100%;
  padding-bottom: 8rem;
  overflow-y: scroll;
  top: 0;
  background: var(--color-body-background, #fff);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
.mobile-navigation__level-2::-webkit-scrollbar {
  width: 0;
  background: 0 0;
}
.mobile-navigation__level-2 a {
  color: var(--color-menu);
}
.mobile-navigation__level-2 li > a {
  display: inline-block;
  line-height: 1;
  padding: 0.75rem 0;
}
.mobile-navigation .accordion ul {
  margin-bottom: 0;
}
.mobile-navigation .accordion-header {
  padding: 1.2rem 1.25rem 1.2rem 1.5rem;
  color: var(--color-menu);
}
.mobile-navigation .accordion-header-icon {
  right: 20px;
}
.mobile-navigation .accordion summary {
  font-size: 1rem;
}
.mobile-navigation .accordion-content {
  padding-bottom: 1.5rem;
  padding-left: 3rem;
  padding-right: 1rem;
}
.mobile-navigation .accordion-header svg {
  width: 1.4rem;
  height: 1.4rem;
}
.mobile-navigation__localization {
  color: var(--color-secondary-text);
  border-bottom: 1px solid var(--color-border);
  padding: 0 16px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 0.9rem;
}
.mobile-navigation__localization > div {
  column-gap: 4px;
}
.mobile-navigation__localization .custom-select {
  --border-color: transparent;
  --icon-size: 1rem;
}
.mobile-navigation__localization .custom-select .select-bar {
  color: var(--color-body-text);
  font-weight: 600;
  padding: unset;
}
.mobile-navigation__secondary-menu {
  height: 3.75rem;
  width: 100%;
  position: fixed;
  z-index: 5;
  bottom: 0;
  display: flex;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  background: var(--color-body-background, #fff);
}
.mobile-navigation__secondary-menu button {
  color: var(--color-menu-icon);
}
.mobile-navigation__secondary-menu > * {
  flex: 1 1 0px;
  display: inline-flex;
  justify-content: center;
  border-right: 1px solid var(--color-border);
  align-items: center;
}
.mobile-navigation__secondary-menu .feather {
  width: 1.5rem;
  height: 1.5rem;
}
.badge-counter {
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
  background: var(--color-accent);
  font-size: 0.75rem;
  border-radius: 50%;
  position: absolute;
  left: 1rem;
  top: -0.525rem;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.secondary-menu {
  --cart-counter-color: var(--color-header-background, #ffffff);
  justify-content: end;
}
.secondary-menu__items {
  column-gap: 10px;
  align-items: center;
}
.secondary-menu .tooltip {
  --tooltip-min-width: 4rem;
}
.secondary-menu a,
.secondary-menu button {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: currentColor;
}
@media (min-width: 767px) {
  .secondary-menu a,
  .secondary-menu button {
    padding: 10px 20px;
    gap: 15px;
    width: auto;
    position: relative;
  }
}
.secondary-menu svg {
  color: var(--color-menu-icon);
  width: 1.65rem;
  height: 1.65rem;
}
.secondary-menu .header-cart {
  position: relative;
}
.product-grid {
  --bs-gutter-x: 1rem;
}
@media (min-width: 767px) {
  .product-grid {
    --bs-gutter-x: 1.3rem;
  }
}
.product-card__variants {
  text-align: center;
}
.product-card__variants ul li {
  display: inline-block;
  margin: 0 4px;
  letter-spacing: normal;
  text-align: center;
  vertical-align: middle;
  position: relative;
}
.product-card__variants ul li:hover .tooltip {
  opacity: 1;
  visibility: visible;
}
.product-card__variants ul li label {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  margin: 0;
  background-size: cover;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid #fff;
  overflow: hidden;
  background-color: #ffe4e1;
}
.product-card__variants ul li label.selected {
  border-color: #000;
}
.price .price__badge-sale,
.price .price__badge-sold-out,
.price--on-sale .price__availability,
.price__availability,
.price__sale {
  display: none;
}
.price--on-sale .price__sale {
  display: inline-block;
}
.price--on-sale .price__sale .price__sale--discounted-from {
  text-decoration: line-through;
}
.product-price {
  font-size: var(--product-price-size, 1.4rem);
  display: inline-flex;
  flex-flow: wrap-reverse;
  gap: 10px;
}
.product-price:empty {
  display:none!important;
}
.product-price__sale {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.product-price__sale--discounted-from {
  text-decoration: line-through;
  color: var(--color-secondary-text);
  font-size: .8rem;
}
.product-price__current {
  display: inline-block;
  color: var(--color-product-regular-price);
}
.product-price--on-sale .product-price__current {
  color: var(--color-product-sale-price);
  font-weight: 500;
}
.product-label {
  width: var(--product-label-size, 2.625rem);
  height: var(--product-label-size, 2.625rem);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  display: none;
}
.product-label--sale {
  color: var(--color-product-label-sale);
  background: var(--color-product-label-sale-bg);
}
.product-label--new {
  color: var(--color-product-label-new);
  background: var(--color-product-label-new-bg);
}
.product-label--sold-out {
  color: var(--color-product-label-sold);
  background: var(--color-product-label-sold-bg);
}
@media (min-width: 992px) {
  .product-label {
    display: flex;
  }
}
.product-form__submit {
  width: 100%;
  height: 3rem;
  line-height: 1;
  flex-grow: 1;
  position: relative;
  flex-shrink: 1;
}
.product-form__submit .loading-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-form__dynamic-checkout {
  margin-top: 1.25rem;
  width: 100%;
}
.product-form
  .shopify-payment-button__button.shopify-payment-button__button--unbranded {
  background-color: var(--color-btn-bg);
  color: #fff;
  white-space: nowrap;
}
.product-form
  .shopify-payment-button__button.shopify-payment-button__button--unbranded:not(
    :disabled
  ):hover {
  color: var(--color-btn-bg);
  background-color: var(--color-body-background, #fff);
  box-shadow: 0 0 0 2px var(--color-btn-bg);
}
.shopify-payment-button__button--hidden {
  display: none !important;
}
.product-description {
  color: var(--color-product-desc);
}
.product-title {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: var(--color-product-title);
}
.product-title a {
  color: var(--color-product-title);
}
.product-variant {
  margin-top: 2rem;
}
.product-variant__inputs {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.product-variant__input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  width: 3rem;
}
.product-variant__inputs label {
  --transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 10px 10px 0 0;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--color-btn-bg);
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background var(--transition-duration) ease-in-out,
    color var(--transition-duration) ease-in-out;
}
.product-variant
  input:not(.product-variant__input--unavailable)
  + .label--tag:hover,
.product-variant
  input:not(.product-variant__input--unavailable):checked
  + .label--tag {
  background-color: var(--color-btn-bg-hover);
  color: var(--color-btn-text);
}

.product-variant__input--unavailable + label {
  background: #f2f2f2;
  color: var(--color-disabled);
  border: 1px solid transparent;
}
.product-variant__input--unavailable + label:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(
    to top right,
    transparent calc(50% - 1px),
    #bdbdbd,
    transparent calc(50% + 1px)
  );
}
.product-variant__option--swatch
  .product-variant__input--unavailable
  + label:after {
  left: 0;
}
.product-variant__option--swatch
  .product-variant__input--unavailable
  + label:before {
  opacity: 0.7;
}
.product-variant__input--unavailable:checked + label {
  border: 1px solid var(--color-disabled);
}
.product-variant__option:nth-child(2) {
  margin-top: 1.5rem;
}
.product-variant__option--swatch label {
  --aspect-ratio: 1;
  --option-width: 60px;
  display: inline-block;
  width: var(--option-width);
  height: calc(var(--option-width) / var(--aspect-ratio));
  padding: 0;
  min-width: 0;
  min-height: 0;
  vertical-align: top;
  border-radius: 3px;
  border: 1px solid var(--color-border);
  color: transparent;
  transition: border var(--transition-duration) ease-in-out;
}
.product-variant__option--swatch input:checked + label {
  background: 0 0;
}
.product-variant__option--swatch label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--swatch-background-color, #dedede);
  background-image: var(--swatch-background-image);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 0;
  transition: all var(--transition-duration) ease-in-out;
}
.product-variant__option--swatch input:checked + label,
.product-variant__option--swatch label:hover {
  border: 3px solid var(--color-btn-bg);
  border-radius: 5px;
}
.product-variant__option--swatch .label--square:before {
  border-radius: 3px;
}
.product-variant__option--swatch .label--circle,
.product-variant__option--swatch .label--circle:after,
.product-variant__option--swatch .label--circle:before {
  border-radius: 50%;
}
.product-variant .selected-option-variant {
  font-weight: 700;
}
.product-quantity {
  height: var(--qty-height, 3rem);
  width: var(--qty-width, 8rem);
  display: flex;
  justify-content: space-between;
  border-radius: 4px;
  border: 1px solid var(--color-input-border);
}
.product-quantity__input {
  color: var(--color-body-text);
  border: none;
  width: 2.5rem;
  height: calc(100% - 2px);
  padding: 0;
  text-align: center;
  appearance: none;
  font-size: 1rem;
}
.product-quantity__button {
  width: calc(4.5rem / var(--font-body-scale));
  line-height: normal;
  cursor: pointer;
}
.product-quantity__button svg {
  color: var(--color-body-text);
  width: 1rem;
  height: 1rem;
}
.product-media .swiper-nav-item {
  --nav-btn-size: 2.2rem;
  --nav-arrow-size: 1.1rem;
  position: absolute;
  top: 50%;
  z-index: 4;
}
.product-media .swiper-nav-prev {
  left: -3rem;
}
.product-media .swiper-nav-next {
  right: -3rem;
}
.product-media__swiper {
  position: relative;
  overflow: hidden;
}
.product-media__swiper.swiper-initialized:hover .swiper-nav-prev {
  left: 1rem;
}
.product-media__swiper.swiper-initialized:hover .swiper-nav-next {
  right: 1rem;
}
.product-media__nav-swiper {
  position: relative;
  overflow: hidden;
}
.product-media__nav-swiper .swiper-slide-thumb-active {
  border: 1px solid var(--color-body-text);
  padding: 1px;
}
.product-media__nav-swiper .swiper-slide {
  height: auto !important;
  cursor: pointer;
}
.product-media__nav-swiper .swiper-nav-thumbnail-next,
.product-media__nav-swiper .swiper-nav-thumbnail-prev {
  text-align: center;
  z-index: 2;
}
.product-media__nav-swiper .swiper-nav-thumbnail-next button,
.product-media__nav-swiper .swiper-nav-thumbnail-prev button {
  background: #fff;
  opacity: 0.8;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
}
.product-media__nav-swiper .swiper-nav-thumbnail-next svg,
.product-media__nav-swiper .swiper-nav-thumbnail-prev svg {
  width: 1rem;
  height: 1rem;
}
.product-media__nav-swiper[data-slider-direction="vertical"] {
  width: 15%;
  margin-top: 0;
}
.product-media__nav-swiper[data-slider-direction="vertical"]
  .swiper-nav-thumbnail-prev {
  position: absolute;
  width: 100%;
  top: 2rem;
  padding: 0 0.5rem;
  transform: translateY(-200%);
}
.product-media__nav-swiper[data-slider-direction="vertical"]
  .swiper-nav-thumbnail-prev
  svg {
  transform: rotate(90deg);
}
.product-media__nav-swiper[data-slider-direction="vertical"]
  .swiper-nav-thumbnail-next {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  padding: 0 0.5rem;
  transform: translateY(200%);
}
.product-media__nav-swiper[data-slider-direction="vertical"]
  .swiper-nav-thumbnail-next
  svg {
  transform: rotate(90deg);
}
.product-media__nav-swiper[data-slider-direction="vertical"]:hover
  .swiper-nav-thumbnail-prev {
  transform: translateY(0);
}
.product-media__nav-swiper[data-slider-direction="vertical"]:hover
  .swiper-nav-thumbnail-next {
  transform: translateY(0);
}
.product-media__nav-swiper[data-slider-direction="horizontal"] {
  width: 100%;
}
.product-media__nav-swiper[data-slider-direction="horizontal"]
  .swiper-nav-thumbnail-prev {
  position: absolute;
  left: 1rem;
  top: calc((100% - 3rem) / 2);
  transform: translateX(-200%);
}
.product-media__nav-swiper[data-slider-direction="horizontal"]
  .swiper-nav-thumbnail-next {
  position: absolute;
  right: 1rem;
  top: calc((100% - 3rem) / 2);
  transform: translateX(200%);
}
.product-media__nav-swiper[data-slider-direction="horizontal"]:hover
  .swiper-nav-thumbnail-prev {
  transform: translateX(0);
}
.product-media__nav-swiper[data-slider-direction="horizontal"]:hover
  .swiper-nav-thumbnail-next {
  transform: translateX(0);
}
.product-media .thumbnail-left {
  flex-direction: row-reverse;
}
.product-media .thumbnail-left .product-media__nav-swiper {
  padding-right: var(--nav-swiper-gap, 0.5rem);
}
.product-media .thumbnail-right {
  flex-direction: row;
}
.product-media .thumbnail-right .product-media__nav-swiper {
  padding-left: var(--nav-swiper-gap, 0.5rem);
}
.product-media .thumbnail-bottom {
  display: block;
}
.product-media .thumbnail-bottom .product-media__nav-swiper {
  margin-top: var(--nav-swiper-gap, 0.5rem);
}
.product-media .icon-play {
  --product-icon-play-size: 1rem;
  width: var(--product-icon-play-size);
  height: var(--product-icon-play-size);
  position: absolute;
  color: #000;
  left: calc(50% - calc(var(--product-icon-play-size) / 2));
  top: calc(50% - calc(var(--product-icon-play-size) / 2));
}
@media (min-width: 768px) {
  .product-media {
    --nav-swiper-gap: 0.75rem;
  }
  .product-media-sticky {
    position: sticky;
    top: 10%;
  }
}
@media (min-width: 1024px) {
  .product-media .icon-play {
    --product-icon-play-size: 2rem;
  }
}
.product-btn {
  width: var(--btn-size, 2.875rem);
  height: var(--btn-size, 2.875rem);
  background: var(--product-btn-bg, #fff);
  color: var(--product-btn-color, var(--color-text-dark));
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--btn-border-radius, 50%);
  transition: transform 0.4s ease-in-out, color 0.4s ease-in-out,
    background 0.4s ease-in-out, border 0.4s ease-in-out;
  cursor: pointer;
}
.product-btn svg {
  width: 1rem;
  height: 1rem;
  color: inherit;
}
.product-btn:not(:disabled):hover {
  background: var(--product-btn-bg-hover, var(--color-btn-bg-hover));
  color: var(--product-btn-text-hover, var(--color-btn-text-hover));
}
.product-btn:disabled {
  --product-btn-bg: #c1c1c1;
  --product-btn-color: #ffffff;
  cursor: not-allowed;
}
.product-rating {
  display: inline-flex;
  align-items: center;
}
.product-rating span {
  display: inline-flex;
}
.product-rating svg {
  width: var(--rating-star-size, 1.2rem);
  height: var(--rating-star-size, 1.2rem);
}
.product-card {
  flex: 0 0 auto;
  overflow: visible;
  --bs-gutter-x: 0.5rem;
}
.product-card__container {
  border: solid 1px var(--color-border);
  border-radius: 5px;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: var(--color-body-background);
}
.product-card__top {
  position: relative;
  overflow: hidden;
}
.product-card__bottom, .product-cart__bottom {
  padding: 12px;
}
.product-card__bottom .pix, .product-card__bottom .parcela {
  font-size: .9rem;display: block;margin: 3px 0px;width: 100%;line-height: normal;
}
.product-card .product-vendor {
  font-size: 0.9rem;
}
.product-card__image-placeholder {
  background: var(--color-image-background);
  width: 100%;
}
.product-card .placeholder-svg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.product-card__btns {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: none;
  z-index: 3;
  justify-content: center;
  column-gap: 10px;
  opacity: 0;
  transition: opacity 0.4s;
}
.product-card__btns .product-btn {
  transform: translateY(calc(100% + 1rem));
}
.product-card__btns .product-btn:nth-child(2) {
  transform: translateY(calc(100% + 2rem));
}
.product-card__btns .product-btn:nth-child(3) {
  transform: translateY(calc(100% + 3rem));
}
.product-card__actions-top {
  top: 0.25rem;
  right: 0.25rem;
  display: block;
  z-index: 3;
}
.product-card__actions-top .product-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
.product-card__actions-top .product-btn:hover {
  background: var(--color-body-text);
  color: #fff;
}
.product-card__title {
  line-height: 1.5;
  margin-bottom: 8px;
  font-size: 1rem;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box !important;
    font-weight: 600;
}
.product-card .product-price {
  line-height: 1.2;
  --product-price-size: 1rem;
  gap: 5px;
}
.product-card__label {
  top: 1rem;
  left: 1rem;
}
.product-card .label {
  font-size: 0.8rem;
  padding: 3px 6px 2px;
  border-radius: 2px;
  line-height: 1.5;
  text-align: center;
  display: inline-block;
}
.product-card .label-sale {
  color: var(--color-sale-label-text);
  background-color: var(--color-sale-label-background);
}
.product-card .label-sold-out {
  color: var(--color-sold-out-label-text);
  background-color: var(--color-sold-out-label-background);
}
.product-card .label-new-in {
  color: var(--color-new-in-label-text);
  background-color: var(--color-new-in-label-background);
}
.product-card .label-top-left {
  top: 0.5rem;
  left: 0.5rem;
}
.product-card .label-top-center {
  top: 0.5rem;
  left: 35%;
}
.product-card .label-top-right {
  top: 0.5rem;
  right: 0.5rem;
}
.product-card .label-middle-center {
  top: 42%;
  left: 35%;
}
.product-card .label-bottom-left {
  bottom: 0.5rem;
  left: 0.5rem;
}
.product-card .label-bottom-center {
  bottom: 0.5rem;
  left: 35%;
}
.product-card .label-bottom-right {
  bottom: 0.5rem;
  right: 0.5rem;
}
.product-card__description {
  color: var(--color-product-desc);
  font-size: 0.9rem;
  display: none;
}
.product-card .product-form--list-view {
  display: none;
}
.product-card__top:hover .product-card__btns {
  opacity: 1;
}
.product-card__top:hover .product-btn {
  transform: translateY(0);
}
.product-card__media {
  overflow: hidden;
  position: relative;
  border-radius: 5px 5px 0px 0;
}
.product-card__media.image-hover .featured-img {
  opacity: 1;
  transition: opacity 0.8s ease;
}
.product-card__media .secondary-img {
  width: 100%;
  position: absolute;
  top: 0;
  opacity: 0;
  transition: opacity 0.8s ease,
    transform 1.1s cubic-bezier(0.15, 0.75, 0.5, 1) 0s;
}
.product-card__swatches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 8px;
  padding: 16px 0 8px;
}
.product-card__swatches-wrapper {
  width: 100%;
  transition: opacity 0.4s;
  cursor: pointer;
}
.product-card__swatches input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  width: 3rem;
}
.product-card__swatches input:checked + label {
  background: 0 0;
  border: 0.1rem solid var(--color-btn-bg);
}
.product-card__swatches input:checked + label::before {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
}
.product-card__swatches label:hover::before {
  transform: scale(1.1);
}
.product-card__swatches label {
  --aspect-ratio: 1;
  --width: 1.75rem;
  --transition-duration: 0.3s;
  display: inline-block;
  width: var(--width);
  height: calc(var(--width) / var(--aspect-ratio));
  padding: 0;
  min-width: 0;
  min-height: 0;
  vertical-align: top;
  border-radius: 3px;
  border: none;
  color: transparent;
  border: 1px solid var(--color-border);
  transition: border var(--transition-duration) ease-in-out;
  position: relative;
  cursor: pointer;
  transition: background var(--transition-duration) ease-in-out,
    color var(--transition-duration) ease-in-out;
}
.product-card__swatches label.label--circle,
.product-card__swatches label.label--circle:after,
.product-card__swatches label.label--circle:before {
  border-radius: 50%;
}
.product-card__swatches label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--swatch-background-color, #dedede);
  background-image: var(--swatch-background-image);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 0;
  transition: all var(--transition-duration) ease-in-out;
}
.product-card .variant-img {
  width: 100%;
  position: absolute;
  top: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card .variant-img--active {
  opacity: 1;
}
.product-card__variants {
  text-align: center;
}
.product-card__variants ul li {
  display: inline-block;
  margin: 0 4px;
  letter-spacing: normal;
  text-align: center;
  vertical-align: middle;
  position: relative;
}
.product-card__variants ul li:hover .tooltip {
  opacity: 1;
  visibility: visible;
}
.product-card__variants ul li label {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  margin: 0;
  background-size: cover;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid #fff;
  overflow: hidden;
  background-color: #ffe4e1;
}
.product-card__variants ul li label.selected {
  border-color: #000;
}
.no-js .product-card__media noscript img {
  position: absolute;
}
@media (min-width: 1024px) {
  .product-card__btns {
    display: flex;
  }
  .product-card__media:hover .secondary-img {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
}
.product-quickview {
  --quickview-max-width: 940px;
  z-index: 12;
  overflow: initial;
}

.product-quickview__container {
  transition: inherit;
  max-width: var(--quickview-max-width);
  background: var(
    --color-quickview-content-bg,
    var(--color-modal-content-bg, #fff)
  );
  display: flex;
  overflow: auto;
  height: 470px;
}

.product-quickview__product-media {
  width: 50%;
}
.product-quickview__product-detail {
  padding: 2.5rem 2rem;
  overflow-y: scroll;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
}
.product-quickview__buy-buttons {
  margin-top: 2rem;
}
.product-quickview .product-description {
  margin-bottom: 0.8rem;
}
@media (max-width: 576px) {
  .product-quickview__container {
    flex-direction: column;
    height: -webkit-fill-available;
  }
  .product-quickview .modal-content {
  max-height: 90%;
  height: -webkit-fill-available;
  }
  .product-quickview__product-media {
  width: 100%;
  }
  .product-quickview__product-detail {
  width: 100%;
  border-top: 1px solid var(--color-border);
  overflow: visible;
  }
}
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}
.pr-image.fade-in {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.pr-image.fade-in.lazyloaded {
  opacity: 1;
}
.lazyload-placeholder {
  background: var(--color-image-background);
}
.lazyload-placeholder.lazyloaded {
  background: unset;
}
.product-form--sticky {
  --select-width: auto;
  min-height: 4.5rem;
  bottom: 0;
  width: 100%;
  background: var(--product-form-sticky-bg, #fff);
  box-shadow: 0 -2px 6px #20212447;
  padding: 0.5rem 0;
  z-index: 4;
}
.product-form--sticky .product-variant {
  margin-top: 0;
}
.product-form--sticky .media {
  height: auto;
  width: 4rem;
}
.product-form--sticky .product-price {
  --product-price-size: 1rem;
}
.product-form--sticky .product-info {
  white-space: nowrap;
  overflow: hidden;
  max-width: 8rem;
  text-overflow: ellipsis;
}
.product-form--sticky .product-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0;
}
.product-form--sticky .product-quantity {
  --qty-width: 7rem;
}
.product-form--sticky .product-actions {
  display: inline-flex;
  column-gap: 1rem;
  width: 100%;
}
.product-form--sticky .product-actions .product-form__dynamic-checkout {
  margin-top: 0;
}
.product-form--sticky .product-form__submit {
  font-size: 13px;
}
.product-form--sticky .product-btn {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 6px;
  border: 1px solid var(--color-border);
}
.product-form--sticky .product-btn svg {
  width: 18px;
  height: 18px;
}
.product-form--sticky .product-btn.js-remove-wishlist {
  border: none;
}
.product-form--sticky .product-btn:hover {
  border: none;
}
body:has(.product-form--sticky:not(.translate-y-b-hidden)) {
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .product-form--sticky {
    --select-width: 10rem;
  }
  .product-form--sticky .product-actions {
    width: auto;
  }
}
@media (min-width: 1024px) {
  .product-form--sticky .media {
    height: 5rem;
    width: 3.75rem;
  }
  .product-form--sticky .product-info {
    max-width: unset;
  }
}
.product-detail__info-container {
  margin-top: 2rem;
}
.product-detail__price {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.product-detail__price .pix {
  font-size: .9rem;display: block;margin: 3px 0px;width: 100%;
}
.product-detail__price .pix  svg {
    fill: currentColor;
    width: 17px;
    height: 15px;
    margin-right: 3px;
    position: relative;
    left: 2px;
    top: 2px;
}
.product-detail__price .parcela {
font-size: .9rem; display: block; margin: 3px 0; width: 100%;
}
.pay_popup {
  cursor:pointer;display: block;color: var(--color-text-link-hover););background: white;text-decoration: underline;    font-size: .85rem;
    margin: 5px 0;

}
.product-detail__price .parcela svg {
  position: relative; top: 4px;
}
.product-detail .product-description {
  margin-top: 1rem;
}
.product-detail__buy-buttons {
  margin-top: 2rem;
}
.product-detail__buy-buttons .wishlist-btn {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid var(--color-border);
}
.product-detail__buy-buttons .wishlist-btn svg {
  width: 1.125rem;
  height: 1.125rem;
}
.product-detail__buy-buttons .wishlist-btn.js-remove-wishlist {
  border: none;
}
.product-detail .accordion-content p {
  color: var(--color-text-secondary);
}
.product-detail .accordion-header {
  padding-top: 0;
}
.product-detail .accordion-content {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}
.product-detail__custom,
.product-detail__price,
.product-detail__quantity,
.product-detail__rating,
.product-detail__text {
  margin: 1rem 0;
}
.product-detail__vendor a {
  color: var(--color-secondary-text);
}
.product-detail .spr-starrating {
  justify-content: flex-start !important;
}
.product-detail__text {
  gap: 0.8rem;
  font-size: var(--text-size);
}
.product-detail__text svg {
  width: var(--icon-size);
  height: var(--icon-size);
  margin-top: calc(var(--text-size) / 4);
  fill: var(--color-text-secondary);
}
.product-detail__custom-content,
.product-detail__custom-liquid {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}
.product-detail .custom-text {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.product-detail .trust-badge-block {
  background-color: var(--background-color);
  border-radius: 8px;
  padding: 1rem 1rem;
  border: solid 1px var(--color-border);
  padding-top: 0;
  margin-top: 30px;
}
.product-detail .trust-badge-block .text-center {
  width: max-content;
  margin: auto;
  padding: 0 12px;
  position: relative;
  top: -10px;
  background: var(--color-body-background);
  color: var(--color-body-text);
}
.product-detail .trust-badge-block .payment-list li {
  padding: 0 0.4rem;
}
.product-detail .trust-badge-block .placeholder {
  height: 5rem;
  width: 100%;
  display: inline-block;
}
.product-detail .trust-badge-block .placeholder svg {
  width: 15rem;
  height: 15rem;
}
.product-detail .delivery-estimation__text {
  font-weight: 600;
}
.product-detail .delivery-estimation svg {
  width: 20px;
  height: 20px;
}
.product-detail .shipping-text {
  display: flex;
  column-gap: 0.5rem;
  align-items: center;
  line-height: 1.5;
}
.product-detail .shipping-text svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 768px) {
  .product-detail__info-container {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .product-detail__info-container {
    padding-left: 2rem;
    position: sticky;
    top: calc(2rem + var(--header-height));
  }
}
@media (min-width: 1024px) {
  .product-detail-blocks {
    transition: opacity 0.3s ease-in-out;
  }
  .product-detail-blocks.zoom-pane-show {
    opacity: 0.5;
  }
}
.spr-container {
  color: var(--color-body-text);
}
.spr-container .spr-header-title {
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: center;
}
.spr-container .spr-summary-actions-newreview {
  float: none;
  display: inline-block;
  border-radius: var(--border-radius, 4px);
  border: 1px solid var(--color-border);
  padding: 12px 24px;
  transition: all 0.4s;
}
.spr-container .spr-summary-actions-newreview:hover {
  color: var(--color-btn-text-hover);
  box-shadow: 0 0 0 0.2rem var(--color-btn-bg-hover);
  background: var(--color-btn-bg-hover);
  border-color: var(--color-btn-bg-hover);
}
.spr-container .spr-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex-flow: column;
  row-gap: 0.5rem;
}
.spr-container .spr-summary-caption {
  flex: 1;
  margin-left: 12px;
  text-align: left;
}
.spr-container .spr-starrating {
  line-height: 0;
}
.spr-container .spr-review-header {
  display: flex;
  flex-flow: column;
}
.spr-container .spr-review-header-title {
  order: 1;
  margin-bottom: 0.8rem;
  font-size: 1.125rem;
}
.spr-container .spr-review-header-starratings {
  font-size: 0.7rem;
}
.spr-container .spr-review-header-byline {
  font-style: inherit;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.spr-container .spr-review-content-body,
.spr-container .spr-review-reply-body {
  color: var(--color-subtext);
  font-size: 1rem;
  line-height: 1.8;
}
.spr-container .spr-review-reply {
  background-color: #f7f7f7;
  border-radius: 4px;
  display: flex;
  flex-flow: column;
  margin-bottom: 0.75rem;
  margin-left: 3rem;
  margin-top: 2rem;
  padding: 1rem !important;
}
.spr-container .spr-review-reply-shop {
  font-size: 1.125rem;
  font-style: inherit;
}
.spr-container .spr-review-reportreview {
  color: #9f9f9f;
}
.spr-container .spr-form-actions input[type="submit"] {
  padding: 12px 24px;
}
@media (min-width: 768px) {
  .spr-container .spr-header-title {
    text-align: left;
  }
  .spr-container .spr-summary {
    flex-flow: row;
  }
}
.search-form {
  max-width: var(--search-form-max-width, 600px);
  margin: 0 auto;
}
.search-form__input {
  --input-height: 3rem;
  --border-radius: 6px;
  font-size: 0.9rem;
}
.search-form button[type="submit"] {
  right: 1rem;
  cursor: pointer;
}
.search-form button[type="submit"] svg {
  width: 1.5rem;
  height: 1.5rem;
}
.main-search__results .row {
  --bs-gutter-x: 1rem;
}
.main-search .search-results {
  display: none;
}
@media (min-width: 992px) {
  .main-search__results .row {
    --bs-gutter-x: 1.5rem;
  }
}
.header-search .header-logo {
  display: none;
}
.header-search .search-form {
  padding-right: 3rem;
}
.header-search__close {
  top: 1.75rem;
  right: 1rem;
  display: flex;
}
.header-search .search-results {
  margin-top: 2rem;
}
.header-search .search-results .row {
  --bs-gutter-x: 1rem;
}
.header-search .search-results__container {
  max-width: var(--header-search-results-width, 75rem);
  margin: 0 auto;
}
.header-search .product-card__top {
  margin-bottom: 0.5rem;
}
@media (min-width: 576px) {
  .header-search__close {
    top: 2.75rem;
    right: 3rem;
  }
}
@media (min-width: 992px) {
  .header-search .header-logo {
    display: flex;
    width: 5rem;
    height: 3rem;
    position: absolute;
  }
}
.pagination__list {
  --pagination-item-size: 2.5rem;
  --pagination-item-background: #f3f3f3;
}
.pagination__list li {
  height: var(--pagination-item-size);
  width: var(--pagination-item-size);
  margin-left: 0.6rem;
}
.pagination__list li a,
.pagination__list li span {
  border-radius: 4px;
}
.pagination__list li.page--current span {
    background: var(--color-accent);
    color: white;
}
.pagination__list a,
.pagination__list span {
  align-items: center;
  display: flex;
  height: var(--pagination-item-size);
  width: var(--pagination-item-size);
  justify-content: center;
  color: var(--color-body-text);
      border: solid 1px var(--color-border);
}
.pagination__list a:hover,
.pagination__list span:hover {
  background: var(--pagination-item-background);
  color: var(--color-body-text);
}
.pagination__list svg {
  width: 1.2rem;
  height: 1.2rem;
}
.filter-price {
  padding-bottom: 1rem;
}
.filter-price .field {
  display: flex;
  gap: 1rem;
}
.filter-price .field input {
  border: none;
  padding-right: 0;
  padding-left: 0.5rem;
  font-size: 0.9rem;
}
.filter-price__input {
  --input-height: 2.5rem;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  flex: 0 1 50%;
}
.filter-price__currency {
  font-size: 0.8rem;
}
.collection-hero--with-image {
  --color-text: #f4f4f4;
  position: relative;
  color: var(--color-text);
}
.collection-hero--with-image .collection-hero__title {
  color: var(--color-text);
}
.collection-hero--with-image a {
  color: var(--color-text);
}
.collection-hero--with-image a:hover {
  color: inherit;
}
.collection-hero__content {
  position: relative;
  z-index: 2;
}
.collection-hero__description {
  max-width: 40rem;
  margin: 0 auto;
}
.collection-hero__media {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.collection-hero__media::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.collection-hero__media > img {
  object-fit: cover;
  object-position: center center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.th-loading-bar,
.th-loading-overlay {
  position: relative;
}
.th-loading-bar:before {
  background: #666;
  content: "";
  height: 3px;
  left: 0;
  opacity: 1;
  position: fixed;
  top: 0;
  width: 0;
  z-index: 6;
  opacity: 1;
}
.th-loading-bar:before {
  transition: width 0.4s linear, opacity 0.4s linear;
}
.th-loading-bar.loading:before {
  animation: bar-loading 0.4s ease-in-out forwards;
}
.th-loading-bar.loaded:before {
  width: 100%;
}
.th-loading-bar.finished:before {
  width: 100%;
  opacity: 0;
}
.main-list-collections .row {
  row-gap: 3rem;
}
@keyframes bar-loading {
  0% {
    width: 0%;
  }
  to {
    width: 80%;
  }
}
.th-loading-overlay:after {
  --al-finish-duration: 0.04s;
  background-color: var(--color-body-background);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  pointer-events: auto;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity var(--al-finish-duration) ease-in-out
    var(--al-finish-duration);
  z-index: -1;
}
.th-loading-overlay.loading:after {
  opacity: 0.6;
  z-index: 4;
}
.collection-card .media {
  border-radius: 10px;
}
.collection-card .media img {
  transition: transform 2s cubic-bezier(0.15, 0.75, 0.5, 1) 0s;
}
.collection-card:hover .media img {
  transform: scale3d(1.1, 1.1, 1.1);
}
.collection-card__title {
  font-size: 0.85rem;
  font-weight: 600;
}
.collection-card__total {
  color: var(--color-secondary-text);
}
.collection-card__image-placeholder {
  background: var(--color-image-background);
  position: relative;
}
@media (min-width: 576px) {
  .collection-card__title {
    font-size: 1rem;
  }
  .collection-list__swiper .swiper-scrollbar {
    display: none;
  }
}
.collection-list__swiper .swiper-scrollbar {
  bottom: 0px;
}
.collection-list__swiper .swiper-scrollbar-drag {
  background: var(--color-body-text);
}
.collection {
  padding-bottom: 2rem;
  --bs-gutter-x: 1rem;
  flex-wrap: wrap;
}
.collection__sidebar {
  padding: 0;
  transform: translateX(-100%);
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  max-width: 90%;
  padding: 0 1rem;
  background: var(--color-body-background, #fff);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 11;
  overflow-y: scroll;
}
.collection__sidebar-toggle {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 1rem;
  color: var(--color-body-text);
}
.collection__sidebar-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}
.collection__sidebar-mobile-header {
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 1rem;
}
.collection__sidebar-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition-property: background, opacity;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  display: none;
  z-index: 10;
  opacity: 0;
}
.collection__sidebar-mobile-overlay.opacity-1 {
  opacity: 1;
}
.collection__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  height: 2.5rem;
}
.collection .custom-select {
  --custom-select-options-width: 12rem;
  --border-color: var(--color-border);
  height: 2.5rem;
  width: unset;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
}
.collection .custom-select .options-container {
  box-shadow: -2px 27px 27px -6px rgba(0, 0, 0, 0.1);
}
.collection .custom-select .option-item:hover {
  color: var(--color-text-primary);
}
.collection__views {
  --button-size: 2rem;
  display: inline-flex;
  column-gap: 10px;
  padding-left: 1rem;
  justify-content: end;
}
.collection__views button {
  width: var(--button-size);
  height: var(--button-size);
  border-radius: 4px;
  background: var(--collection-view-button-bg, #f2f2f2);
  color: #000;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.collection__views button.active {
  background: var(--color-btn-bg-hover);
}
.collection__views button.active svg {
  color: #fff;
}
.collection__views button:first-child:not(.active) + button {
  background: var(--color-btn-bg-hover);
}
.collection__views button:first-child:not(.active) + button svg {
  color: #fff;
}
.collection__views button:nth-child(n + 4) {
  display: none;
}
.collection__views button:nth-child(n + 3) {
  display: none;
}
.collection__filter {
  margin-bottom: 3rem;
  padding: 0 1rem;
  margin-bottom: 1rem;
}
.collection__filter label {
  color: var(--color-secondary-text);
}
.collection__filter .label-disabled {
  color: var(--color-disabled);
  cursor: not-allowed;
}
.collection__filter-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--filter-toggle-bg, #f2f2f2);
  border-radius: 4px;
}
.collection__filter-toggle svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--color-filter-toggle, #000);
}
.collection__filter-toggle-container {
  display: flex;
  justify-content: space-between;
}
.collection__filter-list label {
  cursor: pointer;
}
.collection__filter-size {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.collection__filter-size li {
  display: inline-block;
}
.collection__filter-size input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  width: 2.5rem;
}
.collection__filter-size input:checked + label {
  background: var(--color-body-text);
  color: #fff;
}
.collection__filter-size label {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--filter-tag-bg, #f0f0f0);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.collection__filter-size label:hover {
  background: var(--color-body-text);
  color: #fff;
}
.collection__filter-tags {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.collection__filter-tags li {
  display: inline-block;
}
.collection__filter-tags input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  width: 100%;
}
.collection__filter-tags input:checked + label {
  background: var(--color-body-text);
  color: #fff;
}
.collection__filter-tags label {
  padding: 0.4rem 1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--filter-tag-bg, #f0f0f0);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}
.collection__filter-tags label:hover {
  background: var(--color-body-text);
  color: #fff;
}
.collection__filter--swatch {
  --transition-duration: 0.3s;
  --swatch-item-size: 2rem;
}
.collection__filter--swatch label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-color: var(--filter-swatch-color, #dedede);
  background-image: var(--filter-swatch-image);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 0;
  transition: all var(--transition-duration) ease-in-out;
}
.collection__filter--swatch label {
  --aspect-ratio: 1;
  margin-bottom: 0;
  width: var(--swatch-item-size);
  display: inline-block;
  height: calc(var(--swatch-item-size) / var(--aspect-ratio));
  padding: 0;
  min-width: 0;
  min-height: 0;
  vertical-align: top;
  border-radius: 6px;
  border: 1px solid var(--color-border);
  color: transparent;
  transition: border var(--transition-duration) ease-in-out;
  position: relative;
  cursor: pointer;
}
.collection__filter--swatch label.label--circle,
.collection__filter--swatch label.label--circle:after,
.collection__filter--swatch label.label--circle:before {
  border-radius: 50%;
}
.collection__filter--swatch input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  width: 3rem;
}
.collection__filter--swatch input:checked + label,
.collection__filter--swatch label:hover {
  border: 2px solid var(--color-btn-bg);
}
.collection__filter--swatch input:checked + label::before,
.collection__filter--swatch input:not(:disabled) + label:hover::before {
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
}
.collection__filter--swatch input:disabled + label {
  background: #f2f2f2;
  color: var(--color-text-secondary);
  border: 1px solid transparent;
}
.collection__filter--swatch input:disabled + label:before {
  opacity: 0.5;
}
.collection__filter--swatch input:disabled + label:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background: linear-gradient(
    to top right,
    transparent calc(50% - 1px),
    #bdbdbd,
    transparent calc(50% + 1px)
  );
}
.collection__filter--swatch ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.collection__filter--swatch li {
  display: inline-block;
}
.collection__filter-header {
  display: flex;
  justify-content: space-between;
}
.collection__filter-list.tag-style-inline_link li.list-item {
  line-height: 2rem;
}
.collection__filter-list.tag-style-inline_link li.list-item a {
  display: inline-block;
  line-height: 24px;
  position: relative;
  color: var(--color-text-secondary);
  transition: all 0.3s;
  pointer-events: auto;
}
.collection__filter-list.tag-style-inline_link li.list-item a:after {
  background-color: var(--color-text-primary);
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transition: all 0.3s ease-in-out;
  width: 0;
}
.collection__filter-list.tag-style-inline_link li.list-item a:hover,
.collection__filter-list.tag-style-inline_link li.list-item-active a {
  color: var(--color-text-primary);
}
.collection__filter-list.tag-style-inline_link li.list-item a:hover:after,
.collection__filter-list.tag-style-inline_link li.list-item-active a:after {
  width: 100%;
}
.collection .applied-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.3rem 0.6rem;
  transition: all 0.25s ease;
  margin-right: 1rem;
  background: var(--filter-tag-bg, #f2f2f2);
  color: var(--color-body-text);
}
.collection .applied-filter svg {
  width: 1rem;
  height: 1rem;
}
.collection__applied-filters {
  margin-bottom: 2rem;
}
.collection__product-list {
  --bs-gutter-x: 1rem;
  transition: opacity 0.4s ease-in-out;
}
@media (min-width: 768px) {
.collection__product-list.row-cols-1 .product-price {
  justify-content: flex-start;
}
}
.collection .accordion {
  --accordion-color-border: transparent;
}
.collection .accordion .accordion-content {
  padding-top: 1.5rem;
  color: var(--color-secondary-text);
}
.collection .field label {
  width: 100%;
}
.collection .field .mark {
  --mark-size: 1.4rem;
  --border-radius: 4px;
  border: 1px solid var(--color-border);
}
.collection__filter-toggle-container {
  column-gap: 0;
}
@media (min-width: 576px) {
  .collection__sidebar {
    padding-left: 1rem;
    max-width: 400px;
  }
  .collection .custom-select {
    width: 18rem;
  }
}
@media (min-width: 768px) {
  .collection__views button:first-child:not(.active) + button:not(.active) {
    background: var(--collection-view-button-bg, #f2f2f2);
  }
  .collection__views button:first-child:not(.active) + button:not(.active) svg {
    color: #000;
  }
  .collection__views button:nth-child(n + 4) {
    display: inline-block;
  }
  .collection__views button:nth-child(n + 3) {
    display: inline-block;
  }
  .collection .row-cols-1 .product-card__container {
    display: flex;
  }
  .collection .row-cols-1 .product-card__top {
    margin-right: 4rem;
    width: 30%;
    margin-right: 2rem;
    flex-shrink: 0;
  }
  .collection .row-cols-1 .product-card__btns {
    display: none;
  }
  .collection .row-cols-1 .product-card__swatches {
    justify-content: left;
  }
  .collection .row-cols-1 .product-card__btns-list {
    display: flex;
    column-gap: 1rem;
    margin-top: 2rem;
  }
  .collection .row-cols-1 .product-card__btns-list .product-form__submit {
    min-width: 10rem;
  }
  .collection .row-cols-1 .product-card__btns-list .product-btn {
    border-radius: 4px;
    border: 1px solid var(--color-border);
  }
  .collection .row-cols-1 .product-card__btns-list .product-btn:hover {
    border: 1px solid var(--color-body-text);
  }
  .collection .row-cols-1 .product-card__bottom {
    max-width: 75%;
    position: relative;
    text-align: left;
  }
  .collection .row-cols-1 .product-card__bottom > div {
    text-align: left;
  }
  .collection .row-cols-1 .product-card__title {
    font-weight: 700;
    font-size: 1.3rem;
  }
  .collection .row-cols-1 .product-card__description {
    display: block;
    margin-top: 2rem;
  }
}
@media (min-width: 1200px) {
  .collection__filter-toggle {
    display: none;
  }
  .collection__sidebar-toggle {
    display: none;
  }
  .collection__sidebar {
    position: relative;
    overflow: hidden;
    padding-right: 2rem;
    transform: translateX(0);
    z-index: unset;
  }
}
.spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: -0.125em;
  border: 0.15em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
}
.spinner.animating {
  -webkit-animation: 1s linear infinite spinner;
  animation: 1s linear infinite spinner;
}
@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
@keyframes reduce-width {
  to {
    width: 0%;
  }
}
.translate-x-0 {
  transform: translateX(var(--translate-x, 0));
}
.translate-x-hidden {
  transform: translateX(100%);
}
.translate-x-hidden-left {
  transform: translateX(-110%);
}
.translate-y-hidden {
  transform: translateY(-100%);
  height: 100%;
}
.translate-y-b-hidden {
  transform: translateY(100%);
}
.translate-0 {
  transform: translate(0);
}
.translate-x-center {
  left: 50%;
  transform: translateX(-50%);
}
.translate-y-center {
  top: 50%;
  transform: translateY(-50%);
}
.transition-none {
  transition-property: none;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.3s;
}
.transition {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.3s;
}
.transition-colors {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.3s;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.84, 0.17, 0.27, 0.89);
  transition-duration: 0.5s;
}
.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.3s;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.5s;
}
@media (min-width: 992px) {
  .hover-underline {
    position: relative;
    padding-bottom: 2px;
  }
  .hover-underline:after {
    background-color: var(--underline-color, var(--color-body-text));
    bottom: 0;
    content: "";
    display: block;
    height: var(--underline-size, 2px);
    left: 0;
    position: absolute;
    transition: all 0.3s ease-in-out;
    width: 0;
  }
  .hover-underline:hover:after {
    width: 100%;
  }
}
html:not(.no-js) .fadeIn {
  opacity: 0;
}
html:not(.no-js) .fadeIn.animated {
  animation: fadeIn 0.7s ease-in-out 0s forwards;
}
html:not(.no-js) .slideUp {
  transform: translateY(2rem);
  opacity: 0;
  position: relative;
}
html:not(.no-js) .slideUp.animated {
  animation: fadeIn 0.7s ease-in-out 0s forwards,
    slideUp 1.4s ease-in-out 0.2s forwards;
}
@keyframes fadeIn {
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideUp {
  100% {
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.main-cart .cart-items th {
  font-weight: 600;
}
.main-cart__items--disabled {
  pointer-events: none;
}
.main-cart__sidebar > div:only-child {
  margin-left: auto;
}
.main-cart__sidebar .h4,
.main-cart__sidebar h4 {
  font-size: 1.25rem;
}
.main-cart__sidebar .total-container {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 20px;
}
.main-cart__sidebar .tax-note {
  display: flex;
  column-gap: 4px;
}
.main-cart__sidebar .tax-note span {
  line-height: 1.5;
  font-size: 0.9rem;
  color: var(--color-subtext);
}
.main-cart__sidebar .tax-note .feather-info {
  margin-top: 4px;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}
.main-cart .cart-blocks {
  background: #f3f3f3;
  padding: 40px;
  border-radius: 4px;
  border: 0;
}
.main-cart .cart-note label {
  font-size: 18px;
  font-weight: 600;
}
.main-cart .cart-note textarea {
  height: 10rem;
  resize: none;
  border-radius: 4px;
}
.main-cart .cart__checkout-btn {
  width: 100%;
}
.main-cart .cart-item-remove {
  cursor: pointer;
}
.main-cart .cart-item-remove svg {
  color: var(--color-subtext);
  width: 1.5rem;
  height: 1.5rem;
}
.main-cart table {
  border-spacing: 0;
  border-collapse: separate;
  width: 100%;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.main-cart table thead {
  display: none;
}
.main-cart table th {
  text-align: center;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 1.125rem;
  font-weight: 600;
}
.main-cart table tbody tr:first-child .cart-item__details {
  padding-top: 24px;
}
.main-cart table tbody tr.cart-item {
  display: block;
}
.main-cart table tbody td {
  border: none;
  position: relative;
}
.main-cart table tbody td::before {
  content: attr(data-label);
  float: left;
}
.main-cart .cart-item td {
  font-size: 1.125rem;
  font-weight: 600;
}
.main-cart .cart-item td {
  padding: 4px 0;
}
.main-cart .cart-item > td + td {
  padding-left: 0;
}
.main-cart .cart-item td:nth-child(n + 2) {
  text-align: right;
  display: block;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-cart .cart-item td:last-child {
  padding-bottom: 0.8rem;
}
.main-cart .cart-item__quantity-wrapper {
  display: flex;
  justify-content: end;
  flex-direction: row-reverse;
}
.main-cart .cart-item .quantity {
  margin-right: 0;
}
.main-cart .cart-item__media .placeholder {
  height: 100%;
}
.main-cart .cart-item__details {
  display: flex;
  max-width: 20rem;
  align-items: center;
  margin-top: 2rem;
  max-width: unset;
}
.main-cart .cart-item__info {
  margin-left: 1.2rem;
}
.main-cart .cart-item .product-option * {
  display: inline;
}
.main-cart .cart-item__variants {
  color: var(--color-subtext);
}
.main-cart .cart-item__price {
  text-align: right;
  padding-right: 1rem;
  padding-right: 0;
}
.main-cart .cart-item__total {
  position: relative;
  border-bottom: 1px solid var(--color-border);
}
.main-cart .cart-item:last-child .cart-item__total {
  border-bottom: none;
}
.main-cart .cart-item__total .right {
  text-align: right;
}
.main-cart .cart-item .loading-overlay {
  position: absolute;
  right: 0;
  top: unset;
  z-index: 1;
}
.main-cart .cart-item .loading-overlay:not(.d-none) ~ * {
  visibility: hidden;
}
.main-cart .cart-item .loading-overlay__spinner {
  width: 1.8rem;
  display: inline-block;
}
.main-cart .cart-item__error {
  display: flex;
  align-items: center;
  line-height: 2rem;
  margin-top: 0.5rem;
  justify-content: right;
}
.main-cart .cart-item__error-text {
  font-size: 0.9rem;
  order: 1;
}
.main-cart .cart-item__error-text + svg {
  flex-shrink: 0;
  width: 1rem;
  margin-right: 0.7rem;
}
.main-cart .cart-item__error-text:empty + svg {
  display: none;
}
.main-cart .cart-item__media {
  width: 5rem;
  flex-shrink: 0;
}
.main-cart .cart-item__media .placeholder {
  position: relative;
  width: 100%;
  height: 120%;
}
.main-cart .cart-item .product-quantity {
  --qty-width: 100px;
  --qty-height: 40px;
  float: right;
}
.main-cart .total__subtotal-value {
  text-align: right;
}
@media (min-width: 768px) {
  .main-cart table thead {
    display: table-row-group;
  }
  .main-cart table tbody tr.cart-item {
    display: table-row;
  }
  .main-cart table tbody td::before {
    display: none;
  }
  .main-cart .cart-item__details {
    padding-top: 0;
    margin-top: 0;
  }
  .main-cart .cart-item td:nth-child(n + 2) {
    text-align: right;
    display: table-cell;
  }
  .main-cart .cart-item__total {
    border-bottom: none;
  }
  .main-cart .cart-item td {
    padding-bottom: 1.5rem;
  }
  .main-cart .cart-item__remove {
    position: relative;
    margin-right: 1rem;
  }
}
@media (min-width: 1200px) {
  .main-cart__items {
    padding-right: 2rem;
  }
}
#cart-drawer-footer:before {
    content: "";
    position: absolute;
    bottom: 100%;
    width: 100%;
    height: 24px;
    background: linear-gradient(rgb(255 255 255 / 0%), rgb(255 255 255));
    z-index: 1;
    pointer-events: none;
    border-bottom: solid 1px var(--color-border);
}
.cart-drawer {
  --width: 28rem;
  --background: var(--color-body-background);
  width: 40%;
  max-width: var(--width);
  height: 100%;
  background: var(--background);
  margin-left: auto;
  height: 100%;
    display: flex
;
    flex-direction: column;
}
.cart-drawer .js-cart-content {
  overflow: auto;
}
.cart-drawer::-webkit-scrollbar {
  width: 0;
  background: 0 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.cart-drawer__header {
  padding: 0.8rem 2.6rem;
  background: #f4f4f4;
}
.cart-drawer__header h5 {
  font-size: 24px;
}
.cart-drawer__header svg {
  width: 1.6rem;
  height: 1.6rem;
}
.cart-drawer__close {
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.cart-drawer__form {
  padding: 25px 1.5rem 0px 1.5rem;
}
.cart-drawer__title {
  padding: 1rem 1.5rem;
}
.cart-drawer__ctas {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}
.cart-drawer .cart-item {
display: flex;
    column-gap: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: solid 1px var(--color-border);
}
.cart-drawer .cart-item:last-child {
  border:none
}
.cart-drawer .cart-item__container {
  display: flex;
  column-gap: 1.5rem;
  width: 100%;
}
.cart-drawer .cart-item__f-media {
  width: 5rem;
  height: 6.25rem;
  overflow: hidden;
}
.cart-drawer .cart-item__detail {
  flex-grow: 1;
  position: relative;
  width: 70%;
}
.cart-drawer .cart-item__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer .cart-item__title {
  padding-right: 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-body-text);
}
.cart-drawer .cart-item__variants {
  color: var(--color-subtext);
}
.cart-drawer .cart-item__price {
  font-size: 1rem;
  color: var(--color-body-text);
  font-weight: 500;
}
.cart-drawer .cart-item .cart-item-remove {
  position: absolute;
  top: 0;
  right: 0;
}
.cart-drawer .cart-item .cart-item-remove svg {
  color: var(--color-subtext);
  width: 1.5rem;
  height: 1.5rem;
}
.cart-drawer .cart-item .product-quantity {
  --qty-width: 6.25rem;
  --qty-height: 2.5rem;
}
.cart-drawer__footer {
  padding: 1rem 1rem 2rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-body-text);
  width: 100%;
  position: relative;
}
.cart-drawer__footer .btn-text {
  color: var(--text-color);
}
.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: .9rem;
}
.cart-drawer__subtotal-title {
  display: flex;
  align-items: center;
  color: inherit;
}
.cart-drawer__subtotal-value {
  color: inherit;
}
@media (max-width: 575px) {
  .cart-drawer__form {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.empty-cart-icon svg {
  width: var(--icon-size, 5rem);
  height: var(--icon-size, 5rem);
  color: var(--color-body-text);
}
.cart__term-conditions .checkbox .mark {
  --mark-size: 1.2rem;
  border-color: var(--color-body-text);
}
.cart__term-conditions .checkbox .mark:after {
  height: 8px;
}
.cart__term-conditions .agreement-text {
  font-weight: 500;
  color: var(--color-secondary-text);
}
.cart__term-conditions .agreement-text a {
  color: var(--color-body-text);
}
@media (max-width: 767.5px) {
  .cart-drawer {
    width: 100%;
  }
  .cart-drawer__container {
    width: 85%;
  }
}
@media (max-width: 1023.5px) {
  .cart-main table.cart-items thead {
    display: none;
  }
  .cart-main table.cart-items tbody tr.cart-item {
    display: block;
  }
  .cart-main table.cart-items tbody td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
  }
  .cart-main table.cart-items tbody tr:last-child td {
    padding-bottom: 1rem;
  }
  .cart-main .cart-item__details {
    margin-top: 2rem;
  }
  .cart-main .cart-item__info {
    margin-left: 0.5rem;
  }
  .cart-main .cart-item td {
    padding: 1rem 0;
  }
  .cart-main .cart-item > td + td {
    padding-left: 0;
  }
  .cart-main .cart-item td:nth-child(n + 2) {
    text-align: right;
    display: block;
  }
  .cart-main .cart-item__quantity-wrapper {
    justify-content: end;
    flex-direction: row-reverse;
  }
  .cart-main .cart-item .quantity {
    margin-right: 0;
  }
  .cart-main .cart-item__error {
    justify-content: right;
  }
  .cart-main .cart-item__media .placeholder {
    height: 100%;
  }
}
.footer {
  background: var(--footer-background);
  color: var(--footer-color-text);
}
.footer-bottom {
  border-top: 1px solid var(--footer-color-divider);
}
.footer-top {
  border-top: 1px solid var(--footer-color-divider);
}
.footer .newsletter-form .field {
  margin-bottom: 0rem;
}
.footer .newsletter-form .field input {
  font-size: 0.8rem;
  display: block;
  margin-bottom: 0.8rem;
}
.footer .newsletter-form .field button {
  display: block;
  width: 100%;
}
.footer .newsletter-form__message--success {
  margin-top: 1rem;
}
.footer .newsletter-form__message--success span {
  vertical-align: middle;
  display: inline-block;
  padding-top: 0.2rem;
}
.footer .newsletter-form .btn {
  --btn-md-padding: 0.75rem 2rem;
}
.footer-block__heading {
  color: var(--footer-color-heading);
  font-weight: 600;
  margin-bottom: 1.24rem;
}
.footer-block ul.footer-menu {
  margin-bottom: 0;
}
.footer-block li {
  margin-bottom: 0.4rem;
}
.footer-block__text {
  padding-right: 2rem;
  max-width: 20rem;
}
.footer-block__text a {
  text-decoration: underline;
}
.footer-block .custom-select {
  --custom-select-options-width: 12rem;
}
.footer-bottom__localization .custom-select {
  height: 2.5rem;
  width: 12rem;
  border-radius: 4px;
  font-size: 0.85rem;
}
.payment-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.payment-list li {
  padding: 0.8rem 0.4rem;
}
.payment-list li > svg {
  width: 36px;
  height: auto;
}
.footer-social {
  margin-top: 1.5rem;
}
.footer-social ul {
  margin-bottom: 0;
}
.footer-social ul li {
  display: inline-block;
  margin-right: 0.8rem;
}
.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--footer-social-icon-bg, #e9e9e9);
  border-radius: 50%;
  transition: background 0.4s ease-in-out;
}
.footer-social a:hover {
  background: var(--color-btn-bg-hover);
}
.footer-social a:hover svg {
  color: var(--color-btn-text-hover);
}
.footer-social svg {
  width: 1rem;
  height: 1rem;
  transition: color 0.4s ease-in-out;
  color: var(--footer-social-icon-color, var(--color-body-text));
}
.footer-copyright a {
  color: var(--footer-color-text);
}
.shopify-challenge__container {
  margin: 8rem auto;
}
.shopify-challenge__message {
  margin-bottom: 1rem;
}
.shopify-challenge__button {
  margin-top: 2rem !important;
}
.customer-activate,
.reset-password {
  max-width: 25rem;
  margin: 5rem auto 8rem;
}
.customer-register {
  max-width: 30rem;
  margin: 5rem auto 8rem;
}
.customer-register__cta {
  margin-top: 2rem;
}
.customer-login {
  max-width: 25rem;
  margin-left: auto;
  margin-right: auto;
}
.customer-login #recover,
.customer-login #recover + div {
  display: none;
}
.customer-login #recover:target {
  display: block;
}
.customer-login #recover:target + div {
  display: block;
}
.customer-login #recover:target ~ #login,
.customer-login #recover:target ~ #login + div {
  display: none;
}
.customer-login #login,
.customer-login #recover {
  scroll-margin-top: 20rem;
}
.customer-login #recover {
  margin-bottom: 0;
}
.customer-page__wrapper {
  display: flex;
}
.customer-page .customer-detail {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.customer-page__menu {
  margin-top: 1rem;
}
.customer-page__menu ul li {
  margin-bottom: 0.5rem;
}
.customer-page table {
  border-collapse: collapse;
  margin-top: 1rem;
  width: 100%;
}
.customer-page table td,
.customer-page table th {
  white-space: nowrap;
}
.customer-page table thead {
  display: none;
  border: 1px solid var(--color-border);
  border-bottom: 0;
}
.customer-page table thead th {
  padding: 0.7rem 0.5rem;
  color: var(--color-body-text);
}
.customer-page table thead th:first-child {
  padding-left: 0.8rem;
}
.customer-page table thead th:nth-child(5) {
  padding-right: 0.8rem;
}
.customer-page table tbody {
  border: 1px solid var(--color-border);
  border-bottom: 0;
}
.customer-page table tbody tr {
  display: block;
}
.customer-page table tbody td {
  padding: 0.5rem 0.8rem 0.5rem 0;
  position: relative;
  display: block;
  padding-left: 40%;
  white-space: normal;
}
.customer-page table tbody td:before {
  content: attr(data-label);
  position: absolute;
  left: 0.8rem;
  font-weight: 600;
}
.customer-page table tbody td:first-child {
  padding-left: 40%;
}
.customer-page table tfoot {
  border: 1px solid var(--color-border);
  display: block;
  width: 100%;
}
.customer-page table tfoot tr {
  display: flex;
  justify-content: space-between;
}
.customer-page table.order-history thead th:nth-child(3) {
  width: 20%;
}
.customer-page table.order-history thead th:nth-child(4) {
  width: 20%;
}
.customer-page table.order-history tbody {
  border-bottom: 1px solid var(--color-border);
}
.customer-page table.order-history tbody td {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.customer-page table.order-history .order-id {
  border: 1px solid var(--color-border);
  padding: 0.2rem 0.4rem;
}
.customer-page table.order-history .order-id:hover {
  box-shadow: rgba(0, 0, 0, 0.15) 0 4px 4px;
}
.customer-page table.order-detail thead th:first-child {
  width: 30%;
}
.customer-page table.order-detail thead th:nth-child(2) {
  width: 30%;
}
.customer-page table.order-detail tbody td:first-child {
  white-space: inherit;
}
.customer-page table.order-detail tfoot td {
  padding: 0.3rem 0;
  color: var(--color-text-secondary);
}
.customer-page table.order-detail tfoot td:first-child {
  padding-left: 0.8rem;
  white-space: inherit;
}
.customer-page table.order-detail tfoot td:nth-child(2) {
  padding-right: 0.8rem;
}
.customer-page__addresses .address-item {
  padding-bottom: 1.6rem;
}
.customer-page__addresses .address-item__container {
  display: inline-block;
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 0.25rem;
  position: relative;
}
.customer-page__addresses .address-item .badge {
  position: absolute;
  right: 0;
  line-height: 1;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-top-left-radius: var(--border-radius, 3px);
  border-bottom-left-radius: var(--border-radius, 3px);
  background: var(--color-btn-bg);
  color: var(--color-primary-btn-text);
}
.modal-edit.d-none,
.modal-new.d-none {
  display: none;
}
.modal-edit__container,
.modal-new__container {
  background: #fff;
  width: 600px;
  height: auto;
  top: 2rem;
  padding: 1rem 2rem;
}
.modal-edit .form-wrapper::-webkit-scrollbar,
.modal-new .form-wrapper::-webkit-scrollbar {
  display: none;
}
@media (min-width: 992px) {
  .customer-page table thead {
    display: table-header-group;
  }
  .customer-page table thead th:first-child {
    padding-left: 0.8rem;
  }
  .customer-page table thead th:nth-child(5) {
    padding-right: 0.8rem;
  }
  .customer-page table tbody tr {
    display: table-row;
  }
  .customer-page table tbody td {
    display: table-cell;
    padding: 1rem 0.8rem 1rem 0;
    vertical-align: top;
  }
  .customer-page table tbody td::before {
    content: unset;
  }
  .customer-page table tbody td:first-child {
    padding-left: 0.8rem;
  }
  .customer-page table tfoot {
    display: table-footer-group;
  }
  .customer-page table tfoot tr {
    display: table-row;
  }
  .customer-page table.order-history tr {
    border-bottom: 1px solid var(--color-border);
  }
}
@media (min-width: 1024px) {
  .customer-page table {
    width: 100%;
  }
}
.section-title {
  margin-bottom: 2rem;
}
.contact {
  width: 100%;
  max-width: var(--desktop-max-width);
}
.contact .field {
  margin-bottom: 1.5rem;
}
.contact .form__message,
.contact .form__status {
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.contact textarea {
  display: block;
  width: 100%;
}
@media (min-width: 1200px) {
  .contact .field {
    margin-bottom: 2rem;
  }
}
.newsletter {
  overflow-x: hidden;
  text-align: center;
  background-color: var(--background-color);
}
.newsletter__heading {
  text-align: center;
  margin-bottom: 0.6rem;
}
.newsletter__subheading {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-text-secondary);
}
.newsletter .newsletter-form {
  max-width: 24rem;
  margin: 0 auto;
}
.newsletter .newsletter-form__message {
  text-align: center;
  display: block;
}
.newsletter-form .field {
  gap: 0.5rem;
}
.newsletter-form .field input {
  flex-shrink: 1;
}
.newsletter-form .field button {
  flex-shrink: 0;
}
.pop-up {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
}
.pop-up__container {
  display: flex;
  width: 90%;
  max-width: var(--max-width, 400px);
  background: #fff;
}
.pop-up__container.with-image {
  --max-width: 44rem;
  display: flex;
}
.pop-up__container.with-image .pop-up__content,
.pop-up__container.with-image .pop-up__image {
  position: relative;
}
.pop-up__image {
  width: 50%;
  display: none;
  position: relative;
}
.pop-up__image img {
  object-fit: cover;
  object-position: var(--image-focal-points, center center);
  position: absolute;
  width: 100%;
  height: 100%;
}
.pop-up__content {
  text-align: center;
  flex-grow: 1;
  width: 55%;
}
.pop-up__heading {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
}
.pop-up__subheading {
  margin-bottom: 2rem;
  color: var(--color-text-secondary);
}
.pop-up .newsletter-form {
  margin-bottom: 1rem;
}
.pop-up .field {
  flex-wrap: wrap;
}
.pop-up .field__input {
  margin-bottom: 0.5rem;
}
.pop-up button[type="submit"] {
  width: 100%;
}
.pop-up__social-media ul {
  margin-bottom: 0;
}
.pop-up__social-media ul li {
  display: inline-block;
  margin-right: 1rem;
}
.pop-up__social-media ul li svg {
  width: 1rem;
  height: 1rem;
}
@media (min-width: 576px) {
  .pop-up__container {
    width: 60%;
  }
}
.collection-list .collection-card {
  --bs-gutter-x: 0.5rem;
}
.collection-list .swiper-nav-item {
  --nav-btn-size: 2.8rem;
  --nav-arrow-size: 1.2rem;
  display: none;
  position: absolute;
  z-index: 4;
  top: calc(50% - var(--nav-btn-size));
}
.collection-list__swiper {
  overflow: hidden;
    opacity: 0;
    visibility: hidden;
}
  .collection-list__swiper.swiper-initialized {
    opacity: 1;
    visibility: visible;
  }
.collection-list__swiper-container {
  position: relative;
}
.collection-list__swiper-container:hover .swiper-nav-prev {
  left: 1rem;
  right: auto;
}
.collection-list__swiper-container:hover .swiper-nav-next {
  right: 1rem;
  left: auto;
}
@media (min-width: 768px) {
  .collection-list .swiper-nav-item {
    display: flex;
  }
  .collection-list .collection-card {
    --bs-gutter-x: 1.3rem;
  }
}
.no-js .collection-list .swiper-wrapper {
  flex-wrap: wrap;
}
.no-js .collection-list .swiper-slide {
  height: auto;
  flex: 0 1 25%;
  padding: 0 0.5rem;
}
.no-js .collection-list .collection-card {
  margin-bottom: 2rem;
}

.product-features__swiper-container {
  position: relative;
  width: 100%;
}
.product-features__swiper {
  overflow: hidden;
    opacity: 0;
    visibility: hidden;
}
  .product-features__swiper.swiper-initialized {
    opacity: 1;
    visibility: visible;
  }
.product-features__swiper-container
  .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50%);
  bottom: -5px;
  width: 100%;
}
.image-icon {
  width: var(--mobile-icon-max-width, var(--icon-max-width));
}
@media screen and (min-width: 700px) {
  .image-icon {
    width: var(--icon-max-width);
  }
}
.feed-instagram__swiper-container {
  position: relative;
  width: 100%;
}
.feed-instagram__header .title {
  display: inline-block;
    background: -webkit-linear-gradient(0deg, #8a3ab9, #e95950, #bc2a8d, #fbad50);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.insta_button {
    border: solid 1px;
    width: max-content;
    margin: auto;
    padding: 5px 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    gap: .5rem;
}
.feed-image {
  border-radius: 8px;
  display: block;
  overflow: hidden;
  position: relative;
}
.feed-instagram__swiper .swiper-wrapper .feed-instagram-meta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    opacity: 0;
    border-radius: 8px;
    transition: all .2s ease-out;
}
.feed-instagram__swiper .swiper-wrapper .feed-instagram-meta:hover:before {
    opacity: 1;
}
.feed-instagram__swiper .swiper-slide {
  user-select: none;
}
.feed-instagram__swiper .swiper-slide img {
  pointer-events: none;
}
.feed-instagram__swiper {
  overflow: hidden;
  user-select: none;
}
.feed-instagram__swiper .swiper-wrapper .feed-instagram-meta::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'><path d='M16.98 0a6.9 6.9 0 0 1 5.08 1.98A6.94 6.94 0 0 1 24 7.02v9.96c0 2.08-.68 3.87-1.98 5.13A7.14 7.14 0 0 1 16.94 24H7.06a7.06 7.06 0 0 1-5.03-1.89A6.96 6.96 0 0 1 0 16.94V7.02C0 2.8 2.8 0 7.02 0h9.96zm.05 2.23H7.06c-1.45 0-2.7.43-3.53 1.25a4.82 4.82 0 0 0-1.3 3.54v9.92c0 1.5.43 2.7 1.3 3.58a5 5 0 0 0 3.53 1.25h9.88a5 5 0 0 0 3.53-1.25 4.73 4.73 0 0 0 1.4-3.54V7.02a5 5 0 0 0-1.3-3.49 4.82 4.82 0 0 0-3.54-1.3zM12 5.76c3.39 0 6.2 2.8 6.2 6.2a6.2 6.2 0 0 1-12.4 0 6.2 6.2 0 0 1 6.2-6.2zm0 2.22a3.99 3.99 0 0 0-3.97 3.97A3.99 3.99 0 0 0 12 15.92a3.99 3.99 0 0 0 3.97-3.97A3.99 3.99 0 0 0 12 7.98zm6.44-3.77a1.4 1.4 0 1 1 0 2.8 1.4 1.4 0 0 1 0-2.8z'/></svg>");
    background-repeat: no-repeat;
    background-size: 32px;
    background-position: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease-out;
}

.feed-instagram__swiper .swiper-wrapper .feed-instagram-meta:hover::after {
    opacity: 1;
    transform: scale(1);
}
.feed-instagram__swiper .swiper-wrapper {
  transition-timing-function: linear!important;
}
.feed-instagram-meta {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    color: white;
    opacity: 0;
    transition: all 0.2s ease-out;
}
.swiper-slide:hover .feed-instagram-meta {
    opacity: 1;
}
.feed-instagram-likes {
    display: inline-block;
    position: relative;
    padding-left: 26px;
    margin: 0.75rem;
}

.feed-instagram-likes::before {
    content: "";
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    display: block;
    background-size: 18px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.feed-instagram-comments {
    display: inline-block;
    position: relative;
    padding-left: 26px;
    margin: 0.75rem;
}

.feed-instagram-comments::before {
    content: "";
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2z'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    display: block;
    background-size: 18px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.multicolumn__columns {
  --bs-gutter-y: 1.5rem;
}
.multicolumn-card {
  position: relative;
}
.multicolumn-card__image-container {
  width: 100%;
  position: relative;
}
.multicolumn-card__image-container .media {
  border-radius: 15px;
  border: solid 1px lightgray;
}
.multicolumn-card__image-container .media img {
  object-position: var(--image-focal-points, center center);
  transition: transform 2s cubic-bezier(0.15, 0.75, 0.5, 1) 0s;
}
.multicolumn-card__overlay-content {
  inset: 0;
  display: flex;
}
.multicolumn-card__overlay-content--top {
  align-items: start;
}
.multicolumn-card__overlay-content--top-left {
  justify-content: left;
}
.multicolumn-card__overlay-content--top-center {
  justify-content: center;
}
.multicolumn-card__overlay-content--top-right {
  justify-content: right;
}
.multicolumn-card__overlay-content--middle-left {
  align-items: center;
  justify-content: left;
}
.multicolumn-card__overlay-content--middle-center {
  align-items: center;
  justify-content: center;
}
.multicolumn-card__overlay-content--middle-right {
  align-items: center;
  justify-content: right;
}
.multicolumn-card__overlay-content--bottom-left {
  align-items: end;
  justify-content: left;
}
.multicolumn-card__overlay-content--bottom-center {
  align-items: end;
  justify-content: center;
}
.multicolumn-card__overlay-content--bottom-right {
  align-items: end;
  justify-content: right;
}
.multicolumn-card__title {
  font-size: var(--font-size, 1.5rem);
  line-height: 1.3;
  font-weight: 600;
}
.multicolumn-card .btn-primary,
.multicolumn-card .btn-secondary {
  --btn-padding-x: 1.2rem;
  --btn-padding-y: 0.8rem;
  font-size: 0.9rem;
}
.multicolumn-card:hover .multicolumn-card__image img {
  transform: scale3d(1.1, 1.1, 1.1);
}
.image-with-text__media {
  position: relative;
}
.image-with-text__media img {
  top: 0;
  object-position: var(--image-focal-points, center center);
}
.image-with-text__media .placeholder {
  padding-bottom: 80%;
}
.image-with-text__media .media {
  padding-bottom: calc(100% / var(--image-aspect-ratio, 1));
}
.image-with-text__content {
  background: var(--background);
}
.image-with-text__content-heading {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.image-with-text__content-text {
  color: var(--color-subtext);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .image-with-text {
    --bs-gutter-x: 2rem;
  }
  .image-with-text__content-text {
    margin-bottom: 1.5rem;
  }
}
.map {
  --bs-gutter-y: 0;
}
.map--left {
  flex-direction: row-reverse;
}
.map__heading {
  font-size: 1.8rem;
}
.map__content-map {
  position: relative;
}
.map__content-map .placeholder {
  padding-bottom: 50%;
}
.map__content-map .placeholder svg {
  width: 70%;
}
.map__content-map .embedded-map {
  position: relative;
  padding-bottom: 50%;
}
.map__content-map iframe {
  position: absolute;
  height: 100%;
  width: 100%;
}
.map__content-map .media {
  padding-bottom: calc(100% / var(--image-aspect-ratio, 1));
}
.map__content-map img {
  object-position: var(--image-focal-points, center center);
}
.slideshow-section.full-width {
  --bs-gutter-x: 0;
  max-width: unset;
  padding-left: 0;
  padding-right: 0;
}
.slideshow-section .placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
}
.slideshow-section .placeholder-svg path {
  fill: #b0aeae;
}
.slideshow-section__swiper {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.slideshow-section .slide {
  height: 100%;
}
.slideshow-section .slide__image {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  padding-bottom: calc(
    100% / var(--aspect-ratio, var(--mobile-aspect-ratio, 1))
  );
}
.slideshow-section .slide img {
  object-fit: cover;
  object-position: center center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.slideshow-section .slide__content {
  height: 100%;
  width: 100%;
  display: flex;
  padding: 2rem 1rem 1rem;
  top: 0;
  text-align: center;
  transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out,
    visibility 0.7s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
}
.slideshow-section .slide__content > * {
  display: block;
}
.slideshow-section .slide h2,
.slideshow-section .slide p {
  color: inherit;
}
.slideshow-section .slide__heading {
  font-size: var(--mobile-heading-size, var(--desktop-heading-size, 2.5rem));
  font-family: var(--slide-heading-font-family, var(--font-heading-family));
  font-weight: var(--slide-heading-font-weight, 600);
  line-height: 1.3;
}
.slideshow-section .slide__subheading {
  font-size: var(
    --mobile-subheading-size,
    var(--desktop-subheading-size, 1.125rem)
  );
  font-family: var(--slide-subheading-font-family, var(--font-body-family));
  font-weight: var(--slide-subheading-font-weight, 400);
}
.slideshow-section .slide__content-container {
  max-width: 45rem;
}
.slideshow-section .slide.swiper-slide-active .slide__content {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}
.slideshow-section .swiper-nav-item {
  display: none;
}
.slideshow-section__navigation-container {
  height: 4rem;
  padding: 0 2rem;
}
.no-js .slideshow-section .slide__content {
  visibility: visible;
  opacity: 1;
}
@media (min-width: 768px) {
  .slideshow-section .swiper-initialized:hover .swiper-nav-item {
    opacity: 1;
  }
  .slideshow-section .swiper-initialized:hover .swiper-button-next {
    right: 2rem;
  }
  .slideshow-section .swiper-initialized:hover .swiper-button-prev {
    left: 2rem;
  }
  .slideshow-section .slide {
    color: var(--text-color);
  }
  .slideshow-section .slide__image {
    --aspect-ratio: var(--desktop-aspect-ratio, calc(16 / 9));
  }
  .slideshow-section .slide__content {
    position: absolute;
    padding: 2rem 5rem;
    text-align: var(--text-alignment);
  }
  .slideshow-section .slide__content--top {
    align-items: start;
  }
  .slideshow-section .slide__content--top-left {
    justify-content: left;
  }
  .slideshow-section .slide__content--top-center {
    justify-content: center;
  }
  .slideshow-section .slide__content--top-right {
    justify-content: right;
  }
  .slideshow-section .slide__content--middle-left {
    align-items: center;
    justify-content: left;
  }
  .slideshow-section .slide__content--middle-center {
    align-items: center;
    justify-content: center;
  }
  .slideshow-section .slide__content--middle-right {
    align-items: center;
    justify-content: right;
  }
  .slideshow-section .slide__content--bottom-left {
    align-items: end;
    justify-content: left;
  }
  .slideshow-section .slide__content--bottom-center {
    align-items: end;
    justify-content: center;
  }
  .slideshow-section .slide__content--bottom-right {
    align-items: end;
    justify-content: right;
  }
  .slideshow-section .slide__heading {
    font-size: var(--desktop-heading-size);
  }
  .slideshow-section .slide .placeholder-svg {
    width: 60%;
    transform: translate(-20%, -50%);
  }
  .slideshow-section .swiper-nav-item {
    --nav-btn-size: 2.5rem;
    --nav-arrow-size: 1.25rem;
    display: flex;
  }
}
.slideshow-section__swiper .swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.slideshow-section__swiper .swiper-pagination-bullet {
  --swiper-pagination-bullet-inactive-color: white;
}
.featured-collection {
  overflow-x: hidden;
  background: var(--background);
}
.featured-collection .swiper-nav-item {
  --nav-btn-size: 2.6rem;
  --nav-arrow-size: 1.1rem;
  display: none;
}
.featured-collection__swiper {
  display: none;
}
.featured-collection__swiper.swiper-initialized {
  display: block;
  margin-bottom: 2px;
}
.featured-collection__header {
  display: flex;
  justify-content: center;
  align-items: center;
}
.featured-collection .product-card {
  --bs-gutter-x: 0.8rem;
}
@media (min-width: 768px) {
  .featured-collection {
    --bs-gutter-x: 2rem;
  }
  .featured-collection .swiper-nav-item {
    display: flex;
  }
  .featured-collection .product-card {
    --bs-gutter-x: 1rem;
  }
}
.no-js .featured-collection .swiper-wrapper {
  flex-wrap: wrap;
}
.no-js .featured-collection .swiper-slide {
  height: auto;
  flex: 0 1 25%;
  padding: 0 0.5rem;
}
.collapsible-tab {
  max-width: 50rem;
}
.collapsible-tab__title {
  margin-bottom: 0.8rem;
}
.collapsible-tab__paragraph {
  margin-bottom: 1rem;
}
.collapsible-tab__button {
  margin-top: 1.5rem;
}
.rich-text--full-width {
  --bs-gutter-x: 0;
  max-width: unset;
  padding-left: 0;
  padding-right: 0;
}
.rich-text__wrapper {
  padding: 1rem;
  background: var(--color-background);
}
.rich-text__text {
  color: var(--color-text-secondary);
  max-width: 45rem;
}
.rich-text__image .placeholder {
  position: relative;
  height: calc(var(--image-width) / 2);
  background: var(--color-image-background);
  width: 100%;
  max-width: var(--image-width);
}
.rich-text__image img {
  width: 100%;
  max-width: var(--image-width);
  height: auto;
}
.product-features .feature-card__subtitle {
  color: var(--color-subtext);
  font-size: .9rem;
}
.featured-blog {
  --bs-gutter-x: 1rem;
}
.featured-blog .btn {
  min-width: 8rem;
}
.featured-blog__articles {
  --bs-gutter-x: 1rem;
}
.featured-blog__article {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .featured-blog__articles {
    --bs-gutter-x: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .featured-blog__articles {
    --bs-gutter-x: 2rem;
  }
}
.logo-list__wrapper {
  display: flex;
  justify-content: center;
}
.logo-list__container {
  display: flex;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  overflow: auto;
}
.logo-list__item {
  scroll-snap-align: start;
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.logo-list__image {
  width: 100%;
}
.logo-list .placeholder-image {
  background: var(--color-image-background);
}
.logo-list .placeholder-image svg {
  width: 100%;
  height: 100%;
  position: relative;
}
@media (min-width: 992px) {
  .logo-list__container {
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .featured-product .container {
    max-width: 1170px;
  }
}
.recent-viewed-product .swiper-nav-item {
  --nav-btn-size: 2.8rem;
  --nav-arrow-size: 1.2rem;
  position: absolute;
  z-index: 4;
  top: calc(50% - var(--nav-btn-size));
}
.recent-viewed-product .swiper-nav-prev {
  left: -3rem;
  right: auto;
}
.recent-viewed-product .swiper-nav-next {
  right: -3rem;
  left: auto;
}
.recent-viewed-product__swiper:hover .swiper-nav-prev {
  left: 1rem;
  right: auto;
}
.recent-viewed-product__swiper:hover .swiper-nav-next {
  right: 1rem;
  left: auto;
}
.recent-viewed-product__swiper {
margin-bottom: 2px;
}
.sale-notification {
  position: fixed;
  bottom: 5.5rem;
  left: 1rem;
  z-index: 3;
  width: 100%;
}
.sale-notification__card {
  width: 90%;
  max-width: 20rem;
  border-radius: 4px;
  background: #fff;
  box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.1);
  font-size: 0.85rem;
  color: var(--color-body-text);
  opacity: 0;
  transform: translateY(100%);
  transition-property: transform, opacity;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.88, 0.88, 0.44, 0.85);
}
.sale-notification__card .row {
  --bs-gutter-x: 1rem;
}
.sale-notification__card .timer-bar {
  display: block;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: var(--color-accent);
}
.sale-notification__card--active {
  opacity: 1;
  transform: translateY(0);
}
.sale-notification__card--active .timer-bar {
  opacity: 1;
  animation: var(--transition-delay) ease reduce-width;
}
.sale-notification__card .placeholder-svg {
  width: 100%;
  height: 100%;
  max-height: 7rem;
  position: unset;
  background: #f5f5f5;
}
.sale-notification__card-close {
  cursor: pointer;
}
.sale-notification__card-close svg {
  width: 1.2rem;
  height: 1.2rem;
}
@media (min-width: 768px) {
  .sale-notification {
    bottom: 6.5rem;
    left: 2rem;
  }
}
.countdown-image-banner.full-width {
  --bs-gutter-x: 0;
  max-width: unset;
  padding-left: 0;
  padding-right: 0;
}
.countdown-image-banner__image {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  padding-bottom: calc(
    100% / var(--aspect-ratio, var(--mobile-aspect-ratio, 1))
  );
}
.countdown-image-banner__image .placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
}
.countdown-image-banner__image .placeholder-svg {
  width: 60%;
  height: auto;
}
.countdown-image-banner img {
  object-fit: cover;
  object-position: center center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.countdown-image-banner__content {
  position: absolute;
  inset: 0;
  display: flex;
}
.pos-top {
  align-items: start;
}
.pos-top-left {
  justify-content: left;
}
.pos-top-center {
  justify-content: center;
}
.pos-top-right {
  justify-content: right;
}
.pos-middle-left {
  align-items: center;
  justify-content: left;
}
.pos-middle-center {
  align-items: center;
  justify-content: center;
}
.pos-middle-right {
  align-items: center;
  justify-content: right;
}
.pos-bottom-left {
  align-items: end;
  justify-content: left;
}
.pos-bottom-center {
  align-items: end;
  justify-content: center;
}
.pos-bottom-right {
  align-items: end;
  justify-content: right;
}
@media (min-width: 768px) {
  .countdown-image-banner__image {
    --aspect-ratio: var(--desktop-aspect-ratio, calc(16 / 9));
  }
}
.main-blog__blog-title {
  margin-bottom: 4rem;
}
.main-blog__articles {
  --bs-gutter-x: 1rem;
}
.article-card__image-wrapper.placeholder {
  --height-ratio: 0.75;
}
.article-card .media img {
  transition: transform 2s cubic-bezier(0.15, 0.75, 0.5, 1) 0s;
}
.article-card:hover .media img {
  transform: scale3d(1.1, 1.1, 1.1);
}
.article-card__info .h6 {
  line-height: 1.6;
}
.article-card__meta {
  font-size: 0.8rem;
  margin-top: 0.5rem;
}
.article-card__meta span {
  display: inline-block;
}
.article-card__footer {
  font-size: 0.9rem;
  color: var(--color-secondary-text);
  display: flex;
  justify-content: space-between;
}
.main-article__content-container {
  background: var(--main-article-content-bg, #fff);
  max-width: var(--main-article-content-width, 700px);
  margin: 0 auto;
}
.main-article header h1 {
  line-height: 1.5;
}
.main-article__nav {
  border-top: 1px solid var(--color-border);
}
.main-article__nav svg {
  width: 1rem;
  height: 1rem;
}
@media (min-width: 768px) {
  .main-article__nav > div:nth-child(2) {
    border-left: 1px solid var(--color-border);
  }
}
.recent-post .article-media {
  width: 5rem;
}
.recent-post .article-tag {
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.recent-post__title {
  font-size: 1rem;
}
.blog-tag-cloud a {
  font-size: 0.9rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.blog-tag-cloud a:hover {
  background: var(--color-btn-bg-hover);
  border-color: var(--color-btn-bg-hover);
  color: var(--color-btn-text-hover);
}
.page-title h1 {
  text-align: center;
}
.page-header {
  padding-top: 40px;
  padding-bottom: 40px;
}
.main-page__content {
  width: 100%;
  max-width: 45rem;
  margin: 0 auto;
}
.main-password-page .banner {
  position: relative;
}
.main-password-page .banner__media {
  height: 40rem;
}
.main-password-page .banner__media-overlay {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #202020;
  opacity: var(--image_overlay_opacity, 0.2);
}
.main-password-page .banner__content {
  position: absolute;
  justify-content: center;
  top: 30%;
  width: 100%;
  display: flex;
}
.main-password-page .banner__content-container {
  background: #fff;
  border-radius: 4px;
}
.main-password-page .banner__content-container .contact-form {
  max-width: 30rem;
}
.main-password-header .modal__toggle-open {
  cursor: pointer;
  line-height: 1.5;
}
.main-password-header .modal__toggle-open svg {
  margin-right: 0.2rem;
  width: 1.2rem;
  height: 1.2rem;
}
.password-modal .modal-content {
  transition: inherit;
  max-width: 30rem;
  background: #fff;
  border-radius: 4px;
  display: flex;
  margin: 20% auto;
  gap: 3rem;
}
.password-modal__content {
  padding: 3rem 2rem 2rem 2rem;
  width: 100%;
}
.password-modal form {
  --input-height: 2.5rem;
}
.password-modal form button {
  width: 8rem;
}
.main-password-footer .icon-shopify {
  width: 4.2rem;
  height: 1.1rem;
}
@media (max-width: 767.5px) {
  .main-password-page .banner__content-container {
    padding: 2rem 2rem;
  }
  .password-modal .modal-content {
    max-width: 90%;
    margin: 40% auto;
  }
}
@media (min-width: 768px) {
  .main-password-page .banner__content.flex-start {
    justify-content: start;
    padding-left: 2rem;
  }
  .main-password-page .banner__content.flex-center {
    justify-content: center;
  }
  .main-password-page .banner__content.flex-end {
    justify-content: end;
    padding-right: 2rem;
  }
}
.template-404 .title {
  font-size: 7rem;
  font-weight: 600;
  line-height: 1;
}
.template-404 .subtitle {
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 600;
}
.template-404 .content-wrapper {
  margin: 8rem 0;
}
@media (min-width: 768px) {
  .template-404 .title {
    font-size: 10rem;
  }
}
.js-add-wishlist {
  background: unset;
}
.js-remove-wishlist {
  display: none;
  background: var(--color-btn-bg-hover);
  color: #fff;
}
.wishlisted .js-add-wishlist {
  display: none;
}
.wishlisted .js-remove-wishlist {
  display: flex;
}
.pcd {
  --product-counter-size: 2rem;
  position: fixed;
  left: 0;
  bottom: 50%;
  z-index: 4;
}
.pcd__counter {
  --color-background: var(--color-accent);
  --color-text: #fff;
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--color-background);
  color: var(--color-text);
  width: var(--product-counter-size);
  height: var(--product-counter-size);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  line-height: 1;
  z-index: 1;
}
.pcd__container {
  position: absolute;
  right: 0;
  width: var(--pdc-opener-size, 4rem);
  height: var(--pdc-opener-size, 4rem);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius, 4px);
  background-color: var(--background, #fff);
  transform: translateX(var(--pdc-opener-size, 4rem));
}
.pcd__container button {
  height: 100%;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.pcd__container button svg {
  width: 1.24rem;
  height: 1.24rem;
}
.pcd__container.inactive {
  transform: translateX(calc((var(--product-counter-size, 2rem) / 2) * -1));
}
.pcd-open-modal {
  color: #000;
}
.main-cart {
  margin-top: -2rem;
}
@media (min-width: 768px) {
  .top-bar {
    display: flex !important;
  }
}
.round {
  border-radius: 10px;
}
.footer a {
  color: var(--footer-color-text);
}
.secondary-menu__items > *:not(:last-child):after {
  position: absolute;
  content: "";
  right: 0;
  top: calc(50% - 10px);
  background: currentColor;
  width: 1px;
  display: block;
  height: 50%;
}
.discount_price {
  font-size: .7rem;
  background: var(--color-accent);
  color: var(--color-body-background);
  padding: 1px 6px;
  border-radius: 5px;
  display: flex;
}
.product-media__nav-swiper.swiper-vertical
  .swiper-wrapper
  .swiper-slide:last-child {
  margin-bottom: 0 !important;
}
.product-media-pagination {
  position: absolute;
  z-index: 2;
  left: 50%;
  background: white;
  font-size: 11px;
  padding: 0px 5px;
  border-radius: 17px;
  transform: translate(-50%, 50%);
  bottom: 20px;
  letter-spacing: -0.5px;
  box-shadow: 0px 1px 1px #696969;
  border: solid 1px var(--color-border);
}
.cart-drawer__total-value,
.cart-drawer__total-title {
  font-size: 1.25rem;
  font-weight: 600;
}
.selos-footer {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
  justify-content: center;
  row-gap: 20px;
}
.selos {
  text-align: center;
  margin: 0 60px;
}
.titulos {
  margin-bottom: 8px;
  display: block;
}
.selos_item {
  display: flex;
  gap: 12px;
  flex-flow: wrap;
  justify-content: center;
}
.envio {
  width: 100px;
}
@media screen and (max-width: 589px) {
  .selos {
    text-align: center;
    margin: 0 15px;
  }
}
.pagamento {
  gap: 5px;
}
.selos_item svg {
  overflow: visible;
}
.discount_card {
  position: absolute;
  top: 0.3rem;
  left: -2rem;
  z-index: 2;
  transform: rotate(-45deg);
  border-radius: 0;
  padding: 0.15rem 2rem;
  box-shadow: 0 0 0.5rem #0003;
  background: var(--color-accent);
  font-size: 0.8rem;
  color: white;
}
.product-information .ab-tab {
  max-width: 800px;
  margin: auto;
}
.product-form--sticky .parcela, .product-form--sticky .pix {
      font-size: .7rem;
}
  .stock-plenty span:not(:last-child) {
  border-right: solid 1px var(--color-border)!important;
  }
#shopify-section-cart-drawer {
      height: 100%;
}
.menu-level-2 img {
  border-radius:10px;
  border: solid 1px var(--color-border);
}
.star-filled polygon {
    fill: #e99f09;
}
@-webkit-keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem
    }
}

@keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem
    }
}
.header-logo .bk-reviews {
  display: none!important;
}