/*** GENERATED LOCALLY ***/

/* sections/404.liquid */

  .fl-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 50vh;
    padding-block: 80px;
    text-align: center;
  }

  .fl-404__title {
    margin: 0;
  }

  .fl-404__text {
    margin-bottom: 12px;
    color: var(--color-muted);
  }
/* sections/announcement-bar.liquid */

  .fl-announce {
    display: block;
    font-size: 0.8125em;
    border-bottom: 1px solid var(--color-line);
  }

  .fl-announce :focus-visible {
    outline-color: currentcolor;
  }

  .fl-announce__inner {
    position: relative;
  }

  .fl-announce__rotator {
    display: grid;
  }

  .fl-announce__msg {
    grid-area: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    margin: 0;
    padding: 10px var(--page-margin);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0s linear 0.3s;
  }

  .fl-announce__msg.is-active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
  }

  .fl-announce__msg--link {
    color: inherit;
    text-decoration: none;
  }

  .fl-announce__msg--link:hover {
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }

  /* Prev/next: visually hidden until keyboard focus reveals them */
  .fl-announce__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 0.875em;
    cursor: pointer;
  }

  .fl-announce__btn--prev {
    left: 8px;
  }

  .fl-announce__btn--next {
    right: 8px;
  }

  .fl-announce__btn:focus-visible {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    min-width: 44px;
    min-height: 44px;
    padding: 0 12px;
    overflow: visible;
    clip: auto;
    z-index: 1;
    background-color: var(--color-bg);
    border-radius: var(--radius-btn);
  }
/* sections/apps.liquid */

  .fl-apps__inner {
    width: min(calc(var(--page-width) - var(--page-margin) * 2), calc(100% - var(--page-margin) * 2));
    margin-inline: auto;
    min-width: 0;
  }

  .fl-apps__inner--flush {
    width: 100%;
  }
/* sections/article.liquid */

  .fl-article {
    width: min(720px, 100%);
    margin-inline: auto;
    padding-block: 48px 80px;
  }

  .fl-article__head {
    margin-bottom: 32px;
    text-align: center;
  }

  .fl-article__title {
    margin: 0;
  }

  .fl-article__media {
    margin-bottom: 40px;
  }

  .fl-article__media img {
    width: 100%;
    border-radius: var(--radius-card);
    background: var(--color-surface);
  }

  .fl-article__back {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--color-line);
  }

  .fl-article__comments {
    margin-top: 56px;
  }

  .fl-article__comments-title,
  .fl-article__form-title {
    margin-bottom: 24px;
    font-size: 1em;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-muted);
  }

  .fl-comments {
    margin: 0 0 48px;
    padding: 0;
    list-style: none;
  }

  .fl-comment {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-line);
  }

  .fl-comment__meta {
    margin-bottom: 8px;
    font-size: 0.875em;
    color: var(--color-muted);
  }

  .fl-article__errors {
    margin: 0 0 18px;
    padding: 12px 14px;
    list-style: none;
    border: 1px solid var(--color-ink);
    border-radius: var(--radius-input);
    background: var(--color-surface);
  }

  .fl-article__note {
    margin-bottom: 16px;
    font-size: 0.875em;
    color: var(--color-muted);
  }

  .fl-article__pagination {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
  }
/* sections/blog.liquid */

  .fl-blog {
    padding-block: 48px 80px;
  }

  .fl-blog__head {
    max-width: 720px;
    margin-bottom: 48px;
  }

  .fl-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 52px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  /* Shape/shadow/alignment come from the Blog cards theme settings. */
  .fl-blog__item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    text-align: var(--blog-card-text-align, left);
    border: var(--blog-card-border-width, 0) solid
      rgba(var(--color-ink-rgb), var(--blog-card-border-opacity, 0.1));
    border-radius: var(--blog-card-radius, 8px);
    box-shadow: var(--blog-card-shadow);
  }

  /* "Card" style wraps the whole tile in the blog card colour scheme. */
  .fl-blog__item--card {
    padding: var(--blog-card-image-padding, 0);
    background: var(--color-bg);
  }

  .fl-blog__media {
    overflow: hidden;
    border-radius: var(--blog-card-radius, 8px);
    background: var(--color-surface);
  }

  .fl-blog__media img,
  .fl-blog__placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .fl-blog__item:hover .fl-blog__media img {
    transform: scale(1.03);
  }

  .fl-blog__date {
    font-size: 0.8125em;
    letter-spacing: 0.02em;
    color: var(--color-muted);
  }

  .fl-blog__post-title {
    font-size: calc(var(--font-size-base) * var(--heading-scale));
    font-weight: 500;
  }

  .fl-blog__link {
    text-decoration: none;
  }

  .fl-blog__link::after {
    content: '';
    position: absolute;
    inset: 0;
  }

  .fl-blog__link:hover {
    text-decoration: underline;
  }

  .fl-blog__excerpt {
    font-size: 0.9375em;
    color: var(--color-muted);
  }

  .fl-blog__more {
    align-self: flex-start;
    margin-top: 2px;
    font-size: 0.875em;
    color: var(--color-muted);
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }

  .fl-blog__item:hover .fl-blog__more {
    color: var(--color-ink);
  }

  .fl-blog__empty {
    padding-block: 72px;
    text-align: center;
  }

  .fl-blog__empty-text {
    color: var(--color-muted);
  }

  a.fl-pagination__item:hover {
    color: var(--color-ink);
    background: var(--color-surface);
  }

  .fl-pagination__item[aria-current='page'] {
    color: var(--color-ink);
    border: 1px solid var(--color-line);
  }

  @media (max-width: 989px) {
    .fl-blog__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 44px 24px;
    }
  }

  @media (max-width: 749px) {
    .fl-blog__head {
      margin-bottom: 36px;
    }

    .fl-blog__grid {
      grid-template-columns: minmax(0, 1fr);
      gap: 40px;
    }
  }
/* sections/cart-drawer.liquid */

  .fl-cart {
    display: block;
  }

  html[data-fl-cart-lock] {
    overflow: hidden;
  }

  .fl-cart.is-open .fl-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  /* Colour, border and shadow come from the cart colour scheme and the shared
     .fl-drawer class, both applied on the panel in the markup. */
  .fl-cart__panel {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 70;
    display: flex;
    flex-direction: column;
    width: min(420px, 100%);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0s linear 0.3s;
  }

  .fl-cart.is-open .fl-cart__panel {
    transform: none;
    visibility: visible;
    transition: transform 0.3s ease;
  }

  .fl-cart__inner {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
  }

  .fl-cart__head {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--color-line);
  }

  .fl-cart__title {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 1.125em;
  }

  .fl-cart__count {
    font-size: 0.8125em;
    font-weight: 400;
    color: var(--color-muted);
  }

  .fl-cart__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    margin-right: -12px;
    padding: 0;
    background: none;
    border: 0;
    border-radius: var(--radius-btn);
    color: var(--color-ink);
    cursor: pointer;
    transition: color 0.15s ease;
  }

  .fl-cart__close:hover {
    color: var(--color-muted);
  }

  .fl-cart__body {
    flex: 1 1 auto;
    min-height: 0;
    padding: 24px;
    overflow-y: auto;
  }

  .fl-cart__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 0;
    text-align: center;
  }

  .fl-cart__empty-text {
    color: var(--color-muted);
  }

  .fl-cart__recs {
    padding-top: 24px;
    border-top: 1px solid var(--color-line);
  }

  /* The drawer is 420px wide whatever the viewport, so the shared grid is
     pinned to two columns instead of following the page breakpoints. The
     compound selector outranks .fl-product-grid’s own media queries. */
  .fl-cart__recs-grid.fl-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 12px;
  }

  .fl-cart__items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .fl-cart__item {
    display: flex;
    gap: 16px;
  }

  .fl-cart__thumb {
    flex: 0 0 72px;
    width: 72px;
    aspect-ratio: var(--card-ratio);
    overflow: hidden;
    border-radius: var(--radius-card);
    background: var(--color-surface);
  }

  .fl-cart__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .fl-cart__details {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }

  .fl-cart__item-title {
    font-size: 0.9375em;
    font-weight: 500;
    text-decoration: none;
  }

  .fl-cart__item-title:hover {
    text-decoration: underline;
  }

  .fl-cart__item-vendor {
    font-size: 0.75em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
  }

  .fl-cart__item-options {
    font-size: 0.8125em;
    color: var(--color-muted);
  }

  .fl-cart__item-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 0.9375em;
  }

  .fl-cart__item-compare {
    color: var(--color-muted);
  }

  .fl-cart__item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
  }

  .fl-cart__qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-control-border);
    border-radius: var(--radius-btn);
  }

  .fl-cart__qty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: 0;
    color: var(--color-ink);
    cursor: pointer;
    transition: color 0.15s ease;
  }

  .fl-cart__qty-btn:hover {
    color: var(--color-muted);
  }

  .fl-cart__qty-input {
    width: 40px;
    height: 44px;
    padding: 0;
    text-align: center;
    background: transparent;
    border: 0;
    color: var(--color-ink);
    appearance: textfield;
  }

  .fl-cart__qty-input::-webkit-outer-spin-button,
  .fl-cart__qty-input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
  }

  .fl-cart__remove {
    display: inline-flex;
    align-items: center;
    /* 44px minimum touch target, absorbed by negative margin so the visual
       rhythm is unchanged. */
    min-height: 44px;
    padding-block: 0;
    margin-block: -12px;
    font-size: 0.8125em;
    color: var(--color-muted);
    transition: color 0.15s ease;
  }

  .fl-cart__remove:hover {
    color: var(--color-ink);
  }

  .fl-cart__foot {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 12px;
    padding: 16px 24px 20px;
    border-top: 1px solid var(--color-line);
  }

  .fl-cart__subtotal {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    font-weight: 600;
  }

  .fl-cart__taxes {
    margin: 0;
    font-size: 0.8125em;
    color: var(--color-muted);
  }

  .fl-cart__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .fl-cart__note-toggle {
    display: flex;
    align-items: center;
    min-height: 44px;
    font-size: 0.875em;
    color: var(--color-muted);
    cursor: pointer;
  }

  .fl-cart__note[open] .fl-cart__note-toggle {
    color: var(--color-ink);
  }

  .fl-cart__note-field {
    margin-top: 4px;
  }

  .fl-cart__checkout {
    width: 100%;
  }

  .fl-cart__status {
    margin: 12px 24px 16px;
    padding: 12px 14px;
    border: 1px solid currentcolor;
    border-radius: var(--radius-input);
    background: var(--color-surface);
    font-size: 0.875em;
  }

  .fl-cart__status:empty {
    display: none;
  }

  .fl-cart.is-busy .fl-cart__body,
  .fl-cart.is-busy .fl-cart__foot {
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.15s ease;
  }

  @media (prefers-reduced-motion: reduce) {
    .fl-cart__panel,
    .fl-cart.is-open .fl-cart__panel {
      transition: none;
    }
  }
