.miet-plugin-wrapper {
    max-width: 600px;
    padding: 20px;
    border: 1px solid #ddd;
    background: #f9f9f9;
}
.preis-box {
    margin-top: 20px;
    padding: 15px;
    background: #e7f4ff;
    border-left: 5px solid #2196F3;
}
.datepicker {
    padding: 8px;
    border: 1px solid #ccc;
    cursor: pointer;
}

/*
 * Frontend-Feinschliff (Produktseiten)
 * - verhindert Überlaufen von Inputs (box-sizing)
 * - stabilisiert das Mengenfeld innerhalb des Rahmens
 * - sorgt für saubere Abstände bei Start/Ende (Wrap auf mobile)
 */
.mmp-product-form input,
.mmp-product-form select,
.mmp-product-form textarea {
    box-sizing: border-box;
    max-width: 100%;
}

.mmp-product-form label {
    box-sizing: border-box;
    max-width: 100%;
}

.mmp-product-form .mmp-qty-label {
    max-width: 110px;
}

.mmp-product-form .mmp-date-row {
    row-gap: 10px;
}

.mmp-cart-hint {
    margin-top: 6px;
}

@media (max-width: 480px) {
    .mmp-product-form .mmp-qty-label {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
}