body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    color: #333;
}

.container {
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

h1, h2 {
    text-align: center;
    color: #d9534f;
}

.cat-image {
    text-align: center;
    margin: 1.5rem 0;
}

.cat-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 3px solid #d9534f;
}

.details, .contact, .reward {
    margin: 1.5rem 0;
}

.details ul {
    list-style: none;
    padding: 0;
}

.details li {
    padding: 0.4rem 0;
}

.phone {
    font-size: 1.2rem;
    font-weight: bold;
    color: #d9534f;
}

button#shareBtn {
    display: block;
    margin: 2rem auto 0;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    background: #d9534f;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

button#shareBtn:hover {
    background: #c9302c;
}
.carousel {
    position: relative;
    max-width: 600px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel img {
    min-width: 100%;
    height: auto;
    display: none;
}

.carousel img.active {
    display: block;
}

.carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 50%;
}

.carousel button:hover {
    background: rgba(0,0,0,0.8);
}

.carousel .prev {
    left: 10px;
}

.carousel .next {
    right: 10px;
}
