

/* Контент страницы */
.not-found-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 30px;
    margin: 30px 0;
    width: 100%;
    /*max-width: 1000px;*/
}

.cat-container {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cat-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.cat-image:hover {
    transform: scale(1.03);
}

.message-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding: 20px;
}

.not-found-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4e342e;
    margin-bottom: 25px;
    line-height: 1.3;
}

.not-found-message {
    font-size: 1.5rem;
    color: #5d4037;
    margin-bottom: 30px;
    line-height: 1.6;
}

.message-container a {
    color: #8d6e63;
    text-decoration: none;
    transition: color 0.3s;
}

.message-container a:hover {
    color: #5d4037;
    text-decoration: none;
}

.suggestions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9e1d5;
}

.suggestions h3 {
    font-size: 1.3rem;
    color: #5d4037;
    margin-bottom: 15px;
}

.suggestions-list {
    list-style-type: none;
}

.suggestions-list li {
    margin-bottom: 10px;
   /* display: flex;
    align-items: center; */
}

.suggestions-list li i {
    color: #8d6e63;
    margin-right: 10px;
}



.message-container .home-button {
    display: inline-block;
    background: #8d6e63;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s;
    margin-top: 20px;
}

.message-container .home-button:hover {
    background: #6d4c41;
    color: white;
    text-decoration: none;
}

.cat-paw {
    position: absolute;
    font-size: 2rem;
    color: #8d6e63;
    opacity: 0.4;
    z-index: 2;
}

.paw-1 {
    top: 30%;
    left: 15%;
    transform: rotate(25deg);
}

.paw-2 {
    top: 60%;
    left: 25%;
    transform: rotate(-15deg);
}

.paw-3 {
    top: 45%;
    right: 20%;
    transform: rotate(-30deg);
}

.paw-4 {
    top: 20%;
    right: 15%;
    transform: rotate(10deg);
}


/* Адаптивность */

@media (max-width: 768px) {
    
    .not-found-container {
        flex-direction: column;
        padding: 20px;
    }
    
    .not-found-title {
        font-size: 2rem;
    }
    
    .not-found-message {
        font-size: 1.2rem;
    }
    
    .cat-container {
        min-height: 300px;
    }
    
    .cat-paw {
        display: none;
    }
}

@media (max-width: 480px) {
   
    
    .not-found-title {
        font-size: 1.8rem;
    }
    
    .not-found-message {
        font-size: 1.1rem;
    }

}