/* sections/cart.liquid */

  .fl-cart-page {
    display: block;
    padding-block: 48px 80px;
  }

  .fl-cart-page__head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 32px;
  }

  .fl-cart-page__count {
    color: var(--color-muted);
  }

  .fl-cart-page__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 56px 0 64px;
    text-align: center;
  }

  .fl-cart-page__empty-text {
    color: var(--color-muted);
  }

  .fl-cart-page__form {
    display: grid;
    gap: 40px;
    align-items: start;
  }

  .fl-cart-page__items {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--color-line);
  }

  .fl-cart-page__item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto;
    grid-template-areas:
      'thumb info price'
      'thumb controls controls';
    gap: 8px 16px;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-line);
  }

  .fl-cart-page__thumb {
    grid-area: thumb;
    display: block;
    width: 96px;
    aspect-ratio: var(--card-ratio);
    overflow: hidden;
    border-radius: var(--radius-card);
    background: var(--color-surface);
  }

  .fl-cart-page__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .fl-cart-page__info {
    grid-area: info;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }

  .fl-cart-page__item-title {
    font-weight: 500;
    text-decoration: none;
  }

  .fl-cart-page__item-title:hover {
    text-decoration: underline;
  }

  .fl-cart-page__item-options,
  .fl-cart-page__unit-measure {
    font-size: 0.8125em;
    color: var(--color-muted);
  }

  .fl-cart-page__unit-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    font-size: 0.875em;
  }

  .fl-cart-page__compare {
    color: var(--color-muted);
    font-weight: 400;
  }

  .fl-cart-page__discounts {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
    font-size: 0.8125em;
    color: var(--color-muted);
  }

  .fl-cart-page__controls {
    grid-area: controls;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
  }

  .fl-cart-page__qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-btn);
  }

  .fl-cart-page__qty-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: 0;
    color: var(--color-ink);
    cursor: pointer;
    transition: color 0.15s ease;
  }

  .fl-cart-page__qty-btn:hover {
    color: var(--color-muted);
  }

  .fl-cart-page.is-enhanced .fl-cart-page__qty-btn {
    display: inline-flex;
  }

  .fl-cart-page__qty-input {
    width: 56px;
    height: 44px;
    padding: 0 8px;
    text-align: center;
    background: transparent;
    border: 0;
    color: var(--color-ink);
    appearance: textfield;
  }

  .fl-cart-page.is-enhanced .fl-cart-page__qty-input {
    width: 40px;
    padding: 0;
  }

  .fl-cart-page__qty-input::-webkit-outer-spin-button,
  .fl-cart-page__qty-input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
  }

  .fl-cart-page__remove {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-block: 0;
    margin-block: -12px;
    font-size: 0.8125em;
    color: var(--color-muted);
    transition: color 0.15s ease;
  }

  .fl-cart-page__remove:hover {
    color: var(--color-ink);
  }

  .fl-cart-page__line-price {
    grid-area: price;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    font-weight: 500;
    white-space: nowrap;
  }

  .fl-cart-page__note {
    max-width: 480px;
    margin-top: 28px;
  }

  .fl-cart-page__summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: var(--color-surface);
    border-radius: var(--radius-card);
  }

  .fl-cart-page__discount-rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.875em;
    color: var(--color-muted);
  }

  .fl-cart-page__discount-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }

  .fl-cart-page__subtotal {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    font-weight: 600;
  }

  .fl-cart-page__taxes {
    margin: 0;
    font-size: 0.8125em;
    color: var(--color-muted);
  }

  .fl-cart-page__update,
  .fl-cart-page__checkout {
    width: 100%;
  }

  .fl-cart-page.is-enhanced .fl-cart-page__update {
    display: none;
  }

  .fl-cart-page__continue {
    display: inline-flex;
    align-items: center;
    align-self: center;
    min-height: 44px;
    font-size: 0.875em;
    color: var(--color-muted);
    transition: color 0.15s ease;
  }

  .fl-cart-page__continue:hover {
    color: var(--color-ink);
  }

  .fl-cart-page__status {
    margin: 0;
    font-size: 0.875em;
    color: var(--color-muted);
    text-align: center;
  }

  .fl-cart-page__status:empty {
    display: none;
  }

  .fl-cart-page.is-busy .fl-cart-page__form {
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.15s ease;
  }

  @media (min-width: 990px) {
    .fl-cart-page__form {
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 64px;
    }

    .fl-cart-page__summary {
      position: sticky;
      top: var(--sticky-offset);
    }

    .fl-cart-page__item {
      grid-template-columns: 96px minmax(0, 1fr) auto auto;
      grid-template-areas: 'thumb info controls price';
      gap: 24px;
      align-items: center;
    }

    .fl-cart-page__controls {
      margin-top: 0;
    }

    .fl-cart-page__line-price {
      min-width: 90px;
    }
  }
/* sections/collage.liquid */

  .fl-collage__inner {
    width: var(--content-width);
    margin-inline: auto;
  }

  .fl-collage__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--grid-gap-y, 28px) var(--grid-gap-x, 20px);
  }

  .fl-collage__grid--mobile-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fl-collage__grid--mobile-collage .fl-collage__item--large {
    grid-column: 1 / -1;
  }

  /* Every tile shares one ratio token, so the two stacked small tiles are
     exactly as tall as the large tile beside them. Product cards read the same
     token, which keeps them aligned with the plain media tiles. */
  .fl-collage__item {
    --card-ratio: 1 / 1;

    min-width: 0;
  }

  .fl-collage__tile {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
  }

  .fl-collage__tile--card {
    padding: var(--card-image-padding, 0);
    border: var(--card-border-width, 0) solid
      rgba(var(--color-ink-rgb), var(--card-border-opacity, 0.1));
    border-radius: var(--radius-card);
    box-shadow: var(--card-shadow);
  }

  .fl-collage__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: var(--card-ratio);
  }

  .fl-collage__tile--card .fl-collage__media {
    border-radius: var(--radius-card);
    background-color: var(--color-surface);
  }

  .fl-collage__img,
  .fl-collage__ph {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .fl-collage__ph {
    fill: var(--color-muted);
    opacity: 0.35;
  }

  .fl-collage__img {
    transition: transform 0.4s ease;
  }

  .fl-collage__tile--link:hover .fl-collage__img {
    transform: scale(1.03);
  }

  .fl-collage__title {
    margin-block-start: 12px;
    font-size: 1em;
    font-weight: 500;
  }

  .fl-collage__tile--link:hover .fl-collage__title {
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }

  /* Second product image: layered over the shared card, faded in on hover. */
  .fl-collage__product {
    position: relative;
  }

  .fl-collage__second {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    width: 100%;
    aspect-ratio: var(--card-ratio);
    object-fit: cover;
    border-radius: var(--radius-card);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  /* Product cards > Style "Card" pads the card, so the layer starts inside it
     instead of at the tile corner. */
  .fl-collage__product--boxed .fl-collage__second {
    inset-block-start: var(--card-image-padding, 0px);
    inset-inline-start: var(--card-image-padding, 0px);
    width: calc(100% - var(--card-image-padding, 0px) * 2);
  }

  .fl-collage__product:hover .fl-collage__second,
  .fl-collage__product:focus-within .fl-collage__second {
    opacity: 1;
  }

  .fl-collage__play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: inherit;
    text-decoration: none;
  }

  .fl-collage__play-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    padding-inline-start: 4px;
    border-radius: 50%;
    background-color: var(--color-bg);
    color: var(--color-ink);
    transition: transform 0.2s ease;
  }

  .fl-collage__play:hover .fl-collage__play-icon {
    transform: scale(1.06);
  }

  .fl-collage__frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  @media screen and (min-width: 750px) {
    .fl-collage__grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-items: start;
    }

    .fl-collage__grid--center {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .fl-collage__grid--left .fl-collage__item--large {
      grid-column: span 2;
      grid-row: span 2;
    }

    .fl-collage__grid--right .fl-collage__item--large {
      grid-column: 2 / 4;
      grid-row: 1 / 3;
    }

    .fl-collage__grid--center .fl-collage__item--large {
      --card-ratio: 2 / 1;

      grid-column: 2 / 4;
      grid-row: 1;
    }
  }
/* sections/collapsible-content.liquid */

  .fl-collapsible__inner {
    width: var(--content-width);
    margin-inline: auto;
  }

  .fl-collapsible__inner--narrow {
    width: min(820px, var(--content-width));
  }

  .fl-collapsible__heading {
    min-width: 0;
  }

  .fl-collapsible__grid--split {
    display: grid;
    gap: 32px;
  }

  .fl-collapsible__media {
    min-width: 0;
  }

  .fl-collapsible__img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .fl-collapsible__rows {
    min-width: 0;
  }

  .fl-collapsible__rows--row {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* Hairline separators for the unframed layout. */
  .fl-collapsible__rows--none .fl-collapsible__row {
    border-block-start: 1px solid var(--color-line);
  }

  .fl-collapsible__rows--none .fl-collapsible__row:last-child {
    border-block-end: 1px solid var(--color-line);
  }

  .fl-collapsible__rows--section .fl-collapsible__row + .fl-collapsible__row {
    border-block-start: 1px solid var(--color-line);
  }

  /* Framed container, shaped by the Content containers theme settings. */
  .fl-collapsible__panel {
    padding-inline: 20px;
    border: 1px solid var(--color-line);
    border-radius: var(--box-radius, 8px);
    box-shadow: var(--box-shadow);
  }

  .fl-collapsible__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-block: 16px;
    min-height: 44px;
    cursor: pointer;
    list-style: none;
  }

  .fl-collapsible__summary::-webkit-details-marker {
    display: none;
  }

  .fl-collapsible__summary:focus-visible {
    outline-offset: -2px;
  }

  .fl-collapsible__row-heading {
    min-width: 0;
    font-size: 1.0625em;
    font-weight: 500;
  }

  .fl-collapsible__icon {
    position: relative;
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
  }

  .fl-collapsible__icon::before,
  .fl-collapsible__icon::after {
    content: '';
    position: absolute;
    inset-inline: 0;
    top: 50%;
    height: 1px;
    background: currentcolor;
    transition: transform 0.2s ease;
  }

  .fl-collapsible__icon::after {
    transform: rotate(90deg);
  }

  .fl-collapsible__details[open] .fl-collapsible__icon::after {
    transform: rotate(0deg);
  }

  .fl-collapsible__content {
    padding-block: 0 20px;
    color: var(--color-muted);
  }

  @media (min-width: 750px) {
    .fl-collapsible__grid--split {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 48px;
    }

    .fl-collapsible__grid--reverse .fl-collapsible__media {
      order: 2;
    }

    .fl-collapsible__img {
      aspect-ratio: auto;
      min-height: 360px;
    }

    .fl-collapsible__panel {
      padding-inline: 28px;
    }
  }
