/* 
 * VShop 前台公共样式 v3.0
 * Enterprise Dark — 高端企业级电商风格
 */

/* ══════════════════════════════
   设计令牌 (Design Tokens)
   ══════════════════════════════ */
:root {
  /* 品牌主色 */
  --v-primary: #2563eb;
  --v-primary-hover: #1d4ed8;
  --v-primary-light: #3b82f6;
  --v-accent: #06b6d4;

  /* 语义色 */
  --v-success: #10b981;
  --v-warning: #f59e0b;
  --v-danger: #ef4444;
  --v-info: #06b6d4;

  /* 渐变 */
  --v-gradient-brand: linear-gradient(135deg, #2563eb, #06b6d4);
  --v-gradient-warm: linear-gradient(135deg, #f59e0b, #ef4444);
  --v-gradient-hero: linear-gradient(135deg, #1e3a5f 0%, #0f172a 50%, #0c1222 100%);

  /* 背景层级 */
  --v-bg-base: #0b0f19;
  --v-bg-elevated: #111827;
  --v-bg-surface: #1e2536;
  --v-bg-surface-hover: #252d40;
  --v-bg-overlay: rgba(11, 15, 25, 0.96);
  --v-bg-card: #151c2c;
  --v-bg-card-hover: #1a2338;

  /* 边框 */
  --v-border: rgba(255, 255, 255, 0.06);
  --v-border-hover: rgba(255, 255, 255, 0.12);
  --v-border-active: rgba(37, 99, 235, 0.5);
  --v-border-subtle: rgba(255, 255, 255, 0.04);

  /* 文本 */
  --v-text-primary: #f1f5f9;
  --v-text-secondary: #94a3b8;
  --v-text-muted: rgba(255, 255, 255, 0.3);
  --v-text-accent: var(--v-primary);

  /* 间距 */
  --v-space-xs: 4px;
  --v-space-sm: 8px;
  --v-space-md: 16px;
  --v-space-lg: 24px;
  --v-space-xl: 32px;
  --v-space-2xl: 48px;
  --v-space-3xl: 64px;

  /* 圆角 */
  --v-radius-sm: 6px;
  --v-radius-md: 10px;
  --v-radius-lg: 14px;
  --v-radius-xl: 20px;
  --v-radius-full: 9999px;

  /* 阴影 */
  --v-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --v-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --v-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
  --v-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.5);
  --v-shadow-glow: 0 0 30px rgba(37, 99, 235, 0.15);
  --v-shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);

  /* 过渡 */
  --v-transition-fast: 0.15s ease;
  --v-transition-base: 0.25s ease;
  --v-transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --v-transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* 字体 */
  --v-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --v-font-mono: "JetBrains Mono", "Fira Code", "Consolas", monospace;
}

/* ══════════════════════════════
   Reset & Base
   ══════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--v-font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--v-text-primary);
  background-color: var(--v-bg-base);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--v-primary);
  text-decoration: none;
  transition: color var(--v-transition-base);
}

a:hover {
  color: var(--v-primary-light);
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: rgba(37, 99, 235, 0.3);
  color: #fff;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--v-bg-surface);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ══════════════════════════════
   WebGL Canvas 容器
   ══════════════════════════════ */
#vshop-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.5s ease 0.5s;
}

#vshop-canvas.scene-ready {
  opacity: 0.5;
}

#vshop-canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* ══════════════════════════════
   加载动画
   ══════════════════════════════ */
#vshop-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--v-bg-base);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#vshop-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin-bottom: 20px;
}

.loader-spinner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--v-border);
  border-top-color: var(--v-primary);
  animation: loaderSpin 0.8s linear infinite;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

.loader-text {
  font-size: 13px;
  color: var(--v-text-secondary);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.loader-bar {
  width: 100px;
  height: 2px;
  background: var(--v-bg-surface);
  border-radius: 1px;
  margin-top: 16px;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  display: block;
  width: 30%;
  height: 100%;
  background: var(--v-gradient-brand);
  border-radius: 1px;
  animation: loaderBar 1s ease-in-out infinite;
}

@keyframes loaderBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

/* ══════════════════════════════
   自定义光标
   ══════════════════════════════ */
.vshop-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--v-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.4);
}

.vshop-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: cursorFadeIn 0.5s ease 0.8s forwards;
}

@keyframes cursorFadeIn {
  to { opacity: 1; }
}

.vshop-cursor-dot.cursor-hover,
.vshop-cursor-ring.cursor-hover {
  width: 44px;
  height: 44px;
  border-color: rgba(37, 99, 235, 0.15);
}

.vshop-cursor-dot.cursor-hover {
  background: rgba(37, 99, 235, 0.12);
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.2);
}

