/* assets/calculator.css – Configurator universal + Offer Modal + Multi-line */

.calc-universal {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: 0 12px 40px rgba(20, 32, 43, 0.08);
    overflow: hidden;
    transition: box-shadow .3s ease;
}

    .calc-universal:hover {
        box-shadow: 0 20px 56px rgba(20, 32, 43, 0.12);
    }

.calc-universal-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.calc-form {
    padding: 28px 26px 30px;
    background: var(--paper);
    border-right: 1px solid var(--line);
}

    .calc-form .calc-head {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }

        .calc-form .calc-head svg {
            width: 28px;
            height: 28px;
            color: var(--amber-solid);
            flex-shrink: 0;
        }

        .calc-form .calc-head h3 {
            font-size: 20px;
            font-weight: 700;
            margin: 0;
        }

        .calc-form .calc-head .sub {
            font-size: 13px;
            color: var(--slate);
            margin-top: 2px;
        }

    .calc-form .field-group {
        margin-bottom: 16px;
    }

        .calc-form .field-group label {
            display: block;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .04em;
            color: var(--slate);
            margin-bottom: 5px;
        }

.type-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

    .type-tabs .type-tab {
        padding: 10px 6px;
        text-align: center;
        border: 1.5px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        font-size: 13px;
        font-weight: 600;
        color: var(--slate);
        transition: all .15s ease;
        cursor: pointer;
        font-family: var(--f-body);
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

        .type-tabs .type-tab:hover {
            border-color: var(--glass);
            color: var(--ink);
        }

        .type-tabs .type-tab.active {
            border-color: var(--amber-solid);
            background: rgba(226, 163, 59, 0.08);
            color: var(--amber-solid);
        }

        .type-tabs .type-tab svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

.profile-btns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

    .profile-btns .profile-btn {
        padding: 8px 4px;
        text-align: center;
        border: 1.5px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        font-size: 12px;
        font-weight: 600;
        color: var(--slate);
        transition: all .15s ease;
        cursor: pointer;
        font-family: var(--f-body);
        min-height: 44px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        line-height: 1.3;
    }

        .profile-btns .profile-btn:hover {
            border-color: var(--glass);
            color: var(--ink);
        }

        .profile-btns .profile-btn.active {
            border-color: var(--glass-deep);
            background: rgba(46, 110, 149, 0.06);
            color: var(--glass-deep);
        }

        .profile-btns .profile-btn .badge {
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--amber-solid);
            letter-spacing: .04em;
        }

            .profile-btns .profile-btn .badge.winkhaus {
                color: var(--glass-deep);
                font-size: 8px;
            }

        .profile-btns .profile-btn.winkhaus-btn {
            border-color: var(--glass);
            background: rgba(46, 110, 149, 0.04);
            color: var(--glass-deep);
            font-weight: 700;
            gap: 4px;
        }

            .profile-btns .profile-btn.winkhaus-btn:hover {
                background: rgba(46, 110, 149, 0.12);
                border-color: var(--glass-deep);
            }

            .profile-btns .profile-btn.winkhaus-btn svg {
                width: 16px;
                height: 16px;
            }

.color-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.color-btn {
    position: relative;
    padding: 8px 4px;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    cursor: pointer;
    transition: all .15s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-height: 58px;
    font-family: var(--f-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--slate);
}

    .color-btn .swatch {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 1.5px solid rgba(0,0,0,0.08);
        flex-shrink: 0;
        transition: transform .15s ease;
    }

    .color-btn:hover {
        border-color: var(--glass);
        transform: translateY(-2px);
    }

        .color-btn:hover .swatch {
            transform: scale(1.05);
        }

    .color-btn.active {
        border-color: var(--amber-solid);
        background: rgba(226, 163, 59, 0.06);
        color: var(--ink);
        box-shadow: 0 0 0 2px var(--amber-solid);
    }

    .color-btn .label {
        font-size: 9.5px;
        line-height: 1.2;
        text-align: center;
        max-width: 100%;
        word-break: break-word;
    }

    .color-btn .check-mark {
        display: none;
        position: absolute;
        top: -6px;
        right: -6px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--amber-solid);
        color: #fff;
        font-size: 11px;
        line-height: 18px;
        text-align: center;
        font-weight: 700;
    }

    .color-btn.active .check-mark {
        display: block;
    }

