﻿:root {
    .ms-chip--gato

{
    background: var(--ms-chip-cat)
}


/* ---------- listas, meta, bullets ---------- */
.ms-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px
}

.ms-meta--icons li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px dashed #edf2f7
}

    .ms-meta--icons li:last-child {
        border-bottom: none
    }

    .ms-meta--icons li strong {
        font-weight: 700
    }


    /* pseudo-iconos */
    .ms-meta--icons li.i-size strong::before {
        content: "📏";
        margin-right: 8px
    }

    .ms-meta--icons li.i-weight strong::before {
        content: "⚖️";
        margin-right: 8px
    }

    .ms-meta--icons li.i-life strong::before {
        content: "🕒";
        margin-right: 8px
    }

    .ms-meta--icons li.i-origin strong::before {
        content: "📍";
        margin-right: 8px
    }

    .ms-meta--icons li.i-group strong::before {
        content: "🏷️";
        margin-right: 8px
    }


.ms-bullets {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
    display: grid;
    gap: 6px
}

.ms-bullets--info {
    color: var(--ms-muted)
}


/* ---------- tags ---------- */
.ms-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.ms-tag {
    background: #fff;
    border: 1px solid var(--ms-border);
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 600;
    color: #111827;
    box-shadow: 0 1px 0 rgba(0,0,0,.03)
}


/* ---------- cuidados ---------- */
.ms-care {
    display: grid;
    gap: 14px
}

.ms-care__label {
    font-weight: 700;
    margin-bottom: 6px
}

.ms-muted {
    color: var(--ms-muted);
    margin-top: 6px
}

.ms-progress {
    height: 10px;
    background: #f1f5f9;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid var(--ms-border)
}

.ms-progress__bar {
    height: 100%;
    background: linear-gradient(90deg,#ffa043,#ffd19e)
}


/* ---------- botones ---------- */
.ms-btn {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    border-radius: 12px;
    font-weight: 800;
    padding: 10px 14px;
    border: 1px solid transparent
}

.ms-btn--wide {
    width: 100%
}

.ms-btn--gradient {
    background: linear-gradient(90deg,#ff9159,#5f91ff);
    color: #fff;
    border-color: #0000
}


/* ---------- responsive ---------- */
@media (max-width:1024px) {
    .ms-layout {
        grid-template-columns: 1fr
    }

    .ms-gallery {
        grid-template-columns: 1fr
    }
}


/* ---------- listado índice (ya existente) ---------- */
.ms-breeds {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px
}

.ms-breeds__header {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    text-align: center
}

.ms-badge {
    display: inline-block;
    background: var(--ms-secondary);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .85rem;
    margin: 0 auto
}

.ms-breeds__header h1 {
    font-size: 2rem;
    margin: 0;
    color: var(--ms-text)
}

.ms-lead {
    color: var(--ms-muted);
    margin: 0
}

.ms-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 8px
}

.ms-tab {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--ms-surface);
    border: 1px solid var(--ms-border);
    color: var(--ms-text);
    text-decoration: none;
    font-weight: 600
}

    .ms-tab.active {
        background: var(--ms-primary);
        color: #fff;
        border-color: var(--ms-primary)
    }

.ms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
    gap: 16px;
    margin-top: 16px
}

.ms-card__media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #eef6fb
}

    .ms-card__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block
    }

.ms-card__body {
    padding: 14px 14px 0
}

.ms-card__title {
    margin: 0 0 4px;
    font-size: 1.1rem;
    color: var(--ms-text)
}

.ms-card__desc {
    margin: 0;
    color: var(--ms-muted);
    font-size: .95rem
}

.ms-card__footer {
    display: flex;
    justify-content: flex-end;
    padding: 12px 14px 14px
}
