/** Shopify CDN: Minification failed

Line 276:11 Expected identifier but found whitespace
Line 276:20 Unexpected ";"

**/
#dummy-chat-button-iframe,
.rk-widget {
    display: none !important;
}

/**********************
Global
**********************/

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    outline: none;
}

body {
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    font-weight: var(--font-body-weight);
    margin: 0;
    position: relative;
}

body.noScroll {
    overflow: hidden;
}

/*********
Header
***********/

.header {
    font-size: 2.125rem;
    font-family: var(--font-heading-family);
    font-style: var(--font-heading-style);
    font-weight: var(--font-heading-weight);
    text-align: center;
    padding: 60px 20px;
    letter-spacing: 2px;
}

/************
Button Loading 
************/

.button,
.shopify-challenge__button {
    padding: 12px 15px;
    color: var(--button-text-color);
    background-color: var(--button-background-color);
    border-radius: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.275rem;
    text-align: center;
    cursor: pointer;
    display: block;
    border: none;
}

.loading {
    position: relative !important;
    pointer-events: none !important;
    color: transparent !important;
}

.loading::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #fff;
    border-radius: 50%;
    animation: loading 1s ease infinite;
}


.loading.black::after {
    border-top-color: black;
}


@keyframes loading {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}


/************
Colors
************/

[color="black"i] {
    background-color: black;
}

/**********
Collections 
***********/

#collectionTitle {
    background-color: white;
}

.collection {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
}

.collectionGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 40px;
    column-gap: 40px;
    margin-bottom: 40px;
}

.collectionItem {
    position: relative;
    display: block;
}

.collectionImage {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 15px;
    margin-bottom: 10px;
    background-color: white;
}

.collectionImage.soldOut {
    opacity: 0.6;
}

.collectionItemRow {
    display: flex;
    justify-content: space-between;
}

.collectionItemTitle {
    padding-right: 20px;
    font-family: var(--font-heading-family);
    font-style: var(--font-heading-style);
    font-weight: var(--font-heading-weight);
    font-size: 1.1rem;
}

.collectionItemTitle.unbold {
    font-weight: normal;
}

.collectionItemPrice {
    font-size: 1.25rem;
    white-space: nowrap;
}

.collectionItemPrice span.sale {
    color: var(--sale);
    font-weight: 600;
    margin-right: 4px;
}

.collectionItemPrice span.sale + span {
    text-decoration: line-through;
}

.collectionItemBanner {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    font-weight: 600;
    border-radius: 5px;
}

.collectionItemBanner.soldOut {
    background-color: #ece6e2;
}

.collectionItemBanner.sale {
    background-color: var(--sale);
    color: white;
}

.collectionPages {
    display: flex;
    justify-content: center;
    align-items: center;
}

.collectionPages > span {
    padding: 10px 16px;
    background-color: #ffffff;
    border-radius: 4px;
    margin: 0 4px;
    font-size: 1.125rem;
}

.collectionPages > span.current {
    font-weight: 600;
    border: 1px solid black;
}

.collectionPages > span.prev,
.collectionPages > span.next {
    display: none;
}

@media (max-width: 800px) {
    .collection {
        padding: 30px 20px;
    }

    .collectionGrid {
        grid-template-columns: 1fr 1fr;
        column-gap: 15px;
        row-gap: 20px;
    }

    .collectionItemRow {
        flex-direction: column;
        gap: 4px;
    }

    .collectionItemTitle {
        font-size: 1rem;
    }

    .collectionItemPrice {
        font-size: 1rem;
    }
}

/*******
Swiper
*******/
:root {
  --swiper-theme-color: #000;
  --swiper-pagination-bullet-size: 10px;
}

  position: relative;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  display: block;
  transition: opacity 0.4s ease;
}

.product-card__image--secondary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
}

.product-card__image:hover .product-card__image--secondary {
  opacity: 1;
}

.product-card__image:hover .product-card__image--primary {
  opacity: 0;
}