/* sections/collection-list.liquid */

  .fl-collist__inner {
    width: var(--content-width);
    margin-inline: auto;
  }

  .fl-collist__heading {
    min-width: 0;
  }

  .fl-collist__grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-cols, 3), minmax(0, 1fr));
    gap: var(--grid-gap-y, 28px) var(--grid-gap-x, 20px);
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .fl-collist__item {
    min-width: 0;
  }

  /* Shaped by the Collection cards theme settings. */
  .fl-collist__card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    text-align: var(--coll-card-text-align, left);
    border: var(--coll-card-border-width, 0) solid
      rgba(var(--color-ink-rgb), var(--coll-card-border-opacity, 0.1));
    border-radius: var(--coll-card-radius, 8px);
    box-shadow: var(--coll-card-shadow);
  }

  .fl-collist__card--boxed {
    padding: var(--coll-card-image-padding, 0);
    background: var(--color-bg);
  }

  .fl-collist__link {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    text-decoration: none;
  }

  .fl-collist__media {
    display: block;
    overflow: hidden;
    border-radius: var(--coll-card-radius, 8px);
    background: var(--color-surface);
  }

  .fl-collist__img,
  .fl-collist__ph {
    width: 100%;
    aspect-ratio: var(--coll-ratio, 1 / 1);
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .fl-collist__ph {
    fill: var(--color-muted);
    opacity: 0.35;
  }

  .fl-collist__card:hover .fl-collist__img {
    transform: scale(1.03);
  }

  .fl-collist__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .fl-collist__name {
    font-weight: 500;
  }

  .fl-collist__count {
    font-size: 0.875em;
    color: var(--color-muted);
  }

  .fl-collist__viewall {
    display: flex;
    justify-content: center;
    margin-block-start: 32px;
  }

  @media (max-width: 989px) {
    .fl-collist__grid {
      grid-template-columns: repeat(var(--grid-cols-tablet, 3), minmax(0, 1fr));
    }
  }

  @media (max-width: 749px) {
    .fl-collist__grid {
      grid-template-columns: repeat(var(--grid-cols-mobile, 2), minmax(0, 1fr));
      gap: 24px 12px;
    }

    .fl-collist__grid--swipe {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding-block-end: 8px;
    }

    .fl-collist__grid--swipe .fl-collist__item {
      flex: 0 0 var(--swipe-basis, 46%);
      scroll-snap-align: start;
    }
  }
/* sections/collection.liquid */

  .fl-collection__head {
    margin-block-end: 24px;
  }

  .fl-collection__desc {
    max-width: 60ch;
    margin-block-start: 12px;
    color: var(--color-muted);
  }

  .fl-collection__count {
    margin-block-start: 10px;
    font-size: 0.875em;
    color: var(--color-muted);
  }

  fl-collection-filters {
    display: block;
  }

  .fl-toolbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 20px;
    padding-block: 10px;
    border-block: 1px solid var(--color-line);
  }

  .fl-caret {
    flex: none;
    transition: transform 0.2s ease;
  }

  .fl-toolbar__drawer {
    min-width: 0;
  }

  .fl-toolbar__drawer-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 8px 14px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-btn);
    cursor: pointer;
    list-style: none;
    user-select: none;
  }

  .fl-toolbar__drawer-toggle::-webkit-details-marker {
    display: none;
  }

  .fl-toolbar__drawer-toggle:hover {
    border-color: var(--color-ink);
  }

  .fl-toolbar__drawer[open] > .fl-toolbar__drawer-toggle .fl-caret {
    transform: rotate(180deg);
  }

  .fl-toolbar__facets {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 40;
    max-height: 70vh;
    overflow-y: auto;
    padding: 4px 16px 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-card);
    box-shadow: 0 8px 40px rgb(0 0 0 / 12%);
  }

  .fl-facet {
    border-block-end: 1px solid var(--color-line);
  }

  .fl-facet:last-of-type {
    border-block-end: 0;
  }

  .fl-facet__toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding-block: 10px;
    cursor: pointer;
    list-style: none;
    user-select: none;
  }

  .fl-facet__toggle::-webkit-details-marker {
    display: none;
  }

  .fl-facet__name {
    flex: 1 1 auto;
    min-width: 0;
  }

  .fl-facet[open] > .fl-facet__toggle .fl-caret {
    transform: rotate(180deg);
  }

  .fl-facet__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding-inline: 5px;
    border-radius: 999px;
    background: var(--color-ink);
    color: var(--color-bg);
    font-size: 0.6875em;
    font-weight: 500;
  }

  .fl-facet__panel {
    padding-block-end: 14px;
  }

  .fl-facet__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .fl-facet__option {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    cursor: pointer;
  }

  .fl-facet__option--empty {
    color: var(--color-muted);
    cursor: default;
  }

  .fl-facet__checkbox {
    flex: none;
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: var(--color-ink);
  }

  .fl-facet__option-count {
    margin-inline-start: auto;
    font-size: 0.8125em;
    color: var(--color-muted);
  }

  .fl-facet__note {
    margin-block-end: 12px;
    font-size: 0.8125em;
    color: var(--color-muted);
  }

  .fl-facet__price-row {
    display: flex;
    gap: 12px;
  }

  .fl-facet__price-field {
    flex: 1 1 0;
    min-width: 0;
  }

  .fl-facet__price-apply {
    margin-block-start: 12px;
  }

  .fl-toolbar__apply {
    width: 100%;
    margin-block-start: 14px;
  }

  .fl-toolbar__end {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-inline-start: auto;
    /* Must stay shrinkable: flex:none plus an unbounded <select> of long sort
       labels pushed the page 108px wider than the viewport. */
    flex: 0 1 auto;
    min-width: 0;
  }

  .fl-toolbar__count {
    font-size: 0.875em;
    color: var(--color-muted);
    white-space: nowrap;
  }

  .fl-toolbar__sort {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }

  .fl-toolbar__sort-label {
    font-size: 0.875em;
    color: var(--color-muted);
    white-space: nowrap;
  }

  .fl-toolbar__sort .fl-select {
    width: auto;
    max-width: 100%;
    min-width: 0;
    padding-block: 8px;
  }

  /* Desktop with JS: drawer forced open, facets as a horizontal row of dropdowns */
  .fl-toolbar__drawer--inline > .fl-toolbar__drawer-toggle {
    display: none;
  }

  /* Positioning context for the facet dropdowns: the row always starts at the
     page content edge, so a panel anchored to it can never spill out of the
     viewport, unlike one anchored to a pill sitting near the right edge. */
  .fl-toolbar__drawer--inline .fl-toolbar__facets {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    max-height: none;
    overflow: visible;
    padding: 0;
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .fl-toolbar__drawer--inline .fl-facet {
    border-block-end: 0;
  }

  .fl-toolbar__drawer--inline .fl-facet__toggle {
    padding: 8px 14px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-btn);
  }

  .fl-toolbar__drawer--inline .fl-facet__toggle:hover {
    border-color: var(--color-ink);
  }

  .fl-toolbar__drawer--inline .fl-facet__name {
    flex: none;
  }

  .fl-toolbar__drawer--inline .fl-facet__panel {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline-start: 0;
    z-index: 30;
    width: max-content;
    min-width: 260px;
    /* Never wider than the page content box. */
    max-width: min(340px, var(--content-width, 100%));
    max-height: 340px;
    overflow-y: auto;
    padding: 6px 16px 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-card);
    box-shadow: 0 8px 40px rgb(0 0 0 / 12%);
  }

  .fl-active-filters {
    padding-block: 14px 0;
  }

  .fl-active-filters__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .fl-active-filters__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 6px 16px;
    background: var(--color-surface);
    border-radius: 999px;
    font-size: 0.875em;
    text-decoration: none;
    transition: background 0.15s ease;
  }

  .fl-active-filters__pill:hover {
    background: var(--color-line);
  }

  .fl-active-filters__clear {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-inline-start: 4px;
    font-size: 0.875em;
    color: var(--color-muted);
  }

  .fl-collection__grid {
    margin-block-start: 28px;
  }

  .fl-collection__empty {
    padding-block: 72px;
    text-align: center;
  }

  .fl-collection__empty-text {
    margin-block-end: 20px;
    color: var(--color-muted);
  }

  @media (max-width: 749px) {
    .fl-toolbar__count {
      display: none;
    }
  }
/* sections/collections.liquid */

  .fl-collections {
    padding-block: 48px 80px;
  }

  .fl-collections__title {
    margin-bottom: 32px;
  }

  .fl-collections__grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-cols, 3), minmax(0, 1fr));
    gap: 32px 20px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  @media screen and (max-width: 749px) {
    .fl-collections__grid {
      grid-template-columns: repeat(var(--grid-cols-mobile, 2), minmax(0, 1fr));
      gap: 24px 12px;
    }
  }

  .fl-collections__item {
    min-width: 0;
  }

  /* Shape/shadow/alignment come from the Collection cards theme settings. */
  .fl-collections__link {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    text-align: var(--coll-card-text-align, left);
    border: var(--coll-card-border-width, 0) solid
      rgba(var(--color-ink-rgb), var(--coll-card-border-opacity, 0.1));
    border-radius: var(--coll-card-radius, 8px);
    box-shadow: var(--coll-card-shadow);
  }

  /* "Card" style wraps the whole tile in the collection card colour scheme. */
  .fl-collections__link--card {
    padding: var(--coll-card-image-padding, 0);
    background: var(--color-bg);
  }

  .fl-collections__media {
    display: block;
    overflow: hidden;
    border-radius: var(--coll-card-radius, 8px);
    background: var(--color-surface);
  }

  .fl-collections__media img,
  .fl-collections__placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .fl-collections__link:hover .fl-collections__media img {
    transform: scale(1.03);
  }

  .fl-collections__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .fl-collections__name {
    font-weight: 500;
  }

  .fl-collections__count {
    font-size: 0.875em;
    color: var(--color-muted);
  }

  .fl-collections__pagination {
    display: flex;
    gap: 20px;
    margin-top: 40px;
  }
/* sections/contact.liquid */

  .fl-contact {
    display: block;
  }

  .fl-contact__inner {
    width: min(560px, calc(100% - var(--page-margin) * 2));
    min-width: 0;
    margin-inline: auto;
  }

  .fl-contact__head {
    margin-bottom: 32px;
  }

  .fl-contact__title {
    margin: 0 0 16px;
  }

  .fl-contact__intro {
    color: var(--color-muted);
  }

  .fl-contact__errors {
    margin: 8px 0 0;
    padding-left: 1.2em;
  }
/* sections/custom-liquid.liquid */

  .fl-custom-liquid {
    min-width: 0;
  }

  /* --content-width is declared on .shopify-section in critical.css. */
  .fl-custom-liquid__inner {
    width: var(--content-width);
    min-width: 0;
    margin-inline: auto;
  }
/* sections/customer-account.liquid */

  .fl-account__cols {
    display: grid;
    gap: 40px;
  }

  @media screen and (min-width: 990px) {
    .fl-account__cols {
      grid-template-columns: minmax(0, 1fr) 280px;
      gap: 56px;
    }
  }

  .fl-account__subtitle {
    margin-bottom: 20px;
    font-size: 1em;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-muted);
  }

  .fl-account__pagination {
    display: flex;
    gap: 20px;
    margin-top: 28px;
  }
/* sections/customer-login.liquid */

  /* Sign-in pane shows by default; recovery pane is opt-in. */
  .fl-login__pane--recover {
    display: none;
  }

  /* No-JS fallback: the #recover anchor swaps the panes. */
  .fl-login__pane--recover:target {
    display: block;
  }

  .fl-account__inner:has(.fl-login__pane--recover:target) .fl-login__pane--login {
    display: none;
  }

  /* Enhanced: the custom element drives the state without an anchor jump. */
  fl-login[data-recover-open='true'] .fl-login__pane--recover {
    display: block;
  }

  fl-login[data-recover-open='true'] .fl-login__pane--login {
    display: none;
  }
