/* ==================================================
   CHIBI NETWORK // SUPER KAWAII PETS
   CSS-ONLY CHIBI PIXEL PLUSHIES
   ================================================== */


/* ==================================================
   EDITOR
   ================================================== */

.pet-editor {
    margin: 34px 0;
    padding: 20px;

    background: #fff8fc;

    border: 2px solid #d9b8d4;

    box-shadow:
        5px 5px 0 #ead8e8;
}


.pet-editor-heading {
    margin-bottom: 18px;
    padding-bottom: 11px;

    border-bottom: 2px dashed #e4c6de;
}


.pet-editor-heading label {
    display: block;

    color: #956c91;

    font-size: 16px;

    font-weight: bold;

    letter-spacing: 2px;
}


.pet-editor .field-note {
    color: #aa91a7;
}


/* ==================================================
   GRID
   ================================================== */

.pet-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 14px;

    margin-top: 16px;
}


.pet-choice {
    appearance: none;

    min-height: 190px;

    padding: 13px 8px 11px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-start;

    gap: 5px;

    background: #fffdfd;

    color: #765e72;

    border: 2px solid #ead7e6;

    border-radius: 10px;

    box-shadow:
        4px 4px 0 #f0e3ee;

    font: inherit;

    cursor: pointer;

    transition:
        transform 0.1s ease,
        background 0.1s ease,
        border-color 0.1s ease;
}


.pet-choice:hover {
    transform: translateY(-3px);

    background: #fff5fb;

    border-color: #d9aecd;
}


.pet-choice.selected {
    background: #f9eafa;

    border-color: #bd87b4;

    box-shadow:
        5px 5px 0 #e2c6de;
}


.pet-choice-name {
    margin-top: 4px;

    color: #76546f;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 1px;

    text-align: center;
}


.pet-choice-description {
    color: #b194ab;

    font-size: 9px;

    text-align: center;
}


/* ==================================================
   PET NAME
   ================================================== */

.pet-name-editor {
    margin-top: 24px;
    padding-top: 18px;

    border-top: 2px dashed #e4c6de;
}


.pet-name-editor label {
    display: block;

    margin-bottom: 7px;

    color: #956c91;

    font-weight: bold;

    letter-spacing: 2px;
}


.pet-name-editor input {
    width: 100%;

    box-sizing: border-box;
}


/* ==================================================
   PET STAGE
   ================================================== */

.pet-sprite {
    position: relative;

    display: block;

    width: 116px;
    height: 104px;

    margin: 0 auto;

    flex-shrink: 0;

    overflow: visible;

    image-rendering: pixelated;
}


.pet-sprite span {
    position: absolute;

    display: block;

    box-sizing: border-box;
}


/* little floor shadow */

.pet-sprite::after {
    content: "";

    position: absolute;

    z-index: 0;

    left: 31px;
    bottom: 5px;

    width: 56px;
    height: 7px;

    background: #eadce7;

    border-radius: 50%;
}


/* ==================================================
   NO PET
   ================================================== */

.pet-none {
    display: flex;

    align-items: center;

    justify-content: center;
}


.pet-none::after {
    display: none;
}


.pet-none-symbol {
    position: static !important;

    width: 48px;
    height: 48px;

    display: flex !important;

    align-items: center;

    justify-content: center;

    background: #faf3f8;

    color: #baa8b6;

    border: 2px dashed #d5c6d2;

    border-radius: 50%;

    font-size: 24px;
}


/* ==================================================
   CATS // COLOR VARIABLES
   ================================================== */

.pet-grey-tabby-fluffy {
    --fur: #858691;
    --fur-light: #b8b9c2;
    --fur-dark: #5f606b;
    --eye: #4c4a55;
}


.pet-grey-tabby-small {
    --fur: #b3b4bd;
    --fur-light: #d5d5dc;
    --fur-dark: #82838d;
    --eye: #55525e;
}


.pet-orange-cat {
    --fur: #eaa35e;
    --fur-light: #ffd199;
    --fur-dark: #c87939;
    --eye: #66513d;
}