@media (pointer: coarse) {
  .vshop-cursor-dot,
  .vshop-cursor-ring {
    display: none !important;
  }
}

/* ══════════════════════════════
   布局
   ══════════════════════════════ */
.v-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.main-content {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 200px);
  padding: var(--v-space-lg) 0;
}

/* ══════════════════════════════
   按钮
   ══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius-md);
  background: var(--v-bg-surface);
  color: var(--v-text-primary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--v-transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  border-color: var(--v-border-hover);
  background: var(--v-bg-surface-hover);
  box-shadow: var(--v-shadow-md);
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--v-primary);
  border: none;
  color: #fff;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--v-primary-hover);
  box-shadow: var(--v-shadow-glow), var(--v-shadow-md);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--v-primary);
  color: var(--v-primary);
}

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.1);
  color: #fff;
}

.btn-danger {
  background: var(--v-danger);
  border: none;
  color: #fff;
}

.btn-danger:hover {
  background: #dc2626;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 12px;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: var(--v-radius-lg);
}

/* ══════════════════════════════
   表单
   ══════════════════════════════ */
.form-group {
  margin-bottom: var(--v-space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--v-space-sm);
  font-weight: 600;
  font-size: 13px;
  color: var(--v-text-primary);
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  background: var(--v-bg-surface);
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius-md);
  color: var(--v-text-primary);
  font-size: 14px;
  font-family: var(--v-font-sans);
  transition: all var(--v-transition-base);
  outline: none;
}

.form-control::placeholder {
  color: var(--v-text-muted);
}

.form-control:focus {
  border-color: var(--v-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-control.error {
  border-color: var(--v-danger);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-text {
  font-size: 12px;
  color: var(--v-text-secondary);
  margin-top: var(--v-space-xs);
}

.form-text.error {
  color: var(--v-danger);
}

/* ══════════════════════════════
   卡片
   ══════════════════════════════ */
.v-card {
  background: var(--v-bg-card);
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius-lg);
  padding: var(--v-space-lg);
  transition: all var(--v-transition-base);
}

.v-card:hover {
  border-color: var(--v-border-hover);
  box-shadow: var(--v-shadow-card);
  transform: translateY(-2px);
}

.v-card-header {
  padding-bottom: var(--v-space-md);
  border-bottom: 1px solid var(--v-border);
  margin-bottom: var(--v-space-md);
}

.v-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--v-text-primary);
}

/* ══════════════════════════════
   标签 / 徽章
   ══════════════════════════════ */
.v-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--v-radius-full);
  letter-spacing: 0.3px;
}