/* sections/customer-order.liquid */

  .fl-order__lines {
    border-top: 1px solid var(--color-line);
  }

  .fl-order__line {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) auto auto;
    gap: 12px 20px;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-line);
  }

  @media screen and (max-width: 749px) {
    .fl-order__line {
      grid-template-columns: 64px minmax(0, 1fr);
    }
  }

  .fl-order__media img {
    width: 100%;
    border-radius: var(--radius-card);
    background: var(--color-surface);
  }

  .fl-order__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }

  .fl-order__meta {
    font-size: 0.875em;
    color: var(--color-muted);
  }

  .fl-order__foot {
    display: grid;
    gap: 40px;
    margin-top: 40px;
  }

  @media screen and (min-width: 990px) {
    .fl-order__foot {
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 56px;
    }

    .fl-order__addresses {
      order: -1;
    }
  }

  .fl-order__addresses {
    display: grid;
    gap: 28px;
  }

  .fl-order__addr-title {
    margin-bottom: 8px;
    font-size: 0.75em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
  }

  .fl-order__total-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-line);
  }

  .fl-order__total-row--grand {
    font-weight: 600;
  }
/* sections/disclosures.liquid */

  .fl-disclosures__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    width: min(calc(var(--page-width) - var(--page-margin) * 2), calc(100% - var(--page-margin) * 2));
    margin-inline: auto;
  }

  .fl-disclosures__form {
    min-width: 0;
  }

  .fl-disclosures__field {
    display: block;
    min-width: 0;
  }

  .fl-disclosures__select {
    width: auto;
    min-width: 240px;
    max-width: 100%;
  }

  .fl-disclosures__submit {
    margin-block-start: 10px;
  }

  @media (max-width: 749px) {
    .fl-disclosures__select {
      min-width: 0;
      width: 100%;
    }

    .fl-disclosures__form {
      flex: 1 1 100%;
    }
  }
/* sections/email-signup-banner.liquid */

  .fl-esb {
    display: block;
  }

  .fl-esb__frame {
    position: relative;
    display: flex;
    overflow: hidden;
    width: 100%;
    min-width: 0;
  }

  .fl-esb__frame--media {
    background-color: var(--color-surface);
  }

  /* Zero-width spacer: percentage padding resolves against the frame width, so
     the banner keeps the image ratio without capping taller content. */
  .fl-esb__frame--adapt::before {
    content: '';
    display: block;
    flex: 0 0 auto;
    width: 0;
    padding-block-end: var(--fl-esb-pad, 56.25%);
  }

  .fl-esb__frame--small {
    min-height: 40vh;
    min-height: 40svh;
  }

  .fl-esb__frame--medium {
    min-height: 60vh;
    min-height: 60svh;
  }

  .fl-esb__frame--large {
    min-height: 80vh;
    min-height: 80svh;
  }

  .fl-esb__media {
    position: absolute;
    inset: 0;
    min-width: 0;
  }

  .fl-esb__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .fl-esb__ph {
    width: 100%;
    height: 100%;
    object-fit: cover;
    fill: var(--color-muted);
    opacity: 0.35;
  }

  .fl-esb__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    width: 100%;
    max-width: var(--page-width);
    min-width: 0;
    margin-inline: auto;
    padding: clamp(24px, 5vw, 56px) var(--page-margin);
  }

  .fl-esb__box {
    width: min(520px, 100%);
    min-width: 0;
  }

  .fl-esb__box--card {
    padding: clamp(24px, 4vw, 40px);
    background-color: var(--color-bg);
  }

  .fl-esb__heading {
    margin-bottom: 12px;
  }

  .fl-esb__heading--small {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  }

  .fl-esb__heading--medium {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  }

  .fl-esb__heading--large {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .fl-esb__text {
    margin-bottom: 20px;
    color: var(--color-muted);
  }

  .fl-esb__text > p + p {
    margin-top: 1em;
  }

  .fl-esb__status {
    text-align: start;
  }

  .fl-esb__row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .fl-esb__row .fl-input {
    flex: 1 1 200px;
    min-width: 0;
  }

  .fl-esb__row .fl-btn {
    flex: 0 0 auto;
  }
/* sections/featured-blog.liquid */

  .fl-featblog {
    display: block;
  }

  .fl-featblog__inner {
    width: var(--content-width);
    margin-inline: auto;
  }

  .fl-featblog__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 4px 24px;
    margin-block-end: 28px;
  }

  .fl-featblog__heading {
    min-width: 0;
  }

  .fl-featblog__viewall {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 0.875em;
    white-space: nowrap;
    color: var(--color-muted);
    transition: color 0.15s ease;
  }

  .fl-featblog__viewall:hover {
    color: var(--color-ink);
  }

  .fl-featblog__grid {
    display: grid;
    grid-template-columns: repeat(var(--featblog-cols, 3), minmax(0, 1fr));
    gap: var(--grid-gap-y, 28px) var(--grid-gap-x, 20px);
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .fl-featblog__item {
    display: flex;
    min-width: 0;
  }

  .fl-featblog__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    min-width: 0;
    text-align: var(--blog-card-text-align, left);
    border: var(--blog-card-border-width, 0) solid
      rgba(var(--color-ink-rgb), var(--blog-card-border-opacity, 0.1));
    border-radius: var(--blog-card-radius, 8px);
    box-shadow: var(--blog-card-shadow);
  }

  /* “Card” style wraps the whole tile in the blog card colour scheme. */
  .fl-featblog__card--boxed {
    padding: var(--blog-card-image-padding, 0);
    background: var(--color-bg);
  }

  .fl-featblog__media {
    min-width: 0;
    overflow: hidden;
    border-radius: var(--blog-card-radius, 8px);
    background: var(--color-surface);
  }

  .fl-featblog__img,
  .fl-featblog__ph {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  /* Shopify placeholder SVGs inherit `fill`, which defaults to solid black. */
  .fl-featblog__ph {
    fill: var(--color-muted);
    opacity: 0.35;
  }

  .fl-featblog__card:hover .fl-featblog__img {
    transform: scale(1.03);
  }

  .fl-featblog__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
  }

  .fl-featblog__card--boxed .fl-featblog__body {
    padding: 16px;
  }

  .fl-featblog__meta {
    font-size: 0.8125em;
    letter-spacing: 0.02em;
    color: var(--color-muted);
  }

  .fl-featblog__title {
    font-size: calc(var(--font-size-base) * var(--heading-scale));
    font-weight: 500;
  }

  .fl-featblog__link {
    text-decoration: none;
  }

  .fl-featblog__link::after {
    content: '';
    position: absolute;
    inset: 0;
  }

  .fl-featblog__link:hover {
    text-decoration: underline;
  }

  .fl-featblog__excerpt {
    font-size: 0.9375em;
    color: var(--color-muted);
  }

  .fl-featblog__more {
    margin-top: 2px;
    font-size: 0.875em;
    color: var(--color-muted);
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }

  .fl-featblog__card:hover .fl-featblog__more {
    color: var(--color-ink);
  }

  @media (max-width: 989px) {
    .fl-featblog__grid {
      grid-template-columns: repeat(var(--featblog-cols-tablet, 2), minmax(0, 1fr));
    }
  }

  @media (max-width: 749px) {
    .fl-featblog__grid {
      grid-template-columns: minmax(0, 1fr);
      gap: 32px;
    }

    .fl-featblog__head {
      margin-block-end: 24px;
    }
  }
/* sections/featured-collection.liquid */

  /* Same constrained inner as the other content sections; --content-width is
     declared on .shopify-section in critical.css. */
  .fl-featured__inner {
    width: var(--content-width);
    margin-inline: auto;
  }

  .fl-featured__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 4px 24px;
    margin-block-end: 28px;
  }

  .fl-featured__heading {
    min-width: 0;
  }

  .fl-featured__viewall {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 0.875em;
    white-space: nowrap;
    color: var(--color-muted);
    transition: color 0.15s ease;
  }

  .fl-featured__viewall:hover {
    color: var(--color-ink);
  }

  .fl-featured__ph {
    width: 100%;
    aspect-ratio: var(--card-ratio);
    object-fit: cover;
    fill: var(--color-muted);
    opacity: 0.4;
  }
/* sections/featured-product.liquid */

  .fl-featprod {
    display: block;
  }

  .fl-featprod__inner {
    width: var(--content-width);
    margin-inline: auto;
  }

  .fl-featprod__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  /* --- Gallery --- */
  .fl-featprod__gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
  }

  .fl-featprod__viewer {
    min-width: 0;
  }

  .fl-featprod__media img,
  .fl-featprod__media video,
  .fl-featprod__media iframe,
  .fl-featprod__media model-viewer {
    width: 100%;
  }

  /* Shopify placeholder SVGs inherit `fill`, which defaults to solid black. */
  .fl-featprod__ph {
    width: 100%;
    aspect-ratio: var(--card-ratio);
    fill: var(--color-muted);
    opacity: 0.35;
  }

  .fl-featprod__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .fl-featprod__thumb {
    width: 64px;
    height: 64px;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-btn);
    background: var(--color-surface);
    cursor: pointer;
    transition: border-color 0.15s ease;
  }

  .fl-featprod__thumb:hover {
    border-color: var(--color-muted);
  }

  .fl-featprod__thumb[aria-current='true'] {
    border-color: var(--color-ink);
  }

  .fl-featprod__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* --- Info column --- */
  .fl-featprod__info {
    min-width: 0;
  }

  .fl-featprod__info > * + * {
    margin-block-start: 20px;
  }

  .fl-featprod__vendor {
    margin-bottom: 6px;
    font-size: 0.8125em;
    color: var(--color-muted);
  }

  .fl-featprod__title {
    margin: 0;
  }

  .fl-featprod__price {
    font-size: 1.125em;
  }

  .fl-featprod__tax {
    margin-top: 4px;
    font-size: 0.8125em;
    color: var(--color-muted);
  }

  /* --- Variant picker --- */
  .fl-featprod__option {
    min-width: 0;
    margin: 0 0 16px;
    padding: 0;
    border: 0;
  }

  .fl-featprod__option:last-child {
    margin-bottom: 0;
  }

  .fl-featprod__legend {
    padding: 0 0 10px;
    font-size: 0.875em;
    color: var(--color-muted);
  }

  .fl-featprod__legend-value {
    color: var(--color-ink);
  }

  .fl-featprod__values {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .fl-featprod__value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 8px 16px;
    border: var(--pill-border-width, 1px) solid
      rgba(var(--color-ink-rgb), var(--pill-border-opacity, 0.55));
    border-radius: var(--pill-radius, 4px);
    box-shadow: var(--pill-shadow);
    background: var(--color-bg);
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  }

  .fl-featprod__value:hover {
    border-color: var(--color-ink);
  }

  .fl-featprod__value.is-soldout {
    color: var(--color-muted);
    text-decoration: line-through;
  }

  .fl-featprod__value.is-unavailable {
    color: var(--color-muted);
    border-style: dashed;
  }

  .fl-featprod__radio:checked + .fl-featprod__value {
    border-color: var(--color-ink);
    background: var(--color-ink);
    color: var(--color-bg);
  }

  .fl-featprod__radio:checked + .fl-featprod__value.is-soldout,
  .fl-featprod__radio:checked + .fl-featprod__value.is-unavailable {
    background: transparent;
    border-color: var(--color-muted);
    color: var(--color-muted);
  }

  .fl-featprod__radio:focus-visible + .fl-featprod__value {
    outline: 2px solid var(--color-ink);
    outline-offset: 2px;
  }

  /* --- Quantity stepper --- */
  .fl-featprod__qty {
    display: inline-flex;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-input);
  }

  .fl-featprod__qty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-height: 44px;
    border: 0;
    background: var(--color-bg);
    color: var(--color-ink);
    font-size: 1.125em;
    cursor: pointer;
    transition: background 0.15s ease;
  }

  .fl-featprod__qty-btn:hover {
    background: var(--color-surface);
  }

  .fl-featprod__qty-input {
    width: 56px;
    min-height: 44px;
    padding: 0;
    border: 0;
    text-align: center;
    background: var(--color-bg);
    color: var(--color-ink);
    appearance: textfield;
  }

  .fl-featprod__qty-input::-webkit-outer-spin-button,
  .fl-featprod__qty-input::-webkit-inner-spin-button {
    appearance: none;
    margin: 0;
  }

  /* --- Buy buttons --- */
  .fl-featprod__add {
    width: 100%;
  }

  .fl-featprod__buy .shopify-payment-button {
    margin-top: 12px;
  }

  /* --- Text block and details link --- */
  .fl-featprod__text {
    font-size: 0.9375em;
    color: var(--color-muted);
  }

  .fl-featprod__link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 0.875em;
    color: var(--color-muted);
    transition: color 0.15s ease;
  }

  .fl-featprod__link:hover {
    color: var(--color-ink);
  }

  /* --- Two columns on desktop --- */
  @media (min-width: 990px) {
    .fl-featprod__grid {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 64px;
      align-items: center;
    }

    .fl-featprod__grid--right .fl-featprod__gallery {
      order: 2;
    }
  }
