/* ===== Species Enrichment — konzistentné so species.css ===== */

.sp-enrich {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* --- Spolocny styl kariet (rovnaky ako sp-card) --- */
.sp-enrich-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 32px;
}

.sp-enrich-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a332a;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #66BB6A;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sp-enrich-card h3 svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: #2E7D32;
}

.sp-suit-btn h3 svg {
    width: 28px;
    height: 28px;
}

/* ===== 1. VYZIVA ===== */
.sp-diet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 16px;
}

.sp-diet-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a332a;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.sp-diet-yes h4 { color: #2E7D32; }
.sp-diet-no h4 { color: #c62828; }

.sp-h4-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    vertical-align: middle;
    margin-right: 6px;
    position: relative;
    top: -1px;
}

.sp-diet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sp-diet-list li {
    font-size: 14px;
    color: #444;
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: baseline;
    gap: 8px;
    line-height: 1.5;
}

.sp-diet-list li:last-child {
    border-bottom: none;
}

.sp-diet-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.sp-diet-tip {
    background: #f5f7f5;
    border-left: 3px solid #66BB6A;
    padding: 14px 18px;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    color: #444;
    line-height: 1.7;
}

.sp-diet-tip strong {
    color: #1a332a;
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
}

/* ===== 2. SPRAVANIE ===== */
.sp-traits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 16px;
}

.sp-trait {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sp-trait-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.sp-trait-label {
    font-size: 13px;
    font-weight: 600;
    color: #1a332a;
}

.sp-trait-score {
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.sp-trait-bar {
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.sp-trait-fill {
    height: 100%;
    border-radius: 4px;
}

.sp-fill-1 { background: #A5D6A7; width: 20%; }
.sp-fill-2 { background: #66BB6A; width: 40%; }
.sp-fill-3 { background: #FFB74D; width: 60%; }
.sp-fill-4 { background: #FF7043; width: 80%; }
.sp-fill-5 { background: #ef5350; width: 100%; }

.sp-trait-desc {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #999;
}

.sp-trait-desc span:nth-child(2) {
    color: #666;
    font-weight: 500;
}

/* ===== 3. VHODNY PRE TEBA (accordion styl) ===== */
.sp-suit-section {
    margin-bottom: 0;
}

.sp-suit-btn {
    width: 100%;
    background: #1a332a;
    border: none;
    border-radius: 12px;
    padding: 20px 24px;
    color: #fff;
    cursor: default;
}

.sp-suit-btn h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(102,187,106,0.4);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sp-suit-btn h3 svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.sp-suit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.sp-suit-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 14px 16px;
}

.sp-suit-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 6px;
    opacity: 0.7;
}

.sp-suit-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 4px;
}

.sp-suit-value {
    font-size: 15px;
    font-weight: 600;
    color: #FFD54F;
    line-height: 1.4;
}

.sp-suit-verdict {
    background: rgba(102,187,106,0.12);
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

.sp-suit-verdict strong {
    color: #FFD54F;
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
}

/* ===== 4. CENA A KDE KUPIT ===== */
.sp-price-main {
    margin-bottom: 16px;
}

.sp-price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 4px;
}

.sp-price-note {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.sp-buy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.sp-buy-item {
    background: #f5f7f5;
    border-radius: 8px;
    padding: 14px 16px;
}

.sp-buy-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 6px;
}

.sp-buy-type {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    display: block;
    margin-bottom: 4px;
}

.sp-buy-desc {
    font-size: 14px;
    color: #1a332a;
    font-weight: 500;
    line-height: 1.5;
}

/* ===== 5. POROVNANIE ===== */
.sp-compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.sp-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.sp-compare-table thead th {
    background: #f0f4f0;
    color: #1a332a;
    padding: 12px 14px;
    font-weight: 600;
    font-size: 13px;
    text-align: left;
    border-bottom: 2px solid #dde5dd;
}

.sp-compare-table thead th:first-child {
    color: #888;
    font-weight: 500;
}

.sp-compare-table thead th a {
    color: #1a332a;
    text-decoration: none;
    border-bottom: 1px dashed #66BB6A;
}

.sp-compare-table thead th a:hover {
    color: #2E7D32;
    border-bottom-style: solid;
}

.sp-compare-table thead th.sp-cmp-active {
    background: #2E7D32;
    color: #fff;
}

.sp-compare-table tbody td {
    padding: 10px 14px;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
}

.sp-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.sp-compare-table tbody td:first-child {
    font-weight: 600;
    color: #1a332a;
    font-size: 13px;
}

.sp-compare-table tbody td.sp-cmp-active {
    background: #f5f9f5;
    color: #2E7D32;
    font-weight: 500;
}

/* ===== HLASOVÝ PREJAV ===== */
.sp-enrich-text {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0 0 8px;
}

.sp-sounds {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.sp-sounds h4 {
    font-size: 13px;
    font-weight: 600;
    color: #1a332a;
    margin: 0 0 10px;
}

.sp-sounds-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sp-sounds-list li {
    font-size: 14px;
    color: #444;
    padding: 5px 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
    line-height: 1.5;
}

/* ===== OCHOČENIE ===== */
.sp-tame-header {
    margin-bottom: 16px;
}

.sp-tame-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.sp-tame-badge {
    background: #f0f4f0;
    border: 1px solid #dde5dd;
    border-radius: 16px;
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #2E7D32;
}

.sp-tame-time {
    font-size: 13px;
    color: #888;
}

/* ===== CHOROBY ===== */
.sp-disease-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 16px;
}

.sp-disease {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}

.sp-disease:last-child {
    border-bottom: none;
}

.sp-disease-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.sp-disease-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a332a;
}

.sp-disease-sev {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 10px;
    border-radius: 10px;
}

.sp-sev-vysoká, .sp-sev-vysoká { background: #fce4ec; color: #c62828; }
.sp-sev-stredná, .sp-sev-stredná { background: #fff3e0; color: #e65100; }
.sp-sev-nízka, .sp-sev-nízka { background: #e8f5e9; color: #2E7D32; }

.sp-disease-body p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 4px;
}

.sp-disease-body p:last-child {
    margin-bottom: 0;
}

/* ===== ZAUJÍMAVOSTI ===== */
.sp-facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: fact;
}

.sp-facts-list li {
    font-size: 14px;
    color: #444;
    padding: 10px 0 10px 36px;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.6;
    position: relative;
    counter-increment: fact;
}

.sp-facts-list li:last-child {
    border-bottom: none;
}

.sp-facts-list li::before {
    content: counter(fact);
    position: absolute;
    left: 0;
    top: 10px;
    width: 24px;
    height: 24px;
    background: #f0f4f0;
    color: #2E7D32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* ===== FAQ ===== */
.sp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sp-faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.sp-faq-item:last-child {
    border-bottom: none;
}

.sp-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 14px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: inherit;
}

.sp-faq-q span:first-child {
    font-size: 14px;
    font-weight: 600;
    color: #1a332a;
    line-height: 1.5;
}

.sp-faq-icon {
    font-size: 18px;
    font-weight: 400;
    color: #2E7D32;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    transition: transform 0.2s;
}

.sp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sp-faq-open .sp-faq-a {
    max-height: 500px;
}

.sp-faq-open .sp-faq-icon {
    transform: rotate(45deg);
}

.sp-faq-a p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
    padding: 0 0 14px;
}

/* ===== BEHAVIOR GAUGES ===== */

.sp-trait-gauges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.sp-trait-gauge {
    text-align: center;
    background: #fafffe;
    border-radius: 12px;
    padding: 16px 12px 14px;
    border: 1px solid #e8f5e9;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.sp-trait-gauge:hover {
    box-shadow: 0 4px 16px rgba(46,125,50,0.1);
    transform: translateY(-2px);
}

.sp-trait-gauge svg {
    display: block;
    width: 100%;
    max-width: 160px;
    height: auto;
    margin: 0 auto;
}

.sp-trait-gauge-label {
    font-size: 13px;
    font-weight: 700;
    color: #1a332a;
    margin-top: 8px;
}

.sp-trait-gauge-desc {
    font-size: 11px;
    color: #888;
    line-height: 1.4;
    margin-top: 4px;
}

/* ===== VOICE METER ===== */

.sp-voice-meter-wrap {
    margin-bottom: 16px;
}

.sp-voice-meter {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* ===== TAMING TIMELINE ===== */

.sp-tame-timeline {
    margin-top: 16px;
}

.sp-tame-step {
    display: flex;
    gap: 14px;
}

.sp-tame-dot-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 36px;
}

.sp-tame-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #66BB6A, #2E7D32);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(46,125,50,0.25);
}

.sp-tame-line {
    width: 3px;
    flex: 1;
    min-height: 20px;
    background: linear-gradient(180deg, #66BB6A, #c8e6c9);
    border-radius: 2px;
}

.sp-tame-content {
    padding-bottom: 20px;
}

.sp-tame-content strong {
    font-size: 14px;
    color: #1a332a;
    display: block;
    margin-bottom: 4px;
}

.sp-tame-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.sp-tame-step-last .sp-tame-content {
    padding-bottom: 0;
}

/* ===== DISEASE SEVERITY BARS ===== */

.sp-disease-sev-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-disease-sev-bar {
    width: 80px;
    height: 10px;
    flex-shrink: 0;
}

/* ===== COMPARISON VISUAL BARS ===== */

.sp-cmp-visual {
    margin-bottom: 16px;
}

.sp-cmp-bars {
    display: block;
    width: 100%;
    height: auto;
}

/* ===== DIET VISUAL ===== */

.sp-diet-visual {
    margin-bottom: 16px;
}

.sp-diet-svg {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* ===== FACT CARDS ===== */

.sp-facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sp-fact-card {
    display: flex;
    gap: 12px;
    background: linear-gradient(135deg, #fafffe, #f0f7f0);
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid #e8f5e9;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.sp-fact-card:hover {
    box-shadow: 0 4px 16px rgba(46,125,50,0.1);
    transform: translateY(-2px);
}

.sp-fact-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #2E7D32;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sp-fact-card p {
    font-size: 13px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* ===== TAXONOMY TREE ===== */

.sp-taxonomy-tree {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sp-tax-row {
    display: flex;
    align-items: center;
    gap: 0;
    min-height: 36px;
}

.sp-tax-indent {
    flex-shrink: 0;
    position: relative;
}

.sp-tax-branch {
    display: block;
}

.sp-tax-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    line-height: 1.3;
    white-space: nowrap;
    transition: transform 0.15s;
}

.sp-tax-badge:hover {
    transform: scale(1.03);
}

.sp-tax-level {
    font-weight: 500;
    opacity: 0.7;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sp-tax-name {
    font-weight: 700;
}

.sp-tax-current .sp-tax-badge {
    box-shadow: 0 3px 12px rgba(46,125,50,0.3);
    font-size: 14px;
    padding: 8px 20px;
}

/* ===== DIET DONUT CHART ===== */

.sp-diet-donut-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sp-diet-donut {
    width: 220px;
    height: 220px;
    flex-shrink: 0;
}

.sp-diet-donut-legend {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sp-diet-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.sp-diet-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

.sp-diet-legend-item strong {
    margin-left: auto;
    color: #1a332a;
    font-size: 13px;
}

/* ===== SEASONAL CALENDAR ===== */

.sp-calendar-wrap {
    margin: 0 auto;
}

.sp-calendar-svg {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
}

/* ===== POPULATION TREND ===== */

.sp-pop-chart-wrap {
    margin: 0;
}

.sp-pop-chart {
    display: block;
    width: 100%;
    max-width: 550px;
    height: auto;
}

.sp-pop-note {
    font-size: 13px;
    color: #888;
    margin: 12px 0 0;
    line-height: 1.5;
    font-style: italic;
}

.sp-pop-stats {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.sp-pop-stat {
    background: linear-gradient(135deg, #fafffe, #f0f7f0);
    border: 1px solid #e8f5e9;
    border-radius: 10px;
    padding: 14px 20px;
    text-align: center;
    flex: 1;
    min-width: 100px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.sp-pop-stat:hover {
    box-shadow: 0 4px 16px rgba(46,125,50,0.1);
    transform: translateY(-2px);
}

.sp-pop-stat-val {
    font-size: 22px;
    font-weight: 800;
    color: #2E7D32;
    line-height: 1.2;
}

.sp-pop-stat-label {
    font-size: 11px;
    color: #888;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== RADAR CHART ===== */

.sp-radar-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.sp-radar-svg {
    width: 100%;
    max-width: 320px;
    height: auto;
}

/* ===== HABITAT REQUIREMENTS ===== */

.sp-habitat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sp-habitat-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fafffe;
    border: 1px solid #e8f5e9;
    border-radius: 10px;
    padding: 14px 16px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.sp-habitat-card:hover {
    box-shadow: 0 4px 16px rgba(46,125,50,0.1);
    transform: translateY(-2px);
}

.sp-habitat-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.sp-habitat-icon svg {
    width: 40px;
    height: 40px;
}

.sp-habitat-info {
    flex: 1;
    min-width: 0;
}

.sp-habitat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    font-weight: 600;
    margin-bottom: 2px;
}

.sp-habitat-value {
    font-size: 15px;
    font-weight: 700;
    color: #1a332a;
    line-height: 1.3;
}

.sp-habitat-note {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
    margin-top: 4px;
}

/* ===== BREEDING TIMELINE ===== */

.sp-breed-timeline {
    display: flex;
    flex-direction: column;
}

.sp-breed-stage {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.sp-breed-icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 52px;
}

.sp-breed-icon {
    width: 48px;
    height: 48px;
}

.sp-breed-arrow {
    width: 20px;
    height: 36px;
}

.sp-breed-arrow svg {
    width: 20px;
    height: 36px;
}

.sp-breed-info {
    flex: 1;
    padding-bottom: 12px;
}

.sp-breed-last .sp-breed-info {
    padding-bottom: 0;
}

.sp-breed-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a332a;
}

.sp-breed-duration {
    font-size: 12px;
    font-weight: 600;
    color: #2E7D32;
    background: #e8f5e9;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 10px;
    margin: 4px 0;
}

.sp-breed-info p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 4px 0 0;
}

/* ===== SUMMARY BAR ===== */
.sp-summary-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.sp-sum-item {
    flex: 1 1 140px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 140px;
}

.sp-sum-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.sp-sum-info {
    flex: 1;
    min-width: 0;
}

.sp-sum-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    margin-bottom: 4px;
}

.sp-sum-bar-track {
    height: 6px;
    background: rgba(0,0,0,0.08);
    border-radius: 3px;
    overflow: hidden;
}

.sp-sum-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #66BB6A, #2E7D32);
    transition: width 0.8s ease;
}

.sp-sum-val {
    font-size: 11px;
    color: #2E7D32;
    font-weight: 600;
    margin-top: 2px;
}

/* ===== SCROLL ANIMATIONS ===== */
.sp-enrich.sp-anim .sp-enrich-card,
.sp-enrich.sp-anim .sp-suit-section,
.sp-enrich.sp-anim .sp-summary-bar {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sp-enrich.sp-anim .sp-enrich-card.sp-visible,
.sp-enrich.sp-anim .sp-suit-section.sp-visible,
.sp-enrich.sp-anim .sp-summary-bar.sp-visible {
    opacity: 1;
    transform: none;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .sp-trait-gauges {
        grid-template-columns: 1fr 1fr;
    }
    .sp-facts-grid {
        grid-template-columns: 1fr;
    }
    .sp-summary-bar {
        gap: 14px;
    }
    .sp-sum-item {
        flex: 1 1 45%;
    }
}

@media (max-width: 600px) {
    .sp-diet-grid {
        grid-template-columns: 1fr;
    }
    .sp-suit-grid {
        grid-template-columns: 1fr;
    }
    .sp-buy-grid {
        grid-template-columns: 1fr;
    }
    .sp-trait-gauges {
        grid-template-columns: 1fr;
    }
    .sp-facts-grid {
        grid-template-columns: 1fr;
    }
    .sp-enrich-card {
        padding: 20px;
        border-radius: 8px;
    }
    .sp-suit-btn {
        padding: 16px;
        border-radius: 8px;
    }
    .sp-compare-table {
        font-size: 12px;
    }
    .sp-compare-table thead th,
    .sp-compare-table tbody td {
        padding: 8px 10px;
    }
    .sp-diet-donut-wrap {
        flex-direction: column;
        align-items: center;
    }
    .sp-diet-donut {
        width: 180px;
        height: 180px;
    }
    .sp-pop-stats {
        flex-direction: column;
    }
    .sp-tax-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    .sp-tax-current .sp-tax-badge {
        font-size: 12px;
    }
    .sp-habitat-grid {
        grid-template-columns: 1fr;
    }
    .sp-radar-svg {
        max-width: 260px;
    }
    .sp-summary-bar {
        padding: 16px;
        gap: 12px;
    }
    .sp-sum-item {
        flex: 1 1 100%;
        min-width: 0;
    }
    .sp-sum-icon {
        font-size: 22px;
    }
    .sp-breed-icon-col {
        width: 40px;
    }
    .sp-breed-icon {
        width: 36px;
        height: 36px;
    }
    .sp-breed-arrow {
        width: 16px;
        height: 28px;
    }
    .sp-breed-arrow svg {
        width: 16px;
        height: 28px;
    }
    .sp-breed-name {
        font-size: 14px;
    }
    .sp-breed-info p {
        font-size: 12px;
    }
    .sp-calendar-svg {
        max-width: 360px;
    }
    .sp-tame-dot-col {
        width: 28px;
    }
    .sp-tame-dot {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
}

/* ===== IUCN STATUS BADGE ===== */

.sp-iucn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px 4px 6px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 8px;
    line-height: 1;
}

.sp-iucn-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sp-iucn-cr { background: rgba(204,0,0,0.12); color: #cc0000; }
.sp-iucn-cr .sp-iucn-dot { background: #cc0000; }

.sp-iucn-en { background: rgba(204,85,0,0.12); color: #cc5500; }
.sp-iucn-en .sp-iucn-dot { background: #cc5500; }

.sp-iucn-vu { background: rgba(204,153,0,0.12); color: #cc9900; }
.sp-iucn-vu .sp-iucn-dot { background: #cc9900; }

.sp-iucn-nt { background: rgba(0,136,0,0.12); color: #008800; }
.sp-iucn-nt .sp-iucn-dot { background: #008800; }

.sp-iucn-lc { background: rgba(0,136,0,0.12); color: #008800; }
.sp-iucn-lc .sp-iucn-dot { background: #008800; }

.sp-iucn-ex { background: rgba(0,0,0,0.1); color: #333; }
.sp-iucn-ex .sp-iucn-dot { background: #333; }

/* ===== HIGHLIGHT HOOK ===== */

.sp-highlight {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-left: 4px solid #2E7D32;
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    margin: 0 auto 0;
    max-width: 1200px;
    font-size: 15px;
    line-height: 1.6;
    color: #1a332a;
    font-weight: 500;
}

.sp-highlight strong {
    color: #2E7D32;
}

/* ===== VISUAL STATS INFOGRAPHICS ===== */

.sp-vstats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    margin: 24px 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #c8e6c9;
    box-shadow: 0 4px 20px rgba(46,125,50,0.08);
}

.sp-vstat {
    padding: 28px 20px 24px;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, #fafffe 0%, #fff 100%);
}

.sp-vstat + .sp-vstat {
    border-left: 1px solid #e0efe0;
}

.sp-vstat-label {
    font-size: 11px;
    font-weight: 700;
    color: #2E7D32;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.sp-vstat-val {
    font-size: 26px;
    font-weight: 800;
    color: #1a332a;
    line-height: 1.2;
    margin-bottom: 16px;
}

.sp-vstat-gauge {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto;
}

.sp-vstat-scale {
    display: flex;
    justify-content: space-between;
    margin: 8px 0 0;
    font-size: 9px;
    color: #bbb;
    font-weight: 500;
}

.sp-vstat-compare {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
}

.sp-vstat-compare span {
    display: inline-block;
    background: linear-gradient(135deg, #f0f7f0, #e8f5e9);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    color: #555;
    border: 1px solid #dcedc8;
}

@media (max-width: 700px) {
    .sp-vstats {
        grid-template-columns: 1fr;
    }
    .sp-vstat + .sp-vstat {
        border-left: none;
        border-top: 1px solid #e0efe0;
    }
    .sp-vstat-gauge {
        max-width: 240px;
    }
}
