/* pets.css */

/* ── 초기화 버튼 (pets 전용) ── */
#resetsearch {
    width: 100%;
}

/* ── 펫 카드 ── */
.pet__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

.pet__top {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* ── 펫 이미지 ── */
.pet__image {
    width: 140px;
    height: 120px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.pet__image img {
    width: 140px;
    height: 120px;
    object-fit: none;
    object-position: center;
    image-rendering: pixelated;
}

/* ── 펫 정보 ── */
.pet__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pet__row {
    display: flex;
    align-items: center;
    min-height: 20px;
}

.pet__label {
    width: 80px;
    padding: 4px 8px;
    border-right: 1px solid rgb(66, 99, 195);
    font-size: 12px;
    box-sizing: border-box;
}

.pet__value {
    flex: 1;
    padding: 4px 8px;
    font-size: 12px;
}

.pet__section-title {
    border-top: 1px solid rgb(66, 99, 195);
    font-size: 12px;
    font-weight: bold;
}

/* ── 펫 진화 ── */
.pet__evolution {
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    border-radius: 10px;
    background-color: rgba(231, 231, 239, 1);
}

.pet__evolution-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.pet__evolution-title img {
    width: 32px;
    height: 32px;
    image-rendering: pixelated;
}

.pet__ingredients {
    display: flex;
    flex-wrap: wrap;
}

.pet__item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 5px;
    min-height: 24px;
    font-size: 12px;
}

.pet__item img {
    width: 20px;
    height: 20px;
    image-rendering: pixelated;
}
