/* Life Wheel Assessment Styles */
.life-wheel-section {
    padding: 40px 0 60px;
}

.life-wheel-container {
    max-width: 800px;
    margin: 0 auto;
}

.life-wheel-header {
    text-align: center;
    margin-bottom: 40px;
}

.life-wheel-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: #53242C;
    margin-bottom: 12px;
}

.life-wheel-header p {
    color: #7a5460;
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

/* Sliders + Chart Layout */
.life-wheel-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 30px;
}

/* Sliders */
.life-wheel-sliders {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lw-slider-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lw-slider-icon {
    font-size: 20px;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.lw-slider-info {
    flex: 1;
    min-width: 0;
}

.lw-slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.lw-slider-label span {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #53242C;
}

.lw-slider-value {
    font-size: 14px;
    font-weight: 700;
    color: #e97a9c;
    min-width: 24px;
    text-align: right;
}

.lw-slider-input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, #fdf2f5, #e97a9c);
    outline: none;
    cursor: pointer;
}

.lw-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e97a9c;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(233, 122, 156, 0.4);
    cursor: pointer;
    transition: transform 0.15s;
}

.lw-slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.lw-slider-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e97a9c;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(233, 122, 156, 0.4);
    cursor: pointer;
}

/* Chart */
.life-wheel-chart {
    position: sticky;
    top: 100px;
}

.life-wheel-chart canvas {
    max-width: 100%;
}

/* Analyze Button */
.life-wheel-actions {
    text-align: center;
    margin: 30px 0;
}

.lw-analyze-btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #e97a9c 0%, #d4687f 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.lw-analyze-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 122, 156, 0.3);
}

.lw-analyze-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Results */
.life-wheel-results {
    display: none;
    margin-top: 40px;
    animation: lwFadeIn 0.5s ease;
}

.life-wheel-results.active {
    display: block;
}

@keyframes lwFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.lw-results-card {
    background: linear-gradient(145deg, #fdf2f5 0%, #fff 100%);
    border-radius: 20px;
    border: 1px solid rgba(233, 122, 156, 0.2);
    padding: 32px;
    box-shadow: 0 4px 24px rgba(83, 36, 44, 0.08);
}

.lw-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(233, 122, 156, 0.15);
}

.lw-results-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    color: #53242C;
    margin: 0;
}

.lw-insights-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.lw-insight-badge {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(233, 122, 156, 0.15);
}

.lw-insight-badge .value {
    font-size: 24px;
    font-weight: 700;
    color: #e97a9c;
    display: block;
}

.lw-insight-badge .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7a5460;
    margin-top: 4px;
    display: block;
}

.lw-analysis-text {
    font-size: 15px;
    line-height: 1.7;
    color: #53242C;
}

.lw-analysis-text p {
    margin-bottom: 16px;
}

.lw-results-footer {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(233, 122, 156, 0.15);
}

.lw-share-btn,
.lw-discuss-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none !important;
    border: none;
}

.lw-discuss-btn {
    background: linear-gradient(135deg, #e97a9c 0%, #d4687f 100%);
    color: #fff !important;
}

.lw-share-btn {
    background: transparent;
    color: #e97a9c;
    border: 1.5px solid #e97a9c;
}

/* Loading */
.lw-loading {
    text-align: center;
    padding: 40px;
    color: #7a5460;
    font-size: 15px;
}

.lw-loading .dots {
    display: inline-block;
    animation: lwDots 1.5s infinite;
}

@keyframes lwDots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* Responsive */
@media (max-width: 768px) {
    .life-wheel-body {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .life-wheel-chart {
        position: static;
        order: -1;
    }

    .lw-results-card {
        padding: 24px 20px;
    }

    .lw-insights-row {
        flex-direction: column;
    }

    .lw-results-footer {
        flex-direction: column;
        align-items: center;
    }

    .life-wheel-header h1 {
        font-size: 26px;
    }
}
