/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Bengal color palette */
    --bengal-charcoal: #1a1614;
    --bengal-deep: #2b2420;
    --bengal-warm: #4a3f38;
    --bengal-amber: #d4a574;
    --bengal-gold: #e8c295;
    --bengal-cream: #faf7f2;
    --bengal-cream-soft: #f5ede3;
    --bengal-line: rgba(255, 255, 255, 0.1);
    --accent-teal: #3d9b8f;
    --accent-coral: #e67e60;
    --accent-soft: rgba(212, 165, 116, 0.12);
    --text-main: #2b2420;
    --text-muted: rgba(43, 36, 32, 0.7);
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.18);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background: 
        radial-gradient(ellipse at top left, rgba(212, 165, 116, 0.08), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(61, 155, 143, 0.06), transparent 50%),
        #faf7f2;
}

/* Layout container */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px) saturate(180%);
    background: rgba(250, 247, 242, 0.85);
    border-bottom: 1px solid rgba(43, 36, 32, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-logo-paw {
    width: 44px;
    height: 44px;
    background-image: url("static/images/icons/paw.png");
    background-size: contain;   /* scale full paw inside */
    background-repeat: no-repeat;
    background-position: center;
}

/* Add Bengal rosette pattern to logo */
.nav-logo-paw::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background-image:
        radial-gradient(ellipse 8px 6px at 20% 35%, rgba(43, 36, 32, 0.15) 0, transparent 50%),
        radial-gradient(ellipse 8px 6px at 75% 40%, rgba(43, 36, 32, 0.15) 0, transparent 50%),
        radial-gradient(ellipse 10px 8px at 45% 65%, rgba(43, 36, 32, 0.15) 0, transparent 50%);
    opacity: 0.6;
}

.nav-brand-text h1 {
    font-family: 'Sora', sans-serif;
    color: var(--bengal-charcoal);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.nav-tagline {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.2s ease;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-teal), var(--bengal-amber));
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-teal);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background:
        radial-gradient(ellipse at top left, rgba(212, 165, 116, 0.15), transparent 55%),
        radial-gradient(ellipse at bottom right, rgba(61, 155, 143, 0.12), transparent 60%),
        linear-gradient(165deg, #faf7f2 0%, #f5ede3 100%);
}

/* Bengal rosette pattern overlay */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 45px 35px at 15% 25%, rgba(212, 165, 116, 0.08) 0, transparent 60%),
        radial-gradient(ellipse 38px 30px at 78% 30%, rgba(212, 165, 116, 0.06) 0, transparent 60%),
        radial-gradient(ellipse 50px 40px at 40% 65%, rgba(61, 155, 143, 0.05) 0, transparent 65%),
        radial-gradient(ellipse 42px 32px at 85% 75%, rgba(212, 165, 116, 0.07) 0, transparent 60%),
        radial-gradient(ellipse 48px 38px at 25% 80%, rgba(61, 155, 143, 0.06) 0, transparent 65%);
    opacity: 0.7;
    pointer-events: none;
    animation: subtleFloat 25s ease-in-out infinite;
}

@keyframes subtleFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -10px); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 0, 0, 0.02), transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0 70px;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.15fr);
    gap: 60px;
    align-items: center;
}

.hero-copy h1 {
    font-family: 'Sora', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--bengal-charcoal);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 640px;
    margin-bottom: 28px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-pill {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--bengal-warm);
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08), rgba(61, 155, 143, 0.05));
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-pill:hover {
    border-color: var(--bengal-amber);
    background: rgba(212, 165, 116, 0.12);
    transform: translateY(-1px);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Search Form */
.search-container {
    width: 100%;
    max-width: 600px;
}

.search-form {
    display: flex;
    padding: 6px;
    align-items: center;
    border-radius: 999px;
    background: var(--white);
    border: 2px solid rgba(43, 36, 32, 0.12);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.search-form:focus-within {
    border-color: var(--accent-teal);
    box-shadow: 0 8px 32px rgba(61, 155, 143, 0.15);
}

.search-form input[type="text"] {
    flex: 1;
    background: transparent;
    border: none;
    height: 54px;
    font-size: 15px;
    color: var(--text-main);
    font-weight: 400;
    padding: 0 20px;
    outline: none;
}

.search-form input::placeholder {
    color: rgba(43, 36, 32, 0.5);
}

.search-btn {
    height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--accent-teal), #4db5a5);
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(61, 155, 143, 0.25);
}

.search-btn svg {
    width: 18px;
    height: 18px;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 155, 143, 0.35);
    background: linear-gradient(135deg, #4db5a5, var(--accent-teal));
}

/* Primary CTA under search */
.primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.primary-cta .cta-arrow {
    font-size: 18px;
    color: var(--accent-teal);
    transition: transform 0.3s ease;
}

.primary-cta:hover {
    color: var(--accent-teal);
}

.primary-cta:hover .cta-arrow {
    transform: translateX(4px);
}

/* Hero accent card */
.hero-accent-card {
    display: flex;
    justify-content: flex-end;
}

.hero-accent-inner {
    width: 100%;
    max-width: 380px;
    border-radius: 24px;
    padding: 32px;
    background: var(--white);
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: var(--shadow-lg);
    color: var(--text-main);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-accent-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.15);
}

