/** Shopify CDN: Minification failed

Line 18:21 Expected identifier but found whitespace
Line 18:23 Unexpected "{"
Line 18:32 Expected ":"
Line 19:10 Expected identifier but found whitespace
Line 19:12 Unexpected "{"
Line 19:21 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:announcement-marquee (INDEX:1) */
.single-marquee-container {
    overflow: hidden;
    background-color: {{ section.settings.background_color }};
    color: {{ section.settings.text_color }};
    padding: 10px 0;
    white-space: nowrap;
    position: relative;
  }

  .single-marquee-track {
    display: inline-flex;
    animation: scroll-marquee linear infinite;
  }

  .single-marquee-track span {
    display: inline-block;
    padding: 0 2rem;
    font-size: 1rem;
    font-weight: 500;
  }

  @keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .single-marquee-container:hover .single-marquee-track {
    animation-play-state: paused;
  }
/* END_SECTION:announcement-marquee */

/* START_SECTION:cyber-day-banner (INDEX:14) */
.cyber {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: clamp(34rem, 42vw, 62rem);
  }

  .cyber__bg,
  .cyber__placeholder {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
  }

  .cyber__bg {
    object-fit: cover;
  }

  .cyber__placeholder {
    background-color: var(--cyber-dark);
  }

  .cyber__placeholder .placeholder-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
  }

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

  .cyber__content {
    position: relative;
    z-index: 3;
    /* Let clicks fall through to the banner-wide link, except on the deal links
       (which re-enable pointer events below). */
    pointer-events: none;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem 4rem;
    padding-left: clamp(2rem, 5vw, 7rem);
    padding-right: clamp(2rem, 5vw, 7rem);
  }

  /* ---- Left lockup ---- */
  .cyber__lockup {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .cyber__return {
    margin: 0 0 1.4rem;
    padding: 0.7em 1.1em;
    background-color: var(--cyber-dark);
    color: var(--cyber-accent);
    font-family: "Baloo 2", var(--font-body-family), sans-serif;
    font-weight: 800;
    font-size: clamp(1.4rem, 2.4vw, 2.8rem);
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border-radius: 1.4rem;
    transform: rotate(-4deg);
  }

  .cyber__title {
    margin: 0;
    font-family: "Archivo Black", var(--font-heading-family), sans-serif;
    font-weight: 400;
    color: var(--cyber-title);
    font-size: clamp(6.4rem, 17vw, 19rem);
    line-height: 0.8;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    -webkit-text-stroke: 0.4rem var(--cyber-dark);
    paint-order: stroke fill;
    text-shadow:
      0.2rem 0.2rem 0 var(--cyber-dark),
      0.4rem 0.4rem 0 var(--cyber-dark),
      0.6rem 0.6rem 0 var(--cyber-dark),
      0.8rem 0.8rem 0 var(--cyber-dark);
  }

  .cyber__date {
    margin: 1.8rem 0 0;
    padding: 0.55em 1.2em;
    background-color: var(--cyber-pill);
    color: var(--cyber-pill-text);
    font-family: "Baloo 2", var(--font-body-family), sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 1.9vw, 2.1rem);
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border-radius: 1.2rem;
    transform: rotate(-2deg);
  }

  /* ---- Right discount rows ---- */
  .cyber__deals {
    display: flex;
    flex-direction: column;
    gap: clamp(1.2rem, 2vw, 2.6rem);
    justify-self: end;
  }

  .cyber__deal {
    display: flex;
    align-items: center;
    gap: clamp(0.8rem, 1.6vw, 2rem);
  }

  /* Linked deals are clickable and sit above the banner-wide link. */
  a.cyber__deal {
    pointer-events: auto;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.15s ease;
  }

  a.cyber__deal:hover {
    transform: scale(1.03);
  }

  .cyber__percent {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    min-width: 2.6em;
    text-align: center;
    line-height: 0.85;
  }

  .cyber__percent-num {
    font-family: "Archivo Black", var(--font-heading-family), sans-serif;
    color: var(--cyber-accent);
    font-size: clamp(3.6rem, 6.4vw, 7rem);
    -webkit-text-stroke: 0.2rem var(--cyber-dark);
    paint-order: stroke fill;
  }

  .cyber__percent-label {
    margin-top: 0.2em;
    font-family: "Baloo 2", var(--font-body-family), sans-serif;
    font-weight: 700;
    color: var(--cyber-dark);
    font-size: clamp(1rem, 1.3vw, 1.5rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .cyber__blob {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(15rem, 22vw, 25rem);
    min-height: clamp(6.5rem, 10vw, 10.5rem);
    padding: 1.2rem 2.4rem;
  }

  .cyber__blob-shape {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0.4rem 0.7rem rgba(0, 0, 0, 0.18));
  }

  .cyber__blob-shape path {
    fill: var(--cyber-blob);
  }

  .cyber__blob-label {
    position: relative;
    z-index: 1;
    font-family: "Baloo 2", var(--font-body-family), sans-serif;
    font-weight: 800;
    color: var(--cyber-pill-text);
    font-size: clamp(1.2rem, 1.6vw, 1.9rem);
    line-height: 1.05;
    letter-spacing: 0.01em;
    text-align: center;
    text-transform: uppercase;
  }

  /* Stretched overlay link: whole banner clickable, no nested anchors.
     Sits below .cyber__content so individual deal links can override it. */
  .cyber__link {
    position: absolute;
    inset: 0;
    z-index: 2;
  }

  /* ---- Mobile: stack vertically ---- */
  @media screen and (max-width: 749px) {
    .cyber {
      min-height: 0;
    }

    .cyber__content {
      grid-template-columns: 1fr;
      justify-items: center;
      text-align: center;
      gap: 3rem;
    }

    .cyber__lockup {
      align-items: center;
    }

    .cyber__title {
      -webkit-text-stroke-width: 0.3rem;
      text-shadow:
        0.2rem 0.2rem 0 var(--cyber-dark),
        0.4rem 0.4rem 0 var(--cyber-dark);
    }

    .cyber__deals {
      width: 100%;
      align-items: center;
      justify-self: center;
    }

    .cyber__deal {
      width: 100%;
      max-width: 34rem;
      justify-content: center;
    }
  }
/* END_SECTION:cyber-day-banner */

/* START_SECTION:hero-conversion (INDEX:22) */
.hero2 {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .hero2--small {
    min-height: clamp(34rem, 50vw, 46rem);
  }

  .hero2--medium {
    min-height: clamp(42rem, 60vw, 58rem);
  }

  .hero2--large {
    min-height: clamp(50rem, 72vw, 72rem);
  }

  .hero2__bg,
  .hero2__placeholder {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
  }

  .hero2__bg {
    object-fit: cover;
  }

  .hero2__placeholder {
    background-color: rgb(var(--color-foreground, 18 18 18));
  }

  .hero2__placeholder .placeholder-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
  }

  /* `.hero2 ` prefix + display:block override Dawn's `div:empty { display:none }`
     reset, which would otherwise hide these empty layer divs. */
  .hero2 .hero2__overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  /* Scrim behind the text guarantees white-text contrast over any photo,
     independent of the merchant's overlay opacity (WCAG 1.4.3). */
  .hero2 .hero2__scrim {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    /* Uniform floor + strong centre keeps the headline readable over a bright,
       busy photo without hiding the image at the edges. */
    background: radial-gradient(ellipse 100% 95% at 50% 45%, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18) 85%);
  }

  .hero2--left .hero2__scrim {
    background: radial-gradient(ellipse 90% 120% at 18% 50%, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.15) 78%);
  }

  .hero2__content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    max-width: 62rem;
    color: #fff;
    text-shadow: 0 0.1rem 1.2rem rgba(0, 0, 0, 0.35);
    padding-left: clamp(2rem, 5vw, 7rem);
    padding-right: clamp(2rem, 5vw, 7rem);
  }

  .hero2--center .hero2__content {
    margin-inline: auto;
    align-items: center;
    text-align: center;
  }

  .hero2--left .hero2__content {
    margin-right: auto;
    align-items: flex-start;
    text-align: left;
  }

  .hero2__eyebrow {
    margin: 0;
    font-family: var(--font-body-family), sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
  }

  .hero2-section .hero2__content .hero2__heading {
    margin: 0;
    color: #fff;
  }

  .hero2__subheading {
    margin: 0;
    max-width: 50ch;
    font-size: clamp(1.5rem, 2vw, 1.9rem);
    line-height: 1.4;
  }

  .hero2__subheading > * {
    margin: 0;
  }

  .hero2__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 0.8rem;
  }

  .hero2--center .hero2__ctas {
    justify-content: center;
  }

  .hero2__cta {
    margin: 0;
  }

  /* Recolor the secondary (outline) CTA to white so it stays legible over the
     darkened photo — the scheme's secondary colors are dark and disappear. */
  .hero2__cta.button--secondary {
    --color-button: 255 255 255;
    --color-button-text: 255 255 255;
    --alpha-button-border: 0.85;
    color: #fff;
  }

  /* ---- USP / trust badge bar ---- */
  .hero2__badges-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 1.6rem 2.4rem;
    align-items: center;
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }

  .hero2__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    text-align: left;
    /* Dark green passes AA on the lime bar (~6.6:1); the scheme's olive
       foreground only reached 3.55:1. Applies to text + currentColor icons. */
    color: #33421f;
  }

  .hero2__badge .svg-wrapper {
    display: inline-flex;
    width: 2.8rem;
    height: 2.8rem;
    flex: 0 0 auto;
  }

  .hero2__badge .svg-wrapper svg {
    width: 100%;
    height: 100%;
  }

  .hero2__badge-text {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
  }

  @media screen and (max-width: 749px) {
    .hero2__content {
      margin-inline: auto;
      align-items: center;
      text-align: center;
    }

    .hero2__ctas {
      width: 100%;
      justify-content: center;
    }

    .hero2__badges-inner {
      grid-template-columns: 1fr;
      gap: 1.4rem;
    }

    .hero2__badge {
      justify-content: center;
    }
  }
