/** 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_BLOCK:_accordion-row (INDEX:54) */
.details__icon {
    height: auto;
    margin-inline-end: var(--margin-xs);
  }
/* END_BLOCK:_accordion-row */
/* START_BLOCK:_blog-post-card (INDEX:56) */
.blog-post-card {
    display: flex;
    flex-direction: column;
    text-align: var(--text-align);
    column-gap: var(--columns-gap);
  }

  .blog-post-item--horizontal:has(.blog-post-card__image-container) .blog-post-card {
    & > *:first-child {
      flex-basis: 70%;
    }

    & > *:last-child {
      flex-basis: 30%;
    }
  }

  .blog-post-card__content {
    padding-block-start: 0.4rem;
    display: flex;
    flex-direction: column;
  }

  .blog-post-item .blog-post-card__image-container,
  .blog-post-item .blog-post-card__content {
    width: 100%;
  }

  /**
   * Horizontal layout (image left, content right)
   * Applied to hero posts based on total article count
   * Only applies the split layout when an image is actually present
   */
  .blog-post-item--horizontal .blog-post-card {
    flex-direction: row;

    @media screen and (max-width: 749px) {
      flex-direction: column;
    }
  }

  .blog-post-card__content a {
    display: block;
    text-wrap: pretty;
    text-decoration: none;
    padding-block-start: 0.75rem;
  }

  .blog-post-card__content a:hover,
  .blog-post-card__content a:hover [style*='--color: var(--color-primary)'] {
    color: var(--color-primary-hover);
  }

  .blog-post-card__content a:hover [style*='--color: var(--color-foreground-heading)'] {
    color: rgb(var(--color-foreground-heading-rgb) / var(--opacity-subdued-text));
  }

  .blog-post-card__content a:hover [style*='--color: var(--color-foreground)'] {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }
/* END_BLOCK:_blog-post-card */
/* START_BLOCK:_blog-post-description (INDEX:58) */
.blog-post-card__content-text a {
    color: var(--color-primary);
  }

  .custom-color,
  .custom-color > :is(h1, h2, h3, h4, h5, h6, p, *) {
    color: var(--color);
  }
/* END_BLOCK:_blog-post-description */
/* START_BLOCK:_blog-post-image (INDEX:60) */
.blog-post-card__image {
    width: 100%;
    object-fit: cover;
    object-position: center center;
    height: calc(var(--blog-post-card-img-height) * var(--blog-post-card-scale));
  }

  .blog-post-card__image--small {
    --blog-post-card-img-height: 280px;
  }

  .blog-post-card__image--medium {
    --blog-post-card-img-height: 340px;
  }

  .blog-post-card__image--large {
    --blog-post-card-img-height: 400px;
  }
/* END_BLOCK:_blog-post-image */
/* START_SNIPPET:product-information-content (INDEX:208) */
.product-information {
    gap: var(--gap) 0;
  }

  /* Base grid layout */
  .product-information__grid {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1 / -1;
  }

  /* Default column positions */
  .product-details {
    order: 1;
  }

  .product-information__media {
    order: 0;
    width: 0;
    min-width: 100%;
  }

  .product-information__media .product-media-gallery__placeholder-image {
    width: 100%;
    height: 100%;
  }

  /* Mobile styles */
  @media screen and (max-width: 749px) {
    .product-information__media {
      grid-column: 1 / -1;
    }

    .product-details {
      grid-column: 2 / 3;
    }
  }

  /* Desktop styles */
  @media screen and (min-width: 750px) {
    .product-information__grid {
      grid-column: 2;
    }

    /* Position when there is no media */
    .product-information__grid.product-information--media-none {
      .product-details {
        width: var(--narrow-content-width);
        margin: 0 auto;
      }
    }

    /* Position when there is media */
    .product-information__grid:not(.product-information--media-none) {
      /* Media on the left side */
      &.product-information--media-left {
        grid-template-columns: 1fr min(50vw, var(--sidebar-width));

        .product-information__media {
          padding-right: calc(var(--gap, 0) / 2);
        }

        .product-details {
          padding-left: calc(var(--gap, 0) / 2);
        }

        &:has(.media-gallery--extend) {
          grid-column: 1 / 3;
        }
      }

      /* Media on the right side */
      &.product-information--media-right {
        grid-template-columns: min(50vw, var(--sidebar-width)) 1fr;

        .product-information__media {
          padding-left: calc(var(--gap, 0) / 2);
          order: 1;
        }

        .product-details {
          padding-right: calc(var(--gap, 0) / 2);
          order: 0;
        }

        &:has(.media-gallery--extend) {
          grid-column: 2 / -1;
        }
      }

      /* Equal width columns */
      &.product-information__grid--half,
      &.product-information__grid--half:has(.media-gallery--extend) {
        grid-column: 1 / -1;
        grid-template-columns:
          var(--full-page-grid-margin) calc(var(--full-page-grid-central-column-width) / 2) calc(
            var(--full-page-grid-central-column-width) / 2
          )
          var(--full-page-grid-margin);

        &.product-information--media-left {
          .product-information__media {
            grid-column: 2 / 3;

            &:has(.media-gallery--extend) {
              grid-column: 1 / 3;
            }
          }

          .product-details {
            grid-column: 3 / 4;
          }
        }

        &.product-information--media-right {
          .product-information__media {
            grid-column: 3 / 4;

            &:has(.media-gallery--extend) {
              grid-column: 3 / -1;
            }
          }

          .product-details {
            grid-column: 2 / 3;
          }
        }
      }
    }

    /* Handle full width section */
    .section--full-width {
      .product-information__grid:not(.product-information--media-none) {
        &.product-information--media-left,
        &.product-information--media-right {
          grid-column: 1 / -1;
        }

        &.product-information--media-left .product-details {
          padding-inline-end: var(--padding-lg);
        }

        &.product-information--media-right .product-details {
          padding-inline-start: var(--padding-lg);
        }

        &.product-information__grid--half.product-information--media-left {
          .product-information__media {
            grid-column: 1 / 3;
          }

          .product-details {
            grid-column: 3 / -1;
          }
        }

        &.product-information__grid--half.product-information--media-right {
          .product-information__media {
            grid-column: 3 / -1;
          }

          .product-details {
            grid-column: 1 / 3;
          }
        }
      }
    }
  }

  /* Wider sidebar for large screens */
  @media screen and (min-width: 1200px) {
    .product-information__grid:not(
        .product-information__grid--half,
        .product-information--media-none
      ).product-information--media-left {
      grid-template-columns: 2fr 1fr;
    }

    .product-information__grid:not(
        .product-information__grid--half,
        .product-information--media-none
      ).product-information--media-right {
      grid-template-columns: 1fr 2fr;
    }
  }

  .product-information__grid--limit-details .product-details > .group-block {
    --details-max-width: var(--sidebar-width);
    max-width: var(--details-max-width);
  }

  @media screen and (min-width: 1600px) {
    .product-information__grid--limit-details .product-details > .group-block {
      --details-max-width: 32rem;
    }
  }

  /* If the header is sticky, make product details content stick underneath the header */
  body:has(#header-group #header-component[data-sticky-state='active']) .product-details.sticky-content--desktop {
    --sticky-header-offset: var(--header-height);
  }
/* END_SNIPPET:product-information-content */
/* START_SNIPPET:quantity-selector (INDEX:212) */
.quantity-selector-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: calc(var(--gap-sm) / 2);

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

  .price-per-item {
    display: block;
    color: var(--color-foreground);
    font-size: var(--font-size--sm);
    font-weight: normal;
  }
/* END_SNIPPET:quantity-selector */
