/** Shopify CDN: Minification failed

Line 19:24 Unexpected "{"
Line 19:36 Expected ":"
Line 19:40 Unexpected "{"
Line 26:26 Unexpected "{"
Line 26:38 Expected ":"
Line 35:26 Unexpected "{"
Line 35:38 Expected ":"
Line 39:26 Unexpected "{"
Line 39:38 Expected ":"
Line 45:26 Unexpected "{"
... and 76 more hidden warnings

**/


/* CSS from section stylesheet tags */
#wow-card-stack-scroll-{{ section_id }} {
    width: 100%;
    min-height: 200vh;
    position: relative;
    overflow: hidden;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-card-stack-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 100%;
    margin: 0 auto;
  }

  /* Left Column - Sticky Content */
  #wow-card-stack-scroll-{{ section_id }} .wow-card-stack-left {
    padding: 2rem 0;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-sticky {
    position: sticky;
    top: 10vh;
    height: fit-content;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-card-stack-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-subtitle {
    margin: 0;
    opacity: 0.8;
    letter-spacing: 0.05em;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-title {
    margin: 0;
    line-height: 1.2;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-description {
    line-height: 1.6;
    opacity: 0.9;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
  }

  /* Button Styles */
  #wow-card-stack-scroll-{{ section_id }} .wow-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-button-primary {
    background-color: #000;
    color: #fff;
    border-color: #000;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-button-primary:hover {
    background-color: #fff;
    color: #000;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-button-secondary {
    background-color: transparent;
    color: currentColor;
    border-color: currentColor;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-button-secondary:hover {
    background-color: currentColor;
    color: #fff !important;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-button-link {
    background: none;
    border: none;
    padding: 0.5rem 0;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-button-link:hover {
    opacity: 0.7;
  }

  /* Right Column - Card Stack */
  #wow-card-stack-scroll-{{ section_id }} .wow-card-stack-right {
    position: relative;
    min-height: 150vh;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-card-stack-wrapper {
    position: relative;
    height: 100%;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-card {
    position: sticky;
    top: 15vh;
    margin: 0 auto 4rem;
    padding: clamp(2rem, 4vw, 3rem);
    will-change: transform;
    transition: all 0.3s ease-out;
    transform-origin: center center;
  }


  #wow-card-stack-scroll-{{ section_id }} .wow-card-inner > * {
    margin: 0;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-card-icon {
    width: fit-content;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-card-icon img {
    max-width: 80px;
    height: auto;
    display: block;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-card-title {
    margin: 0;
    padding: 0;
    line-height: 1.3;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-card-description {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    opacity: 0.9;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-card-title + .wow-card-description {
    margin-top: -1.25rem;
    padding-top: 0;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-card-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
    width: 100%;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-card-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-card-button.wow-button-primary {
    background-color: #000;
    color: #fff;
    border-color: #000;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-card-button.wow-button-primary:hover {
    background-color: #fff;
    color: #000;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-card-button.wow-button-secondary {
    background-color: transparent;
    color: currentColor;
    border-color: currentColor;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-card-button.wow-button-secondary:hover {
    background-color: currentColor;
    color: #fff !important;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-card-button.wow-button-link {
    background: none;
    border: none;
    padding: 0.5rem 0;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  #wow-card-stack-scroll-{{ section_id }} .wow-card-button.wow-button-link:hover {
    opacity: 0.7;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    #wow-card-stack-scroll-{{ section_id }} .wow-card-stack-container {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    #wow-card-stack-scroll-{{ section_id }} .wow-sticky {
      position: relative;
      top: 0;
    }

    #wow-card-stack-scroll-{{ section_id }} .wow-card {
      top: 10vh;
    }
  }

  @media (max-width: 640px) {
    #wow-card-stack-scroll-{{ section_id }} {
      min-height: auto;
    }

    #wow-card-stack-scroll-{{ section_id }} .wow-card {
      margin-bottom: 2rem;
    }

    #wow-card-stack-scroll-{{ section_id }} .wow-buttons,
    #wow-card-stack-scroll-{{ section_id }} .wow-card-buttons {
      flex-direction: column;
    }

    #wow-card-stack-scroll-{{ section_id }} .wow-button,
    #wow-card-stack-scroll-{{ section_id }} .wow-card-button {
      width: 100%;
      text-align: center;
    }
  }