/* sections/footer.liquid */

  .fl-footer {
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-line);
  }

  .fl-footer__inner {
    width: min(calc(var(--page-width) - var(--page-margin) * 2), calc(100% - var(--page-margin) * 2));
    margin-inline: auto;
  }

  /* --- Blocks grid --- */
  .fl-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px 32px;
    padding-bottom: 48px;
  }

  .fl-footer__col {
    min-width: 0;
  }

  .fl-footer__heading {
    margin-bottom: 14px;
    font-size: 1em;
    font-weight: 500;
  }

  .fl-footer__menu {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .fl-footer__link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.15s ease;
  }

  .fl-footer__link:hover {
    color: var(--color-ink);
    text-decoration: underline;
  }

  .fl-footer__text {
    color: var(--color-muted);
  }

  /* --- Brand information (theme settings) --- */
  .fl-footer__brand-img {
    width: var(--brand-image-width, 100px);
    max-width: 100%;
    height: auto;
    margin-bottom: 12px;
  }

  .fl-footer__brand-headline {
    margin-bottom: 8px;
    font-weight: 500;
  }

  /* --- Newsletter --- */
  .fl-footer__news {
    margin-top: 16px;
  }

  .fl-footer__news-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .fl-footer__news-row .fl-input {
    flex: 1 1 180px;
    min-width: 0;
  }

  .fl-footer__news-status {
    margin-bottom: 12px;
  }

  /* --- Bottom bar --- */
  .fl-footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .fl-footer__bottom--ruled {
    padding-top: 24px;
    border-top: 1px solid var(--color-line);
  }

  .fl-footer__utility {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 24px;
  }

  .fl-footer__localization {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }

  .fl-footer__loc-form {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .fl-footer__loc-select {
    width: auto;
    max-width: 100%;
  }

  .fl-footer__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 24px;
  }

  .fl-footer__copyright {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 20px;
    font-size: 0.8125em;
    color: var(--color-muted);
  }

  .fl-footer__legal-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .fl-footer__link--legal {
    font-size: 1em;
  }

  .fl-footer__payment {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .fl-footer__payment-icon {
    display: block;
    width: 38px;
    height: auto;
  }

  @media (max-width: 749px) {
    .fl-footer__grid {
      gap: 32px 24px;
      padding-bottom: 40px;
    }
  }
/* sections/header.liquid */

  .fl-header-section:has([data-sticky]) {
    position: sticky;
    top: 0;
    z-index: 50;
  }

  /* Sticky columns elsewhere read this so they don't slide under the header. */
  :root:has(.fl-header-section [data-sticky]) {
    --sticky-offset: 88px;
  }

  .fl-header {
    display: block;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-line);
  }

  .fl-header__bar {
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: var(--page-width);
    margin-inline: auto;
    padding: 10px var(--page-margin);
    min-height: 64px;
  }

  .fl-header__logo {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--color-ink);
    text-decoration: none;
  }

  .fl-header__wordmark {
    font-family: var(--font-heading-family);
    font-weight: 600;
    font-size: 1.125em;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .fl-header__nav {
    display: flex;
    min-width: 0;
  }

  .fl-header__menu {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .fl-header__item {
    position: relative;
  }

  .fl-header__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    padding: 10px 2px;
    color: var(--color-ink);
    font-size: 0.9375em;
    text-decoration: none;
  }

  .fl-header__link::after {
    content: '';
    position: absolute;
    inset: auto 2px 9px 2px;
    height: 1px;
    background: var(--color-ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
  }

  .fl-header__link:hover::after,
  .fl-header__link.is-active::after,
  .fl-header__dropdown[open] > .fl-header__summary::after {
    transform: scaleX(1);
  }

  .fl-header__summary {
    cursor: pointer;
    list-style: none;
  }

  .fl-header__summary::-webkit-details-marker {
    display: none;
  }

  .fl-header__summary::marker {
    content: none;
  }

  .fl-header__caret {
    flex: 0 0 auto;
    color: var(--color-muted);
    transition: transform 0.2s ease;
  }

  .fl-header__dropdown[open] > .fl-header__summary .fl-header__caret {
    transform: rotate(180deg);
  }

  .fl-header__panel {
    position: absolute;
    top: 100%;
    left: -20px;
    z-index: 5;
    min-width: 220px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: var(--color-bg);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-card);
    box-shadow: 0 8px 40px rgb(0 0 0 / 12%);
  }

  .fl-header__dropdown[open] .fl-header__panel {
    animation: fl-header-fade 0.15s ease;
  }

  @keyframes fl-header-fade {
    from {
      opacity: 0;
      transform: translateY(-4px);
    }
  }

  .fl-header__sublink {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 6px 20px;
    color: var(--color-ink);
    font-size: 0.9375em;
    text-decoration: none;
    transition: background 0.15s ease;
  }

  .fl-header__sublink:hover,
  .fl-header__sublink:focus-visible {
    background: var(--color-surface);
  }

  .fl-header__sublink.is-active {
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }

  .fl-header__subgroup {
    margin: 0;
    padding: 0 0 4px;
    list-style: none;
  }

  .fl-header__sublink--nested {
    padding-left: 32px;
    color: var(--color-muted);
    font-size: 0.875em;
  }

  .fl-header__icons {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
  }

  .fl-header__icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: var(--radius-btn);
    background: none;
    color: var(--color-ink);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease;
  }

  .fl-header__icon-btn:hover {
    background: var(--color-surface);
  }

  .fl-header__cart-count {
    position: absolute;
    top: 4px;
    right: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: var(--color-accent);
    color: var(--color-on-accent);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    border-radius: 999px;
  }

  .fl-header__cart-count.is-empty {
    display: none;
  }

  .fl-header__burger {
    display: none;
  }

  /* Background, start border and shadow come from the shared .fl-drawer class
     (Drawers theme settings), applied on the dialog in the markup. Only the
     three remaining UA dialog borders are reset here. */
  .fl-header__drawer {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(360px, 86vw);
    height: 100dvh;
    max-height: none;
    max-width: none;
    margin: 0;
    padding: 0;
    border-block: 0;
    border-inline-end: 0;
  }

  .fl-header__drawer[open] {
    animation: fl-header-slide 0.25s ease;
  }

  @keyframes fl-header-slide {
    from {
      transform: translateX(-100%);
    }
  }

  .fl-header__drawer::backdrop {
    background: rgb(0 0 0 / 40%);
  }

  .fl-header__drawer-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .fl-header__drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 64px;
    padding: 10px var(--page-margin);
    border-bottom: 1px solid var(--color-line);
  }

  .fl-header__drawer-title {
    font-family: var(--font-heading-family);
    font-weight: 600;
  }

  .fl-header__drawer-nav {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 8px 0;
  }

  .fl-header__drawer-menu,
  .fl-header__drawer-sub {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .fl-header__drawer-sub {
    padding-bottom: 8px;
  }

  .fl-header__drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 48px;
    padding: 10px var(--page-margin);
    color: var(--color-ink);
    text-decoration: none;
  }

  .fl-header__drawer-summary {
    cursor: pointer;
    list-style: none;
  }

  .fl-header__drawer-summary::-webkit-details-marker {
    display: none;
  }

  .fl-header__drawer-summary::marker {
    content: none;
  }

  .fl-header__drawer-details[open] > .fl-header__drawer-summary .fl-header__caret {
    transform: rotate(180deg);
  }

  .fl-header__drawer-sublink {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 8px var(--page-margin) 8px 40px;
    color: var(--color-muted);
    text-decoration: none;
  }

  .fl-header__drawer-sublink:hover,
  .fl-header__drawer-sublink[aria-current='page'] {
    color: var(--color-ink);
  }

  .fl-header__drawer-sublink--nested {
    padding-left: 56px;
    font-size: 0.875em;
  }

  .fl-header__drawer-foot {
    padding: 12px var(--page-margin);
    border-top: 1px solid var(--color-line);
  }

  .fl-header__drawer-account {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    color: var(--color-ink);
    text-decoration: none;
  }

  .fl-header__drawer-account:hover {
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }

  @media (max-width: 989px) {
    .fl-header__nav,
    .fl-header__account {
      display: none;
    }

    .fl-header__burger {
      display: inline-flex;
    }

    .fl-header__bar {
      gap: 12px;
      min-height: 56px;
    }
  }
/* sections/image-banner.liquid */

  /* Content sitting ON the image never follows the section's colour scheme.
     --color-on-accent is the scheme's button label, which on a dark scheme is
     near-black (scheme-3: #1A1A1A): heading, text and buttons disappeared into
     the black overlay. Like Dawn, the hero commits to a fixed white foreground
     and lets the always-black overlay carry the contrast, whatever the scheme.
     The colour scheme still applies to the section itself, i.e. everything
     OUTSIDE the image (background bands showing around it). */
  .fl-banner {
    --fl-banner-fg: #fff;
    --fl-banner-btn-ink: #1a1a1a;

    position: relative;
    display: flex;
    overflow: hidden;
  }

  .fl-banner--small {
    min-height: 40vh;
    min-height: 40svh;
  }

  .fl-banner--medium {
    min-height: 60vh;
    min-height: 60svh;
  }

  .fl-banner--large {
    min-height: 80vh;
    min-height: 80svh;
  }

  .fl-banner__media {
    position: absolute;
    inset: 0;
    min-width: 0;
  }

  .fl-banner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .fl-banner__overlay {
    position: absolute;
    inset: 0;
  }

  .fl-banner__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: var(--page-width);
    margin-inline: auto;
    padding: clamp(32px, 6vw, 64px) var(--page-margin);
    color: var(--fl-banner-fg);
  }

  .fl-banner__heading {
    max-width: 16em;
  }

  .fl-banner__heading--small {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
  }

  .fl-banner__heading--medium {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .fl-banner__heading--large {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

  .fl-banner__text {
    max-width: 44ch;
    font-size: 1.0625em;
  }

  .fl-banner__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
  }

  .fl-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    min-height: 44px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    color: var(--fl-banner-btn-ink);
    background: var(--fl-banner-fg);
    border: 1px solid var(--fl-banner-fg);
    border-radius: var(--radius-btn);
    transition: opacity 0.15s ease;
  }

  .fl-banner__btn:hover {
    opacity: 0.85;
  }

  .fl-banner__btn:focus-visible {
    outline-color: var(--fl-banner-fg);
  }

  .fl-banner__btn--secondary {
    color: var(--fl-banner-fg);
    background: transparent;
    border-color: var(--fl-banner-fg);
  }
