/** Shopify CDN: Minification failed

Line 579:23 Unexpected "{"
Line 579:32 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:hero-slideshow (INDEX:24) */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: var(--slide-height, 600px);
    overflow: hidden;
    background: #000;
  }

  .hero-slideshow__track {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .hero-slideshow__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .hero-slideshow__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }

  .hero-slideshow__slide.is-leaving {
    opacity: 0;
    z-index: 2;
  }

  .hero-slideshow__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .hero-slideshow__image--placeholder {
    width: 100%;
    height: 100%;
  }

  .hero-slideshow__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, var(--overlay-opacity, 0.3));
  }

  .hero-slideshow__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* enough bottom padding so the button clears the dots (dots are ~1.25rem + 1.25rem tall) */
    padding: 3rem 3rem 4.5rem;
    gap: 0.25rem;  /* tight gap between subheading and heading */
    z-index: 2;
  }

  .hero-slideshow__content--left { align-items: flex-start; text-align: left; }
  .hero-slideshow__content--center { align-items: center; text-align: center; }
  .hero-slideshow__content--right { align-items: flex-end; text-align: right; }
  .hero-slideshow__content--center-middle {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-slideshow__subheading {
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0;
  }

  .hero-slideshow__heading {
    font-weight: 700;
    line-height: 1.05;
    margin: 0;
  }

  .hero-slideshow__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid currentColor;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    cursor: pointer;
    /* push button away from subheading/heading with a larger top gap */
    margin-top: 1.25rem;
  }

  .hero-slideshow__button--primary:hover {
    background: transparent !important;
    color: #fff !important;
    border-color: #fff !important;
  }

  .hero-slideshow__button--secondary:hover {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
  }

  .hero-slideshow__controls {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 10;
  }

  .hero-slideshow__arrow {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    backdrop-filter: blur(4px);
  }

  .hero-slideshow__arrow:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: #fff;
  }

  .hero-slideshow__arrow svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .hero-slideshow__dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
  }

  .hero-slideshow__dot {
    width: 1.25rem;
    height: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-slideshow__dot-svg {
    width: 1.25rem;
    height: 1.25rem;
    overflow: visible;
  }

  .hero-slideshow__dot-track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 1.5;
  }

  .hero-slideshow__dot-fill {
    fill: rgba(255, 255, 255, 0.4);
    transition: fill 0.2s;
  }

  .hero-slideshow__dot.is-active .hero-slideshow__dot-fill {
    fill: #fff;
  }

  .hero-slideshow__dot-ring {
    fill: none;
    stroke: #fff;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 50.27;
    stroke-dashoffset: 50.27;
    transform-origin: 10px 10px;
    transform: rotate(-90deg);
  }

  .hero-slideshow__dot-ring.is-animating {
    animation: dotRingFill var(--interval, 5000ms) linear forwards;
  }

  @keyframes dotRingFill {
    from { stroke-dashoffset: 50.27; }
    to   { stroke-dashoffset: 0; }
  }

  @media (max-width: 768px) {
    .hero-slideshow {
      height: var(--slide-height-mobile, 400px);
    }

    .hero-slideshow__content {
      /* same bottom clearance on mobile */
      padding: 1.5rem 1.5rem 4rem;
    }

    .hero-slideshow__arrow {
      width: 2.25rem;
      height: 2.25rem;
    }
  }
/* END_SECTION:hero-slideshow */

/* START_SECTION:newsletter-popup (INDEX:52) */
.newsletter-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  .newsletter-popup.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .newsletter-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
  }

  .newsletter-popup__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    padding: 0;
    transition: color 0.2s;
  }

  .newsletter-popup__close:hover {
    color: #111;
  }

  .newsletter-popup__close svg {
    width: 1rem;
    height: 1rem;
  }

  .newsletter-popup__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 620px;
    background: #fff;
    padding: 2.5rem 2rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
  }

  .newsletter-popup.is-open .newsletter-popup__panel {
    transform: translateY(0);
  }

  .newsletter-popup__heading {
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 0.6rem;
    font-style: italic;
  }

  .newsletter-popup__heading em {
    font-style: italic;
  }

  .newsletter-popup__subheading {
    font-size: 0.875rem;
    color: #555;
    margin: 0 0 0.3rem;
  }

  .newsletter-popup__description {
    font-size: 0.8rem;
    color: #777;
    margin: 0 0 1.5rem;
  }

  .newsletter-popup__field {
    display: flex;
    align-items: stretch;
    border: 1px solid #d1d1d1;
    margin-bottom: 1.25rem;
  }

  .newsletter-popup__input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    color: #333;
    background: transparent;
  }

  .newsletter-popup__input::placeholder {
    color: #aaa;
  }

  .newsletter-popup__submit {
    border: none;
    background: transparent;
    padding: 0.85rem 1.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #333;
    cursor: pointer;
    white-space: nowrap;
    border-left: 1px solid #d1d1d1;
    transition: background 0.2s;
  }

  .newsletter-popup__submit:hover {
    background: #f5f5f5;
  }

  .newsletter-popup__dismiss {
    display: inline-block;
    background: none;
    border: none;
    border-bottom: 1px solid currentColor;
    padding: 0 0 1px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #333;
    cursor: pointer;
    transition: opacity 0.2s;
  }

  .newsletter-popup__dismiss:hover {
    opacity: 0.6;
  }

  .newsletter-popup__error {
    font-size: 0.8rem;
    color: #c00;
    margin: 0 0 0.75rem;
  }

  .newsletter-popup__success {
    font-size: 0.95rem;
    margin: 0 0 1.5rem;
    color: #333;
  }

  @media (min-width: 750px) {
    .newsletter-popup__panel {
      max-width: 540px;
      padding: 3rem 2.5rem 2.5rem;
    }
  }
