/*
 * NPCWoods Site-Wide Stylesheet
 * ==============================
 * Shared styles for header, footer, reviews banner, and save-contact widget.
 * Extracted from inline <style> blocks across ~80 pages.
 *
 * Usage: <link rel="stylesheet" href="/assets/css/site.css">
 *
 * Last updated: May 2026
 */


/* ============================================================
 * 1. SITE NAVIGATION (Header / Nav bar / Slide-out panel)
 * ============================================================ */

/* ===== SITE NAV ===== */
.npc-nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  transition: box-shadow 0.3s ease;
}

.npc-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.npc-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.npc-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #1A1A2E;
  transition: opacity 0.2s;
}

.npc-nav-logo:hover {
  opacity: 0.85;
  text-decoration: none;
}

.npc-nav-logo img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.npc-nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.npc-nav-logo-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #1A1A2E;
  letter-spacing: -0.3px;
}

.npc-nav-logo-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: #2563EB;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

.npc-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.npc-nav-links > li {
  position: relative;
}

.npc-nav-links > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4A4A5A;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}

.npc-nav-links > li > a:hover {
  background: #EFF6FF;
  color: #2563EB;
  text-decoration: none;
}

/* Dropdown trigger arrow */
.npc-nav-links > li > a .nav-arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.65rem;
  transition: transform 0.2s;
}

/* Dropdown panel */
.npc-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  padding: 8px;
  margin-top: 4px;
  z-index: 10000;
}

.npc-nav-links > li:hover > .npc-dropdown,
.npc-nav-links > li:focus-within > .npc-dropdown {
  display: block;
}

.npc-dropdown a {
  display: block;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #4A4A5A;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
}

.npc-dropdown a:hover {
  background: #EFF6FF;
  color: #2563EB;
}

/* ===== CTA BUTTON — Premium redesign ===== */
.npc-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none !important;
  transition: all 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
  position: relative;
  overflow: hidden;
}

.npc-nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.npc-nav-cta:hover::before {
  left: 100%;
}

.npc-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.4);
  color: #FFFFFF !important;
  text-decoration: none !important;
}

.npc-nav-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.npc-cta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  flex-shrink: 0;
  animation: npcPulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.4);
}

@keyframes npcPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
  50% { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}

/* Mobile hamburger button */
.npc-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  z-index: 10002;
  transition: all 0.2s;
}

.npc-nav-toggle:hover {
  background: #F7F8FA;
  border-color: #D1D5DB;
}

.npc-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #1A1A2E;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
}

.npc-nav-toggle.active {
  border-color: #2563EB;
  background: #EFF6FF;
}

.npc-nav-toggle.active span { background: #2563EB; }
.npc-nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.npc-nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.npc-nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== SLIDE-OUT PANEL ===== */
.npc-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.npc-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.npc-slide-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 92vw;
  height: 100vh;
  height: 100dvh;
  background: #FFFFFF;
  z-index: 10001;
  transition: right 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: -12px 0 40px rgba(0,0,0,0.08);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.npc-slide-panel.active {
  right: 0;
}

/* Panel header */
.npc-panel-header {
  position: sticky;
  top: 0;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid #E5E7EB;
  z-index: 2;
}

.npc-panel-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 1.15rem;
  color: #1A1A2E;
}

.npc-panel-logo img {
  height: 36px;
  width: 36px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.npc-panel-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8E8E9A;
  transition: all 0.2s;
}

.npc-panel-close:hover {
  background: #F7F8FA;
  border-color: #D1D5DB;
  color: #1A1A2E;
}

.npc-panel-close svg {
  width: 16px;
  height: 16px;
}

.npc-panel-body {
  padding: 8px 20px 120px;
}

/* Panel sections */
.npc-panel-section {
  margin-bottom: 8px;
}

.npc-panel-section-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8E8E9A;
  padding: 16px 12px 8px;
}

/* Panel nav links */
.npc-panel-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #1A1A2E;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.15s ease;
}

.npc-panel-link:hover {
  background: #EFF6FF;
}

.npc-panel-link-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #F7F8FA;
  border: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}

.npc-panel-link:hover .npc-panel-link-icon {
  background: #EFF6FF;
  border-color: #DBEAFE;
}

.npc-panel-link-icon svg {
  width: 18px;
  height: 18px;
  color: #2563EB;
}

.npc-panel-link-text {
  flex: 1;
}

.npc-panel-link-sub {
  font-size: 0.75rem;
  color: #8E8E9A;
  font-weight: 400;
  margin-top: 1px;
}

.npc-panel-link:hover .npc-panel-link-sub {
  color: #2563EB;
  opacity: 0.7;
}

.npc-panel-link-arrow {
  color: #D1D5DB;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s;
}

.npc-panel-link:hover .npc-panel-link-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #2563EB;
}

/* States grid */
.npc-states-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 0 4px;
}

.npc-state-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #1A1A2E;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.15s ease;
}

.npc-state-link:hover {
  background: #EFF6FF;
  color: #2563EB;
}

.npc-state-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16A34A;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px #DCFCE7;
}

