/** Shopify CDN: Minification failed

Line 106:32 Expected ")" to end URL token

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:category-showcase (INDEX:8) */
.category-showcase {
    padding: 48px 0;
  }

  .category-showcase__heading {
    text-align: center;
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 32px;
  }

  .category-showcase__viewport {
    position: relative;
  }

  .category-showcase__track {
    display: grid;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--cs-card-gap, 20px);
  }

  .category-showcase__viewport--grid .category-showcase__track {
    grid-template-columns: repeat(var(--cs-columns-desktop, 5), 1fr);
  }

  .category-showcase__viewport--carousel .category-showcase__track {
    display: flex;
    grid-auto-flow: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .category-showcase__track::-webkit-scrollbar {
    display: none;
  }

  .category-showcase__viewport--carousel .category-showcase__item {
    flex: 0 0 calc((100% - (var(--cs-columns-desktop, 5) - 1) * var(--cs-card-gap, 20px)) / var(--cs-columns-desktop, 5));
    scroll-snap-align: start;
  }

  .category-showcase__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    opacity: 0.6;
    font-size: 1.4rem;
  }

  .category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
  }

  .category-card__frame {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: rgb(var(--color-secondary-background, 245 245 245));
    border: 1px solid rgba(180, 140, 70, 0.5);
    box-shadow: inset 0 0 0 5px #fff, inset 0 0 0 6px rgba(180, 140, 70, 0.5);
  }

  .category-card--arch .category-card__frame {
    border-radius: 45% 45% 6px 6px;
  }

  .category-card--rounded .category-card__frame {
    border-radius: 16px;
  }

  .category-card--square .category-card__frame {
    border-radius: 2px;
  }

  /* Heritage frame: an ornate rounded-rect border with diamond
     corner accents, shipped as an SVG (assets/heritage-frame.svg)
     and applied via border-image so the corner artwork stays
     crisp and unstretched at any card size while the straight
     edges stretch to fit. */
  .category-card--heritage-frame .category-card__frame {
    box-sizing: border-box;
    border: 18px solid transparent;
    border-image-source: url({{ 'heritage-frame.svg' | asset_url }});
    border-image-slice: 46;
    border-image-width: 18px;
    border-image-repeat: stretch;
    box-shadow: none;
    background: rgb(var(--color-secondary-background, 245 245 245));
  }

  .category-card--heritage-frame .category-card__image {
    border-radius: 4px;
  }

  @media screen and (max-width: 749px) {
    .category-card--heritage-frame .category-card__frame {
      border-width: 12px;
      border-image-width: 12px;
    }
  }

  .category-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .category-card:hover .category-card__image {
    transform: scale(1.04);
  }

  .category-card__label {
    margin-top: 14px;
    text-align: center;
  }

  .category-card__title {
    display: block;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
  }

  .category-card__count {
    display: block;
    margin-top: 2px;
    font-size: 1.2rem;
    opacity: 0.6;
  }

  .category-showcase__arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .category-showcase__arrow--prev {
    left: -8px;
  }

  .category-showcase__arrow--next {
    right: -8px;
  }

  @media screen and (max-width: 749px) {
    .category-showcase__viewport--grid .category-showcase__track {
      grid-template-columns: repeat(var(--cs-columns-mobile, 2), 1fr);
    }

    .category-showcase__viewport--carousel .category-showcase__item {
      flex-basis: calc((100% - (var(--cs-columns-mobile, 2) - 1) * var(--cs-card-gap, 20px)) / var(--cs-columns-mobile, 2));
    }

    .category-showcase__arrow {
      width: 32px;
      height: 32px;
      font-size: 1.6rem;
    }
  }
/* END_SECTION:category-showcase */

