/** Shopify CDN: Minification failed

Line 27:8 Expected identifier but found whitespace
Line 27:10 Unexpected "{"
Line 27:19 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:fingerprint-file-upload (INDEX:54) */
.fingerprint-upload-container {
  display: flex;
  align-items: center;
  margin-top: 15px;
  gap: 10px;
}
.fingerprint-file-name {
  font-style: italic;
  color: #666;
  margin: 0;
}
.fingerprint-notice {
  font-weight: bold;
  margin-bottom: 10px;
  color: {{ section.settings.notice_color }};
}
.fingerprint-error {
  display: none;
  margin-top: 5px;
  color: red;
}
.fingerprint-success {
  display: none;
  margin-top: 5px;
  color: green;
}
/* END_SECTION:fingerprint-file-upload */

/* START_SECTION:store-location-landing (INDEX:114) */
/* ============ SCOPED STYLES — MOBILE FIRST ============ */
  /* NO font-family declarations anywhere: all text inherits the
     theme's global typography. Colors resolve from the color scheme
     assigned to this section. */

  .ri-lp {
    max-width: 480px;
    margin: 0 auto;
    padding: 22px 18px 120px;
    color: rgb(var(--color-foreground));
    -webkit-text-size-adjust: 100%;
  }

  /* Hero */
  .ri-lp__hero { text-align: center; margin-bottom: 24px; }
  .ri-lp__eyebrow {
    font-size: 10px; letter-spacing: 2.2px; text-transform: uppercase;
    color: rgba(var(--color-foreground), .6); margin: 0 0 10px; font-weight: 600;
  }
  .ri-lp__title {
    font-size: 25px; line-height: 1.2; margin: 0;
  }

  /* Press marquee */
  .ri-lp__press { text-align: center; margin-bottom: 28px; }
  .ri-lp__marquee {
    overflow: hidden; position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  }
  .ri-lp__marquee-track {
    display: flex; align-items: center; gap: 28px;
    width: max-content;
    animation: ri-lp-marquee 22s linear infinite;
  }
  .ri-lp__marquee-track img {
    width: 92px; height: 26px;
    flex: 0 0 92px;
    object-fit: contain; object-position: center;
    filter: grayscale(1); opacity: .75;
  }
  /* CNBC file is white letters on an OPAQUE light-grey canvas —
     invert + brightness renders it as a dark logo on a blown-out
     (invisible) background. Delete when the file is replaced. */
  .ri-lp__marquee-track img.ri-lp__logo--cnbc {
    filter: grayscale(1) invert(1) brightness(12);
  }
  @keyframes ri-lp-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .ri-lp__marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  }
  .ri-lp__press-note {
    font-size: 11px; color: rgba(var(--color-foreground), .5); margin: 12px 0 0;
  }

  /* Store cards */
  .ri-lp__stores { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
  .ri-lp__stores-label {
    font-size: 10px; letter-spacing: 2.2px; text-transform: uppercase;
    color: rgba(var(--color-foreground), .5); font-weight: 600;
    text-align: center; margin: 0 0 6px;
  }
  .ri-lp__store {
    display: flex; align-items: center; gap: 12px;
    padding: 14px;
    border: 1px solid rgba(var(--color-foreground), .12);
    border-radius: 14px;
    background: rgb(var(--color-background));
    text-decoration: none; color: rgb(var(--color-foreground));
    box-shadow: 0 4px 14px -8px rgba(var(--color-foreground), .18);
    transition: border-color .15s ease, box-shadow .15s ease, transform .1s ease;
  }
  .ri-lp__store:active { transform: scale(.985); }
  .ri-lp__store:hover {
    border-color: rgba(var(--color-foreground), .35);
    box-shadow: 0 8px 20px -8px rgba(var(--color-foreground), .22);
  }
  .ri-lp__store-icon {
    flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%;
    color: rgb(var(--color-foreground));
    border: 1px solid rgba(var(--color-foreground), .18);
    background: transparent;
  }
  .ri-lp__store-text {
    display: flex; flex-direction: column; gap: 2px;
    min-width: 0; flex: 1;
  }
  .ri-lp__store-city {
    font-size: 17px; font-weight: 600; line-height: 1.15;
  }
  .ri-lp__store-meta { font-size: 12px; color: rgba(var(--color-foreground), .55); }
  .ri-lp__store-cta {
    flex-shrink: 0;
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12.5px; font-weight: 600; letter-spacing: .4px;
    color: rgb(var(--color-button-text));
    background: rgb(var(--color-button));
    padding: 9px 14px;
    border-radius: 999px;
    white-space: nowrap;
  }

  /* Slim trust row — content-based columns */
  .ri-lp__trust {
    display: flex; align-items: stretch; justify-content: center;
    border-top: 1px solid rgba(var(--color-foreground), .1);
    border-bottom: 1px solid rgba(var(--color-foreground), .1);
    padding: 12px 0;
    margin-bottom: 14px;
  }
  .ri-lp__trust-item {
    flex: 1 1 auto;
    display: flex; flex-direction: column; align-items: center;
    justify-content: flex-start; gap: 3px;
    text-align: center;
    padding: 0 9px;
    min-width: 0;
  }
  .ri-lp__trust-item + .ri-lp__trust-item {
    border-left: 1px solid rgba(var(--color-foreground), .1);
  }
  .ri-lp__trust-num {
    font-size: 15px; font-weight: 600; line-height: 1;
    white-space: nowrap;
  }
  .ri-lp__trust-label {
    font-size: 9.5px; line-height: 1.3;
    color: rgba(var(--color-foreground), .55);
  }

  /* Footnote */
  .ri-lp__footnote {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 7px;
    font-size: 11.5px; font-weight: 500;
    color: rgba(var(--color-foreground), .55);
  }
  .ri-lp__footnote i { font-style: normal; opacity: .5; }

  /* Tablet / desktop */
  @media (min-width: 750px) {
    .ri-lp { max-width: 560px; padding-top: 28px; }
    .ri-lp__title { font-size: 32px; }
  }
/* END_SECTION:store-location-landing */