.npc-state-link:hover .npc-state-dot {
  background: #2563EB;
  box-shadow: 0 0 0 2px #DBEAFE;
}

/* Panel divider */
.npc-panel-divider {
  height: 1px;
  background: #E5E7EB;
  margin: 8px 12px 4px;
}

/* Panel CTA */
.npc-panel-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
  margin: 4px 0;
}

.npc-panel-cta:hover {
  background: linear-gradient(135deg, #1D4ED8 0%, #1e3a8a 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 24px rgba(37,99,235,0.4);
  transform: translateY(-1px);
}

.npc-panel-cta svg {
  width: 20px;
  height: 20px;
}

/* Panel phone link */
.npc-panel-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #1A1A2E;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.15s;
  margin-top: 4px;
}

.npc-panel-phone:hover {
  background: #F7F8FA;
}

.npc-panel-phone-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #DCFCE7;
  border: 1px solid rgba(22,163,74,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.npc-panel-phone-icon svg {
  width: 18px;
  height: 18px;
  color: #16A34A;
}

/* Panel animations */
.npc-slide-panel.active .npc-panel-link,
.npc-slide-panel.active .npc-state-link,
.npc-slide-panel.active .npc-panel-cta,
.npc-slide-panel.active .npc-panel-phone {
  animation: npcFadeSlideIn 0.35s ease forwards;
  opacity: 0;
}

.npc-slide-panel.active .npc-panel-section:nth-child(1) .npc-panel-link:nth-child(2) { animation-delay: 0.06s; }
.npc-slide-panel.active .npc-panel-section:nth-child(1) .npc-panel-link:nth-child(3) { animation-delay: 0.09s; }
.npc-slide-panel.active .npc-panel-section:nth-child(1) .npc-panel-link:nth-child(4) { animation-delay: 0.12s; }
.npc-slide-panel.active .npc-panel-section:nth-child(1) .npc-panel-link:nth-child(5) { animation-delay: 0.15s; }
.npc-slide-panel.active .npc-panel-section:nth-child(1) .npc-panel-link:nth-child(6) { animation-delay: 0.18s; }

@keyframes npcFadeSlideIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .npc-slide-panel,
  .npc-menu-overlay,
  .npc-nav-toggle span,
  .npc-panel-link,
  .npc-state-link,
  .npc-panel-cta,
  .npc-panel-phone,
  .npc-cta-dot {
    transition-duration: 0.1s !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 768px) {
  .npc-nav-links { display: none; }
  .npc-nav-toggle { display: flex; }
  .npc-nav-inner { height: 56px; }
  .npc-nav-logo img { width: 32px; height: 32px; }
  .npc-nav-logo-name { font-size: 1.05rem; }
}


/* ============================================================
 * 2. SITE FOOTER
 * ============================================================ */

/* ===== SITE FOOTER ===== */
.npc-site-footer {
  background: #1A1A2E;
  color: #B0B0C0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  padding: 56px 20px 32px;
  margin-top: 0;
}

.npc-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.npc-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.npc-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.npc-footer-brand-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
}

.npc-footer-brand-name img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.npc-footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #8E8E9A;
  margin: 0;
  max-width: 280px;
}

.npc-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563EB;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.15s;
  margin-top: 4px;
  width: fit-content;
}

.npc-footer-cta:hover {
  background: #1D4ED8;
}

.npc-footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  margin: 0 0 16px;
}

.npc-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.npc-footer-col a {
  font-size: 0.875rem;
  color: #B0B0C0;
  text-decoration: none;
  transition: color 0.15s;
}

.npc-footer-col a:hover {
  color: #FFFFFF;
}

.npc-footer-divider {
  border: none;
  border-top: 1px solid #2A2A3E;
  margin: 0 0 24px;
}

.npc-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: #6B6B80;
}

.npc-footer-bottom a {
  color: #6B6B80;
  text-decoration: none;
}

.npc-footer-bottom a:hover {
  color: #B0B0C0;
}

.npc-footer-trust {
  text-align: center;
  font-size: 0.8rem;
  color: #6B6B80;
  margin-top: 20px;
  line-height: 1.5;
}

.npc-footer-trust a {
  color: #9EB8FF;
  text-decoration: none;
}

.npc-footer-trust a:hover {
  color: #FFFFFF;
}

.npc-footer-hipaa-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.18);
  color: #D9E7FF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .npc-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .npc-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .npc-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}


/* ============================================================
 * 3. SCROLLING REVIEWS BANNER
 * ============================================================ */