.pet-black-cat {
    --fur: #393740;
    --fur-light: #615e69;
    --fur-dark: #222127;
    --eye: #d8df91;
}


.pet-brown-cat {
    --fur: #98715b;
    --fur-light: #c69b81;
    --fur-dark: #684b3d;
    --eye: #654b42;
}


/* ==================================================
   SUPER KAWAII CAT BASE
   ================================================== */

.pet-grey-tabby-fluffy .pet-body,
.pet-grey-tabby-small .pet-body,
.pet-orange-cat .pet-body,
.pet-black-cat .pet-body,
.pet-brown-cat .pet-body {
    z-index: 2;

    left: 42px;
    top: 68px;

    width: 37px;
    height: 24px;

    background: var(--fur);

    border: 3px solid #544a53;

    border-radius:
        14px 14px
        11px 11px;
}


.pet-grey-tabby-fluffy .pet-body::before,
.pet-grey-tabby-small .pet-body::before,
.pet-orange-cat .pet-body::before,
.pet-black-cat .pet-body::before,
.pet-brown-cat .pet-body::before {
    content: "";

    position: absolute;

    left: 4px;
    bottom: -7px;

    width: 10px;
    height: 9px;

    background: var(--fur-light);

    border: 2px solid #544a53;

    border-radius: 5px;
}


.pet-grey-tabby-fluffy .pet-body::after,
.pet-grey-tabby-small .pet-body::after,
.pet-orange-cat .pet-body::after,
.pet-black-cat .pet-body::after,
.pet-brown-cat .pet-body::after {
    content: "";

    position: absolute;

    right: 4px;
    bottom: -7px;

    width: 10px;
    height: 9px;

    background: var(--fur-light);

    border: 2px solid #544a53;

    border-radius: 5px;
}


/* GIANT HEAD */

.pet-grey-tabby-fluffy .pet-head,
.pet-grey-tabby-small .pet-head,
.pet-orange-cat .pet-head,
.pet-black-cat .pet-head,
.pet-brown-cat .pet-head {
    z-index: 5;

    left: 27px;
    top: 28px;

    width: 61px;
    height: 55px;

    background: var(--fur);

    border: 3px solid #544a53;

    border-radius:
        27px 27px
        25px 25px;

    box-shadow:
        inset 0 -6px 0 var(--fur-dark);
}


/* muzzle */

.pet-grey-tabby-fluffy .pet-head::before,
.pet-grey-tabby-small .pet-head::before,
.pet-orange-cat .pet-head::before,
.pet-black-cat .pet-head::before,
.pet-brown-cat .pet-head::before {
    content: "";

    position: absolute;

    left: 17px;
    bottom: 5px;

    width: 23px;
    height: 13px;

    background: var(--fur-light);

    border-radius: 10px;
}


/* blush */

.pet-grey-tabby-fluffy .pet-head::after,
.pet-grey-tabby-small .pet-head::after,
.pet-orange-cat .pet-head::after,
.pet-black-cat .pet-head::after,
.pet-brown-cat .pet-head::after {
    content: "";

    position: absolute;

    left: 7px;
    top: 34px;

    width: 8px;
    height: 5px;

    background: #ef9fb1;

    border-radius: 4px;

    box-shadow:
        38px 0 0 #ef9fb1;
}


/* ears */

.pet-grey-tabby-fluffy .pet-ear,
.pet-grey-tabby-small .pet-ear,
.pet-orange-cat .pet-ear,
.pet-black-cat .pet-ear,
.pet-brown-cat .pet-ear {
    z-index: 3;

    top: 16px;

    width: 23px;
    height: 25px;

    background: var(--fur);

    border: 3px solid #544a53;

    clip-path:
        polygon(
            50% 0,
            100% 100%,
            0 100%
        );
}


.pet-grey-tabby-fluffy .pet-ear-left,
.pet-grey-tabby-small .pet-ear-left,
.pet-orange-cat .pet-ear-left,
.pet-black-cat .pet-ear-left,
.pet-brown-cat .pet-ear-left {
    left: 29px;

    transform: rotate(-7deg);
}