.swatch-alb {
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
    border-color: #ccc;
}

.swatch-cafeniu_afara {
    background: linear-gradient(135deg, #8B6B3D, #6B4F2A);
}

.swatch-cafeniu_deplin {
    background: linear-gradient(135deg, #5C3A1E, #3D2512);
}

.swatch-cafeniu_innauntru {
    background: linear-gradient(135deg, #A67B5B, #7A5A3E);
}

.swatch-stejar_auriu {
    background: linear-gradient(135deg, #C69C6D, #A87B4E);
}

.swatch-nuc {
    background: linear-gradient(135deg, #5A3A22, #3D2616);
}

.swatch-stejar_inchis {
    background: linear-gradient(135deg, #4A2F1A, #2E1D0F);
}

.swatch-antracit {
    background: linear-gradient(135deg, #5A5A5A, #3A3A3A);
}

.dimension-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

    .dimension-row .field-group {
        margin-bottom: 0;
    }

    .dimension-row input {
        width: 100%;
        padding: 10px 10px;
        border: 1.5px solid var(--line);
        border-radius: var(--radius);
        font-family: var(--f-body);
        font-size: 14px;
        background: #fff;
        color: var(--ink);
        transition: border-color .15s ease;
        min-height: 44px;
    }

        .dimension-row input:focus {
            border-color: var(--glass);
            outline: none;
        }

        .dimension-row input:disabled,
        .dimension-row input:read-only {
            opacity: 0.6;
            cursor: not-allowed;
            background: var(--paper-2);
            border-color: var(--line);
        }

        .dimension-row input.input-error {
            border-color: #d32f2f !important;
            background: #fff0f0 !important;
        }

.dimension-error-msg {
    color: #d32f2f;
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
    display: none;
}

    .dimension-error-msg.show {
        display: block;
    }

.child-safety-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0 4px;
}

    .child-safety-wrap input[type="checkbox"] {
        width: 20px;
        height: 20px;
        accent-color: var(--amber-solid);
        cursor: pointer;
        flex-shrink: 0;
        margin: 0;
    }

    .child-safety-wrap label {
        font-size: 13.5px;
        font-weight: 600;
        color: var(--ink);
        cursor: pointer;
    }

    .child-safety-wrap .hint {
        font-size: 12px;
        color: var(--slate);
        font-weight: 400;
    }

.lock-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--glass);
}

    .lock-icon svg {
        width: 100%;
        height: 100%;
        display: block;
    }

.calc-result-universal {
    margin-top: 18px;
    padding: 16px 20px;
    background: var(--paper-2);
    border-radius: var(--radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

    .calc-result-universal .price {
        font-family: var(--f-display);
        font-size: 28px;
        font-weight: 700;
        color: var(--glass-deep);
    }

        .calc-result-universal .price small {
            font-size: 14px;
            font-weight: 400;
            color: var(--slate);
            margin-left: 4px;
        }

    .calc-result-universal .note {
        font-size: 12px;
        color: var(--slate);
    }

    .calc-result-universal .btn {
        flex-shrink: 0;
    }

.preview-toggle-mobile {
    display: none;
    width: 100%;
    margin-top: 14px;
    padding: 12px;
    border: 1.5px solid var(--glass);
    border-radius: var(--radius);
    background: rgba(46, 110, 149, 0.04);
    color: var(--glass-deep);
    font-weight: 700;
    font-size: 14px;
    gap: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s ease;
    font-family: var(--f-body);
}

    .preview-toggle-mobile:hover {
        background: rgba(46, 110, 149, 0.08);
    }

    .preview-toggle-mobile svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

.calc-preview {
    padding: 28px 26px 30px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    position: relative;
}

    .calc-preview .preview-label {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--slate);
        font-weight: 600;
        margin-bottom: 16px;
        align-self: flex-start;
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .calc-preview .preview-label .icon-wrap {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 12px;
            height: 12px;
        }

            .calc-preview .preview-label .icon-wrap svg {
                width: 100%;
                height: 100%;
                display: block;
            }

    .calc-preview .preview-container {
        width: 100%;
        max-width: 340px;
        aspect-ratio: 4/5;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--paper-2);
        border-radius: var(--radius-lg);
        border: 1px solid var(--line);
        padding: 12px;
        position: relative;
        overflow: hidden;
        transition: background .3s ease;
    }

        .calc-preview .preview-container svg {
            width: 100%;
            height: 100%;
            display: block;
            border-radius: var(--radius);
        }

    .calc-preview .preview-specs {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px 16px;
        font-size: 12.5px;
        color: var(--slate);
        justify-content: center;
        width: 100%;
        border-top: 1px solid var(--line);
        padding-top: 14px;
    }

        .calc-preview .preview-specs span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .calc-preview .preview-specs .lock-icon {
            width: 14px;
            height: 14px;
            display: inline-flex;
        }

            .calc-preview .preview-specs .lock-icon svg {
                width: 100%;
                height: 100%;
            }

        .calc-preview .preview-specs strong {
            color: var(--ink);
            font-weight: 600;
        }

/* ===== CULORI MAI ÎNGUSTE PENTRU UȘI ===== */
.calc-form.door-type .color-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
}

.calc-form.door-type .color-btn {
    min-height: 44px;
    padding: 4px 2px;
    font-size: 9px;
}

    .calc-form.door-type .color-btn .swatch {
        width: 20px;
        height: 20px;
    }

    .calc-form.door-type .color-btn .label {
        font-size: 7.5px;
        line-height: 1.1;
    }

    .calc-form.door-type .color-btn .check-mark {
        width: 14px;
        height: 14px;
        font-size: 8px;
        line-height: 14px;
        top: -4px;
        right: -4px;
    }

/* ===== ELEMENTE INDISPONIBILE ===== */
.color-btn:disabled,
.profile-btn:disabled,
.type-tab:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(0.8);
    pointer-events: none;
    border-color: var(--line) !important;
    background: var(--paper-2) !important;
    color: var(--slate) !important;
    box-shadow: none !important;
    transform: none !important;
}

/* ===== ICONIȚE ===== */
.icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

    .icon-wrap svg {
        width: 100%;
        height: 100%;
        display: block;
    }

.offer-actions .btn .big-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

    .offer-actions .btn .big-icon svg {
        width: 100%;
        height: 100%;
        display: block;
    }

/* ===== MODAL OFERTĂ – LISTĂ VERTICALĂ ===== */
.calculator-offer-modal .modal-box {
    max-width: 700px;
    padding: 28px 24px 32px;
}

    .calculator-offer-modal .modal-box h3 {
        font-size: 22px;
        margin-bottom: 4px;
        padding-right: 24px;
    }

    .calculator-offer-modal .modal-box .sub {
        color: var(--slate);
        font-size: 14px;
        margin-bottom: 20px;
    }

.offer-summary {
    background: var(--paper);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 22px;
    border: 1px solid var(--line);
    font-size: 13px;
    max-height: 400px;
    overflow-y: auto;
}

.offer-item-block {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 14px;
    margin-bottom: 10px;
}

    .offer-item-block:last-child {
        margin-bottom: 0;
    }

.offer-item-header {
    font-weight: 700;
    font-size: 14px;
    color: var(--glass-deep);
    border-bottom: 1px solid var(--line);
    padding-bottom: 6px;
    margin-bottom: 8px;
}

.offer-item-row {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    font-size: 13px;
}

    .offer-item-row .offer-label {
        color: var(--slate);
        font-weight: 500;
    }

    .offer-item-row .offer-value {
        font-weight: 600;
        text-align: right;
    }

    .offer-item-row .offer-price {
        color: var(--amber-solid);
        font-family: var(--f-display);
        font-weight: 700;
    }

.offer-total {
    display: flex;
    justify-content: flex-end;
    padding: 12px 0 0;
    font-size: 16px;
    font-weight: 700;
    border-top: 2px solid var(--line);
    margin-top: 8px;
}

    .offer-total .total-label {
        margin-right: 20px;
        color: var(--slate);
    }

    .offer-total .total-price {
        color: var(--amber-solid);
        font-family: var(--f-display);
        font-size: 20px;
    }

.offer-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

    .offer-actions .btn {
        padding: 16px 12px;
        font-size: 15px;
        font-weight: 700;
        min-height: 56px;
        border-radius: var(--radius);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-align: center;
        line-height: 1.3;
        border: 1.5px solid var(--line);
        background: #fff;
        color: var(--ink);
        transition: all 0.15s ease;
    }

        .offer-actions .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        }

    .offer-actions .btn-primary {
        border-color: var(--amber-solid);
        background: var(--amber-solid);
        color: #201302;
    }

        .offer-actions .btn-primary:hover {
            background: #d6931f;
            border-color: #d6931f;
        }

    .offer-actions .btn .small-label {
        font-size: 11px;
        font-weight: 400;
        color: var(--slate);
    }

    .offer-actions .btn-primary .small-label {
        color: rgba(32,19,2,0.7);
    }

.offer-callback-form {
    display: none;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

    .offer-callback-form.open {
        display: block;
    }

    .offer-callback-form .form-row {
        margin-bottom: 12px;
    }

        .offer-callback-form .form-row input {
            width: 100%;
            padding: 12px 14px;
            border: 1.5px solid var(--line);
            border-radius: var(--radius);
            font-size: 15px;
            font-family: var(--f-body);
            background: var(--paper);
            min-height: 48px;
        }

            .offer-callback-form .form-row input:focus {
                border-color: var(--glass);
                outline: none;
            }

    .offer-callback-form .btn-block {
        width: 100%;
    }

    .offer-callback-form .form-success {
        display: none;
        align-items: center;
        gap: 10px;
        background: #F0F7F2;
        border: 1px solid #CFE6D8;
        color: var(--ok);
        border-radius: var(--radius);
        padding: 14px 16px;
        font-size: 13.8px;
        font-weight: 600;
        margin-top: 12px;
    }

        .offer-callback-form .form-success.show {
            display: flex;
        }

        .offer-callback-form .form-success svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

.offer-note {
    font-size: 12px;
    color: var(--slate);
    margin-top: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

    .offer-note .icon-wrap {
        width: 16px;
        height: 16px;
    }

/* ===== MODAL PREVIZUALIZARE MOBIL ===== */
.preview-modal .modal-box {
    max-width: 460px;
    padding: 20px 18px 24px;
}

    .preview-modal .modal-box h3 {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 18px;
        margin-bottom: 12px;
    }

        .preview-modal .modal-box h3 .icon-wrap {
            width: 16px;
            height: 16px;
        }

    .preview-modal .modal-box .preview-container {
        width: 100%;
        aspect-ratio: 4/5;
        max-width: 340px;
        margin: 0 auto;
        background: var(--paper-2);
        border-radius: var(--radius-lg);
        border: 1px solid var(--line);
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .preview-modal .modal-box .preview-container svg {
            width: 100%;
            height: 100%;
            border-radius: var(--radius);
        }

    .preview-modal .modal-box .preview-specs-modal {
        display: flex;
        flex-wrap: wrap;
        gap: 6px 14px;
        justify-content: center;
        margin-top: 14px;
        font-size: 12.5px;
        color: var(--slate);
        border-top: 1px solid var(--line);
        padding-top: 14px;
    }

        .preview-modal .modal-box .preview-specs-modal span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .preview-modal .modal-box .preview-specs-modal .lock-icon {
            width: 14px;
            height: 14px;
            display: inline-flex;
        }

            .preview-modal .modal-box .preview-specs-modal .lock-icon svg {
                width: 100%;
                height: 100%;
            }

        .preview-modal .modal-box .preview-specs-modal strong {
            color: var(--ink);
        }

/* ===== MULTI-LINE ===== */
.add-line-btn {
    margin: 16px 0 8px;
    width: 100%;
    padding: 12px;
    border: 2px dashed var(--line);
    background: transparent;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius);
    color: var(--slate);
    transition: all 0.15s;
}

    .add-line-btn:hover {
        border-color: var(--glass);
        color: var(--ink);
        background: rgba(46,110,149,0.04);
    }

.remove-line-btn {
    background: none;
    border: none;
    color: var(--slate);
    font-size: 18px;
    padding: 4px 8px;
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 5;
}

    .remove-line-btn:hover {
        color: #d32f2f;
    }

.line-item {
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
}

    .line-item:last-of-type {
        border-bottom: none;
    }

#calculator-total {
    font-size: 24px;
    font-weight: 700;
    text-align: right;
    padding-top: 12px;
    border-top: 2px solid var(--line);
    margin-top: 12px;
}

    #calculator-total .total-label {
        color: var(--slate);
        font-weight: 500;
        margin-right: 16px;
    }

    #calculator-total .total-price {
        color: var(--amber-solid);
        font-family: var(--f-display);
        font-size: 28px;
    }

.calculator-actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 16px;
    align-items: center;
}

    .calculator-actions .btn {
        min-height: 48px;
        font-size: 15px;
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 760px) {
    .calc-universal-inner {
        grid-template-columns: 1fr;
    }

    .calc-form {
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding: 20px 16px 22px;
    }

    .calc-preview {
        display: none;
    }

    .preview-toggle-mobile {
        display: flex;
    }

    .calc-result-universal {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

        .calc-result-universal .btn {
            width: 100%;
            justify-content: center;
        }

    .type-tabs {
        grid-template-columns: repeat(3, 1fr);
    }

    .profile-btns {
        grid-template-columns: repeat(2, 1fr);
    }

    .color-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calc-form.door-type .color-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dimension-row {
        grid-template-columns: 1fr 1fr;
    }

    .calculator-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .calculator-actions .btn {
            width: 100%;
            justify-content: center;
        }

    .offer-item-row {
        font-size: 12px;
    }

    .offer-item-block {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .calc-form {
        padding: 16px 12px 18px;
    }

    .type-tabs .type-tab {
        font-size: 11px;
        padding: 8px 4px;
        min-height: 40px;
    }

        .type-tabs .type-tab svg {
            width: 14px;
            height: 14px;
        }

    .profile-btns .profile-btn {
        font-size: 10.5px;
        padding: 6px 2px;
        min-height: 38px;
    }

    .color-btn {
        min-height: 50px;
        padding: 6px 2px;
    }

        .color-btn .swatch {
            width: 22px;
            height: 22px;
        }

        .color-btn .label {
            font-size: 8.5px;
        }

    .calc-form.door-type .color-btn {
        min-height: 38px;
        padding: 4px 2px;
    }

        .calc-form.door-type .color-btn .swatch {
            width: 16px;
            height: 16px;
        }

        .calc-form.door-type .color-btn .label {
            font-size: 7px;
        }

    .dimension-row {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

        .dimension-row input {
            font-size: 13px;
            padding: 8px 8px;
            min-height: 38px;
        }

    .calc-result-universal .price {
        font-size: 22px;
    }

        .calc-result-universal .price small {
            font-size: 12px;
        }

    .offer-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }

        .offer-actions .btn {
            padding: 14px 12px;
            min-height: 48px;
            flex-direction: row;
            gap: 12px;
        }

            .offer-actions .btn .big-icon {
                width: 20px;
                height: 20px;
            }

    .calculator-offer-modal .modal-box {
        padding: 20px 14px 24px;
    }

    .preview-modal .modal-box {
        padding: 16px 12px 18px;
        max-width: 100%;
        margin: 8px;
    }

        .preview-modal .modal-box .preview-container {
            max-width: 280px;
        }

    #calculator-total {
        font-size: 20px;
    }

        #calculator-total .total-price {
            font-size: 22px;
        }

    .offer-item-row {
        font-size: 11px;
        padding: 2px 0;
    }

    .offer-item-block {
        padding: 8px 10px;
    }

    .offer-item-header {
        font-size: 13px;
    }
}

@media (min-width: 861px) {
    .preview-toggle-mobile {
        display: none !important;
    }

    .preview-modal .modal-overlay {
        display: none !important;
    }
}
