/** Shopify CDN: Minification failed

Line 38:19 Expected identifier but found whitespace
Line 38:21 Unexpected "{"
Line 38:30 Expected ":"
Line 39:8 Expected identifier but found whitespace
Line 39:10 Unexpected "{"
Line 39:19 Expected ":"
Line 44:16 Expected identifier but found whitespace
Line 44:18 Unexpected "{"
Line 44:27 Expected ":"
Line 44:55 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:hero-product-cta (INDEX:20) */
.hero-cta-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.hero-cta-overlay {
  padding: 0 0 40px 40px;
}

.hero-cta-button {
  display: inline-block;
  background-color: {{ section.settings.button_bg_color }};
  color: {{ section.settings.button_text_color }};
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: {{ section.settings.button_radius }}px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  letter-spacing: 0.3px;
}

.hero-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* Mobile: Bild etwas kleiner, Button etwas kompakter, Padding reduziert */
@media screen and (max-width: 749px) {
  .hero-cta-section {
    min-height: 420px;
  }

  .hero-cta-overlay {
    padding: 0 0 24px 20px;
  }

  .hero-cta-button {
    font-size: 16px;
    padding: 13px 28px;
  }
}
/* END_SECTION:hero-product-cta */