/* Kitten Detail Page Styles */

.kitten-hero {
    background: linear-gradient(135deg, var(--cream) 0%, #f0f4f0 100%);
    padding: 120px 0 80px;
}

.kitten-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.kitten-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.kitten-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.kitten-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--pine-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.kitten-hero-info {
    padding: 2rem 0;
}

.kitten-hero-name {
    font-size: 3rem;
    color: var(--pine-green);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.kitten-hero-name i {
    color: var(--wood-brown);
    margin-right: 1rem;
}

.kitten-hero-tagline {
    font-size: 1.3rem;
    color: var(--wood-brown);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.kitten-hero-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pine-green);
    margin-bottom: 2rem;
}

.kitten-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Details Section */
.kitten-details {
    padding: 80px 0;
    background: white;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.detail-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-card h3 {
    font-size: 1.4rem;
    color: var(--pine-green);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.detail-card h3 i {
    color: var(--wood-brown);
    font-size: 1.2rem;
}

.detail-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.detail-card p:last-child {
    margin-bottom: 0;
}

.trait-list {
    list-style: none;
    padding: 0;
}

.trait-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(47, 74, 52, 0.1);
    color: #555;
}

.trait-list li:last-child {
    border-bottom: none;
}

.trait-list strong {
    color: var(--pine-green);
    display: inline-block;
    min-width: 140px;
}

/* Ready to Adopt Section */
.ready-to-adopt {
    background: var(--pine-green);
    padding: 80px 0;
    text-align: center;
}

.adoption-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.adoption-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.adoption-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .kitten-hero {
        padding: 100px 0 60px;
    }
    
    .kitten-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .kitten-hero-image img {
        height: 300px;
    }
    
    .kitten-hero-name {
        font-size: 2.5rem;
    }
    
    .kitten-hero-buttons {
        justify-content: center;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .detail-card {
        padding: 1.5rem;
    }
    
    .adoption-cta h2 {
        font-size: 2rem;
    }
    
    .adoption-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .adoption-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .kitten-hero {
        padding: 80px 0 40px;
    }
    
    .kitten-hero-name {
        font-size: 2rem;
    }
    
    .kitten-hero-tagline {
        font-size: 1.1rem;
    }
    
    .kitten-hero-price {
        font-size: 1.5rem;
    }
    
    .trait-list strong {
        min-width: 120px;
        font-size: 0.9rem;
    }
    
    .detail-card h3 {
        font-size: 1.2rem;
    }
}