.pet-grey-tabby-fluffy .pet-ear-right,
.pet-grey-tabby-small .pet-ear-right,
.pet-orange-cat .pet-ear-right,
.pet-black-cat .pet-ear-right,
.pet-brown-cat .pet-ear-right {
    left: 65px;

    transform: rotate(7deg);
}


/* giant glossy eyes */

.pet-grey-tabby-fluffy .pet-eye,
.pet-grey-tabby-small .pet-eye,
.pet-orange-cat .pet-eye,
.pet-black-cat .pet-eye,
.pet-brown-cat .pet-eye {
    z-index: 8;

    top: 47px;

    width: 13px;
    height: 16px;

    background: var(--eye);

    border: 2px solid #463e45;

    border-radius: 50%;
}


.pet-grey-tabby-fluffy .pet-eye::before,
.pet-grey-tabby-small .pet-eye::before,
.pet-orange-cat .pet-eye::before,
.pet-black-cat .pet-eye::before,
.pet-brown-cat .pet-eye::before {
    content: "";

    position: absolute;

    left: 2px;
    top: 2px;

    width: 5px;
    height: 5px;

    background: white;

    border-radius: 50%;
}


.pet-grey-tabby-fluffy .pet-eye::after,
.pet-grey-tabby-small .pet-eye::after,
.pet-orange-cat .pet-eye::after,
.pet-black-cat .pet-eye::after,
.pet-brown-cat .pet-eye::after {
    content: "";

    position: absolute;

    right: 2px;
    bottom: 2px;

    width: 3px;
    height: 3px;

    background: #ffffff;

    border-radius: 50%;
}


.pet-grey-tabby-fluffy .pet-eye-left,
.pet-grey-tabby-small .pet-eye-left,
.pet-orange-cat .pet-eye-left,
.pet-black-cat .pet-eye-left,
.pet-brown-cat .pet-eye-left {
    left: 38px;
}


.pet-grey-tabby-fluffy .pet-eye-right,
.pet-grey-tabby-small .pet-eye-right,
.pet-orange-cat .pet-eye-right,
.pet-black-cat .pet-eye-right,
.pet-brown-cat .pet-eye-right {
    left: 67px;
}


/* tiny nose */

.pet-grey-tabby-fluffy .pet-nose,
.pet-grey-tabby-small .pet-nose,
.pet-orange-cat .pet-nose,
.pet-black-cat .pet-nose,
.pet-brown-cat .pet-nose {
    z-index: 10;

    left: 55px;
    top: 68px;

    width: 7px;
    height: 5px;

    background: #e487a0;

    border-radius:
        50% 50% 40% 40%;
}


/* tail */

.pet-grey-tabby-fluffy .pet-tail,
.pet-grey-tabby-small .pet-tail,
.pet-orange-cat .pet-tail,
.pet-black-cat .pet-tail,
.pet-brown-cat .pet-tail {
    z-index: 1;

    left: 76px;
    top: 67px;

    width: 16px;
    height: 29px;

    background: var(--fur);

    border: 3px solid #544a53;

    border-radius: 12px;

    transform: rotate(24deg);

    transform-origin: bottom center;
}


/* ==================================================
   TABBY STRIPES
   ================================================== */

.pet-grey-tabby-fluffy .pet-stripe,
.pet-grey-tabby-small .pet-stripe,
.pet-orange-cat .pet-stripe {
    z-index: 9;

    background: var(--fur-dark);

    border-radius: 3px;
}


.pet-grey-tabby-fluffy .pet-stripe-one,
.pet-grey-tabby-small .pet-stripe-one,
.pet-orange-cat .pet-stripe-one {
    left: 48px;
    top: 30px;

    width: 5px;
    height: 11px;
}


.pet-grey-tabby-fluffy .pet-stripe-two,
.pet-grey-tabby-small .pet-stripe-two,
.pet-orange-cat .pet-stripe-two {
    left: 57px;
    top: 28px;

    width: 5px;
    height: 12px;
}


.pet-grey-tabby-fluffy .pet-stripe-three,
.pet-grey-tabby-small .pet-stripe-three {
    left: 66px;
    top: 30px;

    width: 5px;
    height: 11px;
}


