/* ========== 酒页面样式 ========== */

/* ---- 夜店背景效果 ---- */
.wine-page {
  position: relative;
  background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
  min-height: 100%;
  overflow: hidden;
}

/* 霓虹灯光效果层 */
.wine-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(139, 34, 82, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(99, 49, 222, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 70% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 10% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: neonPulse 8s ease-in-out infinite;
}

@keyframes neonPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* 闪烁光点粒子 */
.wine-page::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 10% 20%, rgba(255, 255, 255, 0.4) 50%, transparent 50%),
    radial-gradient(2px 2px at 30% 15%, rgba(255, 215, 0, 0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 50% 25%, rgba(255, 255, 255, 0.3) 50%, transparent 50%),
    radial-gradient(2px 2px at 70% 10%, rgba(236, 72, 153, 0.4) 50%, transparent 50%),
    radial-gradient(1px 1px at 90% 30%, rgba(139, 34, 82, 0.5) 50%, transparent 50%),
    radial-gradient(1px 1px at 15% 60%, rgba(255, 255, 255, 0.2) 50%, transparent 50%),
    radial-gradient(2px 2px at 40% 70%, rgba(99, 49, 222, 0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 65% 55%, rgba(255, 215, 0, 0.25) 50%, transparent 50%),
    radial-gradient(2px 2px at 85% 65%, rgba(255, 255, 255, 0.3) 50%, transparent 50%),
    radial-gradient(1px 1px at 25% 85%, rgba(236, 72, 153, 0.35) 50%, transparent 50%);
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 0;
  animation: sparkle 4s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.6; transform: translateY(-5px); }
}

/* 酒页面内容层 */
.wine-page > * {
  position: relative;
  z-index: 1;
}

/* ---- 标语横幅 ---- */
.wine-banner {
  padding: 20px 16px;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1px;
}

.wine-banner.encyclopedia {
  background: linear-gradient(135deg, rgba(139, 34, 82, 0.3) 0%, rgba(99, 49, 222, 0.2) 100%);
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  margin: 12px 16px;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 0 20px rgba(139, 34, 82, 0.3),
    inset 0 0 30px rgba(255, 215, 0, 0.05);
}

.wine-banner.cocktail {
  background: linear-gradient(135deg, rgba(99, 49, 222, 0.3) 0%, rgba(236, 72, 153, 0.2) 100%);
  color: #fff;
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 8px;
  margin: 12px 16px;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 0 20px rgba(99, 49, 222, 0.3),
    inset 0 0 30px rgba(168, 85, 247, 0.05);
}

.wine-banner.inn {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.3) 0%, rgba(255, 107, 107, 0.2) 100%);
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 182, 193, 0.5);
  border: 1px solid rgba(255, 182, 193, 0.2);
  border-radius: 8px;
  margin: 12px 16px;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 0 20px rgba(236, 72, 153, 0.3),
    inset 0 0 30px rgba(255, 182, 193, 0.05);
}

/* ---- 酒百科 ---- */

/* 分类Tab */
.wine-categories {
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  overflow-x: auto;
  background: rgba(15, 15, 25, 0.8);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
  border-bottom: 1px solid rgba(139, 34, 82, 0.3);
}

.wine-categories::-webkit-scrollbar {
  display: none;
}

.wine-cat-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(30, 30, 50, 0.8);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}

.wine-cat-btn.active {
  background: linear-gradient(135deg, #8B2252 0%, #6331de 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 
    0 0 15px rgba(139, 34, 82, 0.5),
    0 0 30px rgba(99, 49, 222, 0.3);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.wine-cat-btn .cat-icon {
  font-size: 16px;
}

/* 品牌列表 */
.wine-brand-list {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: transparent;
}

.wine-brand-card {
  background: linear-gradient(145deg, rgba(25, 15, 35, 0.95) 0%, rgba(15, 10, 25, 0.98) 100%);
  border-radius: var(--radius);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(139, 34, 82, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(139, 34, 82, 0.35);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.wine-brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(139, 34, 82, 0.8) 20%, 
    rgba(255, 100, 150, 0.6) 50%, 
    rgba(139, 34, 82, 0.8) 80%, 
    transparent 100%);
  opacity: 0.8;
}

.wine-brand-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(139, 34, 82, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.wine-brand-card:active {
  box-shadow: 
    0 6px 30px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(139, 34, 82, 0.4),
    inset 0 0 30px rgba(139, 34, 82, 0.15);
  border-color: rgba(139, 34, 82, 0.6);
  transform: scale(0.98);
}

.wine-brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.wine-brand-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(139, 34, 82, 0.5) 0%, rgba(99, 49, 222, 0.4) 50%, rgba(139, 34, 82, 0.5) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 100, 150, 0.4);
  box-shadow: 
    0 0 20px rgba(139, 34, 82, 0.4),
    inset 0 0 15px rgba(255, 100, 150, 0.2);
  position: relative;
}

.wine-brand-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
  animation: iconShine 3s ease-in-out infinite;
}

