/** Shopify CDN: Minification failed

Line 108:11 Expected identifier but found whitespace
Line 108:13 Unexpected "{"
Line 108:22 Expected ":"
Line 108:52 Expected ":"
Line 109:15 Expected identifier but found whitespace
Line 109:17 Unexpected "{"
Line 109:26 Expected ":"
Line 109:56 Expected ":"

**/
/* START_SECTION:gc-header (INDEX:13) */
/* ── BASE ────────────────────────────────── */
  .gc-header {
    background: #ffffff;
    width: 100%;
  }

  /* ── TOP BAR ─────────────────────────────── */
  .gc-header__top {
    width: 100%;
  }

  .gc-header__top-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 75px;
    gap: 16px;
    overflow: hidden;
  }

  .gc-header__top-left {
    display: flex;
    align-items: center;
    position: relative;
  }

  .gc-header__search-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    transition: opacity 0.2s;
    position: absolute;
    right: calc(100% + 40px);
    top: 50%;
    transform: translateY(-50%);
    width: max-content;
  }

  .gc-header__search-btn:hover { opacity: 0.6; }

  .gc-header__info-strip {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .gc-header__info-icon { flex-shrink: 0; }

  .gc-header__info-text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  .gc-header__info-link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #303AB2;
    text-decoration: underline;
    white-space: nowrap;
    transition: opacity 0.2s;
  }

  .gc-header__info-link:hover { opacity: 0.75; }

  /* ── LOGO ────────────────────────────────── */
  .gc-header__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    overflow: hidden;
  }

  .gc-header__logo-link {
    display: block;
    text-decoration: none;
    line-height: 0;
    min-width: 0;
  }

  .gc-header__logo-img {
    display: block;
    height: {{ section.settings.logo_max_height }}px;
    max-height: {{ section.settings.logo_max_height }}px;
    width: auto;
    max-width: min(360px, 28vw);
    object-fit: contain;
  }

  .gc-header__logo-text {
    font-size: clamp(16px, 2.5vw, 26px);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
  }

  /* ── RIGHT ICONS ─────────────────────────── */
  .gc-header__top-right {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: flex-end;
    flex-shrink: 0;
    min-width: max-content;
  }

  .gc-header__icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 0;
    flex-shrink: 0;
    transition: opacity 0.2s;
  }

  .gc-header__icon-btn:hover { opacity: 0.6; }

  .gc-header__cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #DDB840;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    padding-inline: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: none;
  }

  /* ── HAMBURGER ───────────────────────────── */
  .gc-header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .gc-header__burger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: #303AB2;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  /* ── DIVIDER ─────────────────────────────── */
  .gc-header__divider {
    height: 1px;
    background: #D5D5D5;
  }

  /* ── DESKTOP NAV ─────────────────────────── */
  .gc-header__nav {
    padding-inline: 24px;
  }

  .gc-header__nav-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .gc-header__nav-inner::after {
    content: '';
    flex: 1 0 0;
  }

  .gc-header__nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 14px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    transition: color 0.2s;
  }

  .gc-header__nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #DDB840;
    transform: scaleX(0);
    transition: transform 0.2s ease;
  }

  .gc-header__nav-link:hover::before,
  .gc-header__nav-link--active::before { transform: scaleX(1); }

  .gc-header__nav-link--active {
    color: #DDB840;
    font-weight: 500;
  }

  /* ── NAV ITEM WRAPPER ────────────────────── */
  .gc-nav-item {
    position: relative;
    display: inline-flex;
    align-items: stretch;
  }

  /* ── DROPDOWN ────────────────────────────── */
  .gc-nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
    border-top: 2px solid #DDB840;
    z-index: 150;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .gc-nav-item--has-dropdown:hover .gc-nav-dropdown,
  .gc-nav-item--has-dropdown:focus-within .gc-nav-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .gc-nav-item--has-dropdown:hover .gc-header__nav-link::before {
    transform: scaleX(1);
  }

  .gc-nav-dropdown__link {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s, background 0.15s;
    border-bottom: 1px solid #f4f4f4;
  }

  .gc-nav-dropdown__link:last-child {
    border-bottom: none;
  }

  .gc-nav-dropdown__link:hover,
  .gc-nav-dropdown__link--active {
    color: #DDB840;
    background: #fafafa;
  }

  /* ── MOBILE DRAWER ACCORDION ─────────────── */
  .gc-mobile-drawer__group {
    border-bottom: 1px solid #f0f0f0;
  }

  .gc-mobile-drawer__group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #000;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
  }

  .gc-mobile-drawer__group-toggle:hover { color: #DDB840; }

  .gc-mobile-drawer__caret {
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }

  .gc-mobile-drawer__group-toggle[aria-expanded='true'] .gc-mobile-drawer__caret {
    transform: rotate(180deg);
  }

  .gc-mobile-drawer__group-toggle[aria-expanded='true'] {
    color: #DDB840;
  }

  .gc-mobile-drawer__children {
    padding-bottom: 4px;
  }

  .gc-mobile-drawer__child-link {
    display: block;
    padding: 10px 24px 10px 36px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #555;
    text-decoration: none;
    transition: color 0.15s;
  }

  .gc-mobile-drawer__child-link:hover,
  .gc-mobile-drawer__child-link.gc-mobile-drawer__link--active {
    color: #DDB840;
  }

  /* ── MOBILE DRAWER OVERLAY ───────────────── */
  .gc-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .gc-drawer-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  /* ── MOBILE DRAWER ───────────────────────── */
  .gc-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: #ffffff;
    z-index: 200;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

  .gc-mobile-drawer[aria-hidden='false'] {
    transform: translateX(0);
  }

  .gc-mobile-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #D5D5D5;
    flex-shrink: 0;
  }

  .gc-mobile-drawer__logo-link {
    display: block;
    text-decoration: none;
    line-height: 0;
  }

  .gc-mobile-drawer__logo-img {
    height: 28px;
    width: auto;
    display: block;
    object-fit: contain;
  }

  .gc-mobile-drawer__logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
  }

  .gc-mobile-drawer__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #000;
    display: flex;
    align-items: center;
    line-height: 0;
    transition: opacity 0.2s;
  }

  .gc-mobile-drawer__close:hover { opacity: 0.6; }

  .gc-mobile-drawer__nav {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
  }

  .gc-mobile-drawer__link {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s, background 0.2s;
  }

  .gc-mobile-drawer__link:hover {
    background: #fafafa;
    color: #DDB840;
  }

  .gc-mobile-drawer__link--active {
    color: #DDB840;
    font-weight: 500;
    border-left: 3px solid #DDB840;
    padding-left: 21px;
  }

  /* ── TABLET ──────────────────────────────── */

  @media screen and (min-width: 750px) and (max-width: 1100px) {
    .gc-header__logo-img {
      height: clamp(24px, 3.5vw, {{ section.settings.logo_max_height }}px);
      max-height: clamp(24px, 3.5vw, {{ section.settings.logo_max_height }}px);
      max-width: min(280px, 22vw);
    }

    .gc-header__info-text {
      display: none;
    }

    .gc-header__nav-link {
      padding: 14px 12px;
      font-size: 14px;
    }

  }
  @media (max-width: 1100px) {
    .gc-header__search-btn {
      right: calc(100% + 5px);
    }
  }
  /* ── MOBILE BREAKPOINT ───────────────────── */
  @media screen and (max-width: 749px) {
    .gc-header__top {
      padding-inline: 16px;
    }

    .gc-header__top-inner {
      grid-template-columns: auto 1fr auto;
      height: 56px;
      gap: 8px;
    }

    .gc-header__info-strip {
      display: none;
    }

    .gc-header__logo-img {
      height: 24px;
      max-height: 24px;
    }

    .gc-header__account-btn {
      display: none;
    }

    .gc-header__burger {
      display: flex;
    }

    .gc-header__nav,
    .gc-header__divider {
      display: none;
    }
    .gc-header__search-btn {
      right: calc(100% - 14px);
    }

  }
