@import"https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;600;700&display=swap";html{overflow-x:hidden}:root{--orange: #e8845a;--orange-dark: #d4723e;--orange-light: #f9e4d4;--orange-bg: #fef6f0;--accent: #e8845a;--accent-light: #f9e4d4;--accent-dark: #d4723e;--text: #3a3a3a;--text-light: #777;--text-muted: #bbb;--border: #eee;--bg: #fafafa;--white: #fff;--green: #27ae60;--red: #c0392b;--blue: #2980b9}*{margin:0;padding:0;box-sizing:border-box}body{font-family:Noto Sans TC,-apple-system,BlinkMacSystemFont,sans-serif;background:var(--bg);color:var(--text);-webkit-font-smoothing:antialiased;overflow-x:hidden;padding-bottom:0}.route-fallback-page{display:flex;align-items:center;justify-content:center;min-height:45vh;padding:1.5rem}.route-fallback-card{width:min(100%,460px);background:var(--white);border:1px solid var(--border);border-radius:16px;box-shadow:0 8px 24px #00000014;padding:1.4rem;text-align:center}.route-fallback-icon{width:52px;height:52px;border-radius:50%;margin:0 auto .8rem;display:flex;align-items:center;justify-content:center;background:var(--orange-light);font-size:1.4rem}.route-fallback-card h2{font-size:1.05rem;margin:0 0 .4rem}.route-fallback-card p{color:var(--text-muted);font-size:.84rem;line-height:1.6}.route-fallback-actions{display:flex;flex-wrap:wrap;justify-content:center;gap:.5rem;margin-top:1rem}.route-fallback-actions button{padding:.55rem .9rem;border-radius:10px;border:1px solid var(--border);background:var(--white);cursor:pointer;font-family:inherit;font-size:.82rem;font-weight:600}.route-fallback-actions button:hover{border-color:var(--orange);color:var(--orange)}.route-fallback-debug{margin-top:.9rem;font-size:.72rem!important;color:#999!important}.navbar{display:flex;align-items:center;justify-content:space-between;padding:0 2rem;height:56px;background:var(--white);border-bottom:1px solid var(--border);position:sticky;top:0;z-index:100;box-shadow:0 1px 3px #00000008;transition:background .35s ease,box-shadow .35s ease,border-color .35s ease}.navbar.navbar-transparent{background:transparent;border-bottom-color:transparent;box-shadow:none}.navbar.navbar-transparent .navbar-brand,.navbar.navbar-transparent .navbar-links a{color:var(--text)}.navbar.navbar-transparent .navbar-links a:hover{color:var(--accent);background:#ffffff80}.navbar.navbar-transparent .navbar-links a.active{color:var(--white);background:var(--orange)}.navbar.navbar-transparent .lang-switch-btn{background:#fff9;border-color:#fff6}.navbar.navbar-transparent .login-trigger{background:#fff9}.navbar.navbar-transparent .user-menu-trigger{background:#fff9;border-color:#fff6}.navbar.navbar-scrolled{background:var(--white);border-bottom-color:var(--border);box-shadow:0 1px 3px #00000008}.navbar-brand{font-size:1.15rem;font-weight:700;text-decoration:none;color:var(--text)}.navbar-links{display:flex;gap:.3rem;align-items:center}.navbar-links a{text-decoration:none;color:var(--text-light);padding:.4rem .9rem;border-radius:8px;font-size:.88rem;font-weight:500;transition:all .2s;display:flex;align-items:center;gap:.3rem;position:relative}.navbar-links a svg{transition:transform .3s cubic-bezier(.34,1.56,.64,1)}.navbar-links a:hover svg{transform:scale(1.25) rotate(-8deg)}.navbar-links a:hover{color:var(--accent);background:var(--accent-light)}.navbar-links a.active{color:var(--white);background:var(--orange)}.navbar-links a.active svg{animation:navIconPop .4s ease}@keyframes navIconPop{0%{transform:scale(1)}50%{transform:scale(1.3) rotate(-10deg)}to{transform:scale(1)}}.container{max-width:960px;margin:0 auto;padding:1.5rem 1.5rem 5rem}.page h2{margin-bottom:1rem;font-weight:700;font-size:1.3rem;display:flex;align-items:center;gap:.4rem}.mobile-nav{display:none;position:fixed;bottom:0;left:0;right:0;z-index:200;background:var(--white);border-top:1px solid var(--border);padding:.4rem 0 calc(.4rem + env(safe-area-inset-bottom));justify-content:space-around;box-shadow:0 -2px 10px #0000000d}.mobile-nav-item{display:flex;flex-direction:column;align-items:center;gap:.15rem;text-decoration:none;color:var(--text-muted);font-size:.68rem;font-weight:500;padding:.3rem .8rem;transition:color .2s}.mobile-nav-item svg{transition:transform .3s cubic-bezier(.34,1.56,.64,1)}.mobile-nav-item:active svg{transform:scale(1.3) rotate(-10deg)}.mobile-nav-item.active{color:var(--orange)}.mobile-nav-item.active svg{animation:navIconPop .4s ease}.mobile-nav-item:hover{color:var(--orange)}@media(max-width:640px){.mobile-nav{display:flex}.navbar-links a:not(.login-trigger):not(.user-menu-trigger) span{display:none}.navbar-links>a{display:none}.container{padding:.6rem .6rem 6rem}body{padding-bottom:0}}.login-wrapper{position:relative}.lang-switch-btn{display:flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:8px;border:1px solid var(--border);background:var(--white);cursor:pointer;font-size:.75rem;font-weight:600;color:var(--text);font-family:inherit;transition:all .2s}.lang-switch-btn:hover{background:var(--bg);border-color:var(--orange);color:var(--orange)}.login-trigger{display:flex;align-items:center;gap:.3rem;padding:.4rem .9rem;border:1px solid var(--orange);border-radius:8px;background:var(--white);cursor:pointer;font-size:.88rem;font-weight:500;color:var(--orange);font-family:inherit;transition:all .2s}.login-trigger:hover{background:var(--orange);color:var(--white)}.login-dropdown{position:absolute;top:calc(100% + 8px);right:0;width:300px;background:var(--white);border:1px solid var(--border);border-radius:12px;box-shadow:0 8px 32px #0000001f;z-index:500;padding:1.2rem;animation:fadeIn .15s ease}@keyframes fadeIn{0%{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}.login-close{position:absolute;top:.6rem;right:.6rem;border:none;background:none;cursor:pointer;color:var(--text-muted);padding:.2rem}.login-close:hover{color:var(--text)}.social-login-btns{display:flex;flex-direction:column;gap:.5rem;margin-bottom:.8rem}.social-btn{display:flex;align-items:center;justify-content:center;gap:.5rem;width:100%;padding:.6rem;border-radius:8px;font-size:.85rem;font-weight:500;font-family:inherit;cursor:pointer;transition:all .2s}.social-btn:disabled{opacity:.6;cursor:not-allowed}.social-btn.google{background:var(--white);border:1px solid var(--border);color:var(--text)}.social-btn.google:hover:not(:disabled){border-color:#4285f4;box-shadow:0 2px 8px #4285f426}.social-btn.github{background:#24292e;border:1px solid #24292e;color:#fff}.social-btn.github:hover:not(:disabled){background:#1a1e22}.login-divider{display:flex;align-items:center;gap:.6rem;margin-bottom:.8rem;color:var(--text-muted);font-size:.78rem}.login-divider:before,.login-divider:after{content:"";flex:1;height:1px;background:var(--border)}.login-tabs{display:flex;margin-bottom:1rem;border-bottom:2px solid var(--border)}.login-tab{flex:1;padding:.5rem;border:none;background:none;cursor:pointer;font-size:.9rem;font-weight:500;color:var(--text-muted);font-family:inherit;border-bottom:2px solid transparent;margin-bottom:-2px;transition:all .2s}.login-tab:hover{color:var(--text)}.login-tab.active{color:var(--orange);border-bottom-color:var(--orange)}.login-form{display:flex;flex-direction:column;gap:.6rem}.login-form input{padding:.6rem .8rem;border:1px solid var(--border);border-radius:8px;font-size:.88rem;font-family:inherit;outline:none;color:var(--text)}.login-form input::placeholder{color:var(--text-muted)}.login-form input:focus{border-color:var(--orange)}.login-submit{padding:.6rem;border:none;border-radius:8px;cursor:pointer;font-size:.9rem;font-weight:600;font-family:inherit;background:var(--orange);color:var(--white);transition:opacity .2s;display:flex;align-items:center;justify-content:center;gap:.3rem}.login-submit:hover{filter:brightness(1.08);transform:translateY(-1px)}.login-submit:disabled{opacity:.6;cursor:not-allowed}.login-submit.register{background:var(--green)}.login-error{color:var(--red);font-size:.82rem;margin-bottom:.3rem;text-align:center}.nav-avatar-img{width:26px;height:26px;border-radius:50%;object-fit:cover;flex-shrink:0}.nav-avatar-img.lg{width:36px;height:36px}.user-menu-trigger{display:flex;align-items:center;gap:.4rem;padding:.3rem .7rem;border:1px solid var(--border);border-radius:8px;background:var(--white);cursor:pointer;font-family:inherit;transition:all .2s}.user-menu-trigger:hover{border-color:var(--orange)}.nav-avatar{width:26px;height:26px;border-radius:50%;background:var(--orange);display:flex;align-items:center;justify-content:center;color:#fff;font-size:.72rem;font-weight:700;flex-shrink:0}.nav-avatar.lg{width:36px;height:36px;font-size:.9rem}.nav-username{font-size:.85rem;font-weight:500;color:var(--text);max-width:80px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.nav-unread-badge{background:var(--red);color:#fff;font-size:.6rem;font-weight:700;padding:.1rem .35rem;border-radius:10px;min-width:16px;text-align:center;line-height:1.2}.mobile-nav-badge{position:absolute;top:2px;right:12px;background:var(--red);color:#fff;font-size:.55rem;font-weight:700;padding:.05rem .3rem;border-radius:8px;min-width:14px;text-align:center;line-height:1.2}.mobile-nav-item{position:relative}.dash-unread-badge{background:var(--red);color:#fff;font-size:.6rem;font-weight:700;padding:.1rem .35rem;border-radius:10px;min-width:16px;text-align:center;line-height:1.2;margin-left:auto}.app-toast-stack{position:fixed;right:1rem;bottom:1rem;z-index:1200;display:flex;flex-direction:column;gap:.65rem;max-width:min(360px,calc(100vw - 2rem))}.app-toast{display:flex;align-items:flex-start;gap:.45rem;background:#181c23f5;color:#fff;border-radius:14px;box-shadow:0 14px 36px #0000003d;overflow:hidden}.app-toast-main{flex:1;display:flex;align-items:flex-start;gap:.7rem;padding:.9rem .95rem;border:none;background:transparent;color:inherit;cursor:pointer;text-align:left;font-family:inherit}.app-toast-icon{width:34px;height:34px;border-radius:10px;background:#e8845a2e;color:var(--orange-light);display:inline-flex;align-items:center;justify-content:center;flex-shrink:0}.app-toast-body{display:flex;flex-direction:column;gap:.18rem;min-width:0}.app-toast-body strong{font-size:.85rem;font-weight:700}.app-toast-body span{font-size:.78rem;line-height:1.5;opacity:.9;word-break:break-word}.app-toast-body em{font-style:normal;font-size:.72rem;color:var(--orange-light)}.app-toast-close{margin:.45rem .45rem 0 0;width:28px;height:28px;border:none;border-radius:999px;background:#ffffff14;color:#fff;display:inline-flex;align-items:center;justify-content:center;cursor:pointer;flex-shrink:0}.app-toast-close:hover{background:#ffffff2e}.user-dropdown{position:absolute;top:calc(100% + 8px);right:0;width:240px;background:var(--white);border:1px solid var(--border);border-radius:12px;box-shadow:0 8px 32px #0000001f;z-index:500;animation:fadeIn .15s ease;overflow:hidden}.user-dropdown-header{display:flex;align-items:center;gap:.6rem;padding:1rem}.ud-name{font-size:.9rem;font-weight:600;color:var(--text)}.ud-email-text{font-size:.78rem;color:var(--text-muted)}.user-dropdown-divider{height:1px;background:var(--border)}.user-dropdown-item{display:flex;align-items:center;gap:.5rem;width:100%;padding:.65rem 1rem;border:none;background:none;cursor:pointer;font-size:.88rem;font-family:inherit;color:var(--text);text-decoration:none;transition:background .15s}.user-dropdown-item:hover{background:var(--bg)}.user-dropdown-item.logout{color:var(--red)}.user-dropdown-item.logout:hover{background:#c0392b0f}.site-footer{background:linear-gradient(180deg,#fff,#f9e4d4 40%,#f5d4bc);color:var(--text);margin-top:3rem}.footer-inner{max-width:960px;margin:0 auto;padding:2rem 1.5rem 1.5rem;display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:1.5rem}.footer-logo{font-size:1.05rem;font-weight:700;margin-bottom:.6rem;display:flex;align-items:center;gap:.35rem}.footer-logo svg{position:relative;top:1px}.footer-desc{font-size:.82rem;line-height:1.6;color:var(--text-light)}.footer-accordion-toggle{width:100%;padding:0;border:0;background:none;display:flex;align-items:center;justify-content:space-between;color:inherit;font:inherit;text-align:left;cursor:default;margin-bottom:.7rem}.footer-section-title{font-size:.88rem;font-weight:600}.footer-accordion-toggle svg{display:none}.footer-accordion-panel{display:block}.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:.4rem}.footer-col ul li{font-size:.82rem;display:flex;align-items:center;gap:.35rem;color:var(--text-light)}.footer-col ul li svg{color:var(--orange);flex-shrink:0}.footer-col ul a{text-decoration:none;color:var(--text-light);transition:color .2s}.footer-col ul a:hover{color:var(--orange)}.footer-bottom{border-top:1px solid rgba(232,132,90,.2);text-align:center;padding:1rem 1.5rem}.footer-bottom p{font-size:.78rem;color:var(--text);display:flex;align-items:center;justify-content:center;gap:.3rem}@media(max-width:640px){.app-toast-stack{left:.75rem;right:.75rem;bottom:.75rem;max-width:none}.footer-inner{grid-template-columns:1fr;gap:0;padding:1.4rem 1.25rem 0}.footer-brand-col{padding-bottom:1.1rem;border-bottom:1px solid rgba(232,132,90,.14)}.footer-col{padding:1rem 0;border-bottom:1px solid rgba(232,132,90,.14)}.footer-accordion-col{padding:0}.footer-accordion-toggle{padding:1rem 0;margin-bottom:0;cursor:pointer}.footer-section-title{font-size:1rem;font-weight:700;color:var(--text)}.footer-accordion-toggle svg{display:block;color:var(--text);flex-shrink:0}.footer-accordion-panel{display:none;padding:0 0 1rem}.footer-accordion-col.is-open .footer-accordion-panel{display:block}.footer-col ul{gap:.75rem}.footer-col ul li{font-size:.92rem;color:var(--text-light)}.footer-col ul a{color:var(--text-light)}.footer-col ul a:hover{color:var(--orange)}.footer-bottom{border-top:1px solid rgba(232,132,90,.2);padding:1rem 1.25rem 1.2rem}}.happy-header{text-align:center;padding:1.5rem 0 1rem}.happy-header h1{font-size:1.5rem;font-weight:700;color:var(--text);margin:0 0 .3rem}.happy-header p{font-size:.88rem;color:var(--text-light);margin:0}.happy-filters{display:flex;align-items:center;gap:.4rem;margin-bottom:1.2rem;flex-wrap:wrap}.happy-filter-btn{display:flex;align-items:center;gap:.3rem;padding:.4rem .8rem;border:1px solid var(--border);border-radius:20px;background:var(--white);font-size:.8rem;font-family:inherit;color:var(--text);cursor:pointer;transition:all .2s}.happy-filter-btn:hover{border-color:var(--orange)}.happy-filter-btn.active{background:var(--orange);color:#fff;border-color:var(--orange)}.happy-count{font-size:.78rem;color:var(--text-muted);margin-left:auto}.happy-empty{text-align:center;padding:3rem 1rem;color:var(--text-muted)}.happy-empty-icon{font-size:2.5rem;display:block;margin-bottom:.8rem;animation:pawBounce 2s ease-in-out infinite}.happy-empty .muted{font-size:.82rem;margin-top:.3rem}.happy-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1rem}.happy-card{background:var(--white);border:1px solid var(--border);border-radius:14px;overflow:hidden;transition:all .2s;box-shadow:0 2px 8px #00000008}.happy-card:hover{box-shadow:0 4px 16px #00000014;transform:translateY(-2px)}.happy-card-photo-link{display:block;text-decoration:none}.happy-card-photo{height:200px;background-size:cover;background-position:center;position:relative}.happy-card-placeholder{display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#fef6f0,#f5d4bc);color:var(--orange)}.happy-card-badge{position:absolute;bottom:8px;left:8px;background:#ffffffeb;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);padding:.25rem .6rem;border-radius:8px;font-size:.72rem;font-weight:600;color:var(--text)}.happy-card-body{padding:.8rem 1rem}.happy-card-name{font-size:1rem;font-weight:700;color:var(--text);text-decoration:none;display:block;margin-bottom:.3rem}.happy-card-name:hover{color:var(--orange)}.happy-card-meta{display:flex;gap:.6rem;font-size:.78rem;color:var(--text-muted);margin-bottom:.3rem}.happy-card-meta span{display:flex;align-items:center;gap:.2rem}.happy-card-info{display:flex;flex-wrap:wrap;gap:.5rem;font-size:.72rem;color:var(--text-muted);margin-bottom:.5rem}.happy-card-info span{display:flex;align-items:center;gap:.2rem}.happy-story-btn{display:flex;align-items:center;gap:.3rem;padding:.35rem .7rem;border:1px solid var(--orange);border-radius:8px;background:none;font-size:.75rem;font-family:inherit;color:var(--orange);cursor:pointer;transition:all .2s}.happy-story-btn:hover{background:var(--orange);color:#fff}.happy-no-updates{font-size:.72rem;color:var(--text-muted);margin:0;font-style:italic}.happy-timeline{padding:.5rem 1rem 1rem;border-top:1px solid var(--border)}.happy-timeline-item{display:flex;gap:.6rem;padding:.5rem 0}.happy-timeline-dot{width:8px;height:8px;border-radius:50%;background:var(--orange);margin-top:.4rem;flex-shrink:0}.happy-timeline-content{flex:1;min-width:0}.happy-timeline-date{font-size:.68rem;color:var(--text-muted)}.happy-timeline-content h4{font-size:.82rem;font-weight:600;color:var(--text);margin:.1rem 0}.happy-timeline-content p{font-size:.78rem;color:var(--text-light);margin:.2rem 0}.happy-timeline-images{display:flex;gap:.4rem;margin-top:.4rem;overflow-x:auto}.happy-timeline-images img{width:80px;height:80px;border-radius:8px;object-fit:cover;border:1px solid var(--border)}@media(max-width:768px){.happy-grid{grid-template-columns:1fr}.happy-card-photo{height:180px}.happy-header h1{font-size:1.2rem}}.shelter-page-header{display:flex;align-items:center;gap:.8rem;padding:1.5rem 0 1rem;color:var(--text)}.shelter-page-title{font-size:1.4rem;font-weight:700;margin:0}.shelter-page-desc{font-size:.85rem;color:var(--text-muted);margin:.15rem 0 0}.shelter-search-bar{position:relative;display:flex;align-items:center;background:var(--card);border:1px solid var(--border);border-radius:10px;padding:.55rem .8rem;margin-bottom:1rem;transition:border-color .2s}.shelter-search-bar:focus-within{border-color:var(--primary)}.shelter-search-icon{color:var(--text-muted);margin-right:.5rem;flex-shrink:0}.shelter-search-bar input{flex:1;border:none;background:transparent;outline:none;font-size:.92rem;color:var(--text)}.about-section{display:flex;flex-direction:column;gap:1.2rem;margin-top:1rem}.about-item{display:flex;gap:.8rem;padding:1rem;background:var(--white);border-radius:10px;border:1px solid var(--border)}.about-item svg{color:var(--orange);flex-shrink:0;margin-top:.15rem}.about-item h3{font-size:.95rem;font-weight:600;margin-bottom:.3rem}.about-item p{font-size:.85rem;line-height:1.6;color:var(--text-light)}.faq-list{display:flex;flex-direction:column;gap:.4rem;margin-top:.8rem}.faq-item{border:1px solid var(--border);border-radius:8px;overflow:hidden;transition:border-color .2s}.faq-item.open{border-color:var(--orange)}.faq-question{display:flex;justify-content:space-between;align-items:center;width:100%;padding:.8rem 1rem;border:none;background:transparent;cursor:pointer;font-size:.9rem;font-weight:500;font-family:inherit;color:var(--text);text-align:left}.faq-arrow{transition:transform .2s;color:var(--text-muted)}.faq-arrow.rotated{transform:rotate(180deg);color:var(--orange)}.faq-answer{padding:0 1rem .8rem;font-size:.85rem;line-height:1.7;color:var(--text-light)}.privacy-header{display:flex;align-items:center;gap:.8rem;margin-bottom:1.5rem}.privacy-title{font-size:1.4rem;font-weight:700;margin:0}.privacy-updated{font-size:.82rem;color:var(--text-muted);margin:.15rem 0 0}.privacy-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1rem}.privacy-card{display:flex;gap:.8rem;padding:1.2rem;background:var(--white);border:1px solid var(--border);border-radius:12px;transition:all .2s}.privacy-card:hover{box-shadow:0 4px 16px #0000000f;transform:translateY(-2px)}.privacy-card-icon{width:42px;height:42px;border-radius:10px;flex-shrink:0;display:flex;align-items:center;justify-content:center}.privacy-card-body h3{font-size:.95rem;font-weight:600;margin:0 0 .4rem}.privacy-card-body p{font-size:.85rem;line-height:1.6;color:var(--text-light);margin:0}@media(max-width:640px){.privacy-grid{grid-template-columns:1fr}}.not-found{text-align:center;padding:4rem 1rem}.not-found-icon{font-size:3rem;margin-bottom:.5rem}.not-found h1{font-size:3rem;font-weight:700;color:var(--text-muted);margin-bottom:.3rem}.not-found p{font-size:1rem;color:var(--text-light);margin-bottom:1rem}@keyframes spin{to{transform:rotate(360deg)}}.spin{animation:spin 1s linear infinite}@keyframes pawBounce{0%,to{transform:translateY(0) rotate(0)}25%{transform:translateY(-6px) rotate(-8deg)}50%{transform:translateY(0) rotate(0)}75%{transform:translateY(-3px) rotate(5deg)}}@keyframes pawWalk{0%{transform:translate(0) rotate(0);opacity:.3}20%{opacity:1}50%{transform:translate(8px) rotate(-12deg);opacity:1}80%{opacity:1}to{transform:translate(16px) rotate(0);opacity:.3}}.paw-bounce{display:inline-block;animation:pawBounce 1.2s ease-in-out infinite}.paw-walk{display:inline-block;animation:pawWalk 1.5s ease-in-out infinite}.empty-state-icon{font-size:3rem;display:block;margin-bottom:.8rem;animation:pawBounce 2s ease-in-out infinite}.page{animation:pageFadeIn .2s ease}@keyframes pageFadeIn{0%{opacity:0}to{opacity:1}}.skeleton-card{background:var(--white);border-radius:12px;overflow:hidden;border:1px solid var(--border)}.skeleton-img{height:180px;background:linear-gradient(90deg,#f0f0f0 25%,#e0e0e0,#f0f0f0 75%);background-size:200% 100%;animation:shimmer 1.5s infinite}.skeleton-text{height:12px;background:#f0f0f0;border-radius:4px;margin:.5rem .8rem}.skeleton-text.short{width:60%}@keyframes shimmer{0%{background-position:200% 0}to{background-position:-200% 0}}.route-loader-page{display:flex;flex-direction:column;gap:1rem;padding:.25rem 0 1rem}.route-loader-header,.route-loader-toolbar,.route-loader-toolbar-group,.route-loader-thumb-row,.route-loader-two-col,.route-loader-stat-grid,.route-loader-form-grid,.route-loader-card-grid{display:flex;gap:.8rem}.route-loader-header,.route-loader-toolbar{align-items:center;justify-content:space-between}.route-loader-toolbar.wrap{flex-wrap:wrap;justify-content:flex-start}.route-loader-toolbar.top-right{justify-content:flex-end}.route-loader-toolbar-group{align-items:center}.route-loader-two-col,.route-loader-form-grid,.route-loader-detail-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(280px,360px);gap:1rem}.route-loader-detail-grid{grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr)}.route-loader-stat-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.8rem}.route-loader-stat-grid.admin{margin-top:.2rem}.route-loader-card-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:1rem}.route-loader-surface,.route-loader-panel,.route-loader-card,.route-loader-stat-card{background:var(--white);border:1px solid var(--border);border-radius:14px;box-shadow:0 2px 8px #00000008}.route-loader-panel,.route-loader-card,.route-loader-stat-card{padding:1rem}.route-loader-panel.no-pad{padding:0;overflow:hidden}.route-loader-stat-card{display:flex;align-items:center;gap:.75rem}.route-loader-stat-body,.route-loader-row-body,.route-loader-lines{display:flex;flex-direction:column;gap:.55rem;width:100%}.route-loader-row{display:flex;align-items:center;gap:.8rem;padding:.75rem 0}.route-loader-row+.route-loader-row{border-top:1px solid var(--border)}.route-loader-form-row{display:flex;flex-direction:column;gap:.45rem}.route-skeleton{position:relative;overflow:hidden;background:#eceff1;border-radius:10px}.route-skeleton:after{content:"";position:absolute;inset:0;transform:translate(-100%);background:linear-gradient(90deg,transparent,rgba(255,255,255,.75),transparent);animation:routeSkeletonShimmer 1.35s ease-in-out infinite}.route-loader-title{height:30px;width:220px}.route-loader-title.wide{width:min(360px,75%)}.route-loader-chip{height:28px;width:96px;border-radius:999px}.route-loader-button{height:38px;width:140px;border-radius:10px}.route-loader-button.sm{width:88px}.route-loader-input{height:42px;width:min(420px,100%);flex:1}.route-loader-select{height:42px;width:120px}.route-loader-avatar{width:46px;height:46px;border-radius:50%}.route-loader-line{height:12px;width:100%;border-radius:999px}.route-loader-line.spaced{margin-top:.55rem}.route-loader-line.w-95{width:95%}.route-loader-line.w-90{width:90%}.route-loader-line.w-85{width:85%}.route-loader-line.w-80{width:80%}.route-loader-line.w-75{width:75%}.route-loader-line.w-70{width:70%}.route-loader-line.w-65{width:65%}.route-loader-line.w-60{width:60%}.route-loader-line.w-55{width:55%}.route-loader-line.w-50{width:50%}.route-loader-line.w-45{width:45%}.route-loader-line.w-40{width:40%}.route-loader-line.w-35{width:35%}.route-loader-line.w-30{width:30%}.route-loader-line.w-25{width:25%}.route-loader-card-image,.route-loader-hero-image,.route-loader-map,.route-loader-thumb,.route-loader-input,.route-loader-select,.route-loader-button,.route-loader-chip,.route-loader-avatar,.route-loader-line{background:#edf0f2}.route-loader-card-image{height:180px;border-radius:12px}.route-loader-card-image.tall{height:260px}.route-loader-card-body{display:flex;flex-direction:column;gap:.65rem;padding-top:.85rem}.route-loader-thumb-row{padding:.85rem 1rem 1rem;overflow:hidden}.route-loader-thumb{width:84px;height:84px;border-radius:12px;flex-shrink:0}.route-loader-thumb.sm{width:56px;height:56px;border-radius:12px}.route-loader-hero-image{min-height:360px;width:100%}.route-loader-map{min-height:520px;width:100%;border-radius:16px}.route-loader-pill{width:110px;height:28px;border-radius:999px;margin:.25rem 0 .2rem}@keyframes routeSkeletonShimmer{to{transform:translate(100%)}}@media(max-width:900px){.route-loader-stat-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.route-loader-two-col,.route-loader-form-grid,.route-loader-detail-grid{grid-template-columns:1fr}}@media(max-width:640px){.route-loader-header,.route-loader-toolbar{flex-direction:column;align-items:stretch}.route-loader-toolbar-group{width:100%;justify-content:space-between}.route-loader-title,.route-loader-title.wide,.route-loader-input,.route-loader-select,.route-loader-button,.route-loader-button.sm,.route-loader-chip{width:100%}.route-loader-card-grid,.route-loader-stat-grid{grid-template-columns:1fr}.route-loader-map{min-height:360px}.route-loader-hero-image{min-height:240px}}.empty-state{grid-column:1 / -1;text-align:center;padding:3rem 1rem}.empty-state-title{font-size:1rem;font-weight:600;color:var(--text);margin-bottom:.3rem}.empty-state-desc{font-size:.85rem;color:var(--text-muted);margin-bottom:1.2rem}.empty-state-cta{display:inline-flex;align-items:center;gap:.3rem;padding:.6rem 1.2rem;border-radius:8px;background:var(--orange);color:var(--white);text-decoration:none;font-size:.88rem;font-weight:600;transition:all .2s}.empty-state-cta:hover{filter:brightness(1.08);transform:translateY(-1px)}.confirm-overlay{position:fixed;inset:0;z-index:9999;background:#0006;display:flex;align-items:center;justify-content:center;padding:1rem;animation:fadeIn .15s}.confirm-dialog{background:var(--white);border-radius:14px;padding:1.5rem;width:100%;max-width:340px;text-align:center;position:relative;box-shadow:0 12px 40px #00000026;animation:slideUp .2s}.confirm-close{position:absolute;top:.6rem;right:.6rem;background:none;border:none;cursor:pointer;color:var(--text-muted);padding:.2rem}.confirm-close:hover{color:var(--text)}.confirm-icon{color:var(--orange);margin-bottom:.5rem}.confirm-title{font-size:1rem;font-weight:700;margin:0 0 .3rem;color:var(--text)}.confirm-msg{font-size:.82rem;color:var(--text-muted);margin:0 0 1.2rem}.confirm-actions{display:flex;gap:.5rem}.confirm-cancel{flex:1;padding:.55rem;border:1px solid var(--border);border-radius:8px;background:var(--white);color:var(--text);font-size:.85rem;font-weight:600;font-family:inherit;cursor:pointer;transition:all .2s}.confirm-cancel:hover{background:var(--bg)}.confirm-ok{flex:1;padding:.6rem;border:none;border-radius:8px;background:var(--orange);color:#fff;font-weight:600;cursor:pointer}.confirm-ok:hover{opacity:.9}.confirm-icon.success{color:var(--green)}.confirm-ok.success{background:var(--green)}.back-link-btn{border:none;background:none;cursor:pointer;font:inherit;text-align:left}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes slideUp{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.home-top{background:linear-gradient(180deg,#fef6f0,#f9e4d4,#f5d4bc 70%,#fafafa);margin-left:calc(-50vw + 50%);margin-right:calc(-50vw + 50%);margin-top:calc(-1.5rem - 56px);margin-bottom:1.2rem;padding:calc(3.5rem + 56px) calc(50vw - 50%) 1.5rem}.home-top-inner{max-width:960px;margin:0 auto}.hero-search{text-align:center;margin-bottom:1.2rem}.hero-title{font-size:1.6rem;font-weight:700;color:var(--text);margin-bottom:.3rem;display:inline-flex;align-items:center;gap:.4rem}.hero-subtitle{font-size:.88rem;color:var(--text-light);margin-bottom:1rem}.hero-search-box{display:flex;align-items:center;gap:.5rem;max-width:520px;margin:0 auto;background:var(--white);border-radius:12px;padding:.1rem .2rem;border:2px solid var(--orange);box-shadow:0 2px 12px #e8845a1f}.hero-search-icon{color:var(--orange);margin-left:.8rem;flex-shrink:0}.hero-search-box input{flex:1;border:none;outline:none;padding:.7rem .5rem;font-size:.92rem;font-family:inherit;background:transparent;color:var(--text)}.hero-search-box input::placeholder{color:var(--text-muted)}.hero-banner,.hero-banner-track,.hero-banner-slide,.hero-banner-arrow,.hero-banner-dots,.hero-banner-dot{display:none}.home-top{position:relative;overflow:hidden}.hero-bg{position:absolute;inset:0;z-index:0}.hero-bg-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity 1.2s ease}.hero-bg-img:first-child{object-position:center 30%}.hero-bg-img.active{opacity:1}.hero-bg-overlay{position:absolute;inset:0;background:linear-gradient(180deg,#fef6f0b3,#f9e4d4a6 40%,#f5d4bc99,#fafafaeb)}.home-top-inner{position:relative;z-index:1}.hero-title{color:var(--text);text-shadow:0 1px 8px rgba(255,255,255,.6)}.hero-subtitle{color:var(--text-light);text-shadow:0 1px 4px rgba(255,255,255,.5)}.tab-bar{display:flex;gap:0;margin-bottom:1rem;background:var(--white);border-radius:10px;padding:3px;border:1px solid var(--border)}.tab-btn{flex:1;padding:.55rem 1rem;border:none;background:transparent;cursor:pointer;font-size:.9rem;font-weight:500;color:var(--text-light);border-radius:8px;transition:all .2s;font-family:inherit;display:flex;align-items:center;justify-content:center;gap:.35rem}.tab-btn:hover{color:var(--text)}.tab-btn.active{color:var(--white);background:var(--orange)}.quick-categories{display:flex;gap:.5rem;margin-bottom:1rem;flex-wrap:wrap;justify-content:center}.quick-cat-btn{display:flex;flex-direction:column;align-items:center;gap:.3rem;padding:.6rem 1.2rem;border:1px solid var(--border);border-radius:12px;background:var(--white);cursor:pointer;transition:all .2s;font-family:inherit;min-width:72px}.quick-cat-btn:hover,.quick-cat-btn.active{border-color:var(--orange);box-shadow:0 2px 8px #e8845a1a}.quick-cat-btn.active{background:var(--orange)}.quick-cat-btn.active .quick-cat-icon,.quick-cat-btn.active .quick-cat-label{color:var(--white)}.quick-cat-icon{color:var(--orange)}.quick-cat-label{font-size:.78rem;font-weight:600;color:var(--text)}@media(max-width:640px){.home-top{margin-left:calc(-50vw + 50%);margin-right:calc(-50vw + 50%);margin-top:calc(-.6rem - 56px);margin-bottom:.8rem;padding:calc(1rem + 56px) calc(50vw - 50% + .6rem) .6rem;background:linear-gradient(180deg,#fef6f0,#f5d4bc 60%,#fafafa)}.home-top-inner{padding:0}.hero-title{font-size:1.2rem;margin-bottom:.15rem}.hero-subtitle{font-size:.78rem;margin-bottom:.6rem}.hero-search-box{border-width:1.5px;border-radius:10px;max-width:100%}.hero-search-box input{padding:.55rem .4rem;font-size:.85rem}.hero-search-icon{margin-left:.6rem}.tab-bar{display:flex;gap:.3rem;margin-bottom:.6rem;background:transparent;border:none;padding:0;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none}.tab-bar::-webkit-scrollbar{display:none}.tab-btn{flex:none;padding:.4rem .8rem;font-size:.78rem;border-radius:20px;white-space:nowrap;background:var(--white);border:1px solid var(--border)}.tab-btn.active{background:var(--orange);color:var(--white);border-color:var(--orange)}.tab-btn svg{width:13px;height:13px}.quick-categories{display:flex;gap:.4rem;margin-bottom:.6rem;justify-content:flex-start;flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none;padding-bottom:.2rem}.quick-categories::-webkit-scrollbar{display:none}.quick-cat-btn{flex:none;flex-direction:row;gap:.3rem;min-width:auto;padding:.35rem .7rem;border-radius:20px;font-size:.78rem}.quick-cat-icon{display:flex;align-items:center}.quick-cat-icon svg{width:16px;height:16px}.quick-cat-label{font-size:.75rem}}.channel-bar{display:flex;gap:.4rem;margin-bottom:1rem;justify-content:center}.channel-btn{display:flex;align-items:center;gap:.3rem;padding:.45rem 1rem;border:1px solid var(--border);border-radius:8px;background:var(--white);cursor:pointer;font-size:.85rem;font-weight:600;color:var(--text-light);font-family:inherit;transition:all .2s}.channel-btn:hover{border-color:var(--orange);color:var(--orange)}.channel-btn.active{color:var(--white)}.list-toolbar{display:flex;justify-content:space-between;align-items:center;margin-bottom:.8rem;flex-wrap:wrap;gap:.5rem}.toolbar-left{display:flex;gap:.4rem;align-items:center}.toolbar-right{display:flex;align-items:center;gap:.6rem}.list-count{font-size:.78rem;color:var(--text-muted)}.sort-btns{display:flex;gap:.2rem}.sort-btn{display:flex;align-items:center;gap:.2rem;padding:.25rem .5rem;border:1px solid var(--border);border-radius:6px;background:var(--white);cursor:pointer;font-size:.75rem;font-weight:500;color:var(--text-light);transition:all .15s;font-family:inherit}.sort-btn:hover{border-color:var(--orange);color:var(--orange)}.sort-btn.active{background:var(--orange);color:var(--white);border-color:var(--orange)}.filter-toggle-btn{display:flex;align-items:center;gap:.3rem;padding:.3rem .7rem;border:1px solid var(--border);border-radius:8px;background:var(--white);cursor:pointer;font-size:.82rem;font-weight:500;color:var(--text-light);font-family:inherit;transition:all .15s;position:relative}.filter-toggle-btn:hover,.filter-toggle-btn.active{border-color:var(--orange);color:var(--orange)}.filter-toggle-btn:disabled{opacity:.5;cursor:not-allowed}.filter-dot{width:6px;height:6px;border-radius:50%;background:var(--orange);position:absolute;top:4px;right:4px}.reset-filter-btn{border:none;background:none;cursor:pointer;font-size:.75rem;color:var(--red);font-family:inherit;font-weight:500}.filters-panel{background:var(--white);border-radius:10px;padding:.8rem 1rem;margin-bottom:1rem;border:1px solid var(--border);display:flex;flex-direction:column;gap:.6rem;animation:slideDown .2s ease}@keyframes slideDown{0%{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)}}.filter-row{display:flex;align-items:flex-start;gap:.5rem}.filter-label{font-size:.82rem;font-weight:600;color:var(--text);white-space:nowrap;padding-top:.25rem;min-width:45px}.filter-options{display:flex;flex-wrap:wrap;gap:.3rem}.filter-chip{padding:.25rem .65rem;border:1px solid var(--border);border-radius:4px;background:var(--bg);cursor:pointer;font-size:.78rem;font-weight:500;color:var(--text-light);transition:all .15s;font-family:inherit}.filter-chip:hover{border-color:var(--accent);color:var(--accent)}.filter-chip.active{background:var(--orange);color:var(--white);border-color:var(--orange)}@media(max-width:640px){.list-toolbar{flex-direction:column;align-items:flex-start}.filter-row{flex-direction:column;gap:.2rem}}.recent-viewed{margin-bottom:1.2rem}.recent-viewed-title{font-size:.92rem;font-weight:600;color:var(--text);display:flex;align-items:center;gap:.4rem;margin-bottom:.6rem}.recent-viewed-list{display:flex;gap:.6rem;overflow-x:auto;padding-bottom:.3rem;scrollbar-width:none;-webkit-overflow-scrolling:touch}.recent-viewed-list::-webkit-scrollbar{display:none}.recent-viewed-item{flex-shrink:0;width:100px;text-decoration:none;color:inherit;display:flex;flex-direction:column;align-items:center;gap:.25rem;transition:transform .2s}.recent-viewed-item:hover{transform:translateY(-2px)}.recent-viewed-img{width:80px;height:80px;border-radius:12px;object-fit:cover;border:1px solid var(--border);box-shadow:0 2px 6px #0000000f}.recent-viewed-placeholder{display:flex;align-items:center;justify-content:center;background:var(--bg);font-size:1.5rem}.recent-viewed-name{font-size:.75rem;font-weight:600;color:var(--text);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:100%;text-align:center}.recent-viewed-breed{font-size:.68rem;color:var(--text-muted);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:100%;text-align:center}.pet-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:.8rem}.empty-msg{grid-column:1 / -1;text-align:center;padding:3rem;color:var(--text-muted)}@media(max-width:640px){.pet-grid{grid-template-columns:1fr;gap:.8rem}}.hero-search-box{position:relative}.search-clear-btn{display:flex;align-items:center;justify-content:center;width:28px;height:28px;border:none;border-radius:50%;background:var(--bg);cursor:pointer;color:var(--text-muted);transition:all .15s;flex-shrink:0;margin-right:.4rem}.search-clear-btn:hover{background:var(--border);color:var(--text)}.pet-card{background:var(--white);border-radius:12px;text-decoration:none;color:inherit;border:1px solid var(--border);transition:all .2s;overflow:hidden;display:flex;flex-direction:column;position:relative;box-shadow:0 2px 8px #0000000a;outline:none}.pet-card:hover{border-color:var(--accent);box-shadow:0 8px 24px #00000014;transform:translateY(-2px)}.pet-card-img{height:180px;position:relative;display:flex;align-items:flex-end;padding:.6rem;overflow:hidden;transition:transform .3s ease}.pet-card-photo{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.pet-card:hover .pet-card-img{transform:scale(1.03)}.fav-btn{position:absolute;top:8px;right:8px;z-index:10;width:32px;height:32px;border-radius:50%;border:none;background:#ffffffd9;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);outline:none}.fav-btn:hover{background:#fff;transform:scale(1.1)}.fav-btn svg{transition:all .2s}.fav-btn.active svg{color:#e74c3c;fill:#e74c3c}.fav-btn:not(.active) svg{color:#999}.pet-card-img-placeholder{background:#f0f0f0;align-items:center;justify-content:center}.placeholder-icon{color:#ccc}.pet-gender-badge{position:absolute;top:.6rem;right:.6rem;width:28px;height:28px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.85rem;font-weight:700;color:var(--white)}.pet-gender-badge.male{background:var(--blue)}.pet-gender-badge.female{background:#e84393}.pet-gender-badge.lg{width:36px;height:36px;font-size:1.1rem}.pet-status-badge{padding:.2rem .6rem;border-radius:4px;font-size:.72rem;font-weight:600}.pet-status-badge.available{background:#27ae60e6;color:#fff}.pet-status-badge.adopted{background:#969696e6;color:#fff}.pet-status-badge.unavailable{background:#c0392bd9;color:#fff}.pet-card-body{padding:.8rem;display:flex;flex-direction:column;gap:.35rem;flex:1}.pet-card-top{display:flex;align-items:baseline;gap:.4rem}.pet-card-name{font-size:1.05rem;font-weight:700;color:var(--text)}.pet-card-breed{font-size:.78rem;color:var(--text-muted)}.pet-card-info{font-size:.78rem;color:var(--text-light);display:flex;gap:.3rem}.pet-card-desc{font-size:.82rem;color:var(--text-light);line-height:1.5;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.pet-card-bottom{display:flex;justify-content:space-between;align-items:center;margin-top:auto}.pet-card-meta{display:flex;gap:.5rem}.pet-card-meta span,.pet-card-time{font-size:.72rem;color:var(--text-muted);display:flex;align-items:center;gap:.15rem}.pet-card-footer{display:flex;justify-content:space-between;align-items:center;padding-top:.4rem;border-top:1px solid var(--border);margin-top:.3rem}.pet-card-user{font-size:.75rem;font-weight:600;color:var(--text)}.pet-card-date{font-size:.72rem;color:var(--text-muted)}.pet-card-price{font-size:.92rem;font-weight:700;color:var(--red)}.pet-card-tags{display:flex;flex-wrap:wrap;gap:.25rem;margin-bottom:.3rem}.pet-card-tag{font-size:.65rem;padding:.15rem .4rem;border-radius:6px;background:var(--orange-light);color:var(--orange);font-weight:500}.pet-card-tag.more{background:var(--bg);color:var(--text-muted)}@media(max-width:640px){.pet-card{flex-direction:row;border-radius:14px;min-height:140px}.pet-card:hover{transform:none}.pet-card-img{width:140px;min-width:140px;height:auto;min-height:140px;border-radius:14px 0 0 14px;flex-shrink:0}.pet-card:hover .pet-card-img{transform:none}.pet-card-img-placeholder{width:140px;min-width:140px}.pet-card-body{padding:.6rem .7rem;gap:.25rem;justify-content:center}.pet-card-name{font-size:.95rem}.pet-card-breed{font-size:.72rem}.pet-card-info{font-size:.72rem;flex-wrap:wrap}.pet-card-desc{font-size:.75rem;-webkit-line-clamp:2}.pet-card-bottom{margin-top:.2rem}.pet-card-footer{padding-top:.3rem}.fav-btn{top:6px;right:6px;width:28px;height:28px}.fav-btn svg{width:14px;height:14px}.pet-gender-badge{font-size:.65rem;padding:.1rem .35rem}.pet-status-badge{font-size:.62rem;padding:.1rem .35rem}.pet-card-user{font-size:.7rem}.pet-card-date,.pet-card-time{font-size:.68rem}}
