/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 233:0 Unexpected "<"

**/
<style>
    .break-after-amp {
    display: none; /* Hide the break on larger screens */
  }

  @media only screen and (max-width: 749px) {
    .break-after-amp {
      display: block; /* Show the break on small screens */
    }
  }



    /* Container Styles */
    .wrapper--full-padded {
      width: 100%;
      padding: 40px;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      text-align: center;
    }
    .step { margin-bottom: 30px; }
    #nameInput {
      width: 300px;
      margin: 0 auto;
      display: block;
      text-align: center;
      padding: 10px;
      font-size: 1em;
      box-sizing: border-box;
      border: 1px solid #ccc;
      border-radius: 4px;
    }
    #nameInput:focus::placeholder {
    opacity: 0;
    transition: opacity 0.2s ease-out;
  }
  #nameInput:focus::-webkit-input-placeholder {
    opacity: 0;
  }

    @media only screen and (max-width: 749px) {
      #nameInput { width: 80%; }
    }
    .error { color: red; font-size: 0.9em; margin-top: 5px; }

    /* Preview container */
    .preview-container {
      width: 85%;
      margin: 0 auto;
      min-height: 200px;
      border: none;
      border-radius: 8px;
      padding: 20px;
      box-sizing: border-box;
    }
    .preview-placeholder { font-size: 1.2em; color: #999; }
    .preview-row {
      display: flex;
      justify-content: center;
      margin-bottom: 15px;
    }

    /* Letter Preview */
    .letter-preview {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 10px;
      width: 155px !important;
      flex: 0 0 155px !important;
      min-width: 155px !important;
      box-sizing: border-box;
      overflow: visible;
    }
    .letter-preview.space {
      background: transparent;
      border: none;
      color: transparent;
    }

    .letter-preview img {
      width: 150px;
      height: 150px;
      object-fit: contain;
      border: none;
    }
    .letter-preview .fallback {
      font-size: 120px;
    }

    /* Radio Buttons & Swatches */
    .radio__buttons {
      display: flex;
      gap: 1px;
      margin-top: 10px;
      overflow: visible;
    }
    .radio__buttons input[type="radio"] { display: none; }
    .swatch__button {
      width: 32px;
      height: 32px;
      margin: 2px;
      border-radius: 50%;
      border: 1px solid #ccc;
      cursor: pointer;
      transition: border 0.3s ease;
      position: relative;
      overflow: visible;
        background-repeat:  no-repeat;
  background-position: center;
  background-size:     cover;
    }
    .swatch__button:hover { border-color: #007bff; }
    .swatch__button.selected { border: 2px solid #007bff; }
    .swatch__button.sold-out {
      background-color: #e0e0e0;
      border-color: #e0e0e0;
      cursor: not-allowed;
      opacity: 0.6;
      filter: grayscale(100%);
      position: relative;
    }
    .swatch__button.sold-out::after {
      content: "";
      position: absolute;
      width: 95%;
      height: 1px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(45deg);
      background-color: red;
      pointer-events: none;
      z-index: 2;
    }

/* Button Styles nur für den Konfigurator */
#addToCartButton {
  padding: 12px 24px;
  font-size: 1em;
  border: none;
  border-radius: 4px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#addToCartButton:hover:not(.disabled) { background-color: #0056b3; }
#addToCartButton.disabled {
  opacity: 0.5;
  pointer-events: none;
}


    /* Custom Tooltip Styles (Broadcast Theme Inspired) */
    .tooltip-custom {
      position: absolute;
      bottom: -40px; /* Moved up from -50px */
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      color: #333;
      padding: 6px 12px;
      font-size: 12px;
      border-radius: 4px;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.15s ease-in-out;
      z-index: 1000;
      border: 1px solid #ddd;
    }

    .swatch__button:hover .tooltip-custom {
      opacity: 1;
      visibility: visible;
      transition-delay: 0s;
    }




/* ===== Extras-Grid im Konfigurator ===== */
/* Inline-Grid, damit das Grid nur so breit ist wie seine Spalten und zentriert wird */
#extrasSection {
  display: inline-grid !important;             /* statt display:grid */
  grid-template-columns: repeat(4, 155px) !important;
  gap: 16px !important;
  margin: 20px 0 !important;
}

/* Mobil: 2 Spalten */
@media only screen and (max-width: 749px) {
  #extrasSection {
    grid-template-columns: repeat(2, 155px) !important;
  }
}

/* Icon-Box */
#extrasSection .extras-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Bild 150×150 */
#extrasSection .extras-img {
  width: 150px !important;
  height: 150px !important;
  object-fit: contain !important;
  margin-bottom: 2px !important;
}

/* Mengen-Selector schmal halten */
#extrasSection .quantity-selector {
  display: inline-flex !important;
  width: auto !important;
  margin-top: 1px !important;
}






</style>