/* sections/image-with-text.liquid */

  .fl-imgtext__inner {
    width: min(
      calc(var(--page-width) - var(--page-margin) * 2),
      calc(100% - var(--page-margin) * 2)
    );
    margin-inline: auto;
  }

  .fl-imgtext__grid {
    display: grid;
    gap: 28px;
  }

  .fl-imgtext__media {
    min-width: 0;
    overflow: hidden;
    border-radius: var(--radius-card);
    background-color: var(--color-surface);
  }

  .fl-imgtext__img {
    width: 100%;
  }

  .fl-imgtext__media--square .fl-imgtext__img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .fl-imgtext__media--portrait .fl-imgtext__img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .fl-imgtext__content {
    min-width: 0;
    max-width: 46ch;
  }

  .fl-imgtext__heading {
    margin-bottom: 16px;
  }

  .fl-imgtext__text > p + p {
    margin-top: 1em;
  }

  .fl-imgtext__cta {
    margin-top: 28px;
  }

  @media screen and (min-width: 750px) {
    .fl-imgtext__grid {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      align-items: center;
      gap: clamp(32px, 5vw, 72px);
    }

    .fl-imgtext__grid--flip .fl-imgtext__media {
      order: 2;
    }
  }
/* sections/multicolumn.liquid */

  .fl-multicol__inner {
    width: var(--content-width);
    margin-inline: auto;
  }

  .fl-multicol__grid {
    display: grid;
    grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
    gap: 40px 24px;
  }

  .fl-multicol__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
  }

  .fl-multicol--center .fl-multicol__col {
    align-items: center;
    text-align: center;
  }

  .fl-multicol__media {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-card);
    background-color: var(--color-surface);
  }

  .fl-multicol__img,
  .fl-multicol__ph {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .fl-multicol__ph {
    fill: var(--color-muted);
    opacity: 0.4;
  }

  .fl-multicol__heading {
    font-size: 1.0625em;
    font-weight: 500;
    margin-block-start: 4px;
  }

  .fl-multicol__text {
    color: var(--color-muted);
  }

  .fl-multicol__text > p + p {
    margin-block-start: 1em;
  }

  .fl-multicol__col > .fl-multicol__link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 44px;
    font-size: 0.9375em;
  }

  .fl-multicol--center .fl-multicol__link {
    align-self: center;
  }

  @media (max-width: 989px) {
    .fl-multicol__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 749px) {
    .fl-multicol__grid {
      grid-template-columns: minmax(0, 1fr);
      gap: 32px;
    }
  }
/* sections/multirow.liquid */

  .fl-multirow__inner {
    display: grid;
    gap: clamp(32px, 5vw, 72px);
    width: var(--content-width);
    margin-inline: auto;
  }

  .fl-multirow__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .fl-multirow__media {
    min-width: 0;
  }

  .fl-multirow__img,
  .fl-multirow__ph {
    width: 100%;
  }

  .fl-multirow__ph {
    fill: var(--color-muted);
    opacity: 0.4;
  }

  .fl-multirow__media--small .fl-multirow__img,
  .fl-multirow__media--small .fl-multirow__ph {
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .fl-multirow__media--medium .fl-multirow__img,
  .fl-multirow__media--medium .fl-multirow__ph {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .fl-multirow__media--large .fl-multirow__img,
  .fl-multirow__media--large .fl-multirow__ph {
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .fl-multirow__content {
    min-width: 0;
    padding: clamp(20px, 3vw, 36px);
  }

  .fl-multirow__heading {
    margin-block-end: 14px;
  }

  .fl-multirow__text > p + p {
    margin-block-start: 1em;
  }

  .fl-multirow__cta {
    margin-block-start: 26px;
  }

  @media screen and (min-width: 750px) {
    .fl-multirow__row {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      align-items: start;
      gap: clamp(24px, 3vw, 48px);
    }

    .fl-multirow__row--small {
      grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    }

    .fl-multirow__row--large {
      grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    }

    /* Reversed rows swap the image to the right, so the column widths swap too
       — otherwise the image would inherit the text column’s width. */
    .fl-multirow__row--small.fl-multirow__row--reverse {
      grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    }

    .fl-multirow__row--large.fl-multirow__row--reverse {
      grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    }

    .fl-multirow__row--reverse .fl-multirow__media {
      order: 2;
    }

    .fl-multirow__content {
      align-self: var(--row-align, center);
      text-align: var(--row-text, left);
    }
  }
/* sections/newsletter.liquid */

  .fl-newsletter__inner {
    width: min(560px, calc(100% - var(--page-margin) * 2));
    margin-inline: auto;
    text-align: center;
  }

  .fl-newsletter__heading {
    margin-bottom: 12px;
  }

  .fl-newsletter__text {
    margin-bottom: 24px;
    color: var(--color-muted);
  }

  .fl-newsletter__status {
    text-align: center;
  }

  .fl-newsletter__row {
    display: flex;
  }

  .fl-newsletter__row .fl-input {
    flex: 1 1 auto;
    min-width: 0;
    border-start-end-radius: 0;
    border-end-end-radius: 0;
  }

  .fl-newsletter__row .fl-btn {
    flex: none;
    margin-inline-start: -1px;
    border-start-start-radius: 0;
    border-end-start-radius: 0;
  }

  @media (max-width: 479px) {
    .fl-newsletter__row {
      flex-direction: column;
      gap: 10px;
    }

    .fl-newsletter__row .fl-input {
      border-radius: var(--radius-input);
    }

    .fl-newsletter__row .fl-btn {
      margin-inline-start: 0;
      border-radius: var(--radius-btn);
    }
  }
/* sections/page-content.liquid */

  .fl-pagecontent {
    display: block;
  }

  .fl-pagecontent__inner {
    width: min(720px, calc(100% - var(--page-margin) * 2));
    min-width: 0;
    margin-inline: auto;
  }

  .fl-pagecontent__heading {
    margin-bottom: 24px;
  }

  .fl-pagecontent__empty {
    min-width: 0;
  }

  .fl-pagecontent__ph {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    fill: var(--color-muted);
    opacity: 0.35;
  }
/* sections/page.liquid */

  .fl-page {
    width: min(720px, 100%);
    margin-inline: auto;
    padding-block: 48px 80px;
  }

  .fl-page__title {
    margin-bottom: 32px;
  }
/* sections/password.liquid */

  .fl-password {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100svh;
    padding: var(--page-margin);
  }

  .fl-password__inner {
    width: min(420px, 100%);
    text-align: center;
  }

  .fl-password__logo {
    width: 200px;
    margin: 0 auto 32px;
  }

  .fl-password__wordmark {
    margin-bottom: 32px;
    font-family: var(--font-heading-family);
    font-size: 1.25em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .fl-password__title {
    margin-bottom: 12px;
  }

  .fl-password__message {
    margin-bottom: 28px;
    color: var(--color-muted);
  }

  .fl-password__row {
    display: flex;
    gap: 8px;
  }

  .fl-password__row .fl-input {
    flex: 1 1 auto;
    min-width: 0;
  }

  .fl-password__admin {
    margin-top: 32px;
    font-size: 0.875em;
    color: var(--color-muted);
  }
/* sections/policy.liquid */

  .fl-policy {
    width: min(720px, 100%);
    margin-inline: auto;
    padding-block: 48px 80px;
  }

  .fl-policy__title {
    margin-bottom: 32px;
  }
/* sections/product.liquid */

  .fl-product {
    display: block;
  }

  .fl-product__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  /* --- Gallery --- */
  .fl-product__gallery {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .fl-gallery__media {
    overflow: hidden;
    border-radius: var(--radius-card);
    background: var(--color-surface);
  }

  .fl-gallery__media img,
  .fl-gallery__media video,
  .fl-gallery__media iframe,
  .fl-gallery__media model-viewer {
    width: 100%;
  }

  .fl-gallery__placeholder {
    width: 100%;
    aspect-ratio: var(--card-ratio);
  }

  .fl-gallery__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .fl-gallery__thumb {
    width: 64px;
    height: 64px;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-btn);
    background: var(--color-surface);
    cursor: pointer;
    transition: border-color 0.15s ease;
  }

  .fl-gallery__thumb:hover {
    border-color: var(--color-muted);
  }

  .fl-gallery__thumb[aria-current='true'] {
    border-color: var(--color-ink);
  }

  .fl-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* --- Info column --- */
  .fl-product__info {
    min-width: 0;
  }

  .fl-product__info > * + * {
    margin-block-start: 20px;
  }

  .fl-product__info > .fl-product__details + .fl-product__details {
    margin-block-start: 0;
  }

  .fl-product__vendor {
    margin-bottom: 6px;
    font-size: 0.8125em;
    color: var(--color-muted);
  }

  .fl-product__title {
    margin: 0;
  }

  .fl-product__price {
    font-size: 1.125em;
  }

  .fl-product__tax {
    margin-top: 4px;
    font-size: 0.8125em;
    color: var(--color-muted);
  }

  /* --- Variant picker --- */
  .fl-product__option {
    min-width: 0;
    margin: 0 0 16px;
    padding: 0;
    border: 0;
  }

  .fl-product__option:last-child {
    margin-bottom: 0;
  }

  .fl-product__legend {
    padding: 0 0 10px;
    font-size: 0.875em;
    color: var(--color-muted);
  }

  .fl-product__legend-value {
    color: var(--color-ink);
  }

  .fl-product__values {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Theme settings > Variant pills drive border / radius / shadow. */
  .fl-product__value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 8px 16px;
    border: var(--pill-border-width, 1px) solid
      rgba(var(--color-ink-rgb), var(--pill-border-opacity, 0.55));
    border-radius: var(--pill-radius, 4px);
    box-shadow: var(--pill-shadow);
    background: var(--color-bg);
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  }

  .fl-product__value:hover {
    border-color: var(--color-ink);
  }

  .fl-product__value.is-soldout {
    color: var(--color-muted);
    text-decoration: line-through;
  }

  .fl-product__value.is-unavailable {
    color: var(--color-muted);
    border-style: dashed;
  }

  .fl-product__radio:checked + .fl-product__value {
    border-color: var(--color-ink);
    background: var(--color-ink);
    color: var(--color-bg);
  }

  .fl-product__radio:checked + .fl-product__value.is-soldout,
  .fl-product__radio:checked + .fl-product__value.is-unavailable {
    background: transparent;
    border-color: var(--color-muted);
    color: var(--color-muted);
  }

  .fl-product__radio:focus-visible + .fl-product__value {
    outline: 2px solid var(--color-ink);
    outline-offset: 2px;
  }

  /* --- Quantity stepper --- */
  .fl-qty {
    display: inline-flex;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-input);
  }

  .fl-qty__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-height: 44px;
    border: 0;
    background: var(--color-bg);
    color: var(--color-ink);
    font-size: 1.125em;
    cursor: pointer;
    transition: background 0.15s ease;
  }

  .fl-qty__btn:hover {
    background: var(--color-surface);
  }

  .fl-qty__input {
    width: 56px;
    min-height: 44px;
    padding: 0;
    border: 0;
    text-align: center;
    background: var(--color-bg);
    color: var(--color-ink);
    appearance: textfield;
  }

  .fl-qty__input::-webkit-outer-spin-button,
  .fl-qty__input::-webkit-inner-spin-button {
    appearance: none;
    margin: 0;
  }

  /* --- Buy buttons --- */
  .fl-product__add {
    width: 100%;
  }

  .fl-product__buy .shopify-payment-button {
    margin-top: 12px;
  }

  /* --- Collapsible rows --- */
  .fl-product__details {
    border-top: 1px solid var(--color-line);
  }

  .fl-product__details:last-of-type {
    border-bottom: 1px solid var(--color-line);
  }

  .fl-product__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 44px;
    padding: 12px 0;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
  }

  .fl-product__summary::-webkit-details-marker {
    display: none;
  }

  .fl-product__summary-icon::after {
    content: '+';
    color: var(--color-muted);
  }

  .fl-product__details[open] > .fl-product__summary .fl-product__summary-icon::after {
    content: '−';
  }

  .fl-product__details-body {
    padding-bottom: 16px;
  }

  /* --- Text block --- */
  .fl-product__text {
    font-size: 0.9375em;
    color: var(--color-muted);
  }

  /* --- Rich text (description, tab content) --- */
  .fl-rte {
    line-height: 1.7;
  }

  .fl-rte p {
    margin-block: 0 0.9em;
  }

  .fl-rte ul,
  .fl-rte ol {
    margin-block: 0 0.9em;
    padding-inline-start: 1.2em;
  }

  .fl-rte h2,
  .fl-rte h3,
  .fl-rte h4 {
    margin-block: 1.2em 0.5em;
  }

  .fl-rte img {
    margin-block: 0.5em;
    border-radius: var(--radius-card);
  }

  .fl-rte table {
    width: 100%;
    margin-block: 0 0.9em;
    border-collapse: collapse;
  }

  .fl-rte th,
  .fl-rte td {
    padding: 8px 10px;
    border: 1px solid var(--color-line);
    text-align: left;
  }

  .fl-rte blockquote {
    margin: 0 0 0.9em;
    padding-inline-start: 16px;
    border-inline-start: 2px solid var(--color-line);
    color: var(--color-muted);
  }

  /* --- Two columns on desktop --- */
  @media (min-width: 990px) {
    .fl-product__grid {
      grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
      gap: 64px;
      align-items: start;
    }

    .fl-product__info {
      position: sticky;
      top: var(--sticky-offset);
    }
  }
/* sections/quick-order-list.liquid */

  .fl-qol__inner {
    width: min(calc(var(--page-width) - var(--page-margin) * 2), calc(100% - var(--page-margin) * 2));
    margin-inline: auto;
  }

  .fl-qol__empty {
    color: var(--color-muted);
  }

  /* The table keeps its natural width on narrow screens and scrolls sideways
     rather than squashing the quantity field below a usable size. */
  .fl-qol__scroll {
    overflow-x: auto;
  }

  .fl-qol__table {
    width: 100%;
    border-collapse: collapse;
  }

  .fl-qol__th {
    padding: 0 12px 12px;
    font-size: 0.75em;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: left;
    white-space: nowrap;
    color: var(--color-muted);
    border-bottom: 1px solid var(--color-line);
  }

  .fl-qol__th--end {
    text-align: right;
  }

  .fl-qol__cell {
    padding: 14px 12px;
    vertical-align: middle;
    border-bottom: 1px solid var(--color-line);
  }

  .fl-qol__th:first-child,
  .fl-qol__cell:first-child {
    padding-inline-start: 0;
  }

  .fl-qol__th:last-child,
  .fl-qol__cell:last-child {
    padding-inline-end: 0;
  }

  .fl-qol__cell--product {
    min-width: 220px;
  }

  .fl-qol__product {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
  }

  .fl-qol__thumb {
    flex: 0 0 auto;
    width: 56px;
    min-width: 0;
  }

  .fl-qol__img,
  .fl-qol__ph {
    width: 56px;
    height: 56px;
    object-fit: cover;
  }

  .fl-qol__ph {
    fill: var(--color-muted);
    opacity: 0.35;
  }

  .fl-qol__names {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .fl-qol__title {
    font-weight: 500;
    text-decoration: none;
  }

  .fl-qol__title:hover {
    text-decoration: underline;
  }

  .fl-qol__variant {
    font-size: 0.8125em;
    color: var(--color-muted);
  }

  .fl-qol__cell--sku {
    font-size: 0.8125em;
    white-space: nowrap;
    color: var(--color-muted);
  }

  .fl-qol__cell--order {
    text-align: right;
  }

  .fl-qol__form {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }

  .fl-qol__qty {
    width: 88px;
    text-align: center;
  }

  .fl-qol__note {
    font-size: 0.8125em;
    color: var(--color-muted);
  }

  /* Bulk add only exists once the custom element has upgraded; until then the
     per row buttons are the working path. */
  .fl-qol__foot {
    display: none;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-block-start: 24px;
  }

  .fl-qol__app.is-enhanced .fl-qol__foot {
    display: flex;
  }

  .fl-qol__app.is-enhanced .fl-qol__add {
    display: none;
  }

  .fl-qol__status {
    flex-basis: 100%;
    font-size: 0.875em;
    color: var(--color-muted);
  }

  /* critical.css hides empty paragraphs; the live region has to stay in the
     accessibility tree for its first update to be announced. */
  .fl-qol__status:empty {
    display: block;
  }

  a.fl-pagination__item:hover {
    color: var(--color-ink);
    background: var(--color-surface);
  }

  .fl-pagination__item[aria-current='page'] {
    color: var(--color-ink);
    border: 1px solid var(--color-line);
  }
/* sections/related-products.liquid */

  .fl-related {
    display: block;
  }
/* sections/rich-text.liquid */

  .fl-richtext__inner {
    width: min(720px, calc(100% - var(--page-margin) * 2));
    margin-inline: auto;
    text-align: center;
  }

  .fl-richtext__heading {
    margin-bottom: 16px;
  }

  .fl-richtext__text > p + p {
    margin-top: 1em;
  }

  .fl-richtext__cta {
    margin-top: 28px;
  }
/* sections/search.liquid */

  .fl-searchpage {
    padding-block: 48px 80px;
  }

  .fl-searchpage__head {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
  }

  .fl-searchpage__form {
    display: flex;
    gap: 12px;
    margin-top: 32px;
  }

  .fl-searchpage__input {
    flex: 1;
    min-width: 0;
    min-height: 56px;
    padding-inline: 20px;
    font-size: calc(var(--font-size-base) * 1.125);
    background: var(--color-surface);
    border-color: transparent;
    transition: background-color 0.15s ease, border-color 0.15s ease;
  }

  .fl-searchpage__input:focus-visible {
    background: var(--color-bg);
    border-color: var(--color-ink);
  }

  .fl-searchpage__submit {
    min-height: 56px;
    padding-inline: 28px;
  }

  .fl-searchpage__results {
    margin-top: 36px;
  }

  .fl-searchpage__count {
    margin-bottom: 28px;
    color: var(--color-muted);
  }

  .fl-searchpage__group + .fl-searchpage__group {
    margin-top: 48px;
  }

  .fl-searchpage__group > .fl-eyebrow {
    margin-bottom: 20px;
  }

  .fl-searchpage__grid {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .fl-searchpage__cell {
    min-width: 0;
  }

  .fl-searchpage__rows {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .fl-searchpage__row {
    padding-block: 24px;
    border-top: 1px solid var(--color-line);
  }

  .fl-searchpage__row:last-child {
    border-bottom: 1px solid var(--color-line);
  }

  .fl-searchpage__row-type {
    margin-bottom: 6px;
  }

  .fl-searchpage__row-title {
    font-size: 1em;
    font-weight: 500;
  }

  .fl-searchpage__row-link {
    text-decoration: none;
  }

  .fl-searchpage__row-link:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
  }

  .fl-searchpage__row-excerpt {
    max-width: 65ch;
    margin-top: 6px;
    font-size: 0.9375em;
    color: var(--color-muted);
  }

  .fl-searchpage__empty {
    max-width: 680px;
    margin-inline: auto;
    margin-top: 36px;
    text-align: center;
  }

  .fl-searchpage__empty .fl-eyebrow {
    margin-top: 36px;
    margin-bottom: 16px;
  }

  .fl-searchpage__empty-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  a.fl-pagination__item:hover {
    color: var(--color-ink);
    background: var(--color-surface);
  }

  .fl-pagination__item[aria-current='page'] {
    color: var(--color-ink);
    border: 1px solid var(--color-line);
  }

  @media (max-width: 749px) {
    .fl-searchpage__form {
      flex-direction: column;
    }
  }
/* sections/slideshow.liquid */

  .fl-slideshow {
    display: block;
    position: relative;
  }

  .fl-slideshow__viewport {
    position: relative;
    overflow: hidden;
    min-width: 0;
  }

  /* No-JS default: slides sit in normal flow, one under the other. */
  .fl-slideshow__slide {
    position: relative;
    display: flex;
    overflow: hidden;
    min-width: 0;
    background-color: var(--color-surface);
  }

  .fl-slideshow.is-enhanced .fl-slideshow__track {
    display: grid;
  }

  .fl-slideshow.is-enhanced .fl-slideshow__slide {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.5s ease,
      visibility 0s linear 0.5s;
  }

  .fl-slideshow.is-enhanced .fl-slideshow__slide.is-active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease;
  }

  /* Heights */
  .fl-slideshow--small .fl-slideshow__slide {
    min-height: 40vh;
    min-height: 40svh;
  }

  .fl-slideshow--medium .fl-slideshow__slide {
    min-height: 60vh;
    min-height: 60svh;
  }

  .fl-slideshow--large .fl-slideshow__slide {
    min-height: 80vh;
    min-height: 80svh;
  }

  .fl-slideshow--adapt .fl-slideshow__slide {
    aspect-ratio: var(--fl-slide-ratio, 16 / 9);
    min-height: 320px;
    /* Without a definite width, the 320px floor is transferred back through
       the aspect-ratio into a width of 320 x ratio (569px for 16/9), which
       overflowed every phone viewport and cropped the slide content. */
    width: 100%;
    max-width: 100%;
  }

  .fl-slideshow__media {
    position: absolute;
    inset: 0;
    min-width: 0;
  }

  .fl-slideshow__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .fl-slideshow__img--ph {
    fill: var(--color-muted);
    opacity: 0.35;
  }

  .fl-slideshow__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    max-width: var(--page-width);
    margin-inline: auto;
    padding: clamp(24px, 5vw, 56px) var(--page-margin);
  }

  .fl-slideshow--boxed .fl-slideshow__content {
    max-width: none;
    padding-inline: clamp(20px, 4vw, 48px);
  }

  .fl-slideshow__box {
    width: min(520px, 100%);
    padding: clamp(20px, 3.5vw, 36px);
  }

  .fl-slideshow__heading {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
  }

  .fl-slideshow__heading + .fl-slideshow__text {
    margin-top: 12px;
  }

  .fl-slideshow__text {
    color: var(--color-muted);
  }

  .fl-slideshow__cta {
    margin-top: 24px;
  }

  /* Controls — revealed only once the custom element has upgraded. */
  .fl-slideshow__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--color-ink);
    background-color: rgba(var(--color-bg-rgb), 0.85);
    border: 1px solid var(--color-line);
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.15s ease;
  }

  .fl-slideshow.is-enhanced .fl-slideshow__arrow {
    display: inline-flex;
  }

  .fl-slideshow__arrow:hover {
    background-color: var(--color-bg);
  }

  .fl-slideshow__arrow--prev {
    left: 12px;
  }

  .fl-slideshow__arrow--next {
    right: 12px;
  }

  .fl-slideshow__icon {
    width: 18px;
    height: 18px;
  }

  .fl-slideshow__controls {
    position: absolute;
    bottom: 12px;
    left: 50%;
    z-index: 2;
    display: none;
    align-items: center;
    max-width: calc(100% - 24px);
    padding-inline: 4px;
    background-color: rgba(var(--color-bg-rgb), 0.85);
    border-radius: 40px;
    transform: translateX(-50%);
  }

  .fl-slideshow.is-enhanced .fl-slideshow__controls {
    display: flex;
  }

  .fl-slideshow__dots {
    display: flex;
    align-items: center;
  }

  .fl-slideshow__dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--color-ink);
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .fl-slideshow__dot::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: currentcolor;
    border-radius: 50%;
    opacity: 0.35;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .fl-slideshow__dot[aria-current='true']::before {
    opacity: 1;
    transform: scale(1.3);
  }

  .fl-slideshow__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--color-ink);
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .fl-slideshow__icon--play {
    display: none;
  }

  .fl-slideshow__toggle.is-paused .fl-slideshow__icon--play {
    display: block;
  }

  .fl-slideshow__toggle.is-paused .fl-slideshow__icon--pause {
    display: none;
  }

  /* Autoplay never starts under reduced motion, so the play/pause button would
     be a dead control permanently announced as “Play slideshow”. When it is the
     only thing in the bar, the bar goes with it instead of showing an empty
     pill. */
  @media (prefers-reduced-motion: reduce) {
    .fl-slideshow .fl-slideshow__toggle {
      display: none;
    }

    .fl-slideshow.is-enhanced .fl-slideshow__controls--toggle-only {
      display: none;
    }
  }