/* END_SECTION:hero-conversion */

/* START_SECTION:hero (INDEX:23) */
.hero-carousel-container {
    position: relative;
    width: 100%;
  }
  .hero-carousel-wrapper {
    overflow-x: scroll;
    display: flex;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-align: start;
    scroll-padding: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .hero-carousel-wrapper::-webkit-scrollbar {
    display: none;
  }
  .hero-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
  }
  .hero-slide picture, .hero-slide img {
    width: 100%;
    height: auto;
    display: block;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  .hero-cta {
    position: absolute;
    z-index: 2;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
  }
  .cta-top-left { top: 10%; left: 5%; transform: none; }
  .cta-top-center { top: 10%; left: 50%; transform: translateX(-50%); }
  .cta-top-right { top: 10%; right: 5%; transform: none; }
  .cta-center-left { top: 50%; left: 5%; transform: translateY(-50%); }
  .cta-center-center { top: 50%; left: 50%; transform: translate(-50%, -50%); }
  .cta-center-right { top: 50%; right: 5%; transform: translateY(-50%); }
  .cta-bottom-left { bottom: 10%; left: 5%; transform: none; }
  .cta-bottom-center { bottom: 10%; left: 50%; transform: translateX(-50%); }
  .cta-bottom-right { bottom: 10%; right: 5%; transform: none; }
  .hero-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
  }
  .hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.3s ease;
  }
  .hero-dot.active {
    background: #ffffff;
  }
/* END_SECTION:hero */