.pet-grey-tabby-fluffy {
    transform: scale(1.03);
}


.pet-grey-tabby-small {
    transform:
        translateY(5px)
        scale(0.91);

    transform-origin: center bottom;
}


/* ==================================================
   LEE // MARSHMALLOW FERRET
   ================================================== */

.pet-lee .pet-body {
    z-index: 2;

    left: 39px;
    top: 66px;

    width: 53px;
    height: 23px;

    background: #fff9f6;

    border: 3px solid #6d5e67;

    border-radius: 15px;

    box-shadow:
        inset 0 -5px 0 #eadfdf;
}


.pet-lee .pet-head {
    z-index: 5;

    left: 22px;
    top: 31px;

    width: 58px;
    height: 51px;

    background: #fffafa;

    border: 3px solid #6d5e67;

    border-radius: 26px;

    box-shadow:
        inset 0 -5px 0 #eee3e3;
}


.pet-lee .pet-head::before {
    content: "";

    position: absolute;

    left: 14px;
    bottom: 5px;

    width: 27px;
    height: 13px;

    background: #f5e8e7;

    border-radius: 12px;
}


.pet-lee .pet-head::after {
    content: "";

    position: absolute;

    left: 6px;
    top: 32px;

    width: 8px;
    height: 5px;

    background: #f1a0b2;

    border-radius: 5px;

    box-shadow:
        38px 0 0 #f1a0b2;
}


.pet-lee .pet-ear {
    z-index: 4;

    top: 25px;

    width: 17px;
    height: 18px;

    background: #f7b4c1;

    border: 3px solid #6d5e67;

    border-radius: 50%;
}


.pet-lee .pet-ear-left {
    left: 26px;
}


.pet-lee .pet-ear-right {
    left: 62px;
}


.pet-lee .pet-eye {
    z-index: 8;

    top: 48px;

    width: 12px;
    height: 15px;

    background: #c84b69;

    border: 2px solid #6c3747;

    border-radius: 50%;
}


.pet-lee .pet-eye::before {
    content: "";

    position: absolute;

    left: 2px;
    top: 2px;

    width: 5px;
    height: 5px;

    background: white;

    border-radius: 50%;
}


.pet-lee .pet-eye-left {
    left: 34px;
}


.pet-lee .pet-eye-right {
    left: 59px;
}


.pet-lee .pet-nose {
    z-index: 10;

    left: 49px;
    top: 68px;

    width: 8px;
    height: 6px;

    background: #e88ca0;

    border-radius: 50%;
}


.pet-lee .pet-tail {
    z-index: 1;

    left: 86px;
    top: 66px;

    width: 27px;
    height: 14px;

    background: #fff8f4;

    border: 3px solid #6d5e67;

    border-radius: 12px;

    transform: rotate(-13deg);
}


.pet-lee .pet-leg {
    z-index: 3;

    top: 84px;

    width: 11px;
    height: 9px;

    background: #fff9f6;

    border: 2px solid #6d5e67;

    border-radius: 5px;
}


.pet-lee .pet-leg-one {
    left: 49px;
}


.pet-lee .pet-leg-two {
    left: 72px;
}


/* ==================================================
   KAWAII SPOOKY WOLF
   ================================================== */

.pet-red-eyed-wolf .pet-body {
    z-index: 2;

    left: 42px;
    top: 68px;

    width: 38px;
    height: 24px;

    background: #565966;

    border: 3px solid #45434d;

    border-radius: 13px;
}


.pet-red-eyed-wolf .pet-head {
    z-index: 5;

    left: 27px;
    top: 28px;

    width: 61px;
    height: 55px;

    background: #686b78;

    border: 3px solid #45434d;

    border-radius: 25px;

    box-shadow:
        inset 0 -6px 0 #4a4d58;
}


.pet-red-eyed-wolf .pet-head::after {
    content: "";

    position: absolute;

    left: 7px;
    top: 34px;

    width: 8px;
    height: 5px;

    background: #c9798e;

    border-radius: 5px;

    box-shadow:
        38px 0 0 #c9798e;
}


