.xix-calculator {
    background: #f9f6f2;
    padding: 32px 24px;
    max-width: 900px;
    margin: 0 auto;
    color: #111;
    font-family: 'Segoe UI', Arial, sans-serif;
    /* border-radius and box-shadow set via Elementor controls */
}

.xix-calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.xix-calculator-sliders {
    min-width: 0;
}
.xix-calculator-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}
.xix-calculator-form {
    margin-bottom: 0;
}
.xix-calculator-field {
    margin-bottom: 24px;
}
.xix-calculator-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
.xix-calculator-slider {
    width: 100%;
}
.xix-calculator-sales {
    float: right;
    font-size: 0.96em;
    margin-top: 4px;
}
.xix-calculator-result {
    background: #f5eee6;
    padding: 24px;
    border-radius: 14px;
    text-align: center;
    margin-top: 0;
}
.xix-calculator-revenue-label {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 6px;
}
.xix-calculator-revenue {
    font-size: 2.1em;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
}
.xix-calculator-desc {
    font-size: 0.96em;
    color: #555;
    margin-bottom: 12px;
}
.xix-calculator-cta {
    margin-top: 18px;
}
.xix-calculator-btn {
    display: inline-block;
    background: #b99d75;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.2s;
}
.xix-calculator-btn:hover {
    background: #a48b6b;
}

/* Responsive: stack columns on small screens */
@media (max-width: 900px) {
    .xix-calculator-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .xix-calculator-result {
        margin-top: 16px;
    }
}