/* Bengal rosette accent on card */
.hero-accent-inner::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background-image:
        radial-gradient(ellipse 25px 20px at 35% 40%, rgba(212, 165, 116, 0.15) 0, transparent 65%),
        radial-gradient(ellipse 30px 24px at 65% 60%, rgba(61, 155, 143, 0.12) 0, transparent 65%);
    border-radius: 50%;
    opacity: 0.8;
    pointer-events: none;
}

.hero-accent-inner > * {
    position: relative;
    z-index: 1;
}

.accent-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-teal);
    margin-bottom: 12px;
    font-weight: 700;
}

.accent-headline {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--bengal-charcoal);
    line-height: 1.3;
}

.accent-body {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.accent-list {
    list-style: none;
    font-size: 13px;
    color: var(--text-main);
    margin-bottom: 20px;
}

.accent-list li {
    padding-left: 24px;
    margin-bottom: 8px;
    position: relative;
    line-height: 1.6;
}

.accent-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: 700;
    font-size: 14px;
}

.accent-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-teal);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
}

.accent-link:hover {
    gap: 8px;
    color: #4db5a5;
}

/* Available Kittens Section */
.kittens-section {
    background: var(--white);
    padding: 90px 0 80px;
    position: relative;
}

/* Subtle rosette pattern in background */
.kittens-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 60px 48px at 10% 20%, rgba(212, 165, 116, 0.04) 0, transparent 65%),
        radial-gradient(ellipse 55px 44px at 90% 30%, rgba(61, 155, 143, 0.03) 0, transparent 65%),
        radial-gradient(ellipse 65px 52px at 25% 75%, rgba(212, 165, 116, 0.04) 0, transparent 65%),
        radial-gradient(ellipse 58px 46px at 85% 85%, rgba(61, 155, 143, 0.03) 0, transparent 65%);
    opacity: 0.6;
    pointer-events: none;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-teal);
    margin-bottom: 12px;
    font-weight: 700;
}

.section-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--bengal-charcoal);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Filter Toolbar */
.filter-toolbar {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 8px;
    background: rgba(250, 247, 242, 0.8);
    border-radius: 999px;
    border: 1px solid rgba(43, 36, 32, 0.08);
}

.filter-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: var(--text-main);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.filter-btn:hover {
    background: rgba(61, 155, 143, 0.08);
    color: var(--accent-teal);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--accent-teal), #4db5a5);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(61, 155, 143, 0.25);
}

.filter-hint {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

/* Kittens Grid */
.kittens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 1;
}

/* Kitten Card */
.kitten-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(43, 36, 32, 0.06);
    position: relative;
}

.kitten-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--bengal-amber);
}

.kitten-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #f5ede3, #faf7f2);
}

.kitten-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.kitten-card:hover .kitten-image {
    transform: scale(1.05);
}

.availability-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-available {
    background: rgba(61, 155, 143, 0.95);
    color: var(--white);
}

.badge-reserved {
    background: rgba(230, 126, 96, 0.95);
    color: var(--white);
}

.badge-sold {
    background: rgba(43, 36, 32, 0.9);
    color: var(--white);
}

.kitten-info {
    padding: 24px;
}

.kitten-name {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--bengal-charcoal);
    margin-bottom: 6px;
}

.kitten-price {
    font-size: 18px;
    color: var(--accent-teal);
    font-weight: 700;
    margin-bottom: 10px;
}

.kitten-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.kitten-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-tag {
    font-size: 11px;
    padding: 6px 12px;
    background: rgba(212, 165, 116, 0.1);
    color: var(--bengal-warm);
    border-radius: 6px;
    font-weight: 600;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

/* About Section */
.about-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #faf7f2 0%, var(--white) 100%);
    position: relative;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 60px;
    align-items: start;
}

.about-copy {
    position: relative;
    z-index: 1;
}

.about-copy h2 {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--bengal-charcoal);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.about-copy p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.features-list {
    list-style: none;
    margin-top: 20px;
}

.features-list li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.6;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: 700;
    font-size: 16px;
}

.about-highlight {
    position: relative;
    z-index: 1;
}

.about-card {
    background: linear-gradient(135deg, var(--accent-teal), #4db5a5);
    border-radius: 24px;
    padding: 36px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

/* Bengal rosette pattern on about card */
.about-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80px 64px at 15% 20%, rgba(255, 255, 255, 0.08) 0, transparent 65%),
        radial-gradient(ellipse 70px 56px at 85% 80%, rgba(255, 255, 255, 0.06) 0, transparent 65%);
    opacity: 0.7;
    pointer-events: none;
}

.about-card > * {
    position: relative;
    z-index: 1;
}

