.ac-calc-container-b05ce050 {
    width: 100%;
    margin: 0 auto;
    font-family: 'Montserrat', 'Inter', sans-serif;
}

.ac-calc-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 40px;
    transition: transform 0.3s ease;
}

.ac-calc-header {
    text-align: center;
    margin-bottom: 35px;
}

.ac-calc-title {
    margin: 0 0 12px 0;
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.ac-calc-desc {
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ÚJ, TÁVOLABB ELHELYEZKEDŐ, KIEMELT ÜZEMMÓD VÁLASZTÓ TABS */
.ac-calc-mode-selector-b05ce050 {
    display: flex;
    justify-content: center;
    gap: 24px; /* Nagyobb távolság a fülek között */
    margin-bottom: 40px;
}

.ac-calc-mode-option {
    cursor: pointer;
    perspective: 1000px;
}

.ac-calc-mode-option input {
    display: none;
}

.ac-calc-mode-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Hűtés fül alap stílus */
.cooling-tab span {
    background: #f0f9ff;
    color: #0369a1;
    border: 2px solid #e0f2fe;
}

/* Fűtés fül alap stílus */
.heating-tab span {
    background: #fff7ed;
    color: #c2410c;
    border: 2px solid #ffedd5;
}

/* HOVER hatások */
.cooling-tab:hover span {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(3, 105, 161, 0.1);
}

.heating-tab:hover span {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(194, 65, 12, 0.1);
}

/* AKTÍV KIEMELT ÁLLAPOTOK (Gradiens + Fényeffekt) */
.cooling-tab input:checked + span {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff;
    border-color: #0284c7;
    box-shadow: 0 10px 20px -3px rgba(3, 105, 161, 0.3);
    transform: scale(1.05);
}

.heating-tab input:checked + span {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    border-color: #f97316;
    box-shadow: 0 10px 20px -3px rgba(234, 88, 12, 0.3);
    transform: scale(1.05);
}

/* Rács és elrendezés */
.ac-calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .ac-calc-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .ac-calc-mode-selector-b05ce050 {
        gap: 12px;
        flex-direction: column;
    }
    .ac-calc-mode-option span {
        padding: 12px;
    }
}

.ac-calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ac-calc-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ac-calc-label {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 14px;
    color: #334155;
}

.ac-calc-value {
    color: #0284c7;
    font-weight: 800;
    font-size: 15px;
    background: #f0f9ff;
    padding: 2px 10px;
    border-radius: 20px;
}

/* Prémium Csúszkák */
.ac-calc-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #cbd5e1;
    outline: none;
    transition: background 0.3s;
}

.ac-calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0284c7;
    cursor: pointer;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.1s ease;
}

.ac-calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.ac-calc-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    margin-top: -2px;
}

/* H tarifa checkbox stílus */
.ac-calc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 14px;
    color: #1e293b;
    cursor: pointer;
    background: #f8fafc;
    padding: 16px;
    border-radius: 12px;
    border: 2px dashed #cbd5e1;
    transition: all 0.2s ease;
}

.ac-calc-checkbox-label:hover {
    border-color: #f97316;
    background: #fff7ed;
}

.ac-calc-checkbox-label input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Áramdíj mező */
.price-field .ac-calc-num-input {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #334155;
    outline: none;
    transition: all 0.2s ease;
}

.price-field .ac-calc-num-input:focus {
    border-color: #0284c7;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}

/* Eredmények Boxok */
.ac-calc-results {
    background: linear-gradient(185deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.ac-calc-result-box {
    display: flex;
    flex-direction: column;
    border-bottom: 1px dashed #cbd5e1;
    padding-bottom: 15px;
}

.ac-calc-result-box:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ac-calc-result-box.highlight {
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.ac-calc-result-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 6px;
    font-weight: 700;
}

.ac-calc-result-value {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
}

.ac-calc-cost-value {
    font-size: 28px;
    font-weight: 900;
    color: #0f172a;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Disclaimer / Apróbetű */
.ac-calc-disclaimer {
    margin-top: 30px;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.6;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}
