/* ── cat-spring.css · 春药分类 panel (1:1 复刻旧 .shop-*) ── */

.v2-cat-spring { display: none; padding: 0; box-sizing: border-box; width: 100%; min-width: 0; }
.v2-cat-spring.v2-cat-spring--show { display: block; animation: v2CatSpringFadeIn 0.28s ease-out; }
@keyframes v2CatSpringFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.v2-cat-spring__inner { padding: 14px 14px 24px; }
.v2-cat-spring__empty { text-align: center; padding: 32px 16px; color: rgba(255,255,255,0.38); font-size: 13px; }

.v2-shop-banner {
  background: linear-gradient(130deg, #c80038, #ff3b6b 45%, #ff6b3b);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 6px 28px rgba(255,59,107,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none; color: inherit;
}
.v2-shop-banner::before {
  content: ''; position: absolute; top: -30%; right: -10%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.v2-shop-banner-left { position: relative; z-index: 1; }
.v2-shop-b-tag {
  font-size: 10px; color: rgba(255,255,255,0.65);
  font-weight: 700; letter-spacing: 1.5px;
  margin-bottom: 5px; text-transform: uppercase;
}
.v2-shop-b-title {
  font-size: 20px; font-weight: 900; color: #fff;
  line-height: 1.2; letter-spacing: -0.5px;
}
.v2-shop-b-sub {
  font-size: 11px; color: rgba(255,255,255,0.65);
  margin-top: 4px;
}
.v2-shop-banner-right {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 99px;
  padding: 8px 18px;
  font-size: 12px; font-weight: 800; color: #fff;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative; z-index: 1;
  flex-shrink: 0;
}

.v2-shop-tabs {
  display: flex; gap: 0;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
}
.v2-shop-tab {
  flex: 1; text-align: center;
  padding: 9px 0;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.v2-shop-tab.v2-shop-tab--active {
  background: linear-gradient(135deg, #ff0044, #ff6b3b);
  color: #fff; font-weight: 800;
  box-shadow: 0 2px 12px rgba(255,0,68,0.4);
}

.v2-shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.v2-shop-card {
  background: linear-gradient(160deg, #0a0a0a, #000000);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
  text-decoration: none; color: inherit;
  -webkit-tap-highlight-color: transparent;
  display: block;
}
.v2-shop-card-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.v2-shop-card-img-ph {
  width: 100%; aspect-ratio: 1/1;
  background: linear-gradient(135deg, #0a0a0a, #000000);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.v2-shop-card-body { padding: 10px 11px 12px; }
.v2-shop-card-tag {
  display: inline-block;
  font-size: 9px; font-weight: 800;
  color: #ff3b6b;
  background: rgba(255,59,107,0.14);
  border: 1px solid rgba(255,59,107,0.25);
  border-radius: 5px;
  padding: 2px 7px;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.v2-shop-card-name {
  font-size: 13px; font-weight: 700; color: #fff;
  line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 5px;
  letter-spacing: -0.2px;
}
.v2-shop-card-meta {
  font-size: 10px; color: rgba(255,180,0,0.8);
  margin-bottom: 7px; letter-spacing: 0.2px;
}
.v2-shop-card-price {
  font-size: 19px; font-weight: 900; color: #ff3b6b;
  line-height: 1; letter-spacing: -0.5px;
}
.v2-shop-card-price span { font-size: 11px; font-weight: 700; }
.v2-shop-card-old {
  font-size: 10px; color: rgba(255,255,255,0.25);
  text-decoration: line-through;
  margin-left: 5px;
}
.v2-shop-card-buy {
  margin-top: 9px;
  background: linear-gradient(135deg, #ff0044, #ff6b3b);
  color: #fff;
  font-size: 11px; font-weight: 800;
  text-align: center;
  padding: 8px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(255,0,68,0.4);
  letter-spacing: 0.3px;
  pointer-events: none;
}
