/* ============================================
   PETS MODULE - Estilos Completos
   ============================================ */

/* --- Variáveis do Tema Pets --- */
:root {
    --pet-primary: #0d9488;
    --pet-primary-light: #14b8a6;
    --pet-primary-dark: #0f766e;
    --pet-secondary: #06b6d4;
    --pet-accent: #f59e0b;
    --pet-accent-light: #fbbf24;
    --pet-accent-dark: #d97706;
    --pet-success: #10b981;
    --pet-danger: #ef4444;
    --pet-white: #ffffff;
    --pet-gray-50: #f9fafb;
    --pet-gray-100: #f3f4f6;
    --pet-gray-200: #e5e7eb;
    --pet-gray-300: #d1d5db;
    --pet-gray-400: #9ca3af;
    --pet-gray-500: #6b7280;
    --pet-gray-600: #4b5563;
    --pet-gray-700: #374151;
    --pet-gray-800: #1f2937;
    --pet-gray-900: #111827;
    --pet-radius-sm: 0.5rem;
    --pet-radius-md: 1rem;
    --pet-radius-lg: 1.5rem;
    --pet-radius-xl: 2rem;
    --pet-radius-full: 9999px;
    --pet-shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --pet-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --pet-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --pet-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --pet-shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --pet-transition: all 0.3s ease;
}

/* --- Animações --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* --- Reset Pets --- */
.pet-module * {
    box-sizing: border-box;
}

.pet-module img {
    max-width: 100%;
    height: auto;
}

/* --- Utilitários --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.grid { display: grid; }

.hidden { display: none !important; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.inline { display: inline; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-sm { max-width: 24rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.rounded-sm { border-radius: var(--pet-radius-sm); }
.rounded-md { border-radius: var(--pet-radius-md); }
.rounded-lg { border-radius: var(--pet-radius-lg); }
.rounded-xl { border-radius: var(--pet-radius-xl); }
.rounded-full { border-radius: var(--pet-radius-full); }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-\[0\.5rem\] { border-radius: 0.5rem; }
.rounded-\[2rem\] { border-radius: 2rem; }

.shadow-sm { box-shadow: var(--pet-shadow-sm); }
.shadow-md { box-shadow: var(--pet-shadow-md); }
.shadow-lg { box-shadow: var(--pet-shadow-lg); }
.shadow-xl { box-shadow: var(--pet-shadow-xl); }
.shadow-2xl { box-shadow: var(--pet-shadow-2xl); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.05); }

.border { border: 1px solid var(--pet-gray-200); }
.border-t { border-top: 1px solid var(--pet-gray-200); }
.border-b { border-bottom: 1px solid var(--pet-gray-200); }
.border-dashed { border-style: dashed; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

.cursor-pointer { cursor: pointer; }

.transition { transition: var(--pet-transition); }
.transition-all { transition: var(--pet-transition); }
.transition-transform { transition: transform 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }

.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* --- Backgrounds --- */
.bg-white { background-color: var(--pet-white); }
.bg-gray-50 { background-color: var(--pet-gray-50); }
.bg-gray-100 { background-color: var(--pet-gray-100); }

