/* Produktpreis-Platzhalter oben */
.csk-price-placeholder {
    color: #e00;
    font-size: 1.5em;
    font-weight: 700;
}


.csk-form {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    margin: 20px 0;
    max-width: 560px;
    font-family: inherit;
}

.csk-notice {
    background: #fff3cd;
    border-left: 4px solid #e8a800;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 0.9em;
    color: #6b4700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.csk-field {
    margin-bottom: 20px;
}

.csk-label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
    font-size: 0.95em;
}

.csk-required {
    color: #e00;
    margin-left: 2px;
}

.csk-hint {
    display: block;
    font-size: 0.82em;
    color: #888;
    margin-top: 4px;
}

.csk-file-input {
    display: block;
    width: 100%;
    padding: 8px 12px;
    border: 2px dashed #ccc;
    border-radius: 6px;
    background: #fafafa;
    cursor: pointer;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.csk-file-input:hover {
    border-color: #e00;
}

.csk-number-input {
    width: 100px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    text-align: center;
}

.csk-select {
    width: 100%;
    max-width: 320px;
    padding: 9px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    background: #fff;
    cursor: pointer;
}

.csk-radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.csk-radio {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.95em;
    color: #333;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.15s;
}

.csk-radio:has(input:checked) {
    background: #e00;
    color: #fff;
    border-color: #e00;
}

.csk-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.95em;
    color: #333;
}

/* Preisbox */
.csk-price-box {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 24px;
}

.csk-price-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 0.9em;
    color: #555;
    border-bottom: 1px solid #eee;
}

.csk-discount-row {
    color: #008800;
    font-weight: 500;
}

.csk-price-total {
    display: flex;
    justify-content: space-between;
    padding: 12px 0 4px;
    font-size: 1.15em;
    font-weight: 700;
    color: #333;
}

#csk-total-price {
    color: #e00;
    font-size: 1.2em;
}

.csk-tax-note {
    font-size: 0.78em;
    color: #999;
    text-align: right;
}
