

/* Start:/local/components/utlab/calculator/templates/.default/style.css?17884185217014*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.calc {
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.calc__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.calc__logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a3c5e;
    letter-spacing: 1px;
}

.calc__id {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
}

.calc__filter {
    display: flex;
    gap: 20px;
}

.calc__filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc__filter-item label {
    font-size: 13px;
    font-weight: 600;
    color: #495057;
}

.calc__filter-item select {
    padding: 6px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
}

.calc__body {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 20px;
    padding: 30px;
    background: #fff;
}

.calc__complectation {
    background: #f1f3f5;
    padding: 20px;
    border-radius: 10px;
}

.calc__complectation form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #343a40;
}

.form-group input[type="text"],
.form-group select {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
}

.btn-calc {
    padding: 10px 20px;
    background: #1a3c5e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.btn-calc:hover {
    background: #0f2a42;
}

/* Радио-кнопки-картинки */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 6px;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: border-color 0.2s, background 0.2s;
    background: #fff;
    width: 75px;
}

.radio-card:hover {
    background: #e9ecef;
}

.radio-card input[type="radio"] {
    display: none;
}

.radio-card .radio-image {
    display: block;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #dee2e6;
}

.radio-card .radio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.radio-card .radio-label {
    font-size: 12px;
    margin-top: 4px;
    text-align: center;
    color: #495057;
}

.radio-card input[type="radio"]:checked+.radio-image {
    border-color: #1a3c5e;
    box-shadow: 0 0 0 2px #1a3c5e;
}

.radio-card:has(input:checked) {
    border-color: #1a3c5e;
    background: #e9f0f7;
}

.no-options {
    color: #adb5bd;
    font-size: 14px;
}

.calc__view {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.calc__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a3c5e;
}

.calc__img {
    text-align: center;
    width: 100%;
}

.size-info {
    background: #e9ecef;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 500;
}

.size-info .price {
    display: block;
    font-size: 20px;
    color: #d63384;
    margin-top: 4px;
}

.param-images {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.param-image-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.param-label {
    font-weight: 600;
    font-size: 13px;
    color: #495057;
}

.param-image-block img {
    width: 80px;
    height: 80px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 4px;
    background: #fff;
    margin-top: 5px;
    object-fit: cover;
}

.no-image {
    color: #adb5bd;
    font-size: 14px;
    margin-top: 5px;
}

.calc__final {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calc__price {
    background: #e9f0f7;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.total-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
}

.total-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #1a3c5e;
    margin: 5px 0;
}

.note {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-top: 8px;
}

.calc__final-complectation {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.calc__final-complectation h4 {
    margin-top: 0;
    font-size: 16px;
    color: #1a3c5e;
}

.calc__final-complectation ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px;
}

.calc__final-complectation ul li {
    padding: 4px 0;
    font-size: 14px;
    border-bottom: 1px dashed #dee2e6;
}

.calc__final-complectation ul li:last-child {
    border-bottom: none;
}

.tile-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tile-btn {
    padding: 8px 16px;
    background: #f1f3f5;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.tile-btn:hover {
    background: #e9ecef;
}

.tile-btn.active {
    background: #1a3c5e;
    color: #fff;
    border-color: #1a3c5e;
}

/* Центральная картинка модели */
.model-image {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
}

.calc__view .no-image {
    color: #adb5bd;
    font-size: 14px;
}

.btn-order {
    display: inline-block;
    padding: 12px 30px;
    background: #f5a732;
    color: #fff;
    font-weight: 700;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.btn-order:hover {
    background: #c08021;
}
.color-swatch {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 2px solid #dee2e6;
    margin: 0 auto;
}
.color-radio .radio-label {
    margin-top: 4px;
}
.color-block {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    margin-top: 5px;
}
.param-image-block .color-block {
    width: 80px;
    height: 80px;
}

@media (max-width: 992px) {
    .calc__body {
        grid-template-columns: 1fr;
    }

    .calc__header {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .calc__filter {
        flex-wrap: wrap;
    }
}
/* End */
/* /local/components/utlab/calculator/templates/.default/style.css?17884185217014 */