@keyframes iconShine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.wine-brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wine-brand-icon-fallback {
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.wine-brand-info {
  flex: 1;
}

.wine-brand-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #fff;
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.3),
    0 0 20px rgba(139, 34, 82, 0.3);
}

.wine-brand-meta {
  display: flex;
  gap: 8px;
  align-items: center;
}

.wine-brand-abv {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 170, 0, 0.2) 100%);
  color: #ffd700;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(255, 215, 0, 0.4);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.wine-brand-type {
  font-size: 12px;
  color: rgba(200, 180, 220, 0.9);
  text-shadow: 0 0 5px rgba(139, 34, 82, 0.3);
}

.wine-brand-taste {
  font-size: 13px;
  color: rgba(220, 200, 240, 0.85);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.wine-brand-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(139, 34, 82, 0.2);
}

.wine-brand-origin {
  font-size: 12px;
  color: rgba(255, 100, 150, 0.9);
  display: flex;
  align-items: center;
  gap: 4px;
  text-shadow: 0 0 8px rgba(255, 100, 150, 0.4);
}

.wine-brand-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

/* 品牌详情弹窗 */
.wine-detail-header {
  padding: 20px 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* 酒详情图片轮播 */
.wine-detail-images {
  margin: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--bg-light);
}

.wine-images-slider {
  width: 100%;
  height: 200px;
  position: relative;
}

.wine-images-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wine-images-slider img.active {
  opacity: 1;
}

.wine-images-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.wine-images-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.wine-images-dots .dot.active {
  background: #fff;
  width: 20px;
  border-radius: 4px;
}

.wine-detail-close {
  width: 32px;
  height: 32px;
  background: var(--bg);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-light);
}

.wine-detail-body {
  padding: 16px;
}

.wine-detail-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.wine-detail-brand {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.wine-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.wine-detail-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
  padding: 12px;
  background: var(--bg);
  border-radius: var(--radius-sm);
}

.wine-detail-desc-label {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 6px;
}

/* 评论区 */
.wine-comments-section {
  padding: 16px;
  border-top: 8px solid var(--bg);
}

.wine-comments-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.wine-comments-avg {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.wine-comments-avg .score {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
}

.wine-comment-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--divider);
}

.wine-comment-item:last-child {
  border-bottom: none;
}

.wine-comment-content {
  flex: 1;
}

.wine-comment-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.wine-comment-name {
  font-size: 14px;
  font-weight: 500;
}

.wine-comment-time {
  font-size: 12px;
  color: var(--text-light);
}

.wine-comment-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.wine-comment-input {
  position: sticky;
  bottom: 0;
  padding: 12px 16px;
  background: var(--white);
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: center;
}

.wine-comment-input input {
  flex: 1;
  height: 40px;
  background: var(--bg);
  border-radius: 20px;
  padding: 0 16px;
  font-size: 13px;
}

.wine-comment-input .btn-submit {
  height: 40px;
  padding: 0 20px;
  background: var(--gradient);
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  white-space: nowrap;
}

/* 评分选择器 */
.rating-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  padding: 0 16px;
}

.rating-star {
  font-size: 28px;
  cursor: pointer;
  color: var(--text-lighter);
  transition: color 0.2s;
}

.rating-star.active {
  color: var(--gold);
}

/* ---- 酒百味 ---- */

.cocktail-list {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: transparent;
}

.cocktail-card {
  background: rgba(20, 20, 35, 0.85);
  border-radius: var(--radius);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.3),
    0 0 1px rgba(99, 49, 222, 0.5);
  overflow: hidden;
  border: 1px solid rgba(99, 49, 222, 0.2);
  backdrop-filter: blur(10px);
}

.cocktail-card-header {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.cocktail-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(99, 49, 222, 0.3) 0%, rgba(168, 85, 247, 0.2) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgba(99, 49, 222, 0.3);
  box-shadow: 0 0 15px rgba(99, 49, 222, 0.2);
}

