/* 🐱 Salon des Chats - Styles */

.meow-main {
    min-height: 100vh;
    background: var(--background-light);
    padding: 90px 20px 40px;
}

.meow-container {
    max-width: 900px;
    margin: 0 auto;
}

.meow-screen {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.meow-screen.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards */
.meow-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: none;
}

.meow-card h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 700;
}

.meow-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Forms */
.meow-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="file"] {
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 77, 58, 0.1);
}

.form-group input[type="file"] {
    display: none;
}

.form-group small {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Image Upload */
.image-upload {
    position: relative;
    cursor: pointer;
}

.image-preview {
    border: 3px dashed #E0E0E0;
    border-radius: var(--border-radius);
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition);
    background: #FAFBFC;
    cursor: pointer;
    user-select: none;
}

.image-preview:hover {
    border-color: var(--primary-color);
    background: #F0F3F6;
    transform: translateY(-2px);
}

.image-preview i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.image-preview p {
    color: var(--text-light);
    margin: 0;
}

.image-preview.has-image {
    border-style: solid;
    padding: 10px;
}

.image-preview.has-image img {
    max-width: 100%;
    max-height: 300px;
    border-radius: var(--border-radius);
    object-fit: cover;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover:not(:disabled) {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 77, 58, 0.3);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary {
    background: #E0E0E0;
    color: var(--text-dark);
}

.btn-secondary:hover:not(:disabled) {
    background: #D0D0D0;
}

.btn-large {
    width: 100%;
    font-size: 1.1rem;
    padding: 16px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-back {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 20px;
    transition: var(--transition);
}

.btn-back:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Messages */
.error-message {
    padding: 12px 15px;
    background: #FEE;
    border-left: 4px solid #E74C3C;
    border-radius: 4px;
    color: #C0392B;
    font-weight: 500;
}

.loading {
    text-align: center;
    padding: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Success Card */
.success-card {
    text-align: center;
    background: #F0FFF4;
    border: 2px solid #C6F6D5;
}

.success-icon {
    font-size: 4rem;
    color: #22863A;
    margin-bottom: 20px;
}

.success-card h2 {
    color: #22863A;
}

.success-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Salon Canvas Section */
.salon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.salon-header h1 {
    color: var(--primary-color);
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.salon-stats {
    display: flex;
    gap: 15px;
    font-weight: 600;
    color: var(--text-light);
}

.salon-stats i {
    color: var(--accent-color);
}

/* Cats Grid */
.cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px auto;
}

.cat-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.cat-card-image {
    width: 100%;
    aspect-ratio: 1;
    background: #f0f0f0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.cat-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-card-emoji {
    font-size: 3.5rem;
}

.cat-card-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cat-card-name {
    color: var(--primary-color);
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 700;
    word-break: break-word;
}

.cat-card-owner {
    color: var(--text-light);
    margin: 0 0 10px 0;
    font-size: 0.9rem;
}

.cat-card-character {
    font-size: 1.8rem;
    text-align: center;
}

.salon-footer {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Gestion des chats de l'utilisateur */
.my-cats-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.my-cat-item {
    display: flex;
    gap: 15px;
    align-items: center;
    background: #f8f9fa;
    padding: 15px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

.my-cat-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: white;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.my-cat-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.my-cat-emoji {
    font-size: 2.5rem;
}

.my-cat-info {
    flex-grow: 1;
}

.my-cat-info h3 {
    color: var(--primary-color);
    margin: 0 0 3px 0;
    font-size: 1.1rem;
}

.my-cat-info .owner {
    color: var(--text-light);
    margin: 0 0 8px 0;
    font-size: 0.9rem;
}

.my-cat-info .description {
    color: var(--text-dark);
    margin: 0;
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.my-cat-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-edit,
.btn-delete {
    padding: 8px 12px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.btn-edit {
    background: var(--primary-color);
    color: white;
}

.btn-edit:hover {
    background: #1a4d3a;
    opacity: 0.9;
}

.btn-delete {
    background: #e74c3c;
    color: white;
}

.btn-delete:hover {
    background: #c0392b;
}

/* Responsif */
@media (max-width: 768px) {
    .meow-main {
        padding: 90px 12px 20px;
    }

    .meow-container {
        max-width: 100%;
    }

    .meow-card {
        padding: 20px;
    }

    .meow-card h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"] {
        font-size: 16px; /* Évite le zoom auto sur iOS */
    }

    .salon-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .salon-header h1 {
        font-size: 1.3rem;
        width: 100%;
    }

    .salon-stats {
        width: 100%;
        justify-content: flex-start;
        font-size: 0.95rem;
    }

    .archive-description {
        font-size: 0.95rem;
        padding: 15px;
        margin-bottom: 15px;
    }

    .cats-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
        margin: 15px auto;
    }

    .cat-card-image {
        font-size: 2.5rem;
    }

    .cat-card-emoji {
        font-size: 2.5rem;
    }

    .salon-footer {
        gap: 8px;
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .btn-small {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .btn-back {
        width: 100%;
        margin-bottom: 15px;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .meow-main {
        padding: 80px 10px 15px;
    }

    .meow-card {
        padding: 12px;
        border-radius: 12px;
    }

    .meow-card h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .meow-card h3 {
        font-size: 1rem;
    }

    .form-group {
        gap: 6px;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group input[type="text"],
    .form-group input[type="email"] {
        padding: 11px 12px;
        font-size: 16px;
        border-radius: 6px;
    }

    .form-group small {
        font-size: 0.8rem;
    }

    .image-preview {
        padding: 30px 15px;
        border-radius: 8px;
    }

    .image-preview i {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .image-preview p {
        font-size: 0.9rem;
    }

    .image-preview.has-image img {
        max-height: 250px;
    }

    .salon-header {
        padding: 15px;
        margin-bottom: 12px;
    }

    .salon-header h1 {
        font-size: 1.1rem;
        margin: 0;
    }

    .salon-stats {
        font-size: 0.85rem;
        gap: 12px;
    }

    .archive-description {
        font-size: 0.9rem;
        padding: 12px;
        margin-bottom: 12px;
        border-left: 3px solid var(--accent-color);
    }

    .archive-description p {
        margin: 8px 0;
        line-height: 1.5;
    }

    .cats-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
        margin: 12px auto;
    }

    .cat-card-image {
        font-size: 2rem;
    }

    .cat-card-emoji {
        font-size: 2rem;
    }

    .cat-card-content {
        padding: 10px;
    }

    .cat-card-name {
        font-size: 0.95rem;
        margin-bottom: 3px;
    }

    .cat-card-owner {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .cat-card-character {
        font-size: 1.5rem;
    }

    .salon-footer {
        gap: 8px;
        padding: 0 5px;
    }

    .btn {
        padding: 10px 12px;
        font-size: 0.85rem;
        gap: 6px;
        width: 100%;
        justify-content: center;
    }

    .btn i {
        font-size: 0.9rem;
    }

    .btn-back {
        width: 100%;
        padding: 10px 12px;
        margin-bottom: 12px;
        font-size: 0.85rem;
    }

    .success-card {
        padding: 20px;
    }

    .success-icon {
        font-size: 3rem;
    }

    .success-card h2 {
        font-size: 1.3rem;
    }

    .success-card p {
        font-size: 1rem;
    }

    .error-message {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .loading {
        padding: 15px;
        font-size: 0.9rem;
    }
}

/* Form Elements */
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 77, 58, 0.1);
}

.form-group textarea {
    resize: vertical;
    color: var(--text-dark);
}

/* Multiple Images Upload */
.image-upload-input {
    position: relative;
    cursor: pointer;
    margin-bottom: 15px;
}

.image-upload-input input[type="file"] {
    display: none;
}

.image-upload-label {
    border: 3px dashed var(--primary-color);
    border-radius: var(--border-radius);
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition);
    background: #f8f9fa;
    cursor: pointer;
    user-select: none;
}

.image-upload-label:hover {
    background: #eef2f7;
    border-color: var(--accent-color);
}

.image-upload-label i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.image-upload-label p {
    color: var(--text-dark);
    font-weight: 600;
    margin: 10px 0 5px 0;
}

.image-upload-label small {
    color: var(--text-light);
    display: block;
}

/* Preview Grid */
.images-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.image-preview-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-preview-item:hover {
    transform: scale(1.05);
}

.image-remove-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.image-remove-btn:hover {
    background: #c0392b;
    transform: scale(1.15);
}

/* Images upload container (ancien style, à garder compatible) */
.images-upload-container {
    display: none;
}

/* Drag and drop */
.image-upload-input.drag-over .image-upload-label {
    border-color: var(--accent-color);
    background: #e8f5f1;
}

/* Cat Profile Modal */
.cat-profile-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    animation: fadeIn 0.3s ease-in;
}

.cat-profile-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-profile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.cat-profile-container {
    position: relative;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 2001;
}

.cat-profile-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 15px 15px;
    background: var(--secondary-color);
    border-bottom: 1px solid #E0E0E0;
}

.close-profile {
    position: relative;
    background: var(--primary-color);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-profile:hover {
    background: #d84236;
    transform: rotate(90deg);
}

.cat-profile-content {
    padding: 20px;
}

.cat-photos-section {
    margin-bottom: 25px;
}

.photos-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #f0f0f0;
    margin-bottom: 15px;
}

.photos-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photos-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}

.photo-nav {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.photo-nav:hover {
    background: #2ec600;
    transform: scale(1.1);
}

.photo-counter {
    font-weight: 600;
    color: var(--text-dark);
}

.photo-thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.photo-thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    flex-shrink: 0;
}

.photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-thumb.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--secondary-color), 0 0 0 4px var(--primary-color);
}

.cat-info-section {
    border-top: 2px solid #E0E0E0;
    padding-top: 20px;
}

.cat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.cat-header h2 {
    color: var(--primary-color);
    margin: 0 0 5px 0;
    font-size: 1.8rem;
}

.owner-name {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.cat-character-badge {
    font-size: 2rem;
    text-align: right;
}

.cat-description-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

.cat-description-box h3 {
    color: var(--primary-color);
    margin: 0 0 10px 0;
    font-size: 1rem;
}

.cat-description-box p {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
}

/* Responsive */
@media (max-width: 768px) {
    .image-upload-label {
        padding: 30px 15px;
    }

    .image-upload-label i {
        font-size: 2rem;
    }

    .image-upload-label p {
        font-size: 0.95rem;
    }

    .image-upload-label small {
        font-size: 0.85rem;
    }

    .images-preview-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 10px;
    }

    .image-remove-btn {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }

    .cat-profile-container {
        max-width: 95%;
        max-height: 80vh;
    }

    .cat-profile-header {
        padding: 12px 15px;
    }

    .close-profile {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .cat-profile-content {
        padding: 12px;
    }

    .photos-slider {
        margin-bottom: 8px;
    }

    .cat-header {
        flex-direction: column;
        gap: 15px;
    }

    .cat-character-badge {
        text-align: left;
        font-size: 1.5rem;
    }

    .photos-navigation {
        gap: 15px;
    }

    .photo-nav {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .photo-thumbnails {
        gap: 6px;
    }

    .photo-thumb {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }

    .bar {
        width: 25px;
        height: 3px;
        background: var(--secondary-color);
        margin: 3px 0;
        transition: var(--transition);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem;
        display: block;
        font-size: 1rem;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .image-upload-label {
        padding: 25px 10px;
    }

    .image-upload-label i {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .image-upload-label p {
        font-size: 0.9rem;
        margin: 8px 0 3px 0;
    }

    .image-upload-label small {
        font-size: 0.75rem;
    }

    .images-preview-grid {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 8px;
    }

    .image-remove-btn {
        width: 22px;
        height: 22px;
        font-size: 0.85rem;
        top: -6px;
        right: -6px;
    }

    .images-upload-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .cat-profile-container {
        width: 98%;
        max-height: 75vh;
        border-radius: 12px;
    }

    .cat-profile-header {
        padding: 12px 12px;
    }

    .close-profile {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }

    .cat-header h2 {
        font-size: 1.3rem;
    }

    .cat-character-badge {
        font-size: 1.2rem;
    }

    .photos-navigation {
        gap: 10px;
        margin-bottom: 10px;
    }

    .photo-nav {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .photo-counter {
        font-size: 0.85rem;
    }

    .photo-thumbnails {
        gap: 5px;
    }

    .photo-thumb {
        width: 38px;
        height: 38px;
    }

    .cat-info-section {
        padding-top: 12px;
    }

    .cat-description-box {
        padding: 10px;
    }

    .cat-description-box h3 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .cat-description-box p {
        font-size: 0.85rem;
    }

    .owner-name {
        font-size: 0.85rem;
    }

    .my-cat-item {
        gap: 12px;
        padding: 12px;
        flex-direction: column;
        text-align: center;
    }

    .my-cat-image {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .my-cat-actions {
        width: 100%;
        justify-content: center;
    }

    .btn-edit,
    .btn-delete {
        padding: 10px 14px;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* Animations */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cat-bouncing {
    animation: bounce 0.6s ease-in-out infinite;
}