.v-badge-cyan {
  background: rgba(6, 182, 212, 0.12);
  color: var(--v-accent);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.v-badge-purple {
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.v-badge-pink {
  background: rgba(236, 72, 153, 0.12);
  color: #ec4899;
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.v-badge-green {
  background: rgba(16, 185, 129, 0.12);
  color: var(--v-success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.v-badge-blue {
  background: rgba(37, 99, 235, 0.12);
  color: var(--v-primary);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

/* ══════════════════════════════
   消息提示
   ══════════════════════════════ */
.alert {
  position: fixed;
  top: 80px;
  right: 20px;
  padding: 14px 24px;
  border-radius: var(--v-radius-md);
  border: 1px solid;
  box-shadow: var(--v-shadow-lg);
  z-index: 9999;
  animation: alertSlideIn 0.35s ease;
  max-width: 400px;
  font-size: 14px;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--v-success);
}

.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  color: var(--v-danger);
}

.alert-danger ul {
  margin: 8px 0 0 20px;
}

@keyframes alertSlideIn {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ══════════════════════════════
   全局动画
   ══════════════════════════════ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* 动画工具类 */
.v-animate-fade { animation: fadeIn 0.5s ease both; }
.v-animate-up { animation: fadeInUp 0.5s ease both; }
.v-animate-down { animation: fadeInDown 0.5s ease both; }
.v-animate-left { animation: fadeInLeft 0.5s ease both; }
.v-animate-right { animation: fadeInRight 0.5s ease both; }
.v-animate-scale { animation: scaleIn 0.5s ease both; }
.v-animate-float { animation: float 3s ease-in-out infinite; }

.v-delay-1 { animation-delay: 0.1s; }
.v-delay-2 { animation-delay: 0.2s; }
.v-delay-3 { animation-delay: 0.3s; }
.v-delay-4 { animation-delay: 0.4s; }
.v-delay-5 { animation-delay: 0.5s; }

/* ══════════════════════════════
   渐变文字
   ══════════════════════════════ */
.v-text-gradient {
  background: var(--v-gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════
   分隔线
   ══════════════════════════════ */
.v-divider {
  height: 1px;
  background: var(--v-border);
  margin: var(--v-space-lg) 0;
}

/* ══════════════════════════════
   头部导航 — 基础覆盖
   ══════════════════════════════ */
.site-header {
  background-color: transparent;
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header-logo .logo-link {
  display: flex;
  align-items: center;
  color: var(--v-text-primary);
  font-weight: bold;
  font-size: 20px;
}

.logo-subtext {
  margin-left: 8px;
  font-size: 13px;
  color: var(--v-text-secondary);
  font-weight: normal;
}

.header-nav .nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin: 0 8px;
}

.nav-link {
  padding: 8px 14px;
  color: var(--v-text-secondary);
  border-radius: var(--v-radius-sm);
  transition: all var(--v-transition-base);
  font-size: 14px;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--v-text-primary);
}

.nav-link.active {
  color: var(--v-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-menu { position: relative; }

.user-info {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: var(--v-radius-md);
  transition: all var(--v-transition-base);
}

.user-info:hover {
  background: rgba(255, 255, 255, 0.06);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--v-gradient-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-weight: bold;
  font-size: 13px;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--v-bg-elevated);
  border: 1px solid var(--v-border);
  border-radius: var(--v-radius-lg);
  box-shadow: var(--v-shadow-lg);
  min-width: 180px;
  display: none;
  z-index: 1000;
  padding: 6px;
}

.user-menu:hover .user-dropdown {
  display: block;
  animation: fadeInDown 0.2s ease;
}

.dropdown-item {
  display: block;
  padding: 10px 12px;
  color: var(--v-text-secondary);
  border-radius: var(--v-radius-sm);
  font-size: 13px;
  transition: all var(--v-transition-fast);
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--v-text-primary);
}

.dropdown-divider {
  height: 1px;
  background: var(--v-border);
  margin: 4px 0;
}

.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--v-text-secondary);
  padding: 8px 12px;
  border-radius: var(--v-radius-md);
  transition: all var(--v-transition-base);
}

.cart-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--v-primary);
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--v-danger);
  color: #fff;
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 10px;
  min-width: 16px;
  text-align: center;
}

.guest-actions {
  display: flex;
  gap: 8px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--v-text-secondary);
  border-radius: 2px;
  transition: var(--v-transition-base);
}

/* ══════════════════════════════
   页脚 — 基础覆盖
   ══════════════════════════════ */
.site-footer {
  background-color: #070a12;
  color: var(--v-text-secondary);
  padding: 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.link-column {
  min-width: 150px;
}

.link-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--v-text-primary);
}

.link-list { list-style: none; }
.link-list li { margin-bottom: 8px; }

.link-list a {
  color: var(--v-text-secondary);
  font-size: 13px;
  transition: all var(--v-transition-base);
}

.link-list a:hover {
  color: var(--v-text-primary);
  padding-left: 4px;
}

.footer-contact { min-width: 250px; }

.contact-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--v-text-primary);
}

.contact-list { list-style: none; }

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: var(--v-text-secondary);
  font-size: 13px;
}

.contact-item i {
  margin-right: 8px;
  width: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--v-border-subtle);
  font-size: 12px;
  color: var(--v-text-muted);
}

.copyright { font-size: 12px; }

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: var(--v-text-muted);
  font-size: 12px;
  transition: color var(--v-transition-base);
}

.legal-links a:hover {
  color: var(--v-text-secondary);
}

/* ══════════════════════════════
   响应式
   ══════════════════════════════ */
@media (max-width: 768px) {
  .header-nav,
  .user-info .user-name {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-content {
    padding: var(--v-space-md) 0;
  }
}

/* ══════════════════════════════
   工具类
   ══════════════════════════════ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; }

.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 20px; }

.p-1 { padding: 4px; }
.p-2 { padding: 8px; }
.p-3 { padding: 12px; }
.p-4 { padding: 16px; }
.p-5 { padding: 20px; }

.d-flex { display: flex; }
.d-none { display: none; }
.d-block { display: block; }
.d-grid { display: grid; }

.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.flex-column { flex-direction: column; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

.rounded { border-radius: var(--v-radius-md); }
.rounded-lg { border-radius: var(--v-radius-lg); }
.rounded-full { border-radius: var(--v-radius-full); }

.shadow { box-shadow: var(--v-shadow-md); }
.shadow-lg { box-shadow: var(--v-shadow-lg); }

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 自定义光标 */
body.cursor-custom,
body.cursor-custom * {
  cursor: none !important;
}

/* ══════════════════════════════
   减弱动画（无障碍）
   ══════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  #vshop-canvas { display: none; }
  .vshop-cursor-dot,
  .vshop-cursor-ring { display: none; }
}