.pet-red-eyed-wolf .pet-ear {
    z-index: 3;

    top: 14px;

    width: 24px;
    height: 27px;

    background: #5b5e6b;

    border: 3px solid #45434d;

    clip-path:
        polygon(
            50% 0,
            100% 100%,
            0 100%
        );
}


.pet-red-eyed-wolf .pet-ear-left {
    left: 28px;

    transform: rotate(-8deg);
}


.pet-red-eyed-wolf .pet-ear-right {
    left: 65px;

    transform: rotate(8deg);
}


.pet-red-eyed-wolf .pet-eye {
    z-index: 9;

    top: 47px;

    width: 13px;
    height: 16px;

    background: #df324d;

    border: 2px solid #49343d;

    border-radius: 50%;

    box-shadow:
        0 0 5px rgba(223, 50, 77, 0.5);
}


.pet-red-eyed-wolf .pet-eye::before {
    content: "";

    position: absolute;

    left: 2px;
    top: 2px;

    width: 5px;
    height: 5px;

    background: white;

    border-radius: 50%;
}


.pet-red-eyed-wolf .pet-eye-left {
    left: 38px;
}


.pet-red-eyed-wolf .pet-eye-right {
    left: 67px;
}


.pet-red-eyed-wolf .pet-snout {
    z-index: 8;

    left: 47px;
    top: 66px;

    width: 23px;
    height: 14px;

    background: #999ba4;

    border-radius: 11px;
}


.pet-red-eyed-wolf .pet-snout::after {
    content: "";

    position: absolute;

    left: 8px;
    top: 3px;

    width: 7px;
    height: 5px;

    background: #3d3941;

    border-radius: 50%;
}


.pet-red-eyed-wolf .pet-tail {
    z-index: 1;

    left: 77px;
    top: 63px;

    width: 19px;
    height: 32px;

    background: #565966;

    border: 3px solid #45434d;

    border-radius: 15px;

    transform: rotate(28deg);
}


.pet-red-eyed-wolf .pet-leg {
    z-index: 3;

    top: 85px;

    width: 10px;
    height: 9px;

    background: #686b78;

    border: 2px solid #45434d;

    border-radius: 5px;
}


.pet-red-eyed-wolf .pet-leg-one {
    left: 48px;
}


.pet-red-eyed-wolf .pet-leg-two {
    left: 69px;
}


/* ==================================================
   ROUND BABY BAT
   ================================================== */

.pet-bat .pet-body {
    z-index: 4;

    left: 47px;
    top: 65px;

    width: 23px;
    height: 27px;

    background: #43394e;

    border: 3px solid #413945;

    border-radius: 50%;
}


.pet-bat .pet-head {
    z-index: 6;

    left: 32px;
    top: 30px;

    width: 53px;
    height: 51px;

    background: #51445e;

    border: 3px solid #413945;

    border-radius: 50%;
}


.pet-bat .pet-head::after {
    content: "";

    position: absolute;

    left: 5px;
    top: 31px;

    width: 8px;
    height: 5px;

    background: #e396ad;

    border-radius: 5px;

    box-shadow:
        34px 0 0 #e396ad;
}


.pet-bat .pet-ear {
    z-index: 5;

    top: 18px;

    width: 17px;
    height: 23px;

    background: #51445e;

    border: 3px solid #413945;

    clip-path:
        polygon(
            50% 0,
            100% 100%,
            0 100%
        );
}


.pet-bat .pet-ear-left {
    left: 34px;
}


.pet-bat .pet-ear-right {
    left: 67px;
}


.pet-bat .pet-eye {
    z-index: 9;

    top: 47px;

    width: 12px;
    height: 15px;

    background: #ef9ab3;

    border: 2px solid #44353e;

    border-radius: 50%;
}


.pet-bat .pet-eye::before {
    content: "";

    position: absolute;

    left: 2px;
    top: 2px;

    width: 5px;
    height: 5px;

    background: white;

    border-radius: 50%;
}


.pet-bat .pet-eye-left {
    left: 40px;
}


.pet-bat .pet-eye-right {
    left: 65px;
}