/* Greens */
.bg-emerald-50 { background-color: #ecfdf5; }
.bg-emerald-100 { background-color: #d1fae5; }
.bg-emerald-500 { background-color: #10b981; }
.bg-emerald-600 { background-color: #059669; }
.bg-emerald-700 { background-color: #047857; }
.bg-teal-50 { background-color: #f0fdfa; }
.bg-teal-100 { background-color: #ccfbf1; }
.bg-teal-500 { background-color: #14b8a6; }
.bg-teal-600 { background-color: #0d9488; }
.bg-teal-700 { background-color: #0f766e; }
.bg-cyan-700 { background-color: #0e7490; }
.bg-cyan-50 { background-color: #ecfeff; }

/* Ambers */
.bg-amber-50 { background-color: #fffbeb; }
.bg-amber-100 { background-color: #fef3c7; }
.bg-amber-500 { background-color: #f59e0b; }
.bg-amber-600 { background-color: #d97706; }

/* White variants */
.bg-white\/20 { background-color: rgba(255,255,255,0.2); }
.bg-white\/80 { background-color: rgba(255,255,255,0.8); }

/* --- Text Colors --- */
.text-white { color: var(--pet-white); }
.text-gray-400 { color: var(--pet-gray-400); }
.text-gray-500 { color: var(--pet-gray-500); }
.text-gray-600 { color: var(--pet-gray-600); }
.text-gray-700 { color: var(--pet-gray-700); }
.text-gray-800 { color: var(--pet-gray-800); }
.text-gray-900 { color: var(--pet-gray-900); }

.text-emerald-100 { color: #d1fae5; }
.text-emerald-200 { color: #a7f3d0; }
.text-emerald-500 { color: #10b981; }
.text-emerald-600 { color: #059669; }
.text-teal-600 { color: #0d9488; }
.text-teal-700 { color: #0f766e; }
.text-teal-900 { color: #134e4a; }
.text-cyan-50 { color: #ecfeff; }
.text-cyan-600 { color: #0891b2; }
.text-cyan-700 { color: #0e7490; }

.text-amber-500 { color: #f59e0b; }
.text-amber-600 { color: #d97706; }
.text-amber-600\/60 { color: rgba(217,119,6,0.6); }
.text-amber-800 { color: #92400e; }
.text-amber-900 { color: #78350f; }

.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1e293b; }

.text-emerald-50 { background-color: #ecfdf5; }

/* --- Font Sizes --- */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-\[10px\] { font-size: 10px; }

/* --- Font Weights --- */
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

/* --- Line Heights --- */
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* --- Letter Spacing --- */
.tracking-wide { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

/* --- Text Transform --- */
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.italic { font-style: italic; }

/* --- Truncate --- */
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* --- Spacing --- */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-16 { padding-top: 4rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-24 { padding-bottom: 6rem; }
.pl-12 { padding-left: 3rem; }
.pr-12 { padding-right: 3rem; }
.ml-1 { margin-left: 0.25rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-24 { margin-top: 6rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.-mt-16 { margin-top: -4rem; }
.mr-1 { margin-right: 0.25rem; }

/* --- Border Radius Specific --- */
.rounded-2xl { border-radius: 1rem; }

/* --- Grid Specific --- */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.col-span-full { grid-column: 1 / -1; }

/* --- Height/Width Specific --- */
.h-\[350px\] { height: 350px; }
.h-20 { height: 5rem; }
.w-20 { width: 5rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }

/* --- Object Fit --- */
.object-cover { object-fit: cover; }

/* --- Backdrop Filter --- */
.backdrop-blur-md { backdrop-filter: blur(12px); }

/* --- Opacity --- */
.opacity-10 { opacity: 0.1; }

/* --- Transform --- */
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
.active\:scale-95:active { transform: scale(0.95); }
.group-hover\:scale-105:hover { transform: scale(1.05); }
.group-hover\:rotate-12:hover { transform: rotate(12deg); }

/* --- Hover States --- */
.hover\:bg-emerald-50:hover { background-color: #ecfdf5; }
.hover\:bg-emerald-600:hover { background-color: #059669; }
.hover\:bg-emerald-700:hover { background-color: #047857; }
.hover\:bg-teal-600:hover { background-color: #0d9488; }
.hover\:bg-teal-700:hover { background-color: #0f766e; }
.hover\:bg-amber-500:hover { background-color: #f59e0b; }
.hover\:bg-amber-600:hover { background-color: #d97706; }
.hover\:shadow-lg:hover { box-shadow: var(--pet-shadow-lg); }
.hover\:shadow-xl:hover { box-shadow: var(--pet-shadow-xl); }
.hover\:shadow-emerald-100:hover { box-shadow: 0 10px 15px -3px rgba(16,185,129,0.1), 0 4px 6px -4px rgba(16,185,129,0.1); }
.hover\:text-teal-600:hover { color: #0d9488; }

/* --- Focus States --- */
.focus\:ring-4:focus { box-shadow: 0 0 0 4px rgba(16,185,129,0.2); }
.focus\:ring-emerald-500\/20:focus { box-shadow: 0 0 0 4px rgba(16,185,129,0.2); }
.focus\:outline-none:focus { outline: none; }

/* --- Animations --- */
.animate-fade-in { animation: fadeIn 0.5s ease; }
.animate-spin { animation: spin 1s linear infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

/* --- Spacing Between --- */
.space-y-8 > * + * { margin-top: 2rem; }

/* ============================================
   COMPONENTES ESPECÍFICOS PETS
   ============================================ */

/* --- Hero Section --- */
.pet-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom right, #059669, #0d9488, #0e7490);
    padding: 4rem 1.5rem 6rem;
}

.pet-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url('https://www.transparenttextures.com/patterns/paw-prints.png');
}

.pet-hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.pet-hero-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    color: white;
    border-radius: var(--pet-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.pet-hero h1 {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pet-hero p {
    font-size: 1.125rem;
    color: #ecfeff;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* --- Authority Bar --- */
.pet-authority-bar {
    background: var(--pet-cyan-700);
    color: white;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* --- Filter Section --- */
.pet-filters {
    background: white;
    border-radius: 1.5rem;
    box-shadow: var(--pet-shadow-2xl);
    border: 1px solid var(--pet-gray-100);
    padding: 1.5rem;
    margin-bottom: 3rem;
    margin-top: -4rem;
    position: relative;
    z-index: 20;
}

@media (min-width: 768px) {
    .pet-filters {
        padding: 2rem;
    }
}

.pet-filters-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pet-filters-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.pet-filter-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pet-gray-600);
    margin-bottom: 0.5rem;
    margin-left: 0.25rem;
}

.pet-filter-input-wrapper {
    position: relative;
}

.pet-filter-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 1rem;
    border: 1px solid var(--pet-gray-200);
    font-size: 1.125rem;
    transition: all 0.3s ease;
    outline: none;
}

.pet-filter-input:focus {
    box-shadow: 0 0 0 4px rgba(16,185,129,0.2);
}

.pet-filter-input-icon {
    position: absolute;
    left: 1rem;
    top: 0.875rem;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--pet-primary);
}

.pet-filter-input-location {
    position: absolute;
    right: 1rem;
    top: 0.875rem;
    padding: 0.25rem;
    color: var(--pet-primary);
    background: transparent;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pet-filter-input-location:hover {
    background: #ecfdf5;
}

.pet-filter-select {
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid var(--pet-gray-200);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--pet-gray-700);
    background: white;
    outline: none;
    appearance: none;
    cursor: pointer;
}

.pet-filter-select:focus {
    box-shadow: 0 0 0 4px rgba(16,185,129,0.2);
}

.pet-filter-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--pet-gray-50);
    align-items: center;
}

@media (min-width: 768px) {
    .pet-filter-actions {
        flex-direction: row;
        justify-content: space-between;
    }
}

.pet-filter-status {
    font-size: 0.875rem;
    color: var(--pet-gray-500);
    font-weight: 500;
    font-style: italic;
}

.pet-btn-search {
    width: 100%;
    background: var(--pet-primary);
    color: white;
    padding: 1rem 3rem;
    border-radius: 1rem;
    border: none;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .pet-btn-search {
        width: auto;
    }
}

.pet-btn-search:hover {
    background: var(--pet-primary-dark);
    box-shadow: var(--pet-shadow-lg);
    transform: scale(1.02);
}

/* --- Clinic Cards Grid --- */
.pet-clinics-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pet-clinics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pet-clinics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Clinic Card --- */
.pet-clinic-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: var(--pet-shadow-sm);
    border: 1px solid var(--pet-gray-100);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: fadeIn 0.5s ease;
    transition: all 0.3s ease;
}

.pet-clinic-card:hover {
    box-shadow: var(--pet-shadow-xl);
    box-shadow: 0 10px 15px -3px rgba(16,185,129,0.1), 0 4px 6px -4px rgba(16,185,129,0.1);
}

.pet-clinic-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pet-clinic-logo-wrapper {
    position: relative;
}

.pet-clinic-logo {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    object-fit: cover;
    border: 2px solid #ecfdf5;
    box-shadow: inset 0 2px 4px 0 rgba(0,0,0,0.05);
}

.pet-clinic-status {
    position: absolute;
    bottom: -0.25rem;
    right: -0.25rem;
    background: var(--pet-success);
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    border: 4px solid white;
}

.pet-clinic-info {
    min-width: 0;
}

.pet-clinic-name {
    font-weight: 700;
    color: var(--pet-gray-800);
    font-size: 1.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.pet-clinic-card:hover .pet-clinic-name {
    color: var(--pet-primary);
}

.pet-clinic-location {
    font-size: 0.875rem;
    color: var(--pet-gray-500);
    display: flex;
    align-items: center;
    margin-top: 0.25rem;
    font-weight: 500;
}

.pet-clinic-location svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.25rem;
    color: var(--pet-primary);
}

.pet-clinic-card-footer {
    margin-top: auto;
}

.pet-btn-details {
    display: block;
    text-align: center;
    background: var(--pet-primary);
    color: white;
    font-weight: 700;
    border-radius: 0.75rem;
    padding: 0.875rem;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(16,185,129,0.1), 0 4px 6px -4px rgba(16,185,129,0.1);
}

.pet-btn-details:hover {
    background: var(--pet-primary-dark);
}

/* --- No Results --- */
.pet-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 1rem;
    background: white;
    border-radius: 1.5rem;
    border: 2px dashed #d1fae5;
}

.pet-no-results h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pet-gray-700);
    margin-bottom: 0.5rem;
}

.pet-no-results p {
    color: var(--pet-gray-500);
    max-width: 24rem;
    margin: 0 auto;
}

/* --- Loading --- */
.pet-loading {
    text-align: center;
    padding: 5rem 1rem;
}

.pet-loading-spinner {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    border: 4px solid var(--pet-primary);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.pet-loading-text {
    margin-top: 1rem;
    color: var(--pet-primary);
    font-weight: 500;
    font-style: italic;
}

/* --- Article Detail --- */
.pet-article-detail {
    max-width: 80rem;
    margin: 0 auto;
    padding: 2.5rem 1rem 6rem;
}

.pet-article-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .pet-article-grid {
        grid-template-columns: 1fr 300px;
    }
}

.pet-article-content {
    min-width: 0;
}

.pet-article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pet-article-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: #ccfbf1;
    color: var(--pet-teal-700);
    border-radius: var(--pet-radius-full);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.pet-article-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 900;
    color: var(--pet-gray-900);
    margin-bottom: 1.5rem;
}

.pet-article-meta {
    font-size: 0.875rem;
    color: var(--pet-gray-400);
    font-weight: 700;
}

.pet-article-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: var(--pet-shadow-2xl);
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .pet-article-image {
        height: 550px;
    }
}

/* --- Article Body Content --- */
.pet-article-body {
    color: var(--pet-gray-700);
    line-height: 1.85;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
}

.pet-article-body h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 3rem 0 1.5rem;
}

.pet-article-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
}

.pet-article-body p {
    margin-bottom: 1.8rem;
}

.pet-article-body ul,
.pet-article-body ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.pet-article-body li {
    margin-bottom: 0.5rem;
}

.pet-article-body ul li {
    list-style: disc;
}

.pet-article-body ol li {
    list-style: decimal;
}

.pet-article-body strong {
    color: var(--pet-gray-900);
    font-weight: 700;
}

.pet-article-body a {
    color: var(--pet-primary);
    text-decoration: underline;
}

.pet-article-body a:hover {
    color: var(--pet-primary-dark);
}

/* --- PNL Section --- */
.pet-pnl-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: var(--pet-shadow-sm);
    border: 1px solid var(--pet-gray-100);
}

.pet-pnl-section p {
    font-size: 1.125rem;
    color: var(--pet-gray-700);
    line-height: 1.625;
}

.pet-pnl-section p + p {
    margin-top: 1rem;
}

.pet-pnl-section strong {
    color: var(--pet-gray-900);
}

.pet-pnl-disclaimer {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--pet-gray-500);
    font-style: italic;
}

/* --- Article Footer --- */
.pet-article-footer {
    margin-top: 6rem;
    text-align: center;
    border-top: 1px solid var(--pet-gray-200);
    padding-top: 3rem;
    color: var(--pet-gray-400);
}

.pet-article-footer p {
    font-size: 0.75rem;
    font-style: italic;
    max-width: 42rem;
    margin: 0 auto;
}

/* --- Sidebar --- */
.pet-sidebar {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.pet-sidebar-sticky {
    position: sticky;
    top: 5rem;
}

.pet-sidebar-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--pet-gray-900);
    margin-bottom: 2rem;
    border-bottom: 4px solid var(--pet-primary);
    display: inline-block;
    padding-bottom: 0.5rem;
}

/* --- Similar Posts --- */
.pet-similar-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pet-similar-item {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pet-similar-item:hover .pet-similar-title {
    color: var(--pet-primary);
}

.pet-similar-image {
    width: 5rem;
    height: 5rem;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: var(--pet-shadow-md);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.pet-similar-item:hover .pet-similar-image {
    transform: scale(1.05);
}

.pet-similar-info {
    flex: 1;
    min-width: 0;
}

.pet-similar-category {
    font-size: 10px;
    font-weight: 900;
    color: var(--pet-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pet-similar-title {
    color: var(--pet-gray-900);
    font-weight: 700;
    line-height: 1.25;
    transition: color 0.3s ease;
}

/* --- CTA Boxes --- */
.pet-cta-box {
    padding: 2rem;
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
}

.pet-cta-box-amber {
    background: #fffbeb;
    border: 1px solid #fef3c7;
}

.pet-cta-box-teal {
    background: #f0fdfa;
    border: 1px solid #ccfbf1;
}

.pet-cta-decoration {
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    font-size: 3.75rem;
    opacity: 0.1;
    transition: transform 0.5s ease;
}

.pet-cta-box:hover .pet-cta-decoration {
    transform: rotate(12deg);
}

.pet-cta-title {
    font-weight: 900;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pet-cta-title-amber { color: #78350f; }
.pet-cta-title-teal { color: #134e4a; }

.pet-cta-description {
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

.pet-cta-description-amber { color: #92400e; }
.pet-cta-description-teal { color: #0f766e; }

.pet-cta-btn {
    display: block;
    text-align: center;
    color: white;
    font-weight: 900;
    padding: 1rem;
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

.pet-cta-btn:active {
    transform: scale(0.95);
}

.pet-cta-btn-amber {
    background: var(--pet-accent);
}

.pet-cta-btn-amber:hover {
    background: var(--pet-accent-dark);
}

.pet-cta-btn-teal {
    background: var(--pet-primary);
}

.pet-cta-btn-teal:hover {
    background: var(--pet-primary-dark);
}

.pet-cta-btn-icon {
    margin-right: 0.5rem;
}

.pet-cta-btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pet-cta-footer {
    font-size: 10px;
    text-align: center;
    margin-top: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pet-cta-footer-amber { color: rgba(217,119,6,0.6); }
.pet-cta-footer-teal { color: rgba(13,148,136,0.6); }

/* --- Progress Bar --- */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, #0d9488, #2dd4bf);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* --- Glass Card --- */
.glass-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid #e5e7eb;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .pet-hero h1 {
        font-size: 2rem;
    }

    .pet-hero p {
        font-size: 1rem;
    }

    .pet-article-title {
        font-size: 1.5rem;
    }

    .pet-article-body {
        font-size: 1rem;
    }

    .pet-article-body h2 {
        font-size: 1.5rem;
    }

    .pet-sidebar-title {
        font-size: 1.25rem;
    }
}
