/** Shopify CDN: Minification failed

Line 117:10 Unexpected "{"
Line 117:19 Expected ":"
Line 118:14 Expected identifier but found whitespace
Line 118:16 Unexpected "{"
Line 118:25 Expected ":"
Line 118:76 Expected ":"
Line 119:17 Expected identifier but found whitespace
Line 119:19 Unexpected "{"
Line 119:28 Expected ":"
Line 119:82 Expected ":"
... and 10 more hidden warnings

**/
.app-cta {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
}

.app-cta__container {
  max-width: 700px;
  margin: 0 auto;
  padding: var(--cta-padding, 3rem);
  background: #f8f8f8;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  text-align: center;
}

.app-cta__heading {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #2c2c2c;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.app-cta__subheading {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: #555;
  margin: 0 0 2rem 0;
  line-height: 1.4;
}

.app-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.app-cta__download-button {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.app-cta__download-button img {
  display: block;
  height: auto;
  max-width: 180px;
}

.app-cta__download-button:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}

.app-cta__learn-more {
  display: inline-block;
  font-size: 0.9375rem;
  color: #666;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.app-cta__learn-more:hover {
  color: #2c2c2c;
}

/* Mobile optimization */
@media screen and (max-width: 749px) {
  .app-cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .app-cta__container {
    padding: calc(var(--cta-padding, 3rem) * 0.67);
  }

  .app-cta__heading {
    margin-bottom: 0.75rem;
  }

  .app-cta__subheading {
    margin-bottom: 1.5rem;
  }

  .app-cta__buttons {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .app-cta__download-button img {
    max-width: 150px;
  }

  .app-cta__learn-more {
    font-size: 0.875rem;
  }
}

/* Dynamic padding from settings */
.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;
  }
}