.wcp-form {
    /* Full Width Hack Background */
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding: 100px 20px !important;
    box-sizing: border-box;
    
    background-color: var(--color-light) !important;
    /* Feines Raster */
    background-image: 
        linear-gradient(var(--color-light) 2px, transparent 2px),
        linear-gradient(90deg, var(--color-light) 2px, transparent 2px),
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
    background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
    
    /* ZENTRIERUNG ERZWINGEN */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* Horizontal zentrieren */
    justify-content: center !important;
    text-align: center !important;
    border: none !important;
}

.wcp-label {
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    color: var(--color-grey);
    margin-bottom: 30px;
    background: #fff;
    padding: 5px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    display: inline-block; /* Damit er nicht breiter ist als der Text */
}

/* Wrapper für Input & Euro-Zeichen */
.wcp-input-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important; /* Inhalt im Wrapper zentrieren */
    border-bottom: none !important;
    margin-bottom: 40px;
    width: auto; /* Nicht 100% damit sie zusammenrücken */
    position: relative;
}

/* Euro Zeichen (rechts vom Input) */
.wcp-currency {
    order: 2; /* Rechts */
    font-size: 40px;
    font-weight: 300;
    color: var(--color-dark);
    margin-left: 5px; /* Näher dran */
    opacity: 0.4;
    line-height: 1;
}

/* Das Eingabefeld */
.wcp-input.text {
    order: 1; /* Links */
    background: transparent !important;
    border: none !important;
    
    /* SCHRIFT ZENTRIEREN */
    text-align: center !important; /* Zentriert im Input */
    
    font-size: clamp(60px, 8vw, 100px) !important;
    font-weight: 700 !important;
    color: var(--color-dark) !important;
    
    width: auto; /* Wird via JS gesteuert */
    min-width: 50px; 
    max-width: 100%;
    
    outline: none !important;
    padding: 0 !important;
    line-height: 1;
    height: auto !important;
    font-family: var(--font-primary) !important;
    
    /* Browser-Standard (Pfeile) entfernen */
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Chrome/Safari/Edge Pfeile entfernen */
.wcp-input.text::-webkit-outer-spin-button,
.wcp-input.text::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Placeholder zentrieren */
.wcp-input.text::placeholder {
    color: #ccc;
    font-size: 0.4em;
    text-align: center !important; 
    transform: translateY(-8px); /* Leicht hochschieben optisch */
}

/* Button */
.wcp-submit-btn {
    background-color: var(--color-dark) !important;
    color: #fff !important;
    min-width: auto; /* Reset */
    padding: 15px 40px !important; /* Normale Größe */
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--color-dark) !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    margin-top: 10px;
    width: auto !important; /* Nicht volle Breite */
}

.wcp-submit-btn:hover {
    background-color: transparent !important;
    color: var(--color-dark) !important;
    transform: scale(1.05);
}

@media only screen and (max-width: 768px) {
    /* Mobile Korrekturen */
    .wcp-form { 
        padding: 60px 15px !important;
        margin-left: -15px !important; /* Oft braucht Elementor hier weniger Reset */
        margin-right: -15px !important;
        width: calc(100% + 30px) !important;
        left: 0; right: 0;
    }
    .wcp-currency { font-size: 30px; }
    .wcp-input.text { font-size: 50px !important; }
}