.pet-bat .pet-wing {
    z-index: 2;

    top: 42px;

    width: 40px;
    height: 39px;

    background: #665371;

    border: 3px solid #413945;
}


.pet-bat .pet-wing-left {
    left: 3px;

    border-radius:
        23px 7px
        20px 20px;

    transform: rotate(-16deg);
}


.pet-bat .pet-wing-right {
    right: 3px;

    border-radius:
        7px 23px
        20px 20px;

    transform: rotate(16deg);
}


/* ==================================================
   DOG COLORS
   ================================================== */

.pet-brown-dog {
    --dog: #9d735c;
    --dog-light: #d3a991;
    --dog-dark: #704e40;
    --dog-eye: #544038;
}


.pet-black-dog {
    --dog: #3d3a42;
    --dog-light: #68646e;
    --dog-dark: #29272e;
    --dog-eye: #ddd28e;
}


.pet-blonde-dog {
    --dog: #dfbd80;
    --dog-light: #f5dba7;
    --dog-dark: #b89562;
    --dog-eye: #594b3d;
}


/* ==================================================
   SUPER KAWAII DOG
   ================================================== */

.pet-brown-dog .pet-body,
.pet-black-dog .pet-body,
.pet-blonde-dog .pet-body {
    z-index: 2;

    left: 42px;
    top: 68px;

    width: 38px;
    height: 24px;

    background: var(--dog);

    border: 3px solid #55494b;

    border-radius: 14px;
}


.pet-brown-dog .pet-body::before,
.pet-black-dog .pet-body::before,
.pet-blonde-dog .pet-body::before {
    content: "";

    position: absolute;

    left: 4px;
    bottom: -7px;

    width: 10px;
    height: 9px;

    background: var(--dog-light);

    border: 2px solid #55494b;

    border-radius: 5px;
}


.pet-brown-dog .pet-body::after,
.pet-black-dog .pet-body::after,
.pet-blonde-dog .pet-body::after {
    content: "";

    position: absolute;

    right: 4px;
    bottom: -7px;

    width: 10px;
    height: 9px;

    background: var(--dog-light);

    border: 2px solid #55494b;

    border-radius: 5px;
}


.pet-brown-dog .pet-head,
.pet-black-dog .pet-head,
.pet-blonde-dog .pet-head {
    z-index: 6;

    left: 27px;
    top: 28px;

    width: 61px;
    height: 55px;

    background: var(--dog);

    border: 3px solid #55494b;

    border-radius: 27px;

    box-shadow:
        inset 0 -6px 0 var(--dog-dark);
}


.pet-brown-dog .pet-head::before,
.pet-black-dog .pet-head::before,
.pet-blonde-dog .pet-head::before {
    content: "";

    position: absolute;

    left: 17px;
    bottom: 5px;

    width: 23px;
    height: 14px;

    background: var(--dog-light);

    border-radius: 11px;
}


.pet-brown-dog .pet-head::after,
.pet-black-dog .pet-head::after,
.pet-blonde-dog .pet-head::after {
    content: "";

    position: absolute;

    left: 7px;
    top: 34px;

    width: 8px;
    height: 5px;

    background: #ef9fb1;

    border-radius: 5px;

    box-shadow:
        38px 0 0 #ef9fb1;
}


/* floppy ears */

.pet-brown-dog .pet-ear,
.pet-black-dog .pet-ear,
.pet-blonde-dog .pet-ear {
    z-index: 5;

    top: 32px;

    width: 20px;
    height: 34px;

    background: var(--dog-dark);

    border: 3px solid #55494b;

    border-radius:
        13px 13px
        17px 17px;
}


.pet-brown-dog .pet-ear-left,
.pet-black-dog .pet-ear-left,
.pet-blonde-dog .pet-ear-left {
    left: 17px;

    transform: rotate(12deg);
}


.pet-brown-dog .pet-ear-right,
.pet-black-dog .pet-ear-right,
.pet-blonde-dog .pet-ear-right {
    left: 79px;

    transform: rotate(-12deg);
}


