/** Shopify CDN: Minification failed

Line 13:19 Expected identifier but found whitespace
Line 13:21 Unexpected "{"
Line 13:30 Expected ":"

**/


/* CSS from section stylesheet tags */
.zahlung-versand-section {
  padding: 40px 20px;
  background-color: {{ section.settings.background_color }};
  text-align: center;
}

.zahlung-versand-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.zahlung-block,
.versand-block {
  width: 100%;
}

.zahlung-versand-section h2 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.zahlung-versand-section .icon-row {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.zahlung-versand-section .icon-row img {
  height: 38px;
  display: inline-block;
}

.zahlung-versand-section .text-block {
  font-size: 18px;
  margin-bottom: 20px;
}

.zahlung-versand-section .shopify-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--color-button, #f2c200);
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.zahlung-versand-section .shopify-button:hover {
  background-color: #e0b400;
}

@media screen and (min-width: 768px) {
  .zahlung-versand-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .zahlung-block,
  .versand-block {
    width: 48%;
  }

  .zahlung-versand-section h2 {
    font-size: 16x;
  }

  .zahlung-versand-section .text-block {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .zahlung-versand-section .shopify-button {
    margin-top: 15px;
  }
}