/* END_SECTION:gc-header */
/* START_SECTION:gc-story-mosaic (INDEX:23) */
.gc-story-mosaic {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 35fr 65fr;
    /* max-height: 860px; */
    background: var(--bg, #fff);
    padding-top: var(--pt-desk, 0px);
    padding-bottom: var(--pb-desk, 0px);
    gap: 21px;
  }

  /* ── TEXT COLUMN ── */
  .gc-story-mosaic__text-col {
    display: flex;
    align-items: center;
    padding: 70px 50px;
    box-sizing: border-box;
    background: #f2efe8;
    position: relative;
  }

  .gc-story-mosaic__decor {
    position: absolute;
    bottom: 20px;
    right: 20px;
    pointer-events: none;
    line-height: 0;
    max-width: 50px;
  }

  .gc-story-mosaic__decor-img {
    width: 150px;
    height: auto;
    display: block;
  }

  .gc-story-mosaic__text-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .gc-story-mosaic__heading {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;
    color: #21221d;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 0 24px;
  }

  .gc-story-mosaic__description {
    font-size: 18px;
    line-height: 1.75;
    color: #555;
    margin: 0 0 36px;
  }

  .gc-story-mosaic__description p {
    margin: 0 0 10px;
  }

  .gc-story-mosaic__description p:last-child {
    margin: 0;
  }

  .gc-story-mosaic__btn {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #21221d;
    text-decoration: none;
    border: 1px solid #21221d;
    padding: 14px 28px;
    transition: background 0.2s, color 0.2s;
    margin-top: auto;
    align-self: flex-start;
  }

  .gc-story-mosaic__btn:hover {
    background: #21221d;
    color: #fff;
  }

  /* ── IMAGE MOSAIC ── */
  .gc-story-mosaic__images {
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-template-rows: auto auto;
    gap: 4px;
    overflow: hidden;
  }

  .gc-story-mosaic__img-main {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .gc-story-mosaic__img-sec-1 {
    grid-column: 1;
    grid-row: 2;
  }

  .gc-story-mosaic__img-sec-2 {
    grid-column: 2;
    grid-row: 2;
  }

  .gc-story-mosaic__img-wrap {
    overflow: hidden;
    position: relative;
  }

  .gc-story-mosaic__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  .gc-story-mosaic__img-wrap:hover .gc-story-mosaic__img {
    transform: scale(1.04);
  }

  .gc-story-mosaic__img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: #e8e4dd;
    display: block;
    opacity: 0.4;
  }

  /* ── TABLET ── */
  @media screen and (min-width: 750px) and (max-width: 1100px) {
    .gc-story-mosaic__heading {
      font-size: 32px;
    }
  }

  /* ── MOBILE ── */
  @media screen and (max-width: 749px) {
    .gc-story-mosaic {
      padding-top: var(--pt-mob, 0px);
      padding-bottom: var(--pb-mob, 0px);
      max-height: none;
      height: auto;
      display: flex;
      flex-direction: column;
    }

    .gc-story-mosaic__text-col {
      padding: 24px 16px;
    }

    .gc-story-mosaic__heading {
      font-size: 22px;
      margin-bottom: 12px;
    }

    .gc-story-mosaic__description {
      font-size: 14px;
      margin-bottom: 20px;
    }
  }
/* END_SECTION:gc-story-mosaic */
/* START_SECTION:logo (INDEX:29) */
.logo-section {
    width: calc(var(--logo-width) + var(--padding-inline-start) + var(--padding-inline-end));
    max-width: 100%;
    max-height: calc(var(--logo-height, 100%) + var(--padding-block-start) + var(--padding-block-end));
    font-size: var(--logo-height);
    display: flex;

    @media screen and (max-width: 749px) {
      max-height: calc(
        var(--logo-height-mobile, var(--logo-height, 100%)) + var(--padding-block-start) + var(--padding-block-end)
      );
      font-size: var(--logo-height-mobile, var(--logo-height));
      width: calc(
        var(--logo-width-mobile, var(--logo-width)) + var(--padding-inline-start) + var(--padding-inline-end)
      );
    }
  }

  .logo-section--center {
    margin-inline: auto;
  }

  .logo-section--flex-end {
    margin-inline-start: auto;
  }

  .logo-section--flex-start {
    margin-inline-end: auto;
  }

  .logo-section__image-wrapper {
    display: flex;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  .logo-section__image {
    object-fit: contain;
    width: 100%;
  }
/* END_SECTION:logo */
/* START_SECTION:slideshow (INDEX:53) */
.slideshow-section {
    slideshow-arrows .slideshow-control:first-of-type {
      margin-inline-start: var(--padding-xs);
    }

    slideshow-arrows .slideshow-control:last-of-type {
      margin-inline-end: var(--padding-xs);
    }

    .slideshow--with-hints--mobile-with-hints {
      gap: var(--slideshow-gap, 0);
      grid-column: 1 / -1;
    }

    /* Hide navigation arrows at boundaries for with-hints mode */
    .slideshow--with-hints--mobile-with-hints slideshow-arrows .slideshow-control {
      transition: opacity 0.3s ease;
    }

    /* Override animation for boundary arrows in with-hints mode on hover */
    slideshow-component.slideshow--with-hints--mobile-with-hints:has(
        slideshow-slide:first-child:not([aria-hidden='true'])
      )
      > slideshow-container
      > slideshow-arrows
      .slideshow-control--previous,
    slideshow-component.slideshow--with-hints--mobile-with-hints:has(
        slideshow-slide:last-child:not([aria-hidden='true'])
      )
      > slideshow-container
      > slideshow-arrows
      .slideshow-control--next {
      animation: none;
      opacity: 0;
      pointer-events: none;
    }

    @media screen and (max-width: 749px) {
      .slideshow--with-hints--mobile-with-hints slideshow-slides {
        padding-inline: var(--page-margin);
      }

      .slideshow--with-hints--mobile-with-hints slideshow-slide {
        width: 96%;
      }

      .slideshow--with-hints--mobile-with-hints slideshow-slides {
        gap: min(var(--slideshow-gap, 0), 10px);
      }
    }

    @media screen and (min-width: 750px) {
      .slideshow--with-hints {
        gap: var(--slideshow-gap, 0);
        grid-column: 1 / -1;
      }

      .slideshow--with-hints slideshow-slides {
        padding-inline: var(--page-margin);
        gap: var(--slideshow-gap, 0);
      }

      .slideshow--with-hints slideshow-slide {
        width: calc((100vw - var(--page-margin) * 2));
        overflow: hidden;
      }

      .slideshow--with-hints slideshow-arrows .slideshow-control {
        transition: opacity 0.3s ease;
      }

      slideshow-component.slideshow--with-hints:has(slideshow-slide:first-child:not([aria-hidden='true']))
        > slideshow-container
        > slideshow-arrows
        .slideshow-control--previous,
      slideshow-component.slideshow--with-hints:has(slideshow-slide:last-child:not([aria-hidden='true']))
        > slideshow-container
        > slideshow-arrows
        .slideshow-control--next {
        animation: none;
        opacity: 0;
        pointer-events: none;
      }
    }
  }
/* END_SECTION:slideshow */
/* START_BLOCK:_announcement (INDEX:55) */
.text-block:not(.text-block--full-width).rte,
  .text-block:not(.text-block--full-width).paragraph {
    /* Safari doesn't support pretty, so fallback to balance */
    text-wrap: balance;
    text-wrap: pretty;
  }

  .text-block:not(.text-block--full-width).h1,
  .text-block:not(.text-block--full-width).h2,
  .text-block:not(.text-block--full-width).h3,
  .text-block:not(.text-block--full-width).h4,
  .text-block:not(.text-block--full-width).h5,
  .text-block:not(.text-block--full-width).h6 {
    text-wrap: balance;
  }

  /* Hide underline unless text is using paragraph styles. */
  .text-block:is(.h1, .h2, .h3, .h4, .h5, .h6) a {
    text-decoration-color: transparent;
  }

  .text-block h1,
  .text-block.h1 > * {
    margin-block: var(--font-h1--spacing);
  }

  .text-block h2,
  .text-block.h2 > * {
    margin-block: var(--font-h2--spacing);
  }

  .text-block h3,
  .text-block.h3 > * {
    margin-block: var(--font-h3--spacing);
  }

  .text-block h4,
  .text-block.h4 > * {
    margin-block: var(--font-h4--spacing);
  }

  .text-block h5,
  .text-block.h5 > * {
    margin-block: var(--font-h5--spacing);
  }

  .text-block h6,
  .text-block.h6 > * {
    margin-block: var(--font-h6--spacing);
  }

  .text-block > *:first-child {
    margin-block-start: 0;
  }

  .text-block > *:last-child {
    margin-block-end: 0;
  }

  .text-block--align-center,
  .text-block--align-center > * {
    margin-inline: auto;
  }

  .text-block--align-right,
  .text-block--align-right > * {
    margin-inline-start: auto;
  }
/* END_BLOCK:_announcement */
/* START_BLOCK:_blog-post-content (INDEX:57) */
.blog-post-content {
    max-width: var(--normal-content-width);
    margin: 0 auto;
  }
/* END_BLOCK:_blog-post-content */
/* START_BLOCK:_blog-post-featured-image (INDEX:59) */
.blog-post-featured-image {
    --width: 100%;
    --custom-width: 100%;

    display: block;
    position: relative;
    width: var(--width);
  }

  .blog-post-featured-image.size-style {
    --width: var(--size-style-width, 100%);
  }

  .blog-post-featured-image--height-fit {
    height: fit-content;
  }

  .blog-post-featured-image--height-fill {
    height: 100%;
  }

  .blog-post-featured-image__image {
    aspect-ratio: var(--ratio);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  @media screen and (max-width: 749px) {
    .blog-post-featured-image {
      --width: var(--width-mobile, var(--width));
      --custom-width: var(--custom-width-mobile, var(--custom-width));
    }

    .blog-post-featured-image.size-style {
      --width: var(--size-style-width-mobile, var(--size-style-width, 100%));
    }
  }
/* END_BLOCK:_blog-post-featured-image */
/* START_SNIPPET:product-grid (INDEX:207) */
.product-grid {
    --product-grid-gap: var(--product-grid-gap-mobile);
    --mobile-columns: 2; /* Default value */

    isolation: isolate;

    @media screen and (min-width: 750px) {
      --product-grid-gap: var(--product-grid-gap-desktop);
    }
  }

  .product-grid slideshow-arrows .slideshow-control {
    display: none;

    @media screen and (min-width: 750px) {
      display: grid;
    }
  }

  /* This triggers iOS < 16.4 */
  @supports not (background-color: rgb(from red 150 g b / alpha)) {
    /* Force aspect ratio to auto for iOS < 16.4 since it's not compatible with the infinite pagination */
    .product-grid .product-media,
    .product-grid .product-media-container {
      aspect-ratio: auto;
    }
  }

  .main-collection-grid {
    grid-column: var(--grid-column--mobile);
    padding: var(--grid--margin--mobile);

    @media screen and (min-width: 750px) {
      grid-column: var(--grid-column--desktop);
      padding: var(--padding-block-start) var(--padding-inline-end) var(--padding-block-end) var(--padding-inline-start);
    }
  }

  .main-collection-grid__empty {
    padding-block: var(--padding-6xl);
    padding-inline: var(--page-margin);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--padding-sm);
  }

  .main-collection-grid__empty-title {
    margin: 0;
  }
/* END_SNIPPET:product-grid */
/* START_SNIPPET:product-media (INDEX:211) */
.product-media {
    aspect-ratio: var(--gallery-aspect-ratio, var(--ratio));
    min-height: 0;
    min-width: 0;
  }

  .product-media__image {
    object-position: var(--focal-point, center center);
  }

  /*** Media border-radius feature ****/
  @media screen and (min-width: 750px) {
    .media-gallery--carousel slideshow-container,
    .media-gallery--grid .product-media > * {
      border-radius: var(--media-radius, 0);
      overflow: hidden;
    }

    /* When the CAROUSEL is on the LEFT side */
    .product-information:not(.product-information--media-right)
      .media-gallery--carousel.media-gallery--extend
      slideshow-container {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }

    /* When the CAROUSEL is on the RIGHT side */
    .product-information.product-information--media-right
      .media-gallery--carousel.media-gallery--extend
      slideshow-container {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }

    /* When the GRID is on the LEFT side */
    .product-information:not(.product-information--media-right) {
      /* One column */
      .media-gallery--grid.media-gallery--extend:not(.media-gallery--two-column) .product-media > *,
      /* Two column, small first image */
      .media-gallery--grid.media-gallery--extend.media-gallery--two-column:not(.media-gallery--large-first-image)
        .product-media-container:nth-of-type(odd)
        .product-media
        > *,
      /* Two column, large first image */
      .media-gallery--grid.media-gallery--extend.media-gallery--two-column.media-gallery--large-first-image
        .product-media-container:is(:first-of-type, :nth-of-type(even))
        .product-media
        > * {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
      }
    }

    /* When the GRID is on the RIGHT side */
    .product-information.product-information--media-right {
      /* One column */
      .media-gallery--grid.media-gallery--extend:not(.media-gallery--two-column) .product-media > *,
      /* Two column, small first image */
      .media-gallery--grid.media-gallery--extend.media-gallery--two-column:not(.media-gallery--large-first-image)
        .product-media-container:nth-of-type(even)
        .product-media
        > *,
      /* Two column, large first image */
      .media-gallery--grid.media-gallery--extend.media-gallery--two-column.media-gallery--large-first-image
        .product-media-container:is(:first-of-type, :nth-of-type(odd))
        .product-media
        > * {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
      }
    }
  }
/* END_SNIPPET:product-media */
/* START_SNIPPET:quick-add-styles (INDEX:215) */
/* Quick Add */
  .quick-add {
    --quick-add-offset: var(--padding-sm);
    --quick-add-right: calc(var(--quick-add-offset) + var(--padding-inline-end));
    --quick-add-bottom: calc(var(--quick-add-offset) + var(--padding-block-end));

    position: absolute;
    inset: 0;
    z-index: var(--layer-raised);
    pointer-events: none;

    @media screen and (min-width: 750px) {
      --quick-add-offset: var(--padding-md);
    }
  }

  .quick-add .variant-option__button-label input[data-option-available='false'] {
    cursor: not-allowed;
  }

  .quick-add[class*='color-scheme-'] {
    background-color: #0000;
  }

  product-card:is(:hover, :focus-within) .quick-add__button {
    opacity: 1;
  }

  .quick-add__button {
    display: var(--quick-add-mobile-display, none);
    align-items: center;
    background: linear-gradient(var(--color-background) 0 100%) padding-box;
    padding: 0;
    border-radius: 50px;
    border: 2px solid hsl(0 0% 0% / 0.15);
    height: var(--button-size-md);
    cursor: pointer;
    opacity: var(--quick-add-mobile-opacity, 0);
    overflow: hidden;
    color: var(--color-foreground);
    pointer-events: all;
    position: absolute;
    right: max(var(--quick-add-right), calc((var(--border-radius) + var(--quick-add-right)) * (1 - cos(45deg))));
    bottom: max(var(--quick-add-bottom), calc((var(--border-radius) + var(--quick-add-bottom)) * (1 - cos(45deg))));
    backdrop-filter: blur(20px) saturate(180%);

    &:hover {
      scale: 1.03;

      /* Hover stabilizer: extends hit area to maintain hover state */
      &::before {
        content: '';
        position: absolute;
        inset: -10px;
        z-index: -1;
      }
    }

    &:active {
      scale: 0.99;
    }

    .quick-add[stay-visible] & {
      display: grid;
    }

    @media screen and (min-width: 750px) {
      display: var(--quick-add-display, flex);
      opacity: 0;
    }
  }

  .quick-add__button.add-to-cart-button {
    height: var(--button-size-md);
  }

  .quick-add__button .add-to-cart-text {
    background: var(--color-background);
    overflow: hidden;
    border-radius: 50px;
    height: 100%;
    gap: 0;
  }

  .quick-add__button .svg-wrapper .checkmark-burst {
    width: 22px;
    height: 22px;
  }

  .quick-add__button .add-to-cart-icon {
    /* account for border width */
    height: 100%;
    width: calc(var(--button-size-md) - 4px);
  }

  .quick-add__button .add-to-cart-text__content {
    display: grid;
    grid-template-columns: 0fr;

    & > span {
      min-width: 0;

      span {
        padding-right: var(--padding-sm);
        opacity: 0;
        display: inline-block;
        filter: blur(2px);
        translate: 0.5ch 0;
      }
    }
  }

  .quick-add__button[data-added='true'] .add-to-cart-text {
    animation-name: atc-fade-out;
  }

  .quick-add__button[data-added='true'] .add-to-cart-text--added {
    translate: 0 0;
    animation-name: atc-fade-in;
  }

  .quick-add__product-form-component {
    height: 100%;
  }

  .quick-add__product-form-component .shopify-product-form {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    container-type: inline-size;
    height: 100%;
  }

  .quick-add-modal .product-media {
    width: 100%;
    height: 100%;
  }

  .quick-add-modal deferred-media {
    display: none;
  }

  .quick-add-modal .media-gallery--carousel slideshow-component {
    --cursor: default;
  }

  .quick-add__button:is(:hover, :focus-visible) {
    .add-to-cart-text__content {
      grid-template-columns: 1fr;

      span span {
        opacity: 1;
        translate: 0 0;
        filter: blur(0);
      }
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .quick-add__button .add-to-cart-text__content {
      grid-template-columns: 1fr;

      span span {
        opacity: 1;
        translate: 0 0;
        filter: blur(0);
      }
    }
  }

  @media (prefers-reduced-motion: no-preference) {
    .quick-add__button {
      transition-property: scale, translate, opacity;
      transition-duration: var(--animation-speed);
      transition-timing-function: var(--ease-out-cubic);
    }

    .quick-add__button:is(:hover, :focus-visible) {
      .add-to-cart-text__content,
      .add-to-cart-text__content span span {
        transition-delay: var(--animation-speed);
      }
    }

    .quick-add__button .add-to-cart-text__content {
      transition-property: grid-template-columns;
      transition-duration: var(--animation-speed);
      transition-timing-function: var(--ease-out-cubic);

      span span {
        transition-property: opacity, filter, translate;
        transition-duration: var(--animation-speed-slow);
        transition-timing-function: var(--ease-out-quad);
      }
    }
  }
/* END_SNIPPET:quick-add-styles */
/* START_SNIPPET:section (INDEX:224) */
.section-wrapper {
    --section-height-offset: 0px;
  }

  .section[data-shopify-visual-preview] {
    min-height: var(--section-preview-height);
    padding-top: 0;
  }

  .section[data-shopify-visual-preview] .custom-section-background {
    display: none;
  }

  body:has(> #header-group > .header-section > #header-component[transparent]):not(
      :has(> #header-group > .header-section + .shopify-section)
    )
    > main
    > .section-wrapper:first-child {
    --section-height-offset: var(--header-group-height, 0);
  }

  .custom-section-background {
    grid-column: 1 / -1;
  }

  .custom-section-content {
    z-index: var(--layer-flat);
  }
/* END_SNIPPET:section */