/* END_SECTION:newsletter-popup */

/* START_SECTION:tabbed-collections (INDEX:64) */
.tabbed-collections {
    width: 100%;
    padding: 2rem 0;
  }

  .tabbed-collections__header {
    padding: 0 2rem 1rem;
  }

  .tabbed-collections__heading {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0 0 0.25rem;
    line-height: 1.1;
  }

  .tabbed-collections__subheading {
    font-size: 0.85rem;
    color: #555;
    margin: 0 0 1rem;
  }

  .tabbed-collections__footer {
    display: flex;
    justify-content: center;
    padding: 2rem 0 0;
  }

  .tabbed-collections__btn {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgb(var(--color-foreground, 0 0 0));
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: opacity 0.2s;
  }

  .tabbed-collections__btn:hover {
    opacity: 0.6;
  }

  .tabbed-collections__tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }

  .tabbed-collections__tab {
    padding: 0.45rem 1.25rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid #d1d1d1;
    background: transparent;
    color: #555;
    cursor: pointer;
    border-radius: 2rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
  }

  .tabbed-collections__tab:hover:not(.is-active) {
    border-color: #999;
    color: #000;
  }

  /* Text style tabs */
  .tabbed-collections__tabs--text {
    justify-content: flex-start;
    gap: 0;
  }

  .tabbed-collections__tabs--text .tabbed-collections__tab {
    border: none;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: #aaa;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0 0 4px;
    text-transform: uppercase;
  }

  .tabbed-collections__tabs--text .tabbed-collections__tab.is-active {
    color: #000;
  }

  .tabbed-collections__tabs--text .tabbed-collections__tab:hover:not(.is-active) {
    border-color: transparent;
    color: #555;
  }

  .tabbed-collections__separator {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 300;
    padding: 0 0.75rem;
    align-self: center;
    line-height: 1;
  }

  .tabbed-collections__arrows {
    display: flex;
    gap: 0.25rem;
    margin-left: 0.25rem;
  }

  .tabbed-collections__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid #d1d1d1;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: border-color 0.2s;
    flex-shrink: 0;
  }

  .tabbed-collections__arrow:hover {
    border-color: #999;
  }

  .tabbed-collections__arrow svg {
    width: 1rem;
    height: 1rem;
  }

  .tabbed-collections__panels {
    overflow: visible;
  }

  .tabbed-collections__panel {
    display: none;
  }

  .tabbed-collections__panel.is-active {
    display: block;
  }

  .tabbed-collections__grid {
    display: grid;
    grid-template-columns: repeat(var(--cols-desktop, 4), 1fr);
    gap: var(--grid-gap, 1rem);
    padding: 0 var(--grid-padding, 2rem);
  }

  @media (max-width: 749px) { .quick-add-pill { opacity: 1; pointer-events: auto; } }

  /* hide the default text quick-add button */
  #tabbed-collections-{{ section.id }} .quick-add {
    display: none;
  }

  .tabbed-collections__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #999;
    font-size: 0.9rem;
  }

  /* ── Carousel layout ── */
  .tabbed-collections__carousel-wrap {
    padding-bottom: 0;
  }

  .tabbed-collections__carousel {
    display: flex;
    gap: 8px;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: none;
    padding: 0 16px;
    cursor: grab;
    user-select: none;
  }

  .tabbed-collections__carousel:active {
    cursor: grabbing;
  }

  .tabbed-collections__carousel::-webkit-scrollbar {
    display: none;
  }

  .tabbed-collections__carousel-item {
    flex: 0 0 70vw;
    scroll-snap-align: start;
    min-width: 0;
  }

  @media (min-width: 750px) {
    .tabbed-collections__carousel-item {
      flex: 0 0 280px;
    }
  }

  /* Progress bar */
  .tabbed-collections__progress-bar {
    display: flex;
    gap: 4px;
    margin: 1.6rem 16px 0;
    height: 3px;
  }

  .tabbed-collections__progress-segment {
    flex: 1;
    height: 100%;
    background: #D9D9D9;
    border-radius: 2px;
    transition: background 0.3s ease;
  }

  .tabbed-collections__progress-segment.is-active {
    background: #000000;
  }

  @media (max-width: 768px) {
    .tabbed-collections__grid {
      grid-template-columns: repeat(var(--cols-mobile, 2), 1fr);
    }

    .tabbed-collections__arrows {
      display: none;
    }
  }
/* END_SECTION:tabbed-collections */