.cocktail-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cocktail-icon-fallback {
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.cocktail-info {
  flex: 1;
}

.cocktail-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #fff;
}

.cocktail-name-en {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.cocktail-tags {
  display: flex;
  gap: 6px;
}

.cocktail-taste {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 16px;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cocktail-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 13px;
  color: #ffd700;
  cursor: pointer;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 4px;
  transition: background 0.3s;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.cocktail-toggle:active {
  background: rgba(99, 49, 222, 0.2);
}

.cocktail-toggle .arrow {
  transition: transform 0.3s;
}

.cocktail-toggle.expanded .arrow {
  transform: rotate(180deg);
}

/* 配方展开区 */
.cocktail-detail {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 20, 0.5);
}

.cocktail-detail.show {
  display: block;
}

.cocktail-section {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cocktail-section:last-child {
  border-bottom: none;
}

.cocktail-section-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.cocktail-section-title .section-icon {
  color: #ffd700;
}

/* 配料表 */
.ingredient-table {
  width: 100%;
  border-collapse: collapse;
}

.ingredient-table th {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
}

.ingredient-table td {
  font-size: 13px;
  padding: 10px 8px 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  vertical-align: top;
  color: rgba(255, 255, 255, 0.8);
}

.ingredient-table tr:last-child td {
  border-bottom: none;
}

.ingredient-name {
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

.ingredient-amount {
  color: #ffd700;
  font-weight: 500;
  white-space: nowrap;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.ingredient-role {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.5;
}

/* 制作步骤 */
.cocktail-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cocktail-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-number {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  color: #1a1a2e;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.step-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 2px;
}

/* 用户分享 */
.cocktail-shares {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.share-item {
  display: flex;
  gap: 10px;
  padding: 12px;
  background: rgba(30, 30, 50, 0.6);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-content {
  flex: 1;
}

.share-user {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #fff;
}

.share-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 6px;
}

.share-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* 在线购买 */
.cocktail-stores {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.store-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: rgba(30, 30, 50, 0.6);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-info {
  flex: 1;
}

.store-platform {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
  color: #fff;
}

.store-product {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.store-price {
  font-size: 16px;
  font-weight: 700;
  color: #ff6b6b;
  margin-right: 12px;
  text-shadow: 0 0 8px rgba(255, 107, 107, 0.5);
}

.btn-buy {
  padding: 6px 16px;
  background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
  color: #1a1a2e;
  border-radius: 14px;
  font-size: 12px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* ---- 酒客栈 ---- */

/* 城市筛选 */
.inn-city-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(15, 15, 25, 0.8);
  border-bottom: 1px solid rgba(139, 34, 82, 0.3);
  backdrop-filter: blur(10px);
}

.inn-city-filter select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(30, 30, 50, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 6px 28px 6px 12px;
  font-size: 13px;
  color: #fff;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffd700' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.inn-city-icon {
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

/* 帖子流 */
.inn-post-list {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: transparent;
}

.inn-post-card {
  background: linear-gradient(145deg, rgba(25, 18, 40, 0.95) 0%, rgba(15, 12, 28, 0.98) 100%);
  border-radius: var(--radius);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(139, 34, 82, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 16px;
  border: 1px solid rgba(139, 34, 82, 0.35);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.inn-post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(139, 34, 82, 0.6) 20%, 
    rgba(255, 100, 150, 0.5) 50%, 
    rgba(139, 34, 82, 0.6) 80%, 
    transparent 100%);
}

.inn-post-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.inn-post-user-info {
  flex: 1;
}

.inn-post-user-name {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.inn-post-time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.gender-tag {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 8px;
  font-size: 10px;
  color: #fff;
}

.gender-male {
  background: #5B8FF9;
}

.gender-female {
  background: #F56A79;
}

.inn-post-content {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.inn-post-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #ffd700;
  margin-bottom: 10px;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

/* 附近酒吧标签 */
.inn-post-bars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.bar-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(139, 34, 82, 0.3) 0%, rgba(236, 72, 153, 0.2) 100%);
  color: #ff9ec4;
  border-radius: 14px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(236, 72, 153, 0.3);
  text-shadow: 0 0 5px rgba(255, 158, 196, 0.3);
}

.bar-tag:active {
  background: linear-gradient(135deg, rgba(139, 34, 82, 0.5) 0%, rgba(236, 72, 153, 0.4) 100%);
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
}

/* 帖子操作栏 */
.inn-post-actions {
  display: flex;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(139, 34, 82, 0.2);
}

.inn-post-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 12px;
  color: rgba(200, 180, 220, 0.6);
  cursor: pointer;
  padding: 4px 0;
  transition: all 0.3s;
}

.inn-post-action:hover {
  color: rgba(255, 150, 180, 0.9);
}

.inn-post-action.liked {
  color: #ff6b6b;
  text-shadow: 0 0 8px rgba(255, 107, 107, 0.5);
}

.inn-post-action.joined {
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.inn-post-action svg {
  width: 16px;
  height: 16px;
}

/* 酒吧详情弹窗 */
.bar-detail-header {
  padding: 20px 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.bar-detail-close {
  width: 32px;
  height: 32px;
  background: var(--bg);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-light);
}

.bar-detail-body {
  padding: 16px;
}

.bar-detail-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.bar-detail-type {
  display: inline-block;
  padding: 2px 10px;
  background: var(--wine-red-bg);
  color: var(--primary);
  border-radius: 10px;
  font-size: 12px;
  margin-bottom: 12px;
}

.bar-detail-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.bar-detail-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.bar-detail-info-item .info-icon {
  color: var(--primary);
  width: 16px;
  text-align: center;
}

.bar-detail-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.bar-detail-rating .score {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}

/* 酒水单 */
.bar-menu-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.bar-menu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.bar-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--bg);
  border-radius: var(--radius-sm);
}

.bar-menu-item-name {
  font-size: 13px;
}

.bar-menu-item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--danger);
}

/* 酒吧评价 */
.bar-reviews {
  margin-bottom: 16px;
}

.bar-review-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--divider);
}

.bar-review-item:last-child {
  border-bottom: none;
}

.bar-review-user {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 500;
}

.bar-review-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.bar-review-time {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 4px;
}

/* 酒吧标签云 */
.bar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.bar-tag-item {
  padding: 4px 12px;
  background: var(--bg);
  border-radius: 12px;
  font-size: 12px;
  color: var(--text-secondary);
}

/* 导航按钮 */
.btn-navigate {
  width: 100%;
  height: 48px;
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

/* ========== 购买按钮和弹窗样式 ========== */

/* 酒详情页购买按钮 */
.btn-buy-wine {
  width: 100%;
  height: 48px;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(139, 34, 82, 0.3);
}

.btn-buy-wine:active {
  transform: scale(0.98);
  opacity: 0.9;
}

.btn-buy-wine svg {
  stroke: #fff;
}

/* 购买弹窗遮罩 */
.buy-panel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 200;
}

/* 购买弹窗 */
.buy-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  z-index: 201;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
  max-height: 80vh;
  overflow-y: auto;
}

.buy-panel.active {
  transform: translateY(0);
}

.buy-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.buy-panel-title {
  font-size: 18px;
  font-weight: 600;
}

.buy-panel-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 50%;
  font-size: 20px;
  color: var(--text-light);
  cursor: pointer;
}

