/* ==========================================================================
   Ragdollcat.at - Main Stylesheet
   ========================================================================== */

/* CSS Variables */
:root {
    --primary-color: #b6834f;
    --secondary-color: #8b6239;
    --accent-color: #d4a574;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --border-radius: 10px;
    --font-primary: 'Open Sans', Arial, sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1.5;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--text-muted);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: white;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Top Bar */
.top-bar {
    background-color: var(--text-dark);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info a {
    color: white;
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

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

.social-links a {
    color: white;
    margin-left: 15px;
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

/* Header */
.main-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo with Button Container */
.logo-with-button {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-with-button .logo {
    margin: 0;
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
}

.header-contact-btn {
    white-space: nowrap;
    padding: 10px 20px;
    font-size: 0.9rem;
    margin: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    padding: 10px 0;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Main Content */
.main-content {
    padding: 60px 0;
    min-height: 500px;
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 20px auto;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* Welcome Section */
.welcome-section {
    background-color: var(--bg-white);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.95rem;
    margin: 0;
}

.welcome-image {
    position: relative;
}

.welcome-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
    z-index: -1;
}

/* Expected Litter Section - Reverse Layout with Double Images */
.expected-litter-section {
    background-color: var(--bg-light);
}

.welcome-content-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-image-double {
    position: relative;
    width: 100%;
    height: 500px;
}

.welcome-image-double .image-small {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.welcome-image-double .image-large {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.welcome-image-double .image-decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
    z-index: 0;
}

/* Kitten Contact Buttons */
.kitten-contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.kitten-contact-buttons .btn {
    flex: 0 1 auto;
    min-width: 180px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

.btn-call {
    background-color: #4A90E2;
    color: white;
    border: none;
}

.btn-call:hover {
    background-color: #357ABD;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(74, 144, 226, 0.3);
}

.btn-whatsapp i,
.btn-call i {
    font-size: 1.1em;
    margin-right: 5px;
}

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

.cat-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.cat-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.cat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cat-card:hover .cat-image img {
    transform: scale(1.1);
}

.cat-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.cat-info {
    padding: 25px;
}

.cat-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cat-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-muted);
}

.cat-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cat-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Available Cats Section */
.available-cats-section {
    background-color: var(--bg-light);
}

/* Why Ragdoll Section */
.why-ragdoll-section {
    background-color: var(--bg-white);
}

.why-ragdoll-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.why-item {
    text-align: center;
    padding: 30px;
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

.why-item:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-item h3 {
    margin-bottom: 15px;
}

/* Gallery Preview */
.gallery-preview-section {
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    color: white;
    font-size: 3rem;
}

/* Testimonials */
.testimonials-section {
    background-color: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.testimonial-rating {
    color: var(--warning-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 60px 20px 40px;
}

.page-header h1 {
    color: white;
    margin-bottom: 15px;
}

.page-header-small {
    padding: 40px 20px 30px;
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 15px 0;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.8);
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    font-size: 1.2rem;
}

.breadcrumb a {
    color: white;
}

.breadcrumb .active {
    color: white;
    font-weight: 600;
}

/* About Page */
.about-section {
    background-color: var(--bg-white);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.about-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.our-values {
    background-color: var(--bg-light);
    padding: 60px;
    border-radius: var(--border-radius);
}

.our-values h2 {
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.value-item {
    text-align: center;
}

.value-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.breeding-program {
    margin-top: 60px;
}

.breeding-program h2 {
    text-align: center;
    margin-bottom: 40px;
}

.breeding-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.breeding-text ul {
    list-style: none;
}

.breeding-text li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breeding-text li i {
    color: var(--success-color);
}

.breeding-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.adoption-process {
    margin-top: 60px;
    background-color: var(--bg-light);
    padding: 60px;
    border-radius: var(--border-radius);
}

.adoption-process h2 {
    text-align: center;
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.cta-box {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px;
    border-radius: var(--border-radius);
    margin-top: 60px;
}

.cta-box h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-box p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Contact Page */
.contact-section {
    background-color: var(--bg-white);
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info-box {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
}

.contact-info-box h3 {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: var(--text-light);
}

.social-contact {
    margin-top: 40px;
}

.social-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.social-btn.facebook {
    background-color: #3b5998;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: white;
}

/* Contact Form */
.contact-form-box {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.contact-form-box h3 {
    margin-bottom: 30px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-info {
    margin: 20px 0;
}

.form-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.map-section {
    margin-top: 60px;
}

.map-section h3 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Gallery Page */
.gallery-section {
    background-color: var(--bg-white);
}

.gallery-intro {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.gallery-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.gallery-item-large {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item-large:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.gallery-item-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item-large:hover img {
    transform: scale(1.1);
}

.gallery-item-large .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-large:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: white;
    margin-bottom: 15px;
}

.gallery-info h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.gallery-info p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    margin: 0;
}

.gallery-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item-large:hover .gallery-view-btn {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background-color: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255,255,255,0.4);
    transform: scale(1.1);
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 50px 0;
}

.pagination-btn,
.pagination-number {
    padding: 10px 15px;
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pagination-btn:hover,
.pagination-number:hover {
    background-color: var(--primary-color);
    color: white;
}

.pagination-current {
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 700;
}

.pagination-dots {
    padding: 10px;
}

.pagination-numbers {
    display: flex;
    gap: 5px;
    align-items: center;
}

/* Available Cats Page */
.available-cats-page {
    background-color: var(--bg-white);
}

.cats-intro {
    text-align: center;
    margin-bottom: 50px;
}

.cats-filter {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 50px;
}

.filter-form {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.filter-group select {
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
}

.btn-reset-filter {
    padding: 10px 20px;
    background-color: var(--text-muted);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-reset-filter:hover {
    background-color: var(--text-light);
    color: white;
}

.cats-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;
}

.cat-card-detailed {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.cat-card-detailed:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.cat-image-detailed {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.cat-status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
}

.cat-content-detailed {
    padding: 30px;
}

.cat-content-detailed h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.cat-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.spec-item i {
    color: var(--primary-color);
    width: 20px;
}

.cat-parents {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.cat-parents h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.cat-parents p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cat-description {
    margin-bottom: 25px;
}

.cat-footer-detailed {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
}

.cat-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Cat Details Page */
.cat-details-section {
    background-color: var(--bg-white);
    padding-bottom: 80px;
}

.cat-details-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.cat-gallery-col {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.cat-main-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-lg);
}

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

.image-zoom-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: white;
    color: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.image-zoom-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.cat-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.cat-thumbnail {
    height: 100px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
}

.cat-thumbnail:hover,
.cat-thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

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

.cat-info-col {
    padding-top: 20px;
}

.cat-header-info {
    margin-bottom: 30px;
}

.cat-header-info h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cat-status {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
}

.status-available {
    background-color: var(--success-color);
    color: white;
}

.status-reserved {
    background-color: var(--warning-color);
    color: white;
}

.status-sold {
    background-color: var(--text-muted);
    color: white;
}

.status-breeding {
    background-color: var(--info-color);
    color: white;
}

.gender-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
}

.gender-male {
    background-color: #4A90E2;
    color: white;
}

.gender-female {
    background-color: #E94B8A;
    color: white;
}

.cat-price-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    text-align: center;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
}

.cat-specifications {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.cat-specifications h3 {
    margin-bottom: 20px;
}

.specs-table {
    width: 100%;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-color);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 15px 10px;
}

.specs-table td:first-child {
    color: var(--text-muted);
    width: 40%;
}

.specs-table td:first-child i {
    margin-right: 10px;
    color: var(--primary-color);
}

.cat-description-box {
    margin-bottom: 30px;
}

.cat-description-box h3 {
    margin-bottom: 15px;
}

.cat-features {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.cat-features h3 {
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
}

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

.features-list i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.cat-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.siblings-section {
    margin-top: 80px;
}

.siblings-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* Info Box */
.info-box-section {
    margin-top: 60px;
}

.info-box {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-color);
    display: flex;
    gap: 30px;
}

.info-box i {
    font-size: 3rem;
    color: var(--primary-color);
}

.info-content h3 {
    margin-bottom: 20px;
}

.info-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.info-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.info-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results i {
    font-size: 5rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* Content Page */
.content-page {
    background-color: var(--bg-white);
    padding: 60px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.content-wrapper h2 {
    margin-top: 30px;
    margin-bottom: 20px;
}

.content-wrapper h3 {
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-wrapper li {
    margin-bottom: 10px;
}

/* Footer */
.main-footer {
    background-color: var(--text-dark);
    color: rgba(255,255,255,0.8);
}

.footer-top {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
}

.social-links-footer {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links-footer a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links-footer a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 14px;
}

.newsletter-form button {
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    background-color: rgba(0,0,0,0.3);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.6);
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
}

.footer-links a:hover {
    color: white;
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.alert i {
    font-size: 1.3rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid var(--success-color);
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid var(--error-color);
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border-left: 4px solid var(--warning-color);
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid var(--info-color);
}

.alert-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.alert-close:hover {
    opacity: 1;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

.text-warning {
    color: var(--warning-color);
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

/* Badge */
.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
    margin-left: 8px;
}

.badge-info {
    background-color: var(--info-color);
    color: white;
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

/* Table Image */
.table-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

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

/* Table Actions */
.table-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.btn-edit {
    background-color: #ffc107;
    color: white;
}

.btn-edit:hover {
    background-color: #e0a800;
}

.btn-view {
    background-color: #17a2b8;
    color: white;
}

.btn-view:hover {
    background-color: #138496;
}

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

.btn-delete:hover {
    background-color: #c82333;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
}

.btn-danger:hover {
    background-color: #c82333;
}

/* Notification Popup */
.notification-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    min-width: 300px;
    max-width: 500px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.notification-popup.show {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .logo-with-button {
        gap: 15px;
    }
    
    .header-contact-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .logo-with-button {
        gap: 12px;
    }
    
    .header-contact-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .logo img {
        max-height: 60px;
    }
    
    .kitten-contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .kitten-contact-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .logo-with-button {
        gap: 10px;
    }
    
    .header-contact-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .logo img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .logo-with-button {
        gap: 8px;
    }
    
    .header-contact-btn {
        padding: 5px 8px;
        font-size: 0.7rem;
    }
    
    .logo img {
        max-height: 45px;
    }
}