@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500;700&family=M+PLUS+Code+Latin:wght@400;500;700&display=swap');

.monument-options-form {
    margin: 20px 0;
    font-family: 'M PLUS 1p', 'M PLUS Code Latin', sans-serif;
}

.mo-field {
    margin-bottom: 25px;
}

.mo-field h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 500;
}

.mo-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.mo-option {
    position: relative;
    cursor: pointer;
    text-align: center;
    width: 100px;
}

.mo-option input[type="radio"],
.mo-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.mo-image {
    display: block;
    border: 2px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.mo-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mo-option input:checked + .mo-image {
    border-color: #007cba;
    box-shadow: 0 0 5px rgba(0,124,186,0.5);
}

.mo-name {
    display: block;
    margin-top: 5px;
    font-size: 14px;
}

/* Кнопки размеров */
.mo-size-option {
    width: 80px;
}

.mo-size-label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background: #f5f5f5;
    font-weight: bold;
    font-size: 14px;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.2s;
}

.mo-size-option input:checked + .mo-size-label {
    border-color: #007cba;
    box-shadow: 0 0 5px rgba(0,124,186,0.5);
}

/* Кнопки типа полировки */
.mo-polish-label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background: #f0f0f0;
    font-weight: bold;
    font-size: 14px;
    border: 2px solid #ddd;
    border-radius: 5px;
    padding: 0 10px;
    transition: border-color 0.2s;
}

.mo-total-price {
    margin: 20px 0;
    font-size: 24px;
    font-weight: bold;
}

.mo-total-price .woocommerce-Price-amount {
    color: #007cba;
}

.single_add_to_cart_button {
    font-family: 'M PLUS 1p', 'M PLUS Code Latin', sans-serif;
    font-weight: 500;
}
