.sedrux-m2-price-suffix {
    color: #374151;
    font-size: 0.72em;
    font-weight: 600;
    white-space: nowrap;
}

.sedrux-m2-calculator {
    border: 1px solid #d7dde5;
    border-radius: 8px;
    background: #ffffff;
    color: #151b24;
    font-family: inherit;
    margin: 16px 0 0;
    max-width: 460px;
    padding: 16px;
}

.sedrux-m2-calculator__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 12px;
}

.sedrux-m2-calculator__fields {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sedrux-m2-calculator__label {
    color: #283240;
    display: grid;
    font-size: 13px;
    font-weight: 600;
    gap: 6px;
}

.sedrux-m2-calculator__input {
    border: 1px solid #b8c1cc;
    border-radius: 6px;
    color: #111827;
    font: inherit;
    min-height: 42px;
    padding: 8px 10px;
    width: 100%;
}

.sedrux-m2-calculator__input:focus {
    border-color: #0f6f5f;
    box-shadow: 0 0 0 3px rgba(15, 111, 95, 0.14);
    outline: none;
}

.sedrux-m2-calculator__result {
    background: #f4f7f6;
    border-radius: 6px;
    display: grid;
    gap: 6px;
    margin-top: 14px;
    padding: 12px;
}

.sedrux-m2-calculator__row {
    align-items: center;
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    line-height: 1.35;
}

.sedrux-m2-calculator__row span:first-child {
    color: #4b5563;
}

.sedrux-m2-calculator__row strong {
    color: #111827;
    font-weight: 700;
    text-align: right;
}

.sedrux-m2-calculator__row--total {
    border-top: 1px solid #d7dde5;
    font-size: 16px;
    margin-top: 4px;
    padding-top: 8px;
}

@media (max-width: 520px) {
    .sedrux-m2-calculator {
        max-width: none;
        padding: 14px;
    }

    .sedrux-m2-calculator__fields {
        grid-template-columns: 1fr;
    }
}