/* sections/video.liquid */

  .fl-video {
    display: block;
  }

  .fl-video__head {
    width: min(calc(var(--page-width) - var(--page-margin) * 2), calc(100% - var(--page-margin) * 2));
    margin-inline: auto;
    margin-bottom: 28px;
  }

  .fl-video__frame {
    display: block;
    overflow: hidden;
    min-width: 0;
    background-color: var(--color-surface);
  }

  .fl-video__frame--boxed {
    width: min(calc(var(--page-width) - var(--page-margin) * 2), calc(100% - var(--page-margin) * 2));
    margin-inline: auto;
  }

  .fl-video__stage {
    position: relative;
    overflow: hidden;
    min-width: 0;
    aspect-ratio: var(--fl-video-ratio, 16 / 9);
    border-radius: inherit;
    background-color: var(--color-surface);
  }

  /* Hidden until <fl-video> upgrades and binds the click handler: without JS
     the <noscript> player is shown instead and this button would be a
     focusable, clickable no-op covering it. */
  .fl-video__poster {
    position: absolute;
    inset: 0;
    display: none;
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: var(--color-surface);
    border: 0;
    cursor: pointer;
  }

  .fl-video__frame.is-enhanced .fl-video__poster {
    display: block;
  }

  .fl-video__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .fl-video__ph {
    width: 100%;
    height: 100%;
    object-fit: cover;
    fill: var(--color-muted);
    opacity: 0.35;
  }

  .fl-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    color: var(--color-ink);
    background-color: rgba(var(--color-bg-rgb), 0.9);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition:
      transform 0.2s ease,
      background-color 0.2s ease;
  }

  .fl-video__poster:hover .fl-video__play {
    background-color: var(--color-bg);
    transform: translate(-50%, -50%) scale(1.06);
  }

  .fl-video__icon {
    width: 24px;
    height: 24px;
    margin-left: 3px;
  }

  .fl-video__stage iframe,
  .fl-video__stage video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
/* snippets/customer-styles.liquid */

  .fl-account {
    padding-block: 56px 80px;
  }

  .fl-account__inner {
    width: min(420px, 100%);
    margin-inline: auto;
  }

  .fl-account__inner--wide {
    width: 100%;
    max-width: var(--page-width);
  }

  .fl-account__head {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-line);
  }

  .fl-account__head--row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    align-items: baseline;
    justify-content: space-between;
  }

  .fl-account__title {
    margin: 0;
  }

  .fl-account__subtext {
    margin-top: 8px;
    color: var(--color-muted);
  }

  .fl-account__back {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.875em;
    color: var(--color-muted);
  }

  .fl-account__form {
    margin: 0;
  }

  .fl-account__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    align-items: center;
    margin-top: 8px;
  }

  .fl-account__actions .fl-btn {
    flex: 0 0 auto;
  }

  .fl-account__link {
    padding: 0;
    font: inherit;
    font-size: 0.9375em;
    color: var(--color-muted);
    background: none;
    border: 0;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    cursor: pointer;
  }

  .fl-account__link:hover {
    color: var(--color-ink);
  }

  .fl-account__aside {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--color-line);
    font-size: 0.9375em;
    color: var(--color-muted);
  }

  .fl-account__errors {
    margin: 0 0 18px;
    padding: 12px 14px;
    list-style: none;
    border: 1px solid var(--color-ink);
    border-radius: var(--radius-input);
    background: var(--color-surface);
  }

  .fl-account__errors li + li {
    margin-top: 6px;
  }

  .fl-account__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 16px;
  }

  .fl-account__field--full {
    grid-column: 1 / -1;
  }

  @media screen and (max-width: 599px) {
    .fl-account__grid {
      grid-template-columns: minmax(0, 1fr);
    }
  }

  .fl-account__checkbox {
    display: flex;
    gap: 10px;
    align-items: baseline;
    margin-bottom: 18px;
    cursor: pointer;
  }

  .fl-account__empty {
    padding: 40px 0;
    color: var(--color-muted);
    text-align: center;
  }

  /* Record list — orders, addresses */
  .fl-account__list {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .fl-account__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px 20px;
    padding: 18px 20px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-card);
  }

  .fl-account__cell {
    min-width: 0;
  }

  .fl-account__cell-label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.75em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
  }

  .fl-account__details {
    margin-bottom: 16px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-card);
  }

  .fl-account__summary {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    min-height: 44px;
    cursor: pointer;
    list-style: none;
  }

  .fl-account__summary::-webkit-details-marker {
    display: none;
  }

  .fl-account__summary::after {
    content: '+';
    flex: 0 0 auto;
    color: var(--color-muted);
  }

  .fl-account__details[open] > .fl-account__summary::after {
    content: '–';
  }

  .fl-account__details-body {
    padding: 4px 20px 20px;
    border-top: 1px solid var(--color-line);
  }

  .fl-account__address {
    margin-bottom: 16px;
    color: var(--color-muted);
    font-style: normal;
  }
/* snippets/search-overlay.liquid */

  .fl-search {
    display: contents;
  }

  .fl-search__overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
  }

  .fl-search__overlay[hidden] {
    display: none;
  }

  .fl-search__scrim {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 40%);
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .fl-search__overlay.is-open .fl-search__scrim {
    opacity: 1;
  }

  /* Background, border and shadow come from .fl-popup (Popups theme settings).
     The panel drops from the very top of the viewport, so its top corners stay
     square whatever radius the merchant picks. */
  .fl-search__panel {
    position: relative;
    max-height: 88dvh;
    overflow-y: auto;
    border-start-start-radius: 0;
    border-start-end-radius: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .fl-search__overlay.is-open .fl-search__panel {
    opacity: 1;
    transform: none;
  }

  .fl-search__container {
    max-width: var(--page-width);
    margin-inline: auto;
    padding: 24px var(--page-margin) 36px;
  }

  .fl-search__bar {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .fl-search__form {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    border-bottom: 1px solid var(--color-ink);
  }

  .fl-search__form:focus-within {
    box-shadow: 0 1px 0 var(--color-ink);
  }

  .fl-search__icon {
    flex: 0 0 auto;
    color: var(--color-muted);
  }

  .fl-search__input {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 48px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--color-ink);
    font-size: 1.25em;
  }

  .fl-search__input:focus-visible {
    outline: none;
  }

  .fl-search__input::placeholder {
    color: var(--color-muted);
  }

  .fl-search__input::-webkit-search-cancel-button {
    display: none;
  }

  .fl-search__clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--color-muted);
    cursor: pointer;
  }

  .fl-search__clear:hover {
    color: var(--color-ink);
  }

  .fl-search__form:has(.fl-search__input:placeholder-shown) .fl-search__clear {
    visibility: hidden;
  }

  .fl-search__close,
  .fl-search__submit {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 10px 4px;
    border: 0;
    background: none;
    font: inherit;
    font-size: 0.875em;
    color: var(--color-muted);
    cursor: pointer;
  }

  .fl-search__close:hover,
  .fl-search__submit:hover {
    color: var(--color-ink);
  }

  .fl-search__submit {
    padding-inline: 8px;
    font-weight: 500;
    color: var(--color-ink);
  }

  .fl-search__status {
    margin: 18px 0 0;
    font-size: 0.875em;
    color: var(--color-muted);
  }

  .fl-search__status:empty {
    display: none;
  }

  .fl-search__groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px 40px;
    margin-top: 24px;
  }

  .fl-search__groups:empty {
    display: none;
    margin: 0;
  }

  .fl-search__group {
    min-width: 0;
  }

  .fl-search__group--products {
    grid-column: 1 / -1;
  }

  .fl-search__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .fl-search__list--products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 8px 28px;
  }

  .fl-search__link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 2px 0;
    color: var(--color-ink);
    text-decoration: none;
  }

  .fl-search__link:hover {
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }

  .fl-search__product {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 6px 0;
    color: inherit;
    text-decoration: none;
  }

  .fl-search__thumb {
    display: block;
    width: 56px;
    aspect-ratio: var(--card-ratio);
    object-fit: cover;
    border-radius: var(--radius-btn);
    background: var(--color-surface);
  }

  .fl-search__product-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .fl-search__product-title {
    font-weight: 500;
    font-size: 0.9375em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .fl-search__product:hover .fl-search__product-title {
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }

  .fl-search__product-price,
  .fl-search__product-vendor {
    font-size: 0.875em;
    color: var(--color-muted);
  }

  .fl-search__product-vendor {
    overflow: hidden;
    font-size: 0.75em;
    letter-spacing: 0.08em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .fl-search__viewall {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-top: 20px;
    color: var(--color-ink);
  }

  .fl-search__viewall[hidden] {
    display: none;
  }

  @media (max-width: 749px) {
    .fl-search__container {
      padding: 16px var(--page-margin) 28px;
    }

    .fl-search__groups {
      gap: 24px;
    }

    .fl-search__input {
      font-size: 1.0625em;
    }
  }
/* snippets/social-icons.liquid */

  .fl-social {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0;
    margin-inline-start: -12px;
    padding: 0;
    list-style: none;
  }

  .fl-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color-muted);
    border-radius: var(--radius-btn);
    transition: color 0.15s ease;
  }

  .fl-social__link:hover {
    color: var(--color-ink);
  }