/* ===== SCROLLING REVIEWS BANNER ===== */
.reviews-banner{padding:48px 0 40px;background:linear-gradient(180deg,#F8FAFC 0%,#FFF 100%);overflow:hidden;text-align:center}
.reviews-banner-header{margin-bottom:8px}
.reviews-banner-header .reviews-banner-title{font-family:'DM Serif Display',serif;font-size:clamp(1.5rem,3.5vw,2.2rem);color:#1a1a2e;display:inline-flex;align-items:center;gap:10px;justify-content:center;flex-wrap:wrap;margin:0}
.reviews-banner-stars{display:inline-flex;gap:3px}
.reviews-banner-stars svg{width:24px;height:24px;fill:#F59E0B}
.reviews-banner-subtitle{font-family:'DM Sans',sans-serif;font-size:.95rem;color:#8E8E9A;margin-bottom:28px}
.scroll-container{width:100%;overflow:hidden;-webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 8%,#000 92%,transparent 100%);mask-image:linear-gradient(90deg,transparent 0%,#000 8%,#000 92%,transparent 100%)}
.scroll-track{display:flex;gap:20px;width:max-content;animation:scrollReviews 45s linear infinite}
.scroll-track:hover{animation-play-state:paused}
@keyframes scrollReviews{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
.review-card{flex-shrink:0;width:320px;background:#FFF;border:1px solid #E5E7EB;border-radius:16px;padding:24px 28px;text-align:left;transition:transform .25s,box-shadow .25s}
.review-card:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(0,0,0,.08);border-color:#CBD5E1}
.review-card-stars{display:flex;gap:2px;margin-bottom:12px}
.review-card-stars svg{width:16px;height:16px;fill:#F59E0B}
.review-card-text{font-family:'DM Sans',sans-serif;font-size:.9rem;line-height:1.65;color:#374151;font-style:italic;margin-bottom:16px;display:-webkit-box;-webkit-line-clamp:5;-webkit-box-orient:vertical;overflow:hidden}
.review-card-footer{display:flex;align-items:center;justify-content:space-between}
.review-card-author{font-family:'DM Sans',sans-serif;font-size:.85rem;font-weight:600;color:#1a1a2e}
.review-card-source{font-family:'DM Sans',sans-serif;font-size:.7rem;font-weight:600;color:#1877F2;background:#E8F0FE;padding:3px 10px;border-radius:100px;letter-spacing:.02em}
@media(max-width:768px){.reviews-banner{padding:36px 0 28px}.review-card{width:280px;padding:20px 22px}.reviews-banner-stars svg{width:20px;height:20px}}


/* ============================================================
 * 4. SAVE CONTACT FLOATING WIDGET
 * ============================================================ */

/* ===== SAVE CONTACT FLOATING BUTTON ===== */
  .npc-save-wrap {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
  }
  .npc-save-wrap.npc-save-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .npc-save-wrap.npc-save-hidden {
    display: none !important;
  }

  /* Collapsed: circle icon button */
  .npc-save-btn {
    width: 56px;
    height: 56px;
    border-radius: 100px;
    background: #FFFFFF;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    transition: all 0.2s ease;
    position: relative;
    padding: 0;
  }
  .npc-save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,99,235,0.25);
  }
  .npc-save-btn svg {
    width: 26px;
    height: 26px;
    color: #2563EB;
    flex-shrink: 0;
  }
  .npc-save-btn .npc-save-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 10px;
    height: 10px;
    background: #2563EB;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    animation: npc-save-pulse 2s infinite;
  }

  /* Expanded card */
  .npc-save-card {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
    padding: 24px;
    opacity: 0;
    transform: scale(0.9) translateY(8px);
    transform-origin: bottom right;
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    visibility: hidden;
  }
  .npc-save-card.npc-save-card-open {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
    visibility: visible;
  }

  .npc-save-card-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border: none;
    background: #F3F4F6;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.15s ease;
  }
  .npc-save-card-close:hover {
    background: #E5E7EB;
  }
  .npc-save-card-close svg {
    width: 14px;
    height: 14px;
    color: #6B7280;
  }

  .npc-save-card-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }
  .npc-save-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #EFF6FF;
  }
  .npc-save-card-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1A1A2E;
    line-height: 1.2;
  }
  .npc-save-card-title {
    font-size: 0.75rem;
    color: #6B7280;
    margin-top: 2px;
  }

  .npc-save-card-msg {
    font-size: 0.9rem;
    color: #4A4A5A;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .npc-save-card-msg strong {
    color: #1A1A2E;
  }

  .npc-save-card-dl {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
    box-sizing: border-box;
  }
  .npc-save-card-dl:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.4);
  }
  .npc-save-card-dl svg {
    width: 16px;
    height: 16px;
    vertical-align: -3px;
    margin-right: 6px;
  }

  .npc-save-card-hint {
    text-align: center;
    font-size: 0.7rem;
    color: #9CA3AF;
    margin-top: 10px;
    line-height: 1.4;
  }

  /* Pulse animation for the notification dot */
  @keyframes npc-save-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .npc-save-wrap { transition: none; }
    .npc-save-card { transition: none; }
    .npc-save-btn { transition: none; }
    .npc-save-btn .npc-save-dot { animation: none; }
  }

  /* Mobile: shift above floating CTA bar */
  @media (max-width: 640px) {
    .npc-save-wrap {
      bottom: 84px;
      right: 16px;
    }
    .npc-save-card {
      width: 280px;
      padding: 20px;
    }
  }

  /* Very small screens */
  @media (max-width: 360px) {
    .npc-save-card {
      width: 260px;
      right: -8px;
    }
  }