.pet-brown-dog .pet-eye,
.pet-black-dog .pet-eye,
.pet-blonde-dog .pet-eye {
    z-index: 9;

    top: 47px;

    width: 13px;
    height: 16px;

    background: var(--dog-eye);

    border: 2px solid #4d4245;

    border-radius: 50%;
}


.pet-brown-dog .pet-eye::before,
.pet-black-dog .pet-eye::before,
.pet-blonde-dog .pet-eye::before {
    content: "";

    position: absolute;

    left: 2px;
    top: 2px;

    width: 5px;
    height: 5px;

    background: white;

    border-radius: 50%;
}


.pet-brown-dog .pet-eye-left,
.pet-black-dog .pet-eye-left,
.pet-blonde-dog .pet-eye-left {
    left: 38px;
}


.pet-brown-dog .pet-eye-right,
.pet-black-dog .pet-eye-right,
.pet-blonde-dog .pet-eye-right {
    left: 67px;
}


.pet-brown-dog .pet-nose,
.pet-black-dog .pet-nose,
.pet-blonde-dog .pet-nose {
    z-index: 10;

    left: 54px;
    top: 68px;

    width: 8px;
    height: 6px;

    background: #4a4041;

    border-radius: 50%;
}


.pet-brown-dog .pet-tail,
.pet-black-dog .pet-tail,
.pet-blonde-dog .pet-tail {
    z-index: 1;

    left: 78px;
    top: 66px;

    width: 17px;
    height: 29px;

    background: var(--dog);

    border: 3px solid #55494b;

    border-radius: 12px;

    transform: rotate(26deg);

    transform-origin: bottom center;
}


/* ==================================================
   KAWAII ANIMATIONS
   ================================================== */

.pet-choice:hover
.pet-sprite:not(.pet-none),

.pet-choice.selected
.pet-sprite:not(.pet-none) {
    animation:
        kawaiiBounce
        1.1s
        ease-in-out
        infinite;
}


@keyframes kawaiiBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }

}


/* preserve small tabby scaling */

.pet-choice:hover
.pet-grey-tabby-small,

.pet-choice.selected
.pet-grey-tabby-small {
    animation:
        smallTabbyBounce
        1.1s
        ease-in-out
        infinite;
}


@keyframes smallTabbyBounce {

    0%,
    100% {
        transform:
            translateY(5px)
            scale(0.91);
    }

    50% {
        transform:
            translateY(1px)
            scale(0.91);
    }

}


/* fluffy kitty slightly larger */

.pet-choice:hover
.pet-grey-tabby-fluffy,

.pet-choice.selected
.pet-grey-tabby-fluffy {
    animation:
        fluffyBounce
        1.1s
        ease-in-out
        infinite;
}


@keyframes fluffyBounce {

    0%,
    100% {
        transform:
            translateY(0)
            scale(1.03);
    }

    50% {
        transform:
            translateY(-4px)
            scale(1.03);
    }

}


/* wagging */

.pet-choice:hover
.pet-brown-dog
.pet-tail,

.pet-choice:hover
.pet-black-dog
.pet-tail,

.pet-choice:hover
.pet-blonde-dog
.pet-tail {
    animation:
        kawaiiWag
        0.32s
        ease-in-out
        infinite alternate;
}


@keyframes kawaiiWag {

    from {
        transform: rotate(15deg);
    }

    to {
        transform: rotate(39deg);
    }

}


/* kitty tails */

.pet-choice:hover
.pet-grey-tabby-fluffy
.pet-tail,

.pet-choice:hover
.pet-grey-tabby-small
.pet-tail,

.pet-choice:hover
.pet-orange-cat
.pet-tail,

.pet-choice:hover
.pet-black-cat
.pet-tail,

.pet-choice:hover
.pet-brown-cat
.pet-tail {
    animation:
        kawaiiCatTail
        0.7s
        ease-in-out
        infinite alternate;
}


@keyframes kawaiiCatTail {

    from {
        transform: rotate(16deg);
    }

    to {
        transform: rotate(35deg);
    }

}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 760px) {

    .pet-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}


@media (max-width: 430px) {

    .pet-grid {
        grid-template-columns: 1fr;
    }

}