/* --- Стили для Беременности (Pink Theme) --- */
:root {
    --accent-pink: #DB2777;
    --accent-pink-light: #FCE7F3;
    --gradient-pink-card: linear-gradient(135deg, #EC4899 0%, #BE185D 100%);
}

.calc-header { margin-bottom: 32px; }
.subtitle { color: var(--text-secondary); margin-top: 8px; }

.calc-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
@media (min-width: 900px) { .calc-grid { grid-template-columns: 1.2fr 0.8fr; } }

.calc-inputs { gap: 16px; }
.input-group { margin-bottom: 16px; }
.input-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }

.input-wrapper input {
    width: 100%; padding: 14px 16px; 
    font-size: 18px; font-weight: 500;
    border: 1px solid #E5E7EB; border-radius: 12px;
    outline: none; transition: border 0.2s;
    font-family: var(--font-main);
}
.input-wrapper input:focus { border-color: var(--accent-pink); box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.15); }

/* Слайдер */
.range-wrapper { margin-top: 8px; }
.row-value-top { display: flex; justify-content: flex-end; margin-bottom: 4px; }
.range-val { font-weight: 700; color: var(--accent-pink); font-size: 18px; }

.range-slider {
    width: 100%; -webkit-appearance: none; height: 6px;
    background: #E5E7EB; border-radius: 5px; cursor: pointer;
}
.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
    background: var(--accent-pink); cursor: pointer; border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2); transition: transform 0.1s;
}
.helper-text { font-size: 12px; color: var(--text-secondary); margin-top: 6px; }

/* Результаты (Pink Card) */
.card--pink { background: var(--gradient-pink-card); color: #fff; border: none; }
.card--pink h2 { color: rgba(255,255,255,0.95); margin-bottom: 24px; font-size: 16px; }
@media (min-width: 900px) { .sticky-card { position: sticky; top: 24px; } }

.big-result {
    font-size: 48px; font-weight: 800; line-height: 1; margin-bottom: 32px; letter-spacing: -0.02em; white-space: nowrap;
}

/* Зодиак */
.zodiac-box {
    display: flex; align-items: center; gap: 16px;
    background: rgba(255,255,255,0.15); padding: 12px 16px; border-radius: 12px;
    backdrop-filter: blur(4px);
}
.zodiac-icon { font-size: 32px; line-height: 1; }
.zodiac-info { display: flex; flex-direction: column; }
.zodiac-info span { font-size: 12px; opacity: 0.9; }
.zodiac-info strong { font-size: 18px; font-weight: 700; }

.summary-divider { height: 1px; background: rgba(255,255,255,0.2); margin: 24px 0; }

/* Таймлайн */
.timeline-list { display: flex; flex-direction: column; position: relative; }
/* Линия слева */
.timeline-list::before {
    content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px;
    width: 2px; background: rgba(255,255,255,0.3); border-radius: 2px;
}

.time-item { display: flex; gap: 16px; margin-bottom: 20px; position: relative; }
.time-item:last-child { margin-bottom: 0; }

.time-dot {
    width: 16px; height: 16px; border-radius: 50%; background: #fff;
    border: 4px solid var(--accent-pink); /* Цвет берется из темы, но тут хардкод для контраста */
    border-color: rgba(190, 24, 93, 1);
    flex-shrink: 0; z-index: 2;
}
.time-content { display: flex; flex-direction: column; margin-top: -2px; }
.time-date { font-size: 12px; opacity: 0.9; margin-bottom: 2px; font-family: monospace; letter-spacing: 0.05em; }
.time-title { font-size: 15px; font-weight: 700; }