/* ----------------------------------------------
 *  METAL PRICE CALCULATOR (Новый дизайн)
 * --------------------------------------------- */

.mpc-calculator {
    width: 330px;
    padding: 20px;
    font-family: Arial, sans-serif;
    margin: 10px 0;
    box-sizing: border-box;
    text-align: center;
    border-radius: 8px;
}

.mpc-calculator * {
    box-sizing: border-box;
}

.mpc-title {
    font-size: 1.2em;
    color: #333;
    margin: 0 0 10px;
    font-weight: normal;
}

.mpc-price-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 5px;
}

.mpc-price {
    font-size: 2em;
    color: #FF0000; /* Красный как на скриншоте */
    font-weight: bold;
}

.mpc-currency {
    font-size: 1.2em;
    color: #FF0000;
    margin-left: 5px;
}

.mpc-footer {
    font-size: 0.9em;
    color: #000;
    margin-bottom: 5px;
    font-style: italic;
}

.mpc-subtitle {
    font-size: 0.9em;
    color: #333;
    margin-bottom: 20px;
}

.mpc-main-weight-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.mpc-main-weight-container label {
    font-size: 1em;
    color: #333;
    white-space: nowrap;
}

.mpc-main-weight {
    width: 100px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    text-align: right;
}

.mpc-main-weight:focus {
    outline: none;
    border-color: #223d10; /* Зелёный акцент */
}

.mpc-main-weight::-webkit-outer-spin-button,
.mpc-main-weight::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.mpc-main-weight[type=number] {
    -moz-appearance: textfield;
}

.mpc-radio-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mpc-radio-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.mpc-radio-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    background: #223d10; /* Зелёный как на скриншоте */
    color: #fff;
    border-radius: 2px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s;
}

.mpc-radio-label.active {
    background: #CCD2C8;
    color: #223d10;
    border: 1px solid #223d10;
}
.mpc-radio-label.hover {
    background: #334F21;
    color: #fff;
}
.mpc-radio {
    display: none; /* Скрываем настоящие радио, стилизуем лейблы */
}