.about-card-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    opacity: 0.9;
    margin-bottom: 12px;
    font-weight: 700;
}

.about-card-headline {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.3;
}

.about-card-body {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.95;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5ede3, #faf7f2);
    position: relative;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 50px;
    margin-top: 50px;
    align-items: start;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h3 {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--bengal-amber);
    margin-bottom: 12px;
}

.contact-item p,
.contact-placeholder {
    color: var(--text-main);
    font-size: 18px;
    line-height: 1.6;
}

.contact-placeholder {
    color: var(--text-muted);
    font-style: italic;
}

.contact-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--bengal-amber);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    padding: 8px;
}

.map-container iframe {
    border-radius: 12px;
    display: block;
}

.map-caption {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
    font-style: italic;
}

.section-eyebrow-light {
    color: var(--accent-teal);
}

/* Old contact info row - removed, replaced with new layout above */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.contact-item {
    text-align: left;
}

.contact-item h3 {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--bengal-charcoal);
    margin-bottom: 8px;
}

.contact-item a,
.contact-item p {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-teal);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--bengal-charcoal), #1a1614);
    color: rgba(250, 247, 242, 0.85);
    text-align: center;
    padding: 28px 0;
    border-top: 1px solid rgba(212, 165, 116, 0.15);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.footer-note {
    font-size: 12px;
    color: rgba(250, 247, 242, 0.6);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

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

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 22, 20, 0.75);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: var(--white);
    margin: 20px;
    padding: 0;
    border-radius: 28px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    z-index: 2001;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    border: 2px solid rgba(43, 36, 32, 0.1);
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bengal-charcoal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--accent-teal);
    color: var(--white);
    border-color: var(--accent-teal);
    transform: rotate(90deg);
}

.modal-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
}

.modal-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-thumbnails {
    display: flex;
    gap: 10px;
    padding: 14px 18px 4px;
    overflow-x: auto;
    border-bottom: 1px solid rgba(212, 165, 116, 0.25);
}

.modal-thumb {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.65;
    border: 2px solid transparent;
    flex: 0 0 auto;
    transition: all 0.2s ease;
}

.modal-thumb:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.modal-thumb.active {
    opacity: 1;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 1px rgba(61, 155, 143, 0.35);
}


.modal-info {
    padding: 32px;
}

.modal-info h3 {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--bengal-charcoal);
    margin-bottom: 8px;
}

.modal-info .price {
    font-size: 22px;
    color: var(--accent-teal);
    font-weight: 700;
    margin-bottom: 16px;
}

.modal-info .description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.modal-info .kitten-details {
    margin-bottom: 16px;
}

.modal-info .status {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.status-available {
    background: linear-gradient(135deg, var(--accent-teal), #4db5a5);
    color: var(--white);
}

.status-reserved {
    background: linear-gradient(135deg, var(--accent-coral), #f09576);
    color: var(--white);
}

.status-sold {
    background: linear-gradient(135deg, var(--bengal-warm), var(--bengal-deep));
    color: var(--white);
}

/* Loading State */
.loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 15px;
    grid-column: 1 / -1;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    grid-column: 1 / -1;
}

.no-results h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--bengal-charcoal);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hero-layout {
        grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.2fr);
    }
}

@media (max-width: 960px) {
    .hero-layout,
    .about-layout,
    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-accent-card {
        justify-content: flex-start;
    }

    .hero-accent-inner {
        margin-top: 12px;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .nav-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 13px;
        flex-wrap: wrap;
    }

    .hero-copy h1 {
        font-size: 36px;
    }

    .hero-description {
        font-size: 15px;
    }

    .search-form {
        flex-direction: column;
        padding: 10px;
        gap: 8px;
    }

    .search-form input[type="text"],
    .search-btn {
        width: 100%;
        height: 48px;
    }

    .kittens-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .section-header h2 {
        font-size: 32px;
    }

    .about-copy h2,
    .contact-section h2 {
        font-size: 28px;
    }

    .modal-info {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .hero-copy h1 {
        font-size: 30px;
    }

    .kitten-image-container {
        height: 240px;
    }

    .filter-buttons {
        flex-direction: column;
        width: 100%;
    }

    .filter-btn {
        width: 100%;
    }
}

/* Universal reset to prevent distortion */
* {
    box-sizing: border-box;
}

/* Card image container — always fits full image */
.kitten-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3; /* Standard consistent frame */
    overflow: hidden;
    background: #f3f3f3;
}

.kitten-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures FULL image fits without cropping */
    object-position: center;
    background-color: #ffffff;
}

/* Modal full view */
.modal-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #fff;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* FULL image visible in modal */
    object-position: center;
    background-color: #ffffff;
}

/* Thumbnail strip */
.modal-thumbnails {
    display: flex;
    gap: 10px;
    padding: 12px;
    overflow-x: auto;
}

.modal-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.75;
    transition: 0.2s;
}

.modal-thumb.active {
    opacity: 1;
    border: 2px solid #4cc9f0;
}