/* 产品信息 */
.buy-panel-product {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg);
  margin: 16px;
  border-radius: var(--radius);
}

.buy-product-icon {
  width: 60px;
  height: 60px;
  background: var(--wine-red-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.buy-product-info {
  flex: 1;
}

.buy-product-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.buy-product-brand {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.buy-product-tags {
  display: flex;
  gap: 6px;
}

/* 购买渠道 */
.buy-panel-channels {
  padding: 0 20px 16px;
}

.buy-channel-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.buy-channel-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.buy-channel-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s;
}

.buy-channel-item:active {
  background: var(--bg);
  transform: scale(0.98);
}

.buy-channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buy-channel-icon svg {
  width: 26px;
  height: 26px;
}

.buy-channel-icon.taobao {
  background: linear-gradient(135deg, #FF6A00, #FF9500);
  color: white;
}

.buy-channel-icon.flash {
  background: linear-gradient(135deg, #FF2D55, #FF6B81);
  color: white;
}

.buy-channel-icon.jiulaida {
  background: var(--gradient);
  color: white;
}

.buy-channel-info {
  flex: 1;
}

.buy-channel-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.buy-channel-desc {
  font-size: 12px;
  color: var(--text-light);
}

.buy-channel-arrow {
  font-size: 24px;
  color: var(--text-lighter);
  font-weight: 300;
}

/* 底部提示 */
.buy-panel-tip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 20px 32px;
  font-size: 12px;
  color: var(--text-light);
}

.buy-panel-tip svg {
  color: var(--text-lighter);
}

/* ========== 发帖弹窗样式 ========== */

/* 发帖弹窗遮罩 */
.post-panel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 200;
  backdrop-filter: blur(5px);
}

/* 发帖弹窗 */
.post-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0f 100%);
  border-radius: 20px 20px 0 0;
  z-index: 201;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
  max-height: 90vh;
  overflow-y: auto;
  border-top: 1px solid rgba(139, 34, 82, 0.3);
  box-shadow: 0 -10px 40px rgba(139, 34, 82, 0.3);
}

