/** Shopify CDN: Minification failed

Line 17:12 Unexpected "{"
Line 17:21 Expected ":"
Line 18:16 Expected identifier but found whitespace
Line 18:18 Unexpected "{"
Line 18:27 Expected ":"
Line 18:78 Expected ":"
Line 19:19 Expected identifier but found whitespace
Line 19:21 Unexpected "{"
Line 19:30 Expected ":"
Line 19:84 Expected ":"
... and 19 more hidden warnings

**/

  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }

  @media screen and (min-width: 750px) {
    .section-{{ section.id }}-padding {
      padding-top: {{ section.settings.padding_top }}px;
      padding-bottom: {{ section.settings.padding_bottom }}px;
    }
  }

  /* ===== Promo Banner Internal Spacing ===== */
  :root {
    --pb-sp-xs: 2px;
    --pb-sp-sm: 4px;
    --pb-sp-md: 8px;
    --pb-sp-lg: 12px;
    --pb-sp-xl: 16px;
    --pb-sp-2xl: 20px;
    --pb-sp-3xl: 24px;
    --pb-sp-4xl: 32px;
    --pb-sp-5xl: 40px;
    --pb-sp-6xl: 48px;
    --pb-sp-7xl: 64px;
    --pb-grid-gutter: 20px;
  }

  .promo-banner__background {
    padding: var(--pb-sp-3xl);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .promo-banner__holder {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: var(--pb-sp-4xl) var(--pb-sp-xl);
    color: rgb(var(--color-foreground));
  }

  .promo-banner__section {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    align-items: stretch;
    justify-content: center;
    gap: var(--pb-sp-xl);
  }

  .promo-banner__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--pb-sp-2xl);
  }

  .promo-banner__header .promo-banner__title {
    display: none;
  }

  .promo-banner__btn-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: var(--pb-sp-md);
    width: 100%;
  }

  .promo-banner__promo-eyebrow {
    margin-bottom: calc(var(--pb-sp-md) * -1);
    color: rgb(var(--color-foreground));
  }

  .promo-banner__promo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--pb-sp-md);
  }

  .promo-banner__promo-grid {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .promo-banner__promo-value {
    font-size: clamp(6rem, 12vw, 10rem);
    font-weight: 700;
    line-height: 0.85;
    margin-right: var(--pb-sp-xs);
  }

  .promo-banner__promo-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .promo-banner__promo-unit {
    line-height: 1;
  }

  .promo-banner__promo-suffix {
    line-height: 1;
  }

  .promo-banner__promo-desc {
    margin-top: var(--pb-sp-sm);
    color: rgb(var(--color-foreground));
  }

  .promo-banner__tooltip-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
  }

  .promo-banner__promo-holder .promo-banner__tooltip-row {
    margin-bottom: var(--pb-sp-xl);
  }

  .promo-banner__promo-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: var(--pb-sp-md);
  }

  .promo-banner__fineprint {
    margin-top: var(--pb-sp-lg);
    text-align: right;
    color: rgb(var(--color-foreground));
  }

  /* ===== Tooltip ===== */
  .promo-banner__tooltip {
    position: relative;
    display: inline-block;
    z-index: 3;
  }

  .promo-banner__tooltip-btn-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
  }

  .promo-banner__tooltip-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
  }

  .promo-banner__tooltip-btn-layer {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    transition: background-color 0.2s;
  }

  .promo-banner__tooltip-btn:hover .promo-banner__tooltip-btn-layer {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .promo-banner__tooltip-icon,
  .promo-banner__tooltip-icon-filled {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .promo-banner__tooltip-icon-filled {
    display: none;
  }

  .promo-banner__tooltip.is-open .promo-banner__tooltip-icon {
    display: none;
  }

  .promo-banner__tooltip.is-open .promo-banner__tooltip-icon-filled {
    display: flex;
  }

  .promo-banner__tooltip-icon svg,
  .promo-banner__tooltip-icon-filled svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  .promo-banner__tooltip-content {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: auto;
    left: auto;
    min-width: 200px;
    max-width: 280px;
    width: max-content;
    padding: var(--pb-sp-lg) var(--pb-sp-xl);
    background: {{ section.settings.tooltip_background }};
    color: {{ section.settings.tooltip_text_color }};
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 100;
    font-size: 1.3rem;
    line-height: 1.5;
  }

  .promo-banner__tooltip.is-open .promo-banner__tooltip-content {
    display: block;
  }

  .promo-banner__pointer {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: auto;
    left: auto;
  }

  .promo-banner__tooltip.is-open .promo-banner__pointer {
    display: block;
  }

  .promo-banner__pointer svg {
    display: block;
    width: 16px;
    height: 18px;
  }

  .promo-banner__pointer-border,
  .promo-banner__pointer-body {
    fill: {{ section.settings.tooltip_background }};
  }

  /* ===== Responsive ===== */
  @media screen and (max-width: 480px) {
    .promo-banner__background {
      padding: 0;
    }
  }

  @media screen and (min-width: 990px) {
    .promo-banner__promo-value {
      margin-right: 0;
    }

    .promo-banner__section {
      flex-direction: row;
      gap: var(--pb-grid-gutter);
    }

    .promo-banner__section > div {
      position: relative;
    }

    .promo-banner__header {
      padding-left: 1rem;
      width: 50%;
    }

    .promo-banner__promo-holder {
      margin: var(--pb-sp-2xl) 0 var(--pb-sp-6xl) 0;
    }

    .promo-banner__tooltip-row {
      width: unset;
      margin-bottom: var(--pb-sp-md);
    }

    .promo-banner__background {
      padding: var(--pb-sp-4xl);
    }

    .promo-banner__holder {
      padding: var(--pb-sp-5xl) var(--pb-sp-3xl);
    }

    .promo-banner__header {
      padding: 0 0 0 var(--pb-sp-7xl);
    }

    .promo-banner__header .promo-banner__title {
      display: block;
    }

    .promo-banner__tooltip-row .promo-banner__title {
      display: none;
    }

    .promo-banner__btn-grid {
      flex-direction: column;
      width: 100%;
    }

    .promo-banner__promo-eyebrow {
      padding: var(--pb-sp-md) 0 0 var(--pb-sp-md);
    }

    .promo-banner__promo-desc {
      margin-top: 0;
    }

    .promo-banner__fineprint {
      position: absolute;
      right: 0;
      bottom: 0;
      margin-top: 0;
      width: auto;
    }
  }

  @media screen and (min-width: 1200px) {
    .promo-banner__background {
      padding: var(--pb-sp-4xl);
    }

    .promo-banner__section > div {
      flex: 1 0 50%;
      max-width: 50%;
    }

    .promo-banner__header {
      padding: 0 0 0 var(--pb-sp-7xl);
    }

    .promo-banner__btn-grid {
      flex-direction: row;
      align-items: flex-start;
      justify-content: stretch;
      width: 100%;
    }

    .promo-banner__promo-holder {
      flex-direction: row;
      justify-content: space-between;
      gap: 0;
      padding: var(--pb-sp-2xl) var(--pb-sp-xl) var(--pb-sp-6xl) var(--pb-sp-6xl);
    }

    .promo-banner__tooltip-row {
      width: auto;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      margin-bottom: var(--pb-sp-md);
    }

    .promo-banner__fineprint {
      position: absolute;
      right: 0;
      bottom: 0;
      margin-top: 0;
      width: auto;
    }
  }
