/** Shopify CDN: Minification failed

Line 207:2 Unexpected "}"

**/
/* START_SECTION:arbib-about (INDEX:1) */
/* About page locks the viewport on desktop for fullpage snap.
     Mobile reverts to normal scroll. Design mode skips snap so admins
     can navigate the full template freely. */
  body.arbib-page-handle-about {
    background: var(--arbib-bg-warm, #f7f5f1);
  }

  html.arbib-about-snap,
  html.arbib-about-snap body {
    overflow: hidden;
    height: 100%;
  }
  html.arbib-about-snap .arbib-about__wrapper {
    height: 100vh;
  }

  /* In the theme editor, never engage snap mode — admins need to scroll
     through every section to edit content blocks. The JS already skips the
     state machine when Shopify.designMode is true. */
  html.shopify-design-mode .arbib-about__wrapper {
    transform: none !important;
    transition: none !important;
  }

  .arbib-about {
    font-family: var(--arbib-font-sans, 'Inter', sans-serif);
    color: var(--arbib-text, #2a2a2a);
    -webkit-font-smoothing: antialiased;
  }
  .arbib-about__wrapper {
    transition: transform 1.15s var(--arbib-ease-out, cubic-bezier(0.16, 1, 0.3, 1));
    will-change: transform;
  }
  .arbib-about__section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  html.arbib-about-snap .arbib-about__section {
    height: 100vh;
    min-height: 0;
  }
  .arbib-about__overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 14, 14, 0.6);
  }

  /* Hero */
  .arbib-about__hero .arbib-about__overlay { background: rgba(14, 14, 14, 0.5); }
  .arbib-about__hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    text-align: center;
  }
  .arbib-about__hero-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--arbib-green-bright, #15a35c);
    margin-bottom: 20px;
    opacity: 0;
    animation: arbib-about-fade 0.8s ease 0.5s forwards;
  }
  .arbib-about__hero-title {
    font-size: clamp(40px, 7vw, 80px);
    color: #fff;
    line-height: 1.05;
    opacity: 0;
    animation: arbib-about-up 1s ease 0.7s forwards;
  }
  .arbib-about__hero-title em {
    font-style: italic;
    color: var(--arbib-green-bright, #15a35c);
  }
  .arbib-about__hero-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 440px;
    margin: 16px auto 0;
    line-height: 1.7;
    opacity: 0;
    animation: arbib-about-fade 0.8s ease 1.2s forwards;
  }
  @keyframes arbib-about-fade { to { opacity: 1; } }
  @keyframes arbib-about-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

  /* Timeline section */
  .arbib-about__tl-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    padding: 0 24px;
  }
  .arbib-about__year {
    font-family: var(--arbib-font-display, 'Cormorant Garamond', serif);
    font-size: clamp(48px, 8vw, 96px);
    color: var(--arbib-green-bright, #15a35c);
    opacity: 1;
    margin-bottom: 16px;
    line-height: 1;
  }
  .arbib-about__tl-inner h2 {
    font-size: clamp(28px, 4vw, 48px);
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.15;
  }
  .arbib-about__tl-inner p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
  }

  .arbib-about__rv {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--arbib-ease-out, cubic-bezier(0.16, 1, 0.3, 1));
  }
  .arbib-about__rv.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Embedded footer — mirrors the universal Arbib footer (two lines, light-on-dark) */
  .arbib-about__embedded-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 24px;
    border-top: 1px solid var(--arbib-border, #ddd8d0);
    background: rgba(248, 246, 242, 0.92);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 3;
    text-align: center;
  }
  .arbib-about__ef-text { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
  .arbib-about__ef-line { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; }
  .arbib-about__ef-line span,
  .arbib-about__ef-line a {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--arbib-text-light, #777);
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
    line-height: 1.4;
  }
  .arbib-about__ef-line a:hover { color: var(--arbib-green, #084a2f); }
  .arbib-about__ef-brand { color: var(--arbib-black, #0e0e0e); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
  .arbib-about__ef-line--2 span,
  .arbib-about__ef-line--2 a { font-size: 9px; color: var(--arbib-text-light, #999); }
  .arbib-about__ef-sep { color: var(--arbib-border, #ddd8d0); }
  .arbib-about__ef-ig { display: inline-flex; align-items: center; }
  .arbib-about__ef-ig svg { width: 14px; height: 14px; }
  .arbib-about__ef-logo { height: 38px; width: auto; display: block; flex-shrink: 0; }

  @media (max-width: 768px) {
    html.arbib-about-snap, html.arbib-about-snap body { overflow: auto; height: auto; }
    html.arbib-about-snap .arbib-about__wrapper { transform: none !important; height: auto; transition: none; }
    html.arbib-about-snap .arbib-about__section { height: auto; min-height: 100vh; }

    /* Last timeline section: stack content + footer vertically instead of
       centering them on top of each other. */
    .arbib-about__tl--last {
      flex-direction: column;
      justify-content: center;
      min-height: 100vh;
      padding-bottom: 80px;
    }
    .arbib-about__tl--last .arbib-about__tl-inner {
      margin-top: auto;
      margin-bottom: auto;
    }
    .arbib-about__embedded-footer {
      position: absolute;
      bottom: 0;
      margin-top: 0;
      padding: 10px 16px;
      gap: 8px;
      flex-direction: column;
    }
    .arbib-about__ef-logo { height: 38px; }
    .arbib-about__ef-text { align-items: center; }
  }
  }
/* END_SECTION:arbib-about */
/* START_SECTION:arbib-application-modal (INDEX:2) */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,500;1,400;1,500&family=Inter:wght@400;500;600;700&family=Great+Vibes&display=swap');

  .arbib-app {
    position: fixed;
    inset: 0;
    z-index: var(--arbib-z-application-modal, 1200);
    background: rgba(10, 10, 10, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    overflow-y: auto;
    color: #1a1a1a;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .arbib-app *,
  .arbib-app *::before,
  .arbib-app *::after { box-sizing: border-box; }
  .arbib-app[hidden] { display: none !important; }
  .arbib-app.is-open { opacity: 1; pointer-events: auto; }

  /* Equal top / bottom breathing room (padding matches on both sides). */
  .arbib-app__inner {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
  }

  .arbib-app__card {
    width: 100%;
    max-width: 680px;
    background: #ffffff;
    border-radius: 3px;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  /* ==================== HEADER ==================== */
  .arbib-app__header {
    background: #084a2f;
    color: #ffffff;
    padding: 22px 32px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .arbib-app__brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }
  .arbib-app__brand-eyebrow {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #9C7A4A;
    font-weight: 600;
    line-height: 1;
  }
  .arbib-app__brand-title {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.15;
    color: #ffffff;
  }
  .arbib-app__close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 6px 8px;
    line-height: 1;
    transition: color 0.2s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
  }
  .arbib-app__close:hover { color: #ffffff; transform: rotate(90deg); }
  .arbib-app__close svg { width: 20px; height: 20px; display: block; }

  /* ==================== PROGRESS RAIL ==================== */
  .arbib-app__rail {
    background: #0d4030;
    padding: 14px 32px;
    display: flex;
    gap: 5px;
    align-items: center;
  }
  .arbib-app__bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 2px;
    transition: background 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .arbib-app__bar.is-done { background: #9C7A4A; }
  .arbib-app__bar.is-current { background: #ffffff; }

  /* ==================== BODY ==================== */
  .arbib-app__form {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
  }
  .arbib-app__body {
    background: #f8f6f2;
    padding: 30px 40px;
    position: relative;
    flex: 1;
    min-height: 380px;
  }

  .arbib-app__step {
    display: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .arbib-app__step.is-active {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .arbib-app__step-header { margin: 0 0 22px; }
  .arbib-app__step-eyebrow {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #084a2f;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .arbib-app__step-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.15;
    color: #0e0e0e;
    margin: 0 0 8px;
    letter-spacing: -0.005em;
  }
  .arbib-app__step-title-dot { font-style: italic; color: #084a2f; }
  .arbib-app__step-sub {
    font-size: 13.5px;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 18px;
    max-width: 520px;
  }

  /* ==================== FIELDS ==================== */
  .arbib-app__field { margin-bottom: 18px; }
  .arbib-app__field:last-child { margin-bottom: 0; }

  /* Side-by-side field pairs (Name+Company, Email+Phone). */
  .arbib-app__row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
  }
  .arbib-app__row2 > .arbib-app__field { margin-bottom: 0; }

  .arbib-app__label,
  .arbib-app__qlabel {
    display: block;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #555555;
    font-weight: 600;
    margin-bottom: 7px;
  }
  .arbib-app__qlabel { margin-bottom: 10px; }
  .arbib-app__req { color: #b04a2f; margin-left: 4px; }
  .arbib-app__helper {
    font-size: 12.5px;
    color: #7a7770;
    margin-bottom: 10px;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.5;
  }

  .arbib-app__input,
  .arbib-app__textarea,
  .arbib-app__select {
    width: 100%;
    background: #ffffff;
    border: 1px solid #ddd8d0;
    border-radius: 2px;
    padding: 11px 14px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14.5px;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    line-height: 1.4;
  }
  .arbib-app__textarea { min-height: 84px; resize: vertical; line-height: 1.55; }
  .arbib-app__input:focus,
  .arbib-app__textarea:focus,
  .arbib-app__select:focus {
    border-color: #084a2f;
    box-shadow: 0 0 0 3px rgba(8, 74, 47, 0.08);
  }
  .arbib-app__input.is-error,
  .arbib-app__textarea.is-error,
  .arbib-app__select.is-error {
    border-color: #b04a2f;
    box-shadow: 0 0 0 3px rgba(176, 74, 47, 0.08);
  }
  .arbib-app__input::placeholder,
  .arbib-app__textarea::placeholder { color: #a8a59e; }

  .arbib-app__error {
    color: #b04a2f;
    font-size: 12px;
    margin-top: 6px;
    line-height: 1.4;
    display: none;
  }
  .arbib-app__error.is-shown { display: block; }

  /* ==================== PILL OPTIONS ==================== */
  .arbib-app__options { display: flex; flex-wrap: wrap; gap: 8px; }
  .arbib-app__pill {
    background: #ffffff;
    border: 1px solid #ddd8d0;
    color: #2a2a2a;
    padding: 10px 18px;
    border-radius: 2px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
    line-height: 1.3;
    user-select: none;
  }
  .arbib-app__pill:hover { border-color: #084a2f; color: #084a2f; }
  .arbib-app__pill.is-selected {
    background: #084a2f;
    border-color: #084a2f;
    color: #ffffff;
  }
  .arbib-app__pill.is-selected:hover { background: #063820; border-color: #063820; }

  /* ==================== YES / NO ==================== */
  .arbib-app__yn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #e8e3d8;
  }
  .arbib-app__field:has(> .arbib-app__yn):last-child .arbib-app__yn { border-bottom: none; padding-bottom: 0; }
  .arbib-app__yn-q {
    font-size: 13.5px;
    color: #2a2a2a;
    line-height: 1.5;
    flex: 1;
  }
  .arbib-app__yn-btns { display: flex; gap: 6px; flex-shrink: 0; }
  .arbib-app__yn-btn {
    background: #ffffff;
    border: 1px solid #ddd8d0;
    color: #2a2a2a;
    padding: 6px 22px;
    border-radius: 2px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
    line-height: 1.4;
  }
  .arbib-app__yn-btn:hover { border-color: #084a2f; color: #084a2f; }
  .arbib-app__yn-btn.is-selected {
    background: #084a2f;
    border-color: #084a2f;
    color: #ffffff;
  }

  /* ==================== NOTICE ==================== */
  .arbib-app__notice {
    background: #ffffff;
    border-left: 3px solid #084a2f;
    padding: 18px 22px;
    font-size: 13.5px;
    line-height: 1.7;
    color: #333333;
    border-radius: 2px;
    margin-top: 4px;
  }
  .arbib-app__notice strong { color: #084a2f; font-weight: 600; }
  .arbib-app__notice p { margin: 0 0 12px; }
  .arbib-app__notice p:last-child { margin-bottom: 0; }

  /* ==================== ACCREDITED ==================== */
  .arbib-app__accredited { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
  .arbib-app__cbrow {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #ddd8d0;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
  }
  .arbib-app__cbrow:hover { border-color: #084a2f; }
  .arbib-app__cbrow.is-checked { border-color: #084a2f; background: #eef4f0; }
  .arbib-app__cbrow--warn.is-checked { border-color: #b04a2f; background: #fdf4f0; }
  .arbib-app__cbinput { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
  .arbib-app__cbox {
    width: 18px;
    height: 18px;
    border: 1.5px solid #999999;
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 2px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  .arbib-app__cbrow.is-checked .arbib-app__cbox {
    background: #084a2f;
    border-color: #084a2f;
  }
  .arbib-app__cbrow.is-checked .arbib-app__cbox::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
  }
  .arbib-app__cbrow--warn.is-checked .arbib-app__cbox {
    background: #b04a2f;
    border-color: #b04a2f;
  }
  .arbib-app__cbrow-label { font-size: 13px; line-height: 1.6; color: #333333; }
  .arbib-app__cbrow-label strong { color: #0e0e0e; font-weight: 600; }

  .arbib-app__warning {
    margin-top: 12px;
    padding: 12px 16px;
    background: #fdf4f0;
    border: 1px solid #e8c5b5;
    border-left: 3px solid #b04a2f;
    border-radius: 2px;
    font-size: 13px;
    color: #7a2f1a;
    line-height: 1.55;
  }

  /* ==================== KICKER ==================== */
  .arbib-app__kicker {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #9C7A4A;
    font-weight: 700;
    margin: 4px 0 10px;
  }
  .arbib-app__field:first-child .arbib-app__kicker { margin-top: 0; }

  /* ==================== LEGAL + AGREE ==================== */
  .arbib-app__legal {
    background: #ffffff;
    border: 1px solid #ddd8d0;
    border-radius: 2px;
    padding: 14px 18px;
    font-size: 12.5px;
    line-height: 1.65;
    color: #333333;
    margin-bottom: 10px;
  }
  .arbib-app__legal p { margin: 0 0 10px; }
  .arbib-app__legal p:last-child { margin-bottom: 0; }

  .arbib-app__agree {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: #eef4f0;
    border: 1px solid rgba(8, 74, 47, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
  }
  .arbib-app__agree:hover { border-color: #084a2f; }
  .arbib-app__agree.is-checked { background: rgba(8, 74, 47, 0.10); }
  .arbib-app__agree-input { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
  .arbib-app__agree .arbib-app__cbox { border-color: #084a2f; margin-top: 1px; }
  .arbib-app__agree.is-checked .arbib-app__cbox {
    background: #084a2f;
    border-color: #084a2f;
  }
  .arbib-app__agree.is-checked .arbib-app__cbox::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
  }
  .arbib-app__agree-label {
    font-size: 13px;
    font-weight: 500;
    color: #084a2f;
    line-height: 1.5;
  }

  /* ==================== SIGNATURE ==================== */
  .arbib-app__sig-box {
    background: #ffffff;
    border: 1px solid #ddd8d0;
    border-radius: 2px;
    padding: 16px 20px;
    margin-top: 4px;
  }
  .arbib-app__sig-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd8d0;
    padding: 4px 0 6px;
    font-family: 'Great Vibes', 'Fraunces', 'Brush Script MT', cursive;
    font-size: 32px;
    line-height: 1.2;
    color: #084a2f;
    outline: none;
    transition: border-color 0.2s ease;
  }
  .arbib-app__sig-input:focus { border-bottom-color: #084a2f; }
  .arbib-app__sig-input::placeholder {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #a8a59e;
    font-style: normal;
  }
  .arbib-app__sig-input.is-error { border-bottom-color: #b04a2f; }
  .arbib-app__sig-meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 12px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #777777;
    font-weight: 600;
  }
  .arbib-app__sig-meta span span { color: #1a1a1a; font-weight: 700; }

  /* ==================== SUCCESS ==================== */
  .arbib-app__success { padding: 60px 20px 40px; text-align: center; }
  .arbib-app__success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #eef4f0;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: arbib-app-pop 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .arbib-app__success-icon svg { width: 28px; height: 28px; stroke: #084a2f; }
  @keyframes arbib-app-pop {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }
  .arbib-app__success-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 34px;
    font-weight: 400;
    color: #0e0e0e;
    margin: 0 0 14px;
    line-height: 1.15;
  }
  .arbib-app__success-text {
    color: #555555;
    font-size: 15px;
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.6;
  }
  .arbib-app__success-text strong { color: #0e0e0e; font-weight: 600; }
  .arbib-app__success-foot {
    margin-top: 30px;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #9C7A4A;
    font-weight: 600;
  }

  /* ==================== SUBMIT ERROR ==================== */
  .arbib-app__submit-error {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(176, 74, 47, 0.08);
    border: 1px solid rgba(176, 74, 47, 0.25);
    border-radius: 2px;
    color: #7a2f1a;
    font-size: 13px;
  }

  /* ==================== FOOTER ==================== */
  .arbib-app__foot {
    background: #ffffff;
    border-top: 1px solid #e8e3d8;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .arbib-app__step-counter {
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #9C7A4A;
    font-weight: 700;
    text-align: center;
  }
  .arbib-app__btn {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 2px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    line-height: 1;
  }
  .arbib-app__btn--back {
    background: transparent;
    color: #555555;
    padding: 12px 14px;
    visibility: hidden;
    letter-spacing: 0.1em;
  }
  .arbib-app__btn--back:hover { color: #084a2f; }
  .arbib-app__btn--back.is-shown { visibility: visible; }
  .arbib-app__btn--next {
    background: #084a2f;
    color: #ffffff;
    min-width: 150px;
  }
  .arbib-app__btn--next:hover { background: #0c6840; }
  .arbib-app__btn--next:active { transform: translateY(1px); }
  .arbib-app__btn--next:disabled,
  .arbib-app__btn--next[aria-busy='true'] { opacity: 0.6; cursor: progress; }

  .arbib-app.is-success .arbib-app__rail,
  .arbib-app.is-success .arbib-app__foot { display: none; }

  /* Step 9 is the tallest step (verification + 3 Y/N).
     Tighten vertical breathing room so the modal fits within the
     viewport with symmetric top / bottom space around it. */
  .arbib-app--step-9 .arbib-app__inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  /* ==================== RESPONSIVE ==================== */
  @media (max-width: 640px) {
    .arbib-app__inner { padding: 20px 12px; }
    .arbib-app__header { padding: 18px 22px 16px; }
    .arbib-app__brand-title { font-size: 18px; }
    .arbib-app__rail { padding: 12px 22px; }
    .arbib-app__body { padding: 24px 22px; min-height: 340px; }
    .arbib-app__step-title { font-size: 24px; }
    .arbib-app__foot { padding: 14px 22px; }
    .arbib-app__btn { padding: 12px 20px; font-size: 10.5px; }
    .arbib-app__btn--next { min-width: 120px; }
    .arbib-app__sig-input { font-size: 26px; }
    .arbib-app__yn { flex-direction: column; align-items: flex-start; gap: 10px; }
    .arbib-app__yn-btns { align-self: stretch; }
    .arbib-app__yn-btn { flex: 1; padding: 8px 12px; }
    .arbib-app__row2 { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
    .arbib-app__row2 > .arbib-app__field { margin-bottom: 18px; }
  }

  body.arbib-app-open { overflow: hidden; }
/* END_SECTION:arbib-application-modal */
/* START_SECTION:arbib-header (INDEX:5) */
.arbib-header-section { position: relative; z-index: var(--arbib-z-nav, 200); }

  arbib-header.arbib-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--arbib-z-nav, 200);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 24px;
    padding: 14px 48px 14px 24px;
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: padding 0.5s var(--arbib-ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
                background 0.5s var(--arbib-ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
                border-bottom-color 0.5s var(--arbib-ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
                box-shadow 0.5s var(--arbib-ease-out, cubic-bezier(0.16, 1, 0.3, 1));
  }

  arbib-header.arbib-header[data-state='solid'] {
    background: rgba(248, 246, 242, 0.92);
    border-bottom-color: rgba(0, 0, 0, 0.06);
    padding: 10px 48px 12px;
  }

  .arbib-header__logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    justify-self: start;
  }
  .arbib-header__logo-svg { width: 56px; height: auto; flex-shrink: 0; display: block; }
  .arbib-header__logo-img { height: 50px; width: auto; display: block; transform: translateY(4px); }
  .arbib-header__wordmark-group {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.15;
    margin-top: 20px;
  }
  .arbib-header__wordmark {
    font-family: var(--arbib-font-sans, 'Inter', sans-serif);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--arbib-black, #0e0e0e);
  }
  .arbib-header__wordmark-sub {
    font-family: var(--arbib-font-sans, 'Inter', sans-serif);
    font-weight: 400;
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--arbib-black, #0e0e0e);
    margin-top: 3px;
    white-space: nowrap;
  }
  .arbib-header__logo:hover .arbib-header__wordmark,
  .arbib-header__logo:hover .arbib-header__wordmark-sub {
    color: var(--arbib-green, #084a2f);
    transition: color 0.3s;
  }

  .arbib-header__nav { display: flex; justify-self: center; }
  .arbib-header__links { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
  .arbib-header__link {
    font-family: var(--arbib-font-sans, 'Inter', sans-serif);
    color: var(--arbib-black, #0e0e0e);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    line-height: inherit;
  }
  .arbib-header__link:hover { color: var(--arbib-green, #084a2f); }
  .arbib-header__link.is-active { color: var(--arbib-green, #084a2f); }

  .arbib-header__cta {
    background: var(--arbib-green, #084a2f);
    color: #ffffff;
    border: none;
    padding: 7px 18px;
    border-radius: 999px;
    font-family: var(--arbib-font-sans, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    line-height: 1.4;
    transition: background 0.3s, transform 0.3s;
    white-space: nowrap;
    justify-self: end;
  }
  .arbib-header__cta:hover { background: var(--arbib-green-mid, #0c6840); transform: translateY(-1px); }

  .arbib-header__burger { display: none; }
  .arbib-header__drawer { display: none; }

  @media (max-width: 900px) {
    arbib-header.arbib-header { padding: 10px 18px; grid-template-columns: auto 1fr auto; column-gap: 10px; }
    arbib-header.arbib-header[data-state='solid'] { padding: 8px 18px; }
    .arbib-header__nav { display: none; }

    .arbib-header__logo-svg { width: 38px; }
    .arbib-header__logo-img { height: 34px; transform: none; }
    .arbib-header__logo { gap: 0; }
    .arbib-header__wordmark-group {
      display: inline-flex;
      align-items: center;
      margin-top: 0;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }
    .arbib-header__wordmark { font-size: 12px; letter-spacing: 1.5px; }
    .arbib-header__wordmark-sub { font-size: 8px; letter-spacing: 2px; margin-top: 2px; backface-visibility: hidden; transform: translateZ(0); will-change: auto; }

    .arbib-header__cta { padding: 6px 14px; font-size: 10px; letter-spacing: 1px; }

    .arbib-header__burger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      position: absolute;
      top: 100%;
      left: 18px;
      margin-top: 10px;
      width: 42px;
      height: 42px;
      padding: 11px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 10px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
      cursor: pointer;
      box-sizing: border-box;
    }
    .arbib-header__burger span { display: block; width: 100%; height: 1.5px; background: var(--arbib-black, #0e0e0e); transition: transform 0.3s var(--arbib-ease-out, cubic-bezier(0.16, 1, 0.3, 1)), opacity 0.3s; }
    .arbib-header__burger.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
    .arbib-header__burger.is-open span:nth-child(2) { opacity: 0; }
    .arbib-header__burger.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

    .arbib-header__drawer {
      display: block;
      position: absolute;
      top: 100%;
      left: 18px;
      margin-top: 62px;
      min-width: 200px;
      background: rgba(248, 246, 242, 0.98);
      backdrop-filter: blur(22px) saturate(180%);
      -webkit-backdrop-filter: blur(22px) saturate(180%);
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
      padding: 8px;
      opacity: 0;
      transform: translateY(-8px);
      pointer-events: none;
      transition: opacity 0.3s var(--arbib-ease-out, cubic-bezier(0.16, 1, 0.3, 1)), transform 0.3s var(--arbib-ease-out, cubic-bezier(0.16, 1, 0.3, 1));
    }
    .arbib-header__drawer.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .arbib-header__drawer-links { list-style: none; margin: 0; padding: 0; }
    .arbib-header__drawer-link {
      display: block;
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 12px 14px;
      font-family: var(--arbib-font-sans, 'Inter', sans-serif);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--arbib-black, #0e0e0e);
      text-decoration: none;
      cursor: pointer;
      border-radius: 8px;
      transition: background 0.2s, color 0.2s;
    }
    .arbib-header__drawer-link:hover { background: rgba(8, 74, 47, 0.06); color: var(--arbib-green, #084a2f); }
    .arbib-header__drawer-link--portal { margin-top: 4px; background: var(--arbib-green, #084a2f); color: #fff; text-align: center; }
    .arbib-header__drawer-link--portal:hover { background: var(--arbib-green-mid, #0c6840); color: #fff; }
  }
/* END_SECTION:arbib-header */
/* START_SECTION:arbib-legal-modal (INDEX:7) */
.arbib-legal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    color: var(--arbib-charcoal, #1a1a1a);
    font-family: var(--arbib-font-sans, 'Inter', sans-serif);
    -webkit-font-smoothing: antialiased;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--arbib-ease-out, cubic-bezier(0.16, 1, 0.3, 1));
  }
  .arbib-legal[hidden] { display: none !important; }
  .arbib-legal.is-open { opacity: 1; pointer-events: auto; }
  .arbib-legal__close {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--arbib-charcoal, #1a1a1a);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s var(--arbib-ease-out, cubic-bezier(0.16, 1, 0.3, 1));
    z-index: 1;
  }
  .arbib-legal__close:hover {
    background: var(--arbib-green, #084a2f);
    border-color: var(--arbib-green, #084a2f);
    color: #fff;
    transform: rotate(90deg);
  }
  .arbib-legal__close svg { width: 18px; height: 18px; }
  .arbib-legal__inner {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 56px 20px;
    box-sizing: border-box;
  }
  .arbib-legal__card {
    width: 100%;
    max-width: 720px;
    max-height: 100%;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 1px 0 var(--arbib-border-soft, #f0ede6), 0 8px 40px rgba(20, 24, 22, 0.06);
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .arbib-legal__body {
    overflow-y: auto;
    padding: 48px 56px;
  }
  .arbib-legal__body { font-size: 15px; line-height: 1.7; color: var(--arbib-charcoal, #1a1a1a); }
  .arbib-legal__body h1 { font-family: var(--arbib-font-display, 'Cormorant Garamond', serif); font-size: 38px; line-height: 1.1; margin: 0 0 8px; color: var(--arbib-black, #0e0e0e); }
  .arbib-legal__body h2 { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--arbib-green, #084a2f); margin: 36px 0 12px; font-weight: 600; }
  .arbib-legal__body h3 { font-size: 15px; margin: 24px 0 8px; color: var(--arbib-black, #0e0e0e); }
  .arbib-legal__body p { margin: 0 0 16px; color: var(--arbib-text-mid, #555); }
  .arbib-legal__body ul, .arbib-legal__body ol { margin: 0 0 16px; padding-left: 22px; color: var(--arbib-text-mid, #555); }
  .arbib-legal__body li { margin-bottom: 6px; }
  .arbib-legal__body strong { color: var(--arbib-black, #0e0e0e); font-weight: 600; }
  .arbib-legal__body a { color: var(--arbib-green, #084a2f); }
  .arbib-legal__loading { text-align: center; color: var(--arbib-text-light, #999); padding: 40px 0; font-size: 14px; }
  body.arbib-legal-open { overflow: hidden !important; }
  html:has(.arbib-legal.is-open) { overflow: hidden !important; height: auto !important; }
  .arbib-legal.is-open { overflow: hidden !important; height: 100vh !important; }
  @media (max-width: 640px) {
    .arbib-legal__inner { padding: 70px 16px 40px; }
    .arbib-legal__close { top: 16px; right: 16px; width: 40px; height: 40px; }
    .arbib-legal__card { padding: 32px 24px 28px; }
    .arbib-legal__body h1 { font-size: 30px; }
  }
/* END_SECTION:arbib-legal-modal */
/* START_SNIPPET:product-media-gallery-content-styles (INDEX:197) */
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:201) */
#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:search-modal (INDEX:210) */
/* 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:214) */
.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 */
