.ceb-dc {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 24px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.ceb-dc__header {
    text-align: center;
    margin-bottom: 32px;
}

.ceb-dc__title {
    font-size: 28px;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.ceb-dc__sub {
    font-size: 15px;
    color: #64748B;
    margin: 0;
    line-height: 1.5;
}

.ceb-dc__sliders {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 28px;
}

.ceb-dc__slider-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ceb-dc__label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ceb-dc__label-text {
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
}

.ceb-dc__label-value {
    font-size: 14px;
    font-weight: 700;
    color: #F37015;
    min-width: 80px;
    text-align: right;
}

.ceb-dc__range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #E2E8F0;
    border-radius: 3px;
    outline: none;
}

.ceb-dc__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: #F37015;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(243, 112, 21, .3);
    transition: transform .15s;
}

.ceb-dc__range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.ceb-dc__range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: #F37015;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(243, 112, 21, .3);
}

.ceb-dc__range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #94A3B8;
}

.ceb-dc__range--stepped + .ceb-dc__range-labels {
    justify-content: space-between;
}

/* Toggle */
.ceb-dc__toggle-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
}

.ceb-dc__toggle-label {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}

.ceb-dc__toggle {
    position: relative;
    display: inline-block;
}

.ceb-dc__toggle-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.ceb-dc__toggle-track {
    display: block;
    width: 44px;
    height: 24px;
    background: #CBD5E1;
    border-radius: 12px;
    cursor: pointer;
    transition: background .2s;
    position: relative;
}

.ceb-dc__toggle-track::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform .2s;
    box-shadow: 0 1px 3px rgba(0,0,0,.15);
}

.ceb-dc__toggle-input:checked + .ceb-dc__toggle-track {
    background: #F37015;
}

.ceb-dc__toggle-input:checked + .ceb-dc__toggle-track::after {
    transform: translateX(20px);
}

.ceb-dc__toggle-hint {
    font-size: 12px;
    color: #94A3B8;
}

/* Result */
.ceb-dc__result {
    margin-bottom: 28px;
}

.ceb-dc__result-box {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    border: 1px solid #FDBA74;
    border-radius: 16px;
}

.ceb-dc__result-label {
    font-size: 13px;
    font-weight: 600;
    color: #92400E;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.ceb-dc__result-value {
    font-size: 42px;
    font-weight: 900;
    color: #F37015;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.ceb-dc__result-detail {
    font-size: 13px;
    color: #92400E;
    margin-top: 6px;
}

@media (max-width: 480px) {
    .ceb-dc {
        padding: 28px 16px;
    }

    .ceb-dc__title {
        font-size: 22px;
    }

    .ceb-dc__result-value {
        font-size: 36px;
    }
}
