/* ============================================
   猫隧道 · 北欧侘寂风 — 主入口
   统一加载所有模块
   ============================================ */
@import url('reset.css');
@import url('nav-hero.css');
@import url('sections.css');
@import url('configurator.css');
@import url('testimonials-purchase-faq-footer.css');

/* ============================================
   Noise Texture Overlay
   ============================================ */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ============================================
   Scrollbar Styling
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-warm); }
::-webkit-scrollbar-thumb { background: var(--dark-30); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--dark-60); }

/* ============================================
   Selection
   ============================================ */
::selection {
  background: var(--gold-30);
  color: var(--dark);
}