/* START_SECTION:collection-banner (INDEX:12) */
.collection-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    overflow: hidden;
  }

  .collection-banner--color {
    background: var(--banner-bg-color, #f4f4f4);
  }

  .collection-banner--natural {
    min-height: 0;
  }

  .collection-banner__media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .collection-banner__image {
    width: 100%;
    height: var(--banner-height, 260px);
    object-fit: cover;
    display: block;
  }

  .collection-banner--natural .collection-banner__image {
    height: auto;
    position: static;
  }

  .collection-banner__overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: var(--banner-overlay-opacity, 20%);
  }

  .collection-banner__content {
    position: relative;
    z-index: 1;
    padding: 32px 0;
    color: var(--banner-text-color, inherit);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .breadcrumb {
    display: flex;
    justify-content: center;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    opacity: 0.75;
  }

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

  .breadcrumb a:hover {
    text-decoration: underline;
  }

  .breadcrumb__separator {
    margin: 0 6px;
  }

  .collection-banner__title {
    margin: 0 0 8px;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1.1;
  }

  .collection-banner__description {
    max-width: 60ch;
    font-size: 1.5rem;
    line-height: 1.5;
    opacity: 0.9;
  }

  .collection-banner__count {
    margin: 8px 0 0;
    font-size: 1.3rem;
    opacity: 0.7;
  }
/* END_SECTION:collection-banner */

/* START_SECTION:collection-product-grid (INDEX:14) */
.collection-grid-section {
    padding: 24px 0 60px;
  }

  .collection-grid-section__layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: start;
  }

  .collection-filters {
    position: sticky;
    top: 20px;
  }

  .collection-filters__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }

  .collection-filters__heading {
    margin: 0;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .collection-filters__clear-all {
    font-size: 1.2rem;
    color: inherit;
    opacity: 0.7;
  }

  .filter-group {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 14px 0;
  }

  .filter-group__title {
    margin: 0 0 10px;
    font-size: 1.3rem;
    text-transform: uppercase;
  }

  .filter-group__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    cursor: pointer;
  }

  .filter-checkbox--disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .filter-checkbox__count {
    opacity: 0.5;
    font-size: 1.15rem;
  }

  .filter-group__price-range {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .filter-group__price-field {
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 4px 8px;
  }

  .filter-group__price-field input {
    width: 60px;
    border: none;
    font-size: 1.2rem;
  }

  .collection-filters__apply {
    margin-top: 12px;
    width: 100%;
    padding: 10px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
  }

  .active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
  }

  .active-filters__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    font-size: 1.2rem;
    color: inherit;
    text-decoration: none;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns-desktop, 4), 1fr);
    gap: 24px 16px;
  }

  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    font-size: 1.3rem;
  }

  .pagination__list {
    display: flex;
    list-style: none;
    gap: 6px;
    margin: 0;
    padding: 0;
  }

  .pagination__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: inherit;
    text-decoration: none;
  }

  .pagination__page--current {
    border: 1px solid #1a1a1a;
    border-radius: 50%;
  }

  .collection-empty {
    padding: 60px 0;
    text-align: center;
  }

  .collection-empty__message {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  @media screen and (max-width: 989px) {
    .collection-grid-section__layout {
      grid-template-columns: 1fr;
    }

    .collection-filters {
      position: fixed;
      inset: 0;
      z-index: 100;
      background: #fff;
      padding: 20px;
      overflow-y: auto;
      transform: translateX(-100%);
      transition: transform 0.25s ease;
    }

    .collection-filters.is-open {
      transform: translateX(0);
    }
  }

  @media screen and (max-width: 749px) {
    .product-grid {
      grid-template-columns: repeat(var(--grid-columns-mobile, 2), 1fr);
      gap: 16px 12px;
    }
  }
/* END_SECTION:collection-product-grid */

/* START_SECTION:collection-toolbar (INDEX:15) */
.collection-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .collection-toolbar__left,
  .collection-toolbar__right {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .collection-toolbar__filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid #1a1a1a;
    background: transparent;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
  }

  .collection-toolbar__count {
    margin: 0;
    font-size: 1.3rem;
    opacity: 0.7;
  }

  .collection-toolbar__sort-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    opacity: 0.7;
  }

  .collection-toolbar__sort-select {
    padding: 8px 30px 8px 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #fff;
    font-size: 1.3rem;
    cursor: pointer;
  }

  @media screen and (max-width: 749px) {
    .collection-toolbar {
      justify-content: space-between;
    }

    .collection-toolbar__count {
      display: none;
    }
  }
/* END_SECTION:collection-toolbar */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:product-card (INDEX:164) */
.product-card {
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .product-card__image-link {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .product-card__media {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: rgb(var(--color-secondary-background, 245 245 245));
    border-radius: 4px;
  }

  .product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .product-card__image--secondary {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
  }

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

  .product-card__badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
    z-index: 2;
  }

  .badge {
    font-size: 1.1rem;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fff;
  }

  .badge--sale {
    background: #c0392b;
  }

  .badge--sold-out {
    background: #6b6b6b;
  }

  .product-card__quick-add {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #1a1a1a;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .product-card:hover .product-card__quick-add,
  .product-card:focus-within .product-card__quick-add {
    opacity: 1;
    transform: translateY(0);
  }

  .product-card__info {
    padding-top: 10px;
  }

  .product-card__vendor {
    margin: 0 0 2px;
    font-size: 1.1rem;
    text-transform: uppercase;
    opacity: 0.6;
  }

  .product-card__title {
    margin: 0 0 4px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.3;
  }

  .product-card__title a {
    color: inherit;
    text-decoration: none;
  }

  .product-card__title a:hover {
    text-decoration: underline;
  }

  .product-card__price {
    font-size: 1.4rem;
  }

  .price--sale {
    color: #c0392b;
    font-weight: 600;
  }

  .price--compare {
    color: #8a8a8a;
    text-decoration: line-through;
    margin-left: 6px;
  }

  .product-card__swatches {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
  }

  .swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    display: inline-block;
  }

  .swatch--more {
    font-size: 1rem;
    width: auto;
    height: auto;
    border: none;
    opacity: 0.7;
  }

  .product-card__sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
  }

  .size-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 26px;
    padding: 0 8px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    user-select: none;
    transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  }

  .size-pill:hover {
    border-color: #1a1a1a;
  }

  .size-pill.is-selected {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
  }

  .size-pill--disabled {
    color: rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 0, 0, 0.1);
    text-decoration: line-through;
    cursor: not-allowed;
  }
/* END_SNIPPET:product-card */