.post-panel.active {
  transform: translateY(0);
}

.post-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, #1a1a2e 0%, rgba(26, 26, 46, 0.95) 100%);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.post-panel-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.post-panel-title::before {
  content: '🍻';
}

.post-panel-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s;
}

.post-panel-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.post-panel-body {
  padding: 20px;
}

/* 发帖表单组 */
.post-form-group {
  margin-bottom: 20px;
}

.post-form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-form-label .label-icon {
  font-size: 16px;
}

/* 内容输入框 */
.post-content-textarea {
  width: 100%;
  height: 120px;
  background: rgba(30, 30, 50, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px;
  font-size: 15px;
  color: #fff;
  resize: none;
  transition: all 0.3s;
}

.post-content-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.post-content-textarea:focus {
  outline: none;
  border-color: rgba(139, 34, 82, 0.5);
  box-shadow: 0 0 20px rgba(139, 34, 82, 0.2);
}

.post-char-count {
  text-align: right;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

.post-char-count.warning {
  color: #ffd700;
}

.post-char-count.danger {
  color: #ff6b6b;
}

/* 位置选择 */
.post-location-row {
  display: flex;
  gap: 12px;
}

.post-location-select {
  flex: 1;
  height: 44px;
  background: rgba(30, 30, 50, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0 14px;
  font-size: 14px;
  color: #fff;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffd700' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: all 0.3s;
}

.post-location-select:focus {
  outline: none;
  border-color: rgba(139, 34, 82, 0.5);
}

.post-location-select option {
  background: #1a1a2e;
  color: #fff;
}

/* 酒吧标签选择 */
.post-bar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-height: 150px;
  overflow-y: auto;
  padding: 4px;
}

.post-bar-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(30, 30, 50, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s;
}

.post-bar-tag:hover {
  border-color: rgba(139, 34, 82, 0.5);
}

.post-bar-tag.selected {
  background: linear-gradient(135deg, rgba(139, 34, 82, 0.4) 0%, rgba(236, 72, 153, 0.3) 100%);
  border-color: rgba(236, 72, 153, 0.5);
  color: #ff9ec4;
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.3);
}

.post-bar-tag .tag-icon {
  font-size: 14px;
}

.post-bar-tag .tag-check {
  display: none;
  font-size: 12px;
}

.post-bar-tag.selected .tag-check {
  display: inline;
}

.post-no-bars {
  padding: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

/* 发布按钮 */
.post-submit-btn {
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, #8B2252 0%, #6331de 100%);
  color: #fff;
  border: none;
  border-radius: 26px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(139, 34, 82, 0.4);
  margin-top: 10px;
}

.post-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(139, 34, 82, 0.5);
}

.post-submit-btn:active {
  transform: scale(0.98);
}

.post-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.post-submit-btn .btn-icon {
  font-size: 18px;
}

/* 用户信息预览 */
.post-user-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(30, 30, 50, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.post-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.post-user-avatar.male {
  background: linear-gradient(135deg, #5B8FF9 0%, #3b5998 100%);
}

.post-user-avatar.female {
  background: linear-gradient(135deg, #F56A79 0%, #ff6b9d 100%);
}

.post-user-info {
  flex: 1;
}

.post-user-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-user-tip {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* 发帖成功动画 */
@keyframes postSuccess {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.post-success-toast {
  animation: postSuccess 0.4s ease-out;
}

/* FAB按钮复写样式 */
.wine-page .fab {
  position: sticky;
  bottom: 20px;
  align-self: flex-end;
  margin: 0 20px 20px 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B2252 0%, #6331de 100%);
  color: #fff;
  font-size: 28px;
  border: none;
  cursor: pointer;
  box-shadow: 
    0 4px 20px rgba(139, 34, 82, 0.5),
    0 0 30px rgba(99, 49, 222, 0.3);
  transition: all 0.3s;
  z-index: 50;
}

.wine-page .fab:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 
    0 6px 30px rgba(139, 34, 82, 0.6),
    0 0 40px rgba(99, 49, 222, 0.4);
}

.wine-page .fab:active {
  transform: scale(0.95);
}
