/** Shopify CDN: Minification failed

Line 260:22 Unexpected "{"
Line 260:31 Expected ":"

**/
/* START_SECTION:auk-bar (INDEX:4) */
/* Same look apply_header_bar gave Atelier's bar: charcoal band, white text, orange strong. */
  .auk-bar { text-align: center; background: #3d3e3b; color: #fff; padding: 0 14px; }
  .auk-bar .rot { position: relative; height: 36px; }
  .auk-bar .announcement-bar__text { position: absolute; inset: 0; display: flex;
    align-items: center; justify-content: center; margin: 0;
    font-size: 12.5px; letter-spacing: .02em; opacity: 0; transition: opacity .45s;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .auk-bar .announcement-bar__text.on { opacity: 1; }
  .auk-bar strong { color: #F79557; font-weight: 600; }
  @media (prefers-reduced-motion: reduce) {
    .auk-bar .announcement-bar__text { transition: none; }
  }
/* END_SECTION:auk-bar */
/* START_SECTION:auk-footer (INDEX:15) */
.auk-footer .sign { display: flex; gap: 8px; }
  .auk-footer .sign input { flex: 1; min-width: 0; }
  .auk-footer .signok { color: var(--orange); margin-top: 8px; font-size: 13px; }
/* END_SECTION:auk-footer */
/* START_SECTION:auk-header (INDEX:16) */
.auk-header { position: sticky; top: 0; z-index: 60; }
  /* Both drawers live INSIDE .auk-header, and a position:sticky element with a z-index creates a
     STACKING CONTEXT. So everything inside — including #auk-drawer at 2147483000 — competes with
     the rest of the page at the header's own 60. That is why the Klaviyo teaser (90000) and the
     Tidio bubble (100, lowered by auk-tidio-z-fix.js) both painted OVER an open cart drawer, and
     why raising the drawer's own z-index changed nothing. The ancestor is the ceiling.

     The drawers cannot simply be moved out of .auk-header: the palette (--line, --ink, --orange)
     is defined on .auk-home, which is the same element, so they would lose every colour.

     And .auk-header cannot be raised permanently, because Atelier's own search and quick-add
     modals sit at 9999 and are meant to cover the header.

     So the header is lifted only while a drawer is actually open. `hidden` is the same attribute
     the open/close functions below toggle, so no JS change is needed.
     Diagnosed 2026-08-19 from Stephen's phone screenshot. */
  .auk-header:has(#auk-drawer:not([hidden])),
  .auk-header:has(#auk-menu:not([hidden])) { z-index: 2147483000; }
  /* No rule under the header by default. Straight from the approved demo (2026-08-17):
     the header is white and the page below opens on white, so the line divides nothing — it
     only draws a seam across the top of the hero photograph. `header_rule` puts it back. */
  .auk-header header { box-shadow: var(--auk-header-rule, none); }
  .auk-header .logohit { display: block; justify-self: start; }
  /* The currency control is a real <select> for behaviour and keyboard access, laid invisibly
     over the styled button so the concept's look survives. */
  .auk-header .curform { position: relative; display: flex; align-items: center; }
  .auk-header .curform select {
    position: absolute; inset: 0; width: 100%; height: 100%;
    opacity: 0; cursor: pointer; font: inherit;
  }
  .auk-header .cartn {
    position: absolute; top: 4px; right: 2px; min-width: 16px; height: 16px;
    display: grid; place-items: center; padding: 0 4px;
    background: var(--orange); color: #fff; border-radius: 999px;
    font-size: 10px; font-style: normal; font-variant-numeric: tabular-nums;
  }
  /* #-anchored: the ported .auk-home.auk-home * reset was zeroing every padding
     in here (diagnosed 2026-08-17 — the drawer rendered flush to its edges). */
  #auk-drawer { position: fixed; inset: 0; z-index: 2147483000; }  /* one tier below max int, matching the filter drawer in auk-collection.liquid. Was 200, which sat UNDER the Klaviyo teaser at 90000 and only 100 above the value auk-tidio-z-fix.js forces on Tidio. This drawer is a plain div, not a <dialog>, so it gets no browser top layer and z-index is the only thing holding it up. 2026-08-19 */
  #auk-drawer .auk-drawer__scrim { position: absolute; inset: 0; background: rgba(61,62,59,.45); }
  #auk-drawer .auk-drawer__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(420px, 92vw);
    background: #fff; display: flex; flex-direction: column;
    box-shadow: -6px 0 30px rgba(0,0,0,.12); }
  #auk-drawer .auk-drawer__head { display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px; border-bottom: 1px solid var(--line); }
  #auk-drawer .auk-drawer__close { background: none; border: 0; font-size: 26px; line-height: 1;
    cursor: pointer; color: var(--ink); }
  #auk-drawer .auk-drawer__body { flex: 1; overflow-y: auto; padding: 18px 22px; }
  /* Condensed 2026-08-19. Was padding 18px 22px with a 10px grid gap, which put 10px between
     every money row as well as around the button; the three figures of one sum read as three
     unrelated rows. They are now one `.totals` child with 3px between them, so the gap only
     applies between the sum, the button and the reassurance lines. */
  #auk-drawer .auk-drawer__foot { border-top: 1px solid var(--line); padding: 13px 22px 16px;
    display: grid; gap: 5px; }
  #auk-drawer .auk-drawer__foot .totals { display: grid; gap: 0; }
  /* Halved 2026-08-19, drawer only. The source values live in assets/auk-concept.css and are
     shared with the cart page summary and the bundle bar, so they are overridden here rather than
     edited there. 7->4, 8->4, 13->7, 22->11; Total row to button goes 31px -> 16px. */
  #auk-drawer .auk-drawer__foot .sline { padding: 4px 0; }
  #auk-drawer .auk-drawer__foot .sline.total { margin-top: 4px; padding-top: 7px; }
  #auk-drawer .auk-drawer__foot .btn.checkout { margin-top: 11px; }
  /* Fixed 2026-08-18: ".auk-drawer .auk-drawer" never matched -- the class and the id are
     on the same element, not ancestor/descendant, so this whole block was dead and the
     page-wide 4-column .line grid (built for the /cart page's img/info/qty/price row) was
     leaking into the drawer's 3-child row instead, orphaning an empty 4th grid track and
     leaving the price not flush right (confirmed live via an injected probe row at 1440px:
     grid-template-columns resolved to "84px 180px 64px 0px"). Single "#auk-drawer" now
     correctly re-activates the drawer's own compact 3-column layout below. */
  #auk-drawer .line { display: grid; grid-template-columns: 62px 1fr auto; gap: 12px;
    align-items: center; padding: 12px 0; border-top: 0; border-bottom: 1px solid var(--line); }
  #auk-drawer .line img { width: 62px; aspect-ratio: 4/5; object-fit: cover; border-radius: 3px; }
  #auk-drawer .line b { display: block; font-size: 14px; }
  #auk-drawer .line span { display: block; font-size: 12.5px; color: var(--ink-2); margin-top: 2px; }
  #auk-drawer .rm { font-size: 12.5px; color: var(--ink-2); text-decoration: underline;
    text-underline-offset: 3px; }
  #auk-drawer .auk-drawer .lp { font-size: 14px; font-variant-numeric: tabular-nums; }
  /* The discount row. Same weight as the subtotal above it so the three numbers read as a sum. */
  #auk-drawer .sline.saved { color: var(--orange); }
  #auk-drawer .sline.saved b { font-variant-numeric: tabular-nums; }
  #auk-drawer .auk-drawer .progress { margin-bottom: 14px; }
  #auk-drawer .auk-drawer .ptrack { height: 6px; background: var(--line); border-radius: 999px; overflow: hidden; }
  #auk-drawer .auk-drawer .pfill { height: 100%; background: var(--orange); }
  #auk-drawer .auk-drawer .progress p { font-size: 13px; color: var(--ink-2); margin-top: 8px; }
  /* Suggestions rail: horizontal, one tap. It sits under the cart's own items by default
     (Stephen 2026-08-18) — the drawer should show what you have bought before what you have not.
     `suggest_position` moves it back above them if the fold ever argues otherwise. */
  #auk-drawer .auk-drawer .sugwrap { border: 1px solid var(--line); border-radius: 5px; padding: 12px;
    margin-bottom: var(--auk-sug-mb, 0px); margin-top: var(--auk-sug-mt, 16px); }
  #auk-drawer .auk-drawer .sugwrap h5 { font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em;
    margin-bottom: 10px; }
  #auk-drawer .auk-drawer .sugs { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; }
  #auk-drawer .auk-drawer .sug { flex: 0 0 108px; font-size: 12px; }
  #auk-drawer .auk-drawer .sug img { width: 108px; aspect-ratio: 4/5; object-fit: cover; border-radius: 3px; }
  #auk-drawer .auk-drawer .sug b { display: block; font-size: 12px; line-height: 1.3; margin-top: 6px;
    font-weight: 600; }
  #auk-drawer .auk-drawer .sug span { display: block; color: var(--ink-2); margin: 2px 0 6px; }
  #auk-drawer .auk-drawer .sugadd { width: 100%; padding: 7px 0; border: 1.5px solid var(--ink);
    background: #fff; font: inherit; font-size: 12.5px; font-weight: 600; cursor: pointer;
    border-radius: 3px; }
  #auk-drawer .auk-drawer .sugadd:hover { background: var(--ink); color: #fff; }
  #auk-drawer .auk-drawer__foot .under { font-size: 12px; color: var(--ink-2); margin-top: 7px;
    text-align: center; }
  #auk-drawer .auk-drawer__foot .under .stars { color: var(--orange); letter-spacing: 1px; }
  #auk-drawer .auk-drawer .sline { display: flex; justify-content: space-between; font-size: 15px;
    font-variant-numeric: tabular-nums; }
  /* Checkout button size -- editable via the "Secure checkout button" controls below.
     Fallbacks match the reduced size shipped 2026-08-18 (Stephen: "the secure checkout
     button is too big"): 67px -> 53px (-21%), still 9px above the 44px touch-target floor.
     #auk-drawer .btn.checkout outranks assets/auk-concept.css's
     ".auk-home.auk-home .atc, .auk-home.auk-home .checkout" (padding:23px, font-size:18px)
     on ID specificity alone -- no !important needed (verified via computed styles). */
  #auk-drawer .btn.checkout {
    padding: var(--auk-checkout-py, 18px) var(--auk-checkout-px, 20px);
    font-size: var(--auk-checkout-fs, 15px);
  }
  @media screen and (max-width: 900px) {
    #auk-drawer .btn.checkout {
      padding: var(--auk-checkout-py-m, 18px) var(--auk-checkout-px, 20px);
      font-size: var(--auk-checkout-fs-m, 15px);
    }
  }
  /* Hamburger + mobile menu (Stephen 2026-08-17: hamburger top-left, logo centred, and the
     menu mirrors the desktop groups instead of the old club strip). #-anchored like the cart
     drawer so the ported * reset cannot zero the paddings. */
  .auk-header .burger { display: none; background: none; border: 0; padding: 8px;
    cursor: pointer; color: var(--ink); }
  #auk-menu { position: fixed; inset: 0; z-index: 2147483001; }  /* one above the cart drawer, keeping the previous menu-over-cart order */
  #auk-menu .auk-menu__scrim { position: absolute; inset: 0; background: rgba(61,62,59,.45); }
  #auk-menu .auk-menu__panel { position: absolute; top: 0; left: 0; height: 100%;
    width: min(360px, 88vw); background: #fff; display: flex; flex-direction: column;
    box-shadow: 6px 0 30px rgba(0,0,0,.12); overflow-y: auto; }
  #auk-menu .auk-menu__head { display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; border-bottom: 1px solid var(--line); }
  #auk-menu .auk-menu__head b { font-size: 15px; }
  #auk-menu .auk-menu__close { background: none; border: 0; font-size: 26px; line-height: 1;
    cursor: pointer; color: var(--ink); padding: 0 2px; }
  #auk-menu .msearch { padding: 14px 20px; border-bottom: 1px solid var(--line); }
  #auk-menu .msearch input { width: 100%; padding: 11px 14px; border: 1px solid var(--line);
    border-radius: 999px; font: inherit; font-size: 14px; background: var(--paper, #f6f4ef); }
  /* `display:block` is deliberate: a blanket `.auk-home nav {display:none}` in the
     mobile stylesheet once swallowed this element whole. The id in the selector
     outranks any class-only rule, so the drawer's list cannot vanish again. */
  #auk-menu .auk-menu__nav { display: block; flex: 1; padding: 6px 0; }
  #auk-menu .auk-menu__nav details { border-bottom: 1px solid var(--line); }
  #auk-menu .auk-menu__nav summary { list-style: none; cursor: pointer; padding: 15px 20px;
    font-size: 14.5px; font-weight: 600; display: flex; align-items: center; }
  #auk-menu .auk-menu__nav summary::-webkit-details-marker { display: none; }
  #auk-menu .auk-menu__nav summary::after { content: '+'; margin-left: auto; font-weight: 400;
    font-size: 18px; color: var(--ink-2); }
  #auk-menu .auk-menu__nav details[open] summary::after { content: '\2212'; }
  #auk-menu .mlist { padding: 0 20px 14px; }
  #auk-menu .mlist a { display: flex; align-items: baseline; justify-content: space-between;
    padding: 8px 0; font-size: 14px; text-decoration: none; color: inherit; }
  #auk-menu .mlist a em { font-style: normal; font-size: 12px; color: var(--ink-2);
    font-variant-numeric: tabular-nums; }
  #auk-menu .mlist a.mall span { font-weight: 600; }
  #auk-menu .auk-menu__foot { display: flex; gap: 18px; padding: 16px 20px;
    border-top: 1px solid var(--line); font-size: 13.5px; }
  #auk-menu .auk-menu__foot a { text-decoration: none; color: inherit; }

  #auk-menu .mcur { padding: 14px 20px; border-top: 1px solid var(--line); }
  #auk-menu .mcur label { display: block; font-size: 12px; letter-spacing: .04em;
    text-transform: uppercase; color: var(--ink-2); margin-bottom: 6px; }
  #auk-menu .mcur select { width: 100%; padding: 11px 12px; border: 1px solid var(--line);
    border-radius: 2px; font: inherit; font-size: 14px; background: #fff; color: var(--ink); }
  @media screen and (max-width: 900px) {
    /* Triple-class scope: the ported concept styles .head at (0,3,0), so anything lighter here
       silently loses — the logo stayed left until these were bumped (caught in verification). */
    .auk-home.auk-home.auk-header .head { display: grid; grid-template-columns: 1fr auto 1fr;
      gap: 10px; align-items: center; }
    .auk-home.auk-home.auk-header .burger { display: grid; place-items: center;
      justify-self: start; grid-column: 1; grid-row: 1; }
    /* Explicit column pins: the ported concept CSS places .logohit/.icons itself, which put
       the logo in column 3 (caught in verification). */
    .auk-home.auk-home.auk-header .logohit { justify-self: center; grid-column: 2; grid-row: 1; }
    /* Height, not width, so the mobile logo obeys the same control as the desktop one.
       This rule used to pin width:104px / height:auto, which at the file's 134x84
       aspect rendered ~65px tall and ignored the setting entirely (Stephen: "logo
       size is too big"). 35px is the figure from his Shopify logo settings. */
    .auk-home.auk-home.auk-header .logo { height: var(--auk-logo-m, 35px);
      width: auto; max-width: 60vw; }
    .auk-home.auk-home.auk-header .icons { justify-self: end; grid-column: 3; grid-row: 1; }
    /* The search field takes the full width of a second row. It was `display:none` here, and
       the row below it (.navrow) rendered empty — that pairing was the wasted band with a
       hairline under it that Stephen boxed in his screenshot. */
    .auk-home.auk-home.auk-header .head { row-gap: var(--auk-headrow-gap-m, 10px); }
    .auk-home.auk-home.auk-header .head .search {
      display: flex; align-items: center; gap: 8px;
      grid-column: 1 / -1; grid-row: 2; width: 100%;
      border: 1px solid var(--line); border-radius: 999px;
      padding: var(--auk-msearch-py, 9px) var(--auk-msearch-px, 14px);
      background: var(--paper, #f6f4ef); color: var(--ink-2);
    }
    .auk-home.auk-home.auk-header .head .search input {
      flex: 1; min-width: 0; border: 0; background: none; font: inherit;
      font-size: var(--auk-msearch-fs, 14px); color: var(--ink); outline: none;
    }
    .auk-home.auk-home.auk-header header nav { display: none; }
    /* Hiding the nav left its row behind. The row is the empty band, so the row goes too. */
    .auk-home.auk-home.auk-header .navrow { display: none; }
  }

  /* The cart icon acknowledges the arrival. */
  #auk-bag.auk-bag-pop { animation: aukBagPop 420ms ease; }
  @keyframes aukBagPop {
    0%   { transform: scale(1); }
    38%  { transform: scale(1.24); }
    100% { transform: scale(1); }
  }
  @media (prefers-reduced-motion: reduce) {
    #auk-bag.auk-bag-pop { animation: none; }
  }
/* END_SECTION:auk-header */
/* START_SECTION:auk-impact (INDEX:18) */
.auk-page .pagewrap { padding-top: 34px; padding-bottom: 60px; }
  .auk-page .pagehead { max-width: 720px; margin-bottom: 40px; }
  .auk-page .pagehead .lede { font-size: 17px; line-height: 1.55; color: var(--ink-2); }
  .auk-page .collbanner { width: 100%; aspect-ratio: 21 / 9; object-fit: cover;
    border-radius: 6px; margin-bottom: 40px; }
  @media screen and (max-width: 700px) {
    /* Stephen 2026-08-17: About collapsed badly — every story row now reads photo first,
       full width, then its text; the flip ordering is desktop-only. Stats go 2x2 and the
       Impact claims stack (they were cramping side by side). */
    .auk-home.auk-home .auk-page .hero-page { display: grid; grid-template-columns: 1fr;
      gap: 14px; }
    .auk-home.auk-home .auk-page .hero-page > :first-child { order: 0; }
    .auk-home.auk-home .auk-page .hero-page img { width: 100%; height: auto; }
    .auk-home.auk-home .auk-page .statrow { grid-template-columns: 1fr 1fr; gap: 16px; }
    .auk-home.auk-home .auk-page .claims { grid-template-columns: 1fr; gap: 20px; }
    /* Stephen 2026-08-18: the .auk-home.auk-home .auk-page ancestor prefix used elsewhere
       in this file never actually matches — auk-home and auk-page are classes on the same
       div, not nested ancestors — so it is scoped to the section id instead, which is
       guaranteed to match and stays specific to this section instance. */
    #shopify-section-{{ section.id }} .claims > div { text-align: var(--auk-claims-align-m, center); }
    .auk-home.auk-home .auk-page .pagehead .lede { font-size: 15px; }
  }
/* END_SECTION:auk-impact */
/* START_SNIPPET:product-media-gallery-content-styles (INDEX:224) */
media-gallery:where(.media-gallery--grid) .media-gallery__grid {
    display: none;
  }

  media-gallery.media-gallery--grid .media-gallery__grid .product-media-container {
    /* Needed for safari to stretch to full grid height */
    height: 100%;
  }

  @media screen and (min-width: 750px) {
    .media-gallery--two-column .media-gallery__grid {
      grid-template-columns: repeat(2, 1fr);
    }

    /* Display grid view as a carousel on mobile, grid on desktop */
    media-gallery:is(.media-gallery--grid) slideshow-component {
      display: none;
    }

    media-gallery:where(.media-gallery--grid) .media-gallery__grid {
      display: grid;
    }
  }

  .product-media-container__zoom-button {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: var(--layer-flat);
    cursor: zoom-in;
    background-color: transparent;

    &:hover {
      background-color: transparent;
    }
  }

  slideshow-slide.product-media-container--tallest {
    content-visibility: visible;
  }

  .product-media__drag-zoom-wrapper {
    aspect-ratio: inherit;
    min-height: inherit;
    min-width: inherit;
    display: inherit;
    flex: inherit;
  }

  .media-gallery__mobile-controls {
    grid-area: auto;
  }

  .product-media-container--zoomable.product-media-container--image {
    cursor: zoom-in;
  }
/* END_SNIPPET:product-media-gallery-content-styles */
/* START_SNIPPET:quick-add-modal-styles (INDEX:228) */
#quick-add-dialog {
    display: contents;
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal {
      width: var(--quick-add-modal-width);
      height: var(--quick-add-modal-height);
      max-width: none;
    }
  }

  .quick-add-modal {
    padding: 0;
    border: var(--style-border-popover);
    overflow: hidden;
    box-shadow: 0 5px 30px rgb(0 0 0 / var(--opacity-15));

    @media screen and (max-width: 749px) {
      position: fixed;
      margin: auto 0 0 0;
      min-height: unset;
      max-width: 100%;
      border-radius: 0;
      overflow: clip;
      height: fit-content;
    }
  }

  .quick-add-modal[open] {
    @media screen and (max-width: 750px) {
      border-top-left-radius: var(--style-border-radius-popover);
      border-top-right-radius: var(--style-border-radius-popover);
    }
  }

  .quick-add-modal[open] {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .quick-add-modal .view-more-details__wrapper {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .quick-add-modal[open] {
    animation: modalSlideInTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .quick-add-modal.dialog-closing {
    animation: modalSlideOutTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .quick-add-modal__close {
    position: absolute;
    top: var(--margin-2xs);
    right: var(--margin-2xs);
    transition: transform 0.15s var(--animation-timing-bounce);
    z-index: var(--layer-raised);
    overflow: visible;
    transform-origin: center;
  }

  .quick-add-modal__close:active {
    transform: scale(0.99) translateY(1px);
  }

  .quick-add-modal__close {
    &:focus-visible {
      outline: none;
    }

    &:focus-visible::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: calc(var(--style-border-radius-popover) - var(--margin-2xs));
      outline: var(--focus-outline-width) solid currentColor;
    }
  }

  .quick-add-modal__content {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: 100% 1fr;
    position: relative;
    overflow-y: auto;
    max-height: 100vh;
    flex-grow: 1;

    @media screen and (max-width: 749px) {
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto;
      padding-inline: var(--padding-xl);
      padding-block: var(--padding-xl);
      gap: var(--gap-lg);
      flex: 1;
      min-height: 0;
      overflow-y: auto;
      height: auto; /* Prevent a bug in Safari where height:fit-content is not respected */
      max-height: 100vh;
    }
  }

  .quick-add-modal__content .media-gallery--grid .media-gallery__grid {
    grid-template-columns: 1fr;
  }

  .quick-add-modal__content .media-gallery--grid.media-gallery--two-column .product-media-container:first-child {
    grid-column: auto;
  }

  .quick-add-modal__content {
    /* One column */
    .media-gallery--grid:not(.media-gallery--two-column) .product-media > *,
      /* Two column, small first image */
      .media-gallery--grid.media-gallery--two-column:not(.media-gallery--large-first-image)
      .product-media-container:nth-of-type(odd)
      .product-media > *,
      /* Two column, large first image */
      .media-gallery--grid.media-gallery--two-column.media-gallery--large-first-image
        .product-media-container:is(:first-of-type, :nth-of-type(even))
        .product-media > *,
        /* Carousel */
      .media-gallery--carousel slideshow-container {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }
  }

  .quick-add-modal__content .view-more-details__wrapper {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }

  .view-more-details__wrapper .view-more-details {
    display: flex;
    align-items: center;
    width: fit-content;
  }

  .quick-add-modal__content .product-header {
    @media screen and (max-width: 749px) {
      display: flex;
      flex-direction: column;
      grid-column: 2 / -1;
      grid-row: 1;
      padding-right: var(--padding-2xl);
    }
  }

  .quick-add-modal__content .product-header a:not(product-price *) {
    @media screen and (max-width: 749px) {
      font-size: var(--font-size--md);
      font-weight: 500;
      color: inherit;
      width: fit-content;
    }
  }

  .quick-add-modal__content variant-picker,
  .quick-add-modal__content product-form-component {
    @media screen and (max-width: 749px) {
      grid-column: 1 / -1;
    }
  }

  .quick-add-modal__content .product-media-container__zoom-button {
    cursor: default;
  }

  .quick-add-modal__content .product-details {
    grid-column: 4 / -1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    position: relative;

    dialog[open] & {
      animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
      animation-delay: 0.1s;
    }

    @media screen and (max-width: 749px) {
      grid-column: 2 / span 2;
      grid-row: span 1;
      max-height: 100%;
      height: 100%;
    }
  }

  @property --quick-add-modal-mask-start {
    syntax: '<length>';
    initial-value: 0px;
    inherits: false;
  }

  @property --quick-add-modal-mask-end {
    syntax: '<length>';
    initial-value: 0px;
    inherits: true;
  }

  @keyframes detect-scroll {
    from,
    to {
      --can-scroll: ;
    }
  }

  @supports (animation-timeline: scroll(self)) {
    dialog[open] .quick-add-modal__content .product-details {
      mask-image: linear-gradient(to bottom, transparent 0%, #000 var(--quick-add-modal-mask-start), #000 100%);
      animation: 0.3s var(--animation-timing-fade-in) 0.1s both fadeSlideIn, scrollStart 1s linear both,
        scrollEnd 1s linear both, detect-scroll 1ms linear none;
      animation-timeline: auto, scroll(self), scroll(self), scroll(self);
      animation-range: normal, 0px 48px, calc(100% - 48px) 100%, 0% 100%;
    }
  }

  @keyframes scrollStart {
    from {
      --quick-add-modal-mask-start: 0px;
    }
    to {
      --quick-add-modal-mask-start: 48px;
    }
  }

  @keyframes scrollEnd {
    from {
      --quick-add-modal-mask-end: 0px;
    }
    to {
      --quick-add-modal-mask-end: 48px;
    }
  }

  .quick-add-modal__content .product-details > .group-block {
    flex-grow: 1;
    width: auto;
  }

  .quick-add-modal__content > * {
    min-height: 0;
  }

  .quick-add-modal__content .product-details :is(.view-product-title, .buy-buttons-block) {
    flex: 0 0 auto;
  }
  .quick-add-modal__content .product-details :is(.buy-buttons-block) {
    margin-top: auto;
    position: sticky;
    bottom: 0;
    padding-bottom: var(--padding-3xl);
    background-color: var(--color-background);
    z-index: var(--layer-raised);

    &::before {
      --quick-add-modal-mask-end-progressive-enhanced: 0px;

      position: absolute;
      content: '';
      display: block;
      inset: auto 0 100% 0;
      pointer-events: none;
      height: min(var(--gap-2xl), var(--gap));
      background-color: inherit;
      mask-image: linear-gradient(
        to top,
        #000 0%,
        #000 calc(var(--gap-2xs)),
        transparent calc(100% - var(--quick-add-modal-mask-end-progressive-enhanced)),
        transparent
      );
    }
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form) {
    position: static;
    padding-bottom: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form) > product-form-component {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form) form {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form)::before {
    display: none;
  }

  .quick-add-modal__content .product-details .buy-buttons-block__bar {
    display: block;
    position: sticky;
    bottom: 0;
    margin-top: auto;
    padding-block: var(--gap-md) var(--padding-3xl);
    background-color: var(--color-background);
    z-index: var(--layer-raised);

    &::before {
      --quick-add-modal-mask-end-progressive-enhanced: 0px;

      position: absolute;
      content: '';
      display: block;
      inset: auto 0 100% 0;
      pointer-events: none;
      height: min(var(--gap-2xl), var(--gap));
      background-color: inherit;
      mask-image: linear-gradient(
        to top,
        #000 0%,
        #000 calc(var(--gap-2xs)),
        transparent calc(100% - var(--quick-add-modal-mask-end-progressive-enhanced)),
        transparent
      );
    }
  }

  @supports (animation-timeline: scroll(self)) {
    .quick-add-modal__content .product-details :is(.buy-buttons-block)::before,
    .quick-add-modal__content .product-details .buy-buttons-block__bar::before {
      --mask-if-scroll: var(--can-scroll) var(--quick-add-modal-mask-end);
      --mask-if-no-scroll: 48px;
      --quick-add-modal-mask-end-progressive-enhanced: var(--mask-if-scroll, var(--mask-if-no-scroll));
      height: calc(var(--gap-2xs) + 48px);
    }
  }

  .quick-add-modal__content .product-details .variant-picker {
    flex: 0 0 auto;

    padding-block: min(var(--gap-2xl), var(--gap));
    margin-block-end: calc(var(--focus-outline-offset) + var(--focus-outline-width));
  }

  .quick-add-modal__content .variant-option--swatches {
    padding-inline-start: var(--padding-2xs);
  }

  .quick-add-modal__content .variant-option--swatches legend {
    margin-inline-start: calc(-1 * var(--padding-2xs));
  }

  .quick-add-modal__content:not(:has(.product-information__media)) .product-details {
    grid-column: 1 / -1;
  }

  .quick-add-modal__content .view-product-title {
    display: flex;
    padding-block: 0;
    margin-block-end: 12px;

    /* Prevent overlap between title and close button */
    padding-inline-end: calc(var(--padding-2xl) + calc(var(--minimum-touch-target) / 2));
  }

  .quick-add-modal__content .view-product-title a {
    color: inherit;
    text-decoration: none;
    text-align: left;
    font-size: var(--font-size--2xl);
    font-weight: 600;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s var(--animation-easing);
  }

  .quick-add-modal__content .product-details product-price {
    --text-align: left;
  }

  .quick-add-modal__content .product-details product-price.text-block--align-center {
    margin-inline: 0;
  }

  .quick-add-modal__content .product-details product-price.text-center {
    --text-align: left;
  }

  .quick-add-modal__content .product-details product-price > * {
    text-align: left;
  }

  .quick-add-modal__content
    .product-details
    *:not(
      .group-block,
      .group-block-content,
      .buy-buttons-block,
      .buy-buttons-block *,
      .view-product-title,
      .view-product-title *,
      variant-picker,
      variant-picker *,
      product-price,
      product-price *,
      product-inventory,
      product-inventory *,
      .view-more-details__wrapper,
      .view-more-details__wrapper *
    ) {
    @media screen and (min-width: 750px) {
      /* stylelint-disable-next-line declaration-no-important */
      display: none !important;
    }
  }

  .quick-add-modal__content
    .group-block:not(
      :has(
          .buy-buttons-block,
          .buy-buttons-block *,
          .view-product-title,
          .view-product-title *,
          variant-picker,
          variant-picker *,
          product-price,
          product-price *,
          product-inventory,
          product-inventory *,
          .view-more-details__wrapper,
          .view-more-details__wrapper *
        ),
      .buy-buttons-block
    ) {
    display: none;
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal__content .group-block-content {
      gap: 0;
    }

    .quick-add-modal__content .media-gallery__grid {
      gap: min(var(--gap-2xs), var(--image-gap));
      border-radius: var(--style-border-radius-popover, 0);
    }

    .quick-add-modal__content .media-gallery--grid .product-media img {
      border-radius: 0;
    }
  }

  .quick-add-modal__content .product-details > .group-block {
    padding-block: var(--padding-3xl) 0;
  }

  .quick-add-modal__content :where(.product-details > .group-block > .group-block-content > *) {
    padding-inline: var(--padding-3xl);
  }

  .quick-add-modal__content slideshow-slide:not([aria-hidden='false']) {
    content-visibility: auto;
  }

  .quick-add-modal__content .product-information__media {
    width: 100%;
    grid-column: 1 / span 1;
    grid-row: 1;
    position: relative;
    top: 0;
    animation: fadeIn 0.4s var(--animation-timing-fade-in) both;

    @media screen and (min-width: 750px) {
      position: sticky;
      grid-column: 1 / 4;
      width: var(--quick-add-modal-gallery-width);
      overflow-y: auto;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .quick-add-modal__content .product-information__media media-gallery {
    pointer-events: none;

    @media screen and (min-width: 750px) {
      position: absolute;
      inset: 0;
    }
  }

  .quick-add-modal media-gallery {
    padding: 0;
  }

  .quick-add-modal__content .product-information__media slideshow-arrows {
    display: none;
  }

  .quick-add-modal__content .product-information__media slideshow-container {
    display: block;
  }

  .quick-add-modal__content .product-information__media slideshow-slides {
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xs);
    overflow: visible;
    scroll-snap-type: none;
  }

  .quick-add-modal__content .product-information__media slideshow-slide {
    width: 100%;
    flex: none;
    scroll-snap-align: unset;
    position: relative;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s var(--animation-easing);
  }

  .quick-add-modal__content .product-information__media slideshow-slide[aria-hidden='true'] {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(1) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(2) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
    animation-delay: 0.05s;
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(3) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
    animation-delay: 0.1s;
  }

  .quick-add-modal__content .product-information__media :is(slideshow-controls, slideshow-controls[thumbnails]) {
    display: none;
  }

  .quick-add-modal__content .sticky-content,
  .quick-add-modal__content .sticky-content--desktop {
    top: 0;
  }

  .quick-add-modal__content .text-block.rte:not(product-price),
  .quick-add-modal__content .view-more-details__wrapper {
    display: none;
  }

  @keyframes fadeSlideIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* END_SNIPPET:quick-add-modal-styles */
/* START_SNIPPET:resource-card (INDEX:232) */
.resource-card {
    --resource-card-secondary-image-opacity: 0;
    --resource-card-primary-image-opacity: calc(1 - var(--resource-card-secondary-image-opacity));

    display: flex;
    flex-direction: column;
    row-gap: var(--padding-xs);
    position: relative;
    text-decoration: none;
    height: 100%;
    opacity: 0;
    animation: fadeIn var(--animation-speed-medium) var(--animation-timing-fade-in) forwards;
  }

  .resource-card__link {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .resource-card__content {
    display: flex;
    flex-direction: column;
    color: var(--color-foreground);
    gap: var(--padding-3xs);

    .price {
      font-weight: 500;
    }

    .volume-pricing-note {
      display: block;
      margin-top: var(--padding-3xs);
      font-family: var(--font-body--family);
      font-weight: normal;
      font-size: min(0.85em, var(--font-paragraph--size));
      line-height: normal;
      letter-spacing: normal;
      text-transform: none;
      color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    }
  }

  .resource-card[data-resource-type='article'] .resource-card__content,
  .resource-card[data-resource-type='page'] .resource-card__content {
    gap: var(--padding-xs);
  }

  .resource-card__image {
    aspect-ratio: var(--resource-card-aspect-ratio, auto);
    object-fit: cover;
    border-radius: var(--resource-card-corner-radius);
    opacity: var(--resource-card-primary-image-opacity);
  }

  .resource-card__image--secondary {
    position: absolute;
    top: 0;
    opacity: var(--resource-card-secondary-image-opacity);
    border-radius: var(--resource-card-corner-radius);
  }

  .resource-card__media:empty {
    display: none;
  }

  .resource-card__image-placeholder {
    padding: var(--padding-sm);
    font-size: var(--font-size--lg);
    line-height: var(--line-height--display-loose);
    word-break: break-word;
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
    aspect-ratio: var(--resource-card-aspect-ratio, auto);
    border-radius: var(--resource-card-corner-radius);
    color: var(--color-foreground);
  }

  .resource-card__title {
    margin-block: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .resource-card__title.paragraph {
    line-height: 1.3;
  }

  .resource-card--overlay {
    height: 100%;

    &::before {
      content: '';
      position: absolute;
      inset: 50% 0 0;
      background: var(--gradient-image-overlay);
      border-radius: var(--resource-card-corner-radius);
      pointer-events: none;
      z-index: var(--layer-flat);
    }
  }

  .resource-card--overlay .resource-card__image {
    height: 100%;
  }

  .resource-card--overlay .resource-card__content {
    position: absolute;
    inset: auto 0 0;
    padding: var(--padding-lg) var(--padding-lg) var(--padding-sm);
    z-index: var(--layer-raised);
  }

  .resource-card--overlay .resource-card__title {
    color: var(--color-white);
  }

  /* Collection images */
  .resource-card__image-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-2xs);
  }

  .resource-card__collection-image {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: calc(var(--card-corner-radius) - (var(--padding-xs) / 2));
  }

  .resource-card__subtext {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    margin-block-start: 0;
  }

  .resource-card__subtext.paragraph {
    font-size: var(--font-size--body-sm);
    line-height: var(--line-height--body-tight);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .resource-card:has(.resource-card__image--secondary) {
    &:hover,
    &:focus {
      --resource-card-secondary-image-opacity: 1;
    }
  }
/* END_SNIPPET:resource-card */
/* START_SNIPPET:search-modal (INDEX:237) */
/* Search modal style */
  .search-modal {
    --search-border-radius: var(--style-border-radius-popover);
    --search-border-width: var(--style-border-width);
  }

  .search-modal__content {
    /* Approx set the top so when the content is at max height, the modal is centered */
    --modal-top-margin: calc(50dvh - var(--modal-max-height) / 2 - 2rem);
    --modal-width: 66dvw;

    padding: 0;
    border: var(--style-border-popover);

    @media screen and (min-width: 750px) {
      width: var(--modal-width);
      margin-block-start: var(--modal-top-margin);
      overflow: hidden;
    }
  }

  /* Hide the default dialog backdrop on small screens */
  @media screen and (max-width: 749px) {
    .search-modal__content::backdrop {
      display: none;
    }
  }

  .dialog-modal[open].search-modal__content {
    transform-origin: bottom center;
    animation: search-element-slide-in-bottom 300ms var(--ease-out-quad) forwards;
    border-radius: var(--search-border-radius);
    box-shadow: var(--shadow-popover);

    @media screen and (max-width: 749px) {
      border-radius: 0;
    }
  }

  .dialog-modal.search-modal__content.dialog-closing {
    animation: search-element-slide-out-bottom 200ms var(--ease-out-quad) forwards;
  }

  .search-modal__content[open] {
    display: flex;
  }

  .search-modal__content :is(.predictive-search-dropdown, .predictive-search-form__content-wrapper) {
    position: relative;
  }

  .dialog-modal
    .predictive-search-form__header:has(
      .predictive-search__reset-button:not(.predictive-search__reset-button[hidden])
    )::before {
    content: '';
    position: absolute;
    right: calc(var(--padding-sm) + var(--minimum-touch-target));
    top: 0;
    bottom: 0;
    width: var(--border-width-sm);
    background-color: var(--color-border);
  }

  .dialog-modal
    .predictive-search-form__header:has(.predictive-search__reset-button:not(.predictive-search__reset-button[hidden]))
    > .predictive-search__close-modal-button {
    &::before {
      content: none;
    }
  }

  @media screen and (min-width: 750px) {
    .dialog-modal
      .predictive-search-form__header:has(
        .predictive-search__reset-button:not(.predictive-search__reset-button[hidden])
      )::before {
      right: calc(var(--padding-2xl) * 2);
    }
  }

  predictive-search-component {
    --resource-card-corner-radius: var(--product-corner-radius);

    display: flex;
    width: 100%;
    position: relative;
    margin-inline: auto;
    align-items: center;
    background-color: var(--color-background);
    z-index: var(--layer-heightened);
  }

  .predictive-search-form__footer {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    @media screen and (min-width: 750px) {
      --to-top-gradient-background: linear-gradient(
        to top,
        rgb(var(--color-background-rgb) / var(--opacity-90)),
        rgb(var(--color-background-rgb) / var(--opacity-80)),
        rgb(var(--color-background-rgb) / var(--opacity-40)),
        transparent
      );

      padding-block: var(--padding-xs) var(--padding-lg);
      background-image: var(--to-top-gradient-background);
    }
  }

  predictive-search-component:has([data-search-results]):not(:has(.predictive-search-results__no-results))
    .predictive-search-form__footer {
    display: block;
  }

  .predictive-search-form {
    position: relative;
    width: 100%;
    align-self: flex-start;
  }

  .predictive-search-form__content {
    max-height: 50dvh;
    overflow-y: auto;
    background-color: var(--color-background);

    /* Firefox */
    scrollbar-width: none;

    /* Webkit browsers */
    &::-webkit-scrollbar {
      display: none;
    }
  }

  .predictive-search-form__content-wrapper {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    z-index: var(--layer-raised);
    display: flex;
    flex-direction: column;
    border-radius: 0 0 var(--search-border-radius) var(--search-border-radius);
    transition: box-shadow var(--animation-speed) var(--animation-easing);
    transform: translateZ(0);
    will-change: transform, opacity;
    overflow: hidden;

    @media screen and (max-width: 749px) {
      border-radius: 0;
    }

    @media screen and (min-width: 750px) {
      max-height: var(--modal-max-height);
    }
  }

  /* Add new rule to apply bottom padding only when search button exists */
  .predictive-search-form__content-wrapper:has([data-search-results]):not(:has(.predictive-search-results__no-results))
    > .predictive-search-form__content {
    padding-block-end: var(--padding-6xl);
  }

  .predictive-search-form__header-inner {
    background: var(--color-background);
    border: var(--search-border-width) solid var(--color-border);
    color: var(--color-foreground);
    border-radius: var(--style-border-radius-popover);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

    @media screen and (max-width: 749px) {
      border-radius: var(--style-border-radius-inputs);
      border: none;
    }
  }

  .predictive-search-form__header-inner:focus-within {
    outline-offset: var(--focus-outline-offset);

    @media screen and (min-width: 750px) {
      outline: var(--focus-outline-width) solid var(--color-primary);
    }
  }

  .predictive-search-form__header {
    display: flex;
    position: sticky;
    top: 0;
    z-index: var(--layer-heightened);
    width: 100%;
    align-items: center;
    background-color: var(--color-input-background);
    border: var(--search-border-width) solid var(--color-border);
    border-radius: var(--style-border-radius-inputs);

    @media screen and (max-width: 749px) {
      padding: var(--padding-2xs) var(--padding-sm);
    }
  }

  .predictive-search-form__header:focus-within,
  .predictive-search-form__header-inner:focus-within,
  .predictive-search-form__header-inner:has(.search-input:is(:focus, :focus-visible)) {
    outline: none;
    box-shadow: none;
    /* stylelint-disable-next-line declaration-no-important */
    border-color: var(--color-border) !important;
  }

  input.search-input {
    border-radius: var(--style-border-radius-inputs);
    padding-block: var(--padding-sm);
    font-size: var(--font-size--md);
    width: 100%;
    color: var(--color-foreground);
    padding-inline: calc(var(--margin-lg) + var(--icon-size-lg)) 0;
    background: transparent;
    text-overflow: ellipsis;
    overflow: hidden;
    outline: none;
    border: 0;
  }

  .search-input::placeholder {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .search-input,
  .search-input:is(:focus, :focus-visible, :focus-within),
  .predictive-search-form__header *:is(:focus, :focus-visible) {
    outline: none;
    box-shadow: none;
  }

  .search-input:hover {
    background-color: transparent;
  }

  .predictive-search__icon {
    position: absolute;
    left: var(--margin-xl);
    top: auto;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-60));

    @media screen and (min-width: 750px) {
      left: var(--margin-md);
    }
  }

  .predictive-search__icon > svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  .predictive-search__reset-button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    padding: 0;
    margin-inline-end: var(--margin-md);
    background: transparent;
    color: var(--color-foreground);
    opacity: 0.68;
    transition: opacity var(--animation-speed-medium) var(--animation-timing-fade-out),
      visibility var(--animation-speed-medium) var(--animation-timing-fade-out);

    &:hover {
      color: var(--color-foreground);
    }

    &:active {
      transform: scale(0.9);
      transition: transform 100ms var(--animation-timing-active);
    }

    @media screen and (min-width: 750px) {
      margin-inline-end: var(--margin-2xs);
    }
  }

  .predictive-search__reset-button[hidden] {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .predictive-search__reset-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
    transition: background-color var(--animation-speed-medium) ease-in-out,
      transform var(--animation-speed-medium) var(--animation-timing-bounce);
    border-radius: 50%;

    &:hover {
      background-color: rgb(var(--color-primary-hover-rgb) / var(--opacity-8));
    }
  }

  .predictive-search__reset-button:active .predictive-search__reset-button-icon {
    transform: scale(0.85);
    transition-timing-function: var(--animation-timing-active);
    transition-duration: 100ms;
  }

  .predictive-search__reset-button svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  .predictive-search__reset-button-text {
    display: none;
  }

  .predictive-search__search-button {
    margin: auto;
    z-index: var(--layer-raised);
    transition: transform var(--animation-speed-medium) var(--animation-timing-bounce),
      box-shadow var(--animation-speed-medium) var(--animation-timing-hover);
    transform-origin: center;

    &:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgb(0 0 0 / var(--opacity-5));
    }

    &:active {
      transform: scale(0.97);
      transition: transform 100ms var(--animation-timing-active);
      box-shadow: none;
    }
  }

  .predictive-search__close-modal-button {
    --button-color: var(--color-foreground);
    --button-background-color: transparent;

    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    margin-inline-start: var(--margin-sm);
    padding: 0;
    box-shadow: none;

    &:active {
      transform: scale(0.8);
      transition: transform 100ms var(--animation-timing-active);
    }

    .svg-wrapper,
    svg {
      width: var(--icon-size-xs);
      height: var(--icon-size-xs);
    }
  }

  .predictive-search__close-modal-button:hover {
    --button-color: var(--color-foreground);
    --button-background-color: transparent;
  }
/* END_SNIPPET:search-modal */
/* START_SNIPPET:skip-to-content-link (INDEX:241) */
.skip-to-content-link {
    position: absolute;
    left: -99999px;
  }

  .skip-to-content-link:focus {
    z-index: var(--layer-temporary);
    overflow: auto;
    width: auto;
    height: auto;
    padding: var(--padding-lg) var(--padding-4xl);
    left: var(--margin-lg);
    top: var(--margin-lg);
    background-color: var(--color-background);
    box-shadow: 0 0 0 var(--focus-outline-offset) var(--color-background);
  }
/* END_SNIPPET:skip-to-content-link */
