.animal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.animal-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    transition: 0.25s ease;
}

.animal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.09);
}

.animal-image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.animal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animal-status {
    position: absolute;
    left: 14px;
    top: 14px;
}

.animal-body {
    padding: 22px;
}

.animal-code {
    color: var(--secondary);
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 6px;
}

.animal-body h3 {
    color: var(--primary-dark);
    font-size: 22px;
    margin-bottom: 14px;
}

.animal-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    margin-bottom: 16px;
}

.animal-meta div {
    background: var(--cream);
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 14px;
}

.animal-meta strong {
    color: var(--primary-dark);
}

.animal-desc {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 18px;
}

.animal-price {
    color: var(--primary);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
}

.animal-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.animal-actions .btn {
    flex: 1;
    padding: 11px 12px;
    font-size: 14px;
}