.section-template--28915065586005__custom_liquid_XfFHHR-padding {
  padding-top: calc(0px * 0.75);
  padding-bottom: calc(0px  * 0.75);
}

@media screen and (min-width: 750px) {
  .section-template--28915065586005__custom_liquid_XfFHHR-padding {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

/* Variantenauswahl Modal - EXAKT wie in c24-tabs-section.liquid */
.c24-variant-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c24-variant-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.c24-variant-modal-content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 10001;
}

.c24-variant-modal-content h3 {
  margin: 0 0 16px 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #111;
}

.c24-variant-modal-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1.2rem;
  margin-bottom: 20px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s;
  color: #333;
}

.c24-variant-modal-select option {
  color: #333;
  background: #fff;
}

.c24-variant-modal-select:hover,
.c24-variant-modal-select:focus {
  border-color: #FFBD59;
  outline: none;
}

.c24-variant-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.c24-variant-modal-cancel,
.c24-variant-modal-add {
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-size: 1.1rem;
}

.c24-variant-modal-cancel {
  background: #f0f0f0;
  color: #333;
}

.c24-variant-modal-cancel:hover {
  background: #e0e0e0;
}

.c24-variant-modal-add {
  background: #111;
  color: #fff;
}

.c24-variant-modal-add:hover {
  background: #FFBD59;
  color: #111;
}


/* SEO-Textblock Styles */
.seo-text-section {
  background: linear-gradient(180deg, #f9f9f9 0%, #f4f4f4 100%);
  padding: 80px 20px;
  border-top: 1px solid #e5e5e5;
}

.seo-text-container {
  max-width: 960px;
  margin: 0 auto;
}

.seo-text-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 36px 0;
  text-align: center;
  line-height: 1.3;
}

.seo-text-content {
  columns: 1;
}

.seo-text-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  line-height: 1.9;
  color: #444;
  margin: 0 0 24px 0;
  text-align: left;
}

.seo-text-content p:last-child {
  margin-bottom: 0;
}

.seo-text-content a {
  color: #111;
  text-decoration: underline;
  text-decoration-color: #FFBD59;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.seo-text-content a:hover {
  color: #FFBD59;
  text-decoration-color: #FFBD59;
}

.seo-text-content strong {
  color: #111;
  font-weight: 600;
}

/* Tablet */
@media (min-width: 768px) {
  .seo-text-section {
    padding: 90px 40px;
  }
  
  .seo-text-title {
    font-size: 2.5rem;
    margin-bottom: 42px;
  }
  
  .seo-text-content p {
    font-size: 1.3rem;
    line-height: 1.95;
    text-align: center;
    margin-bottom: 28px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .seo-text-section {
    padding: 100px 60px;
  }
  
  .seo-text-title {
    font-size: 2.75rem;
    margin-bottom: 48px;
  }
  
  .seo-text-content p {
    font-size: 1.4rem;
    line-height: 2;
    margin-bottom: 32px;
  }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .seo-text-title {
    font-size: 3rem;
  }
  
  .seo-text-content p {
    font-size: 1.5rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .seo-text-section {
    padding: 60px 20px;
  }
  
  .seo-text-title {
    font-size: 1.75rem;
    margin-bottom: 28px;
  }
  
  .seo-text-content p {
    font-size: 1.09rem;
    line-height: 1.85;
    margin-bottom: 20px;
    text-align: center;
  }
}


