/** Shopify CDN: Minification failed

Line 374:1 Expected "}" to go with "{"

**/
.product_card_wrapper {
    position: relative;
    overflow: hidden;
}

.product_card_img {
  border-radius: var(--img-border-radius);
  overflow: hidden;
  position: relative;
}

.product_card_img a {
    width: 100% !important;
    padding: 2px;
    display: block;
}

.product_card_img a:focus-visible {
    outline: none !important;
}

.product_card_img a:focus-visible img {
    outline: 1px solid var(--color-foreground);
}

.product_card_img img, .product_card_img svg.placeholder_svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--img-border-radius);
}

.img--swiper-button-prev {
  position: absolute;
  top: 50%;
  left: 1rem;
  z-index: 1;
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  background: var(--color-background);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: none;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  transform: translateX(-10rem);
  transition: transform 0.3s ease-in-out;
}

.img--swiper-button-next {
  position: absolute;
  top: 50%;
  right: 1rem;
  z-index: 1;
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  background: var(--color-background);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: none;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  transform: translateX(10rem);
  transition: transform 0.3s ease-in-out;
}

.swiper-buttons svg path {
  fill: var(--color-foreground);
}

.product_card_img:hover .img--swiper-button-prev,
.product_card_img:hover .img--swiper-button-next,
.img--swiper-button-prev:focus-visible, .img--swiper-button-next:focus-visible {
  transform: translateX(0);
}

.product_card_img:has(a:focus-visible) .swiper-buttons {
    transform: translateX(0);
}

.product_card_info {
  margin: 2.3rem 0 1rem;
  display: flex;
  flex-flow: column;
  gap: 0.9rem;
  overflow: hidden;
}

.product_card_title p,
.product_card_title p a {
  margin: 0;
  text-align: center;
  text-decoration: none;
  color: var(--color-foreground);
}

.product_card_price {
  text-align: center;
  color: var(--color-foreground);
  font-size: 1.4rem; 
  line-height: 1;
}

.product_price_inner_main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

span.product_card_cap {
  display: flex;
  font-size: 1.2rem;
  line-height: 1;
  position: relative;
  top: 2px;
  color: var(--color-highlight);
}

.product_card_vendor {
    display: flex;
    justify-content: center;
}

.product_card_vendor span {
    font-size: 1.2rem;
    color: var(--color-foreground);
    line-height: calc(1.2rem * 1.2);
    opacity: 0.9;
}

.product_card_color_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: wrap;
    row-gap: 0.6rem;
}

.product_card_input {
  position: relative;
  transform: translateY(10rem);
  transition: transform 0.3s;
  transition-delay: var(--delay);
}

.product_card_wrapper:hover .product_card_color_wrapper .product_card_input {
    transform: translateY(0);
}

.product_card_input input {
    position: absolute;
    width: 0;
    height: 0;
    visibility: hidden;
}

.product_card_input input:disabled + label {
    opacity: 0.5;
    cursor: not-allowed;
}

label.product_card_label {
    font-size: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: block;
    margin-right: 0.5rem;
    cursor: pointer;
    padding: 1px;
    transition: border 0.3s;
  }

label.product_card_label span {
    display: block;
    width: 100%;
    height: 100%;
}

.product_card__input:checked + label {
    border: 1px solid var(--color-border) !important;
}

.product_card_input:last-child label {
  margin-right: 0;
}

label.product_card_label.label--circle, label.product_card_label.label--circle span {
    border-radius: 50%;
}

label.product_card_label.label--square, label.product_card_label.label--square span {
    border-radius: 0.3rem;
}

label.product_card_label.label--pill {
    width: 2.5rem;
    border-radius: 1rem;
}

label.product_card_label.label--pill span {
    border-radius: 1rem;
}

label.product_card_label.has_variant_image {
    width: 3.5rem;
    height: 3.5rem;
    cursor: pointer;
}

label.product_card_label.has_variant_image.label--pill {
    height: 2rem;
}

button.product_card_submit_button, button.qa_btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
    width: 4.2rem;
    height: 4.2rem;
    border: none;
    padding: 0;
    background: var(--color-primary-button-background);
    border-radius: var(--badge-border-radius);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transform: translateY(-10rem);
    opacity: 0; 
    pointer-events: none;
    z-index: 2;
    transition: transform 0.3s, opacity 0.3s;
}

button.product_card_submit_button.top_left, button.qa_btn.top_left {
    right: unset;
    left: 1rem;
}

button.product_card_submit_button span, button.qa_btn span {
    display: flex;
    position: relative;    
}

button.product_card_submit_button svg, button.qa_btn svg {
  width: 2.4rem;
  height: 2.4rem;
}

button.product_card_submit_button svg path, button.qa_btn svg path {
    fill: var(--color-primary-button-text);
}

.product_card_wrapper:hover .product_card_submit_button, .product_card_wrapper:hover .qa_btn, 
.qa_btn:focus-visible, button.product_card_submit_button:focus-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

button.product_card_submit_button .form_loader, button.qa_btn .form_loader {
    width: 1.4rem;
    height: 1.4rem;
    border: 2px solid var(--color-primary-button-text);
    border-radius: 50%;
    border-top: 2px solid transparent;
    animation: rotation 2s infinite linear forwards;
}

button.add_to_cart_button.product_card_submit_button:disabled, button.qa_btn:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed;
}

span.product_card_cart_error {
    position: absolute;
    top: 7rem;
    left: 0;
    z-index: 1;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    line-height: calc(1.2 * 1.4);
    color: var(--color-highlight);
    pointer-events: none; 
    padding-inline: 2rem;
    opacity: 0;
    transform: translateY(1rem);
    transition: transform 0.3s, opacity 0.3s;
}

span.product_card_cart_error.show {
  opacity: 1;
  transform: translateY(0);
}

label.product_card_label.label--default {
    font-size: 1.2rem;
    width: max-content;
    height: auto;
    line-height: 1;
    border-radius: 0.3rem;
    padding: 2px 3px;
    border: 1px solid transparent;
}

small.unit-price {
    margin: 7px 0 0;
    display: flex;
    justify-content: center;
}

small.unit-price span {
    font-size: 1.2rem;
    color: var(--color-foreground);
}

quick-add-button button:focus-visible {
    outline: 1px solid var(--color-primary-button-text) !important;
}


/* MEDIA QUERIES */
@media screen and (max-width: 640px) {
  .product_card_input {
    transform: none !important;
  }  

  button.product_card_submit_button, button.qa_btn {
    transform: none !important;
    opacity: 1;
    width: 3rem;
    height: 3rem;
    border-radius: 5px;
  }

  button.product_card_submit_button svg, button.qa_btn svg {
    width: 2rem;
    height: 2rem;
  }

  label.product_card_label.has_variant_image {
    width: 2rem;
    height: 2rem;
    cursor: pointer;
  }

  .img--swiper-button-prev, .img--swiper-button-next {
    transform: translate(0, -50%) !important;
    width: 2.4rem;
    height: 2.4rem;
  }

  .img--swiper-button-prev svg, .img--swiper-button-next svg {
    width: 1.2rem;
    height: 1.2rem;
  
}