/** Shopify CDN: Minification failed

Line 1708:0 Expected "}" to go with "{"

**/


.sticky-cart-sidebar.active {
  right: 0; /* 显示状态 */
}

.sticky-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.sticky-cart-header h3 {
  margin: 0;
  font-size: 18px;
}

.close-sidebar {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.sticky-cart-content {
  padding: 20px;
}

.product-info {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.product-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.product-details h4 {
  margin: 0 0 10px 0;
  font-size: 16px;
}

.product-price {
  font-size: 18px;
  font-weight: bold;
  color: #2563eb;
}

.quantity-selector {
  margin-bottom: 20px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.quantity-controls button {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
}

.quantity-controls input {
  width: 60px;
  text-align: center;
  border: 1px solid #ddd;
  padding: 5px;
}

.add-to-cart-btn {
  width: 100%;
  padding: 15px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 20px;
}

.add-to-cart-btn:hover {
  background: #1d4ed8;
}

.cart-preview {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

/* 切换按钮 */
.cart-sidebar-toggle {
  position: fixed;
  top: 50%;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #2563eb;
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


/* ==================== 第一步：基础容器重构 - 移动端优化版 ==================== */

/* 🎯 统一：主容器样式（桌面端 + 移动端适配） */
.sticky-cart-sidebar {
  position: fixed !important;
  top: 0 !important;
  right: -480px !important;
  width: 480px !important;
  height: 100vh !important;
  background: linear-gradient(135deg, #ffffff, #fafbfc) !important;
  box-shadow: -4px 0 25px rgba(0,0,0,0.15) !important;
  z-index: 99999 !important;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border-left: 1px solid #e9ecef !important;
  display: flex !important;
  flex-direction: column !important;

  
  /* 🎯 性能优化 */
  will-change: transform !important;
  backface-visibility: hidden !important;
}

.sticky-cart-sidebar.active {
  right: 0 !important;
}

/* 📱 移动端适配 - 响应式断点 */
@media (max-width: 768px) {
  .sticky-cart-sidebar {
    width: 100vw !important; /* 移动端全屏宽度 */
    right: -100vw !important;
    box-shadow: none !important; /* 移动端去除阴影，提升性能 */
  }
}

@media (max-width: 480px) {
  .sticky-cart-sidebar {
    /* 小屏手机进一步优化 */
    background: #ffffff !important; /* 简化背景，提升性能 */
  }
}

/* 🎯 统一：切换按钮（移动端优化） */
.cart-sidebar-toggle {
  position: fixed !important;
  top: 50% !important;
  right: 15px !important; /* 移动端调整位置 */
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  background: #28a745 !important;
  color: white !important;
  border: none !important;
  font-size: 20px !important;
  cursor: pointer !important;
  z-index: 9998 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
  transition: all 0.3s ease !important;
  
  /* 🎯 性能优化 */
  will-change: transform !important;
}

/* 📱 移动端按钮适配 */
@media (max-width: 768px) {
  .cart-sidebar-toggle {
    width: 45px !important;
    height: 45px !important;
    font-size: 18px !important;
    right: 10px !important;
  }
}

.cart-sidebar-toggle:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3) !important;
}

/* 📱 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
  .cart-sidebar-toggle:hover {
    transform: none !important; /* 触摸设备禁用悬停效果 */
  }
}


/* ==================== 第二步修正：头部区域优化版 ==================== */

/* 🎯 优化：头部容器（添加圆角，调整高度） */
.sticky-cart-sidebar .sidebar-bundle-header {
  background: linear-gradient(135deg, #28a745, #20c997) !important;
  color: white !important;

  text-align: center !important;
  flex-shrink: 0 !important;
  position: relative !important;
  border-bottom: 1px solid rgba(255,255,255,0.2) !important;
  
  /* 🎯 新增：圆角设计 */
  border-radius: 0 0 12px 12px !important; /* 底部圆角，与整体设计协调 */
  
  will-change: transform !important;
}

/* 🎯 优化：主标题 */
.sticky-cart-sidebar .sidebar-bundle-header h4 {
  margin: 0 0 3px 0 !important; /* 修正：恢复到3px */
  font-size: 14px !important; /* 修正：恢复到14px，保持可读性 */
  font-weight: 700 !important;
  color: white !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2) !important;
  line-height: 1.2 !important;
}

/* 🎯 优化：副标题 */
.sticky-cart-sidebar .sidebar-bundle-header p {
  margin: 0 !important;
  font-size: 9px !important; /* 修正：从8px增加到9px */
  color: rgba(255,255,255,0.9) !important;
  font-weight: 500 !important;
  letter-spacing: 0.4px !important; /* 修正：增加字间距 */
  text-transform: uppercase !important;
  line-height: 1.1 !important;
}

/* 🎯 优化：关闭按钮 */
.sticky-cart-sidebar .sidebar-close-btn {
  position: absolute !important;
  top: 50% !important;
  right: 12px !important; /* 修正：增加到12px */
  transform: translateY(-50%) !important;
  width: 30px !important; /* 修正：增加到30px */
  height: 30px !important;
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50% !important;
  color: white !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  z-index: 10 !important;
  padding: 0 !important;
  will-change: transform !important;
}

.sticky-cart-sidebar .sidebar-close-btn svg {
  width: 15px !important; /* 修正：增加到15px */
  height: 15px !important;
  stroke-width: 2.5 !important;
}

/* 📱 移动端头部优化（更合理的尺寸） */
@media (max-width: 768px) {
  .sticky-cart-sidebar .sidebar-bundle-header {
    padding: 10px 55px 10px 12px !important; /* 修正：增加高度和左右间距 */
    border-radius: 0 0 8px 8px !important; /* 移动端稍小的圆角 */
  }
  
  .sticky-cart-sidebar .sidebar-bundle-header h4 {
    font-size: 13px !important; /* 修正：保持可读性 */
  }
  
  .sticky-cart-sidebar .sidebar-bundle-header p {
    font-size: 8px !important; /* 修正：保持最小可读尺寸 */
  }
  
  .sticky-cart-sidebar .sidebar-close-btn {
    width: 32px !important; /* 修正：增加触摸面积 */
    height: 32px !important;
    right: 12px !important;
  }
  
  .sticky-cart-sidebar .sidebar-close-btn svg {
    width: 14px !important;
    height: 14px !important;
  }
}


/* 📱 触摸屏设备专用优化 */
@media (hover: none) and (pointer: coarse) {
  
  /* 🎯 头部触摸优化 */
  .sticky-cart-sidebar .sidebar-bundle-header {
    /* 触摸设备增加最小高度，确保舒适的触摸体验 */
    min-height: 50px !important;
    padding: 12px 60px 12px 15px !important; /* 为触摸操作留更多空间 */
  }
  
  /* 🎯 关闭按钮触摸优化 */
  .sticky-cart-sidebar .sidebar-close-btn {
    width: 36px !important; /* 触摸设备最小44px建议，这里36px已经足够 */
    height: 36px !important;
    right: 12px !important;
    
    /* 移除悬停效果，避免触摸设备的奇怪行为 */
    transition: background-color 0.2s ease !important;
  }
  
  .sticky-cart-sidebar .sidebar-close-btn:hover {
    transform: translateY(-50%) !important; /* 禁用悬停缩放 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important; /* 保持阴影 */
  }
  
  /* 🎯 触摸反馈效果 */
  .sticky-cart-sidebar .sidebar-close-btn:active {
    background: rgba(255, 255, 255, 0.4) !important;
    transform: translateY(-50%) scale(0.95) !important; /* 触摸时轻微缩小 */
  }
  
  /* 🎯 触摸设备文字优化 */
  .sticky-cart-sidebar .sidebar-bundle-header h4 {
    font-size: 14px !important; /* 触摸设备保持较大字体 */
    line-height: 1.3 !important; /* 增加行高，提升可读性 */
  }
  
  .sticky-cart-sidebar .sidebar-bundle-header p {
    font-size: 9px !important; /* 触摸设备最小可读尺寸 */
    line-height: 1.2 !important;
  }
}

/* 📱 高分辨率触摸屏优化 */
@media (hover: none) and (pointer: coarse) and (-webkit-min-device-pixel-ratio: 2) {
  .sticky-cart-sidebar .sidebar-bundle-header {
    /* 高分辨率屏幕可以稍微压缩一点 */
    padding: 10px 55px 10px 12px !important;
  }
  
  .sticky-cart-sidebar .sidebar-close-btn svg {
    stroke-width: 2.8 !important; /* 高分辨率屏幕增加线条粗细 */
  }
}

/* 📱 横屏触摸设备优化 */
@media (hover: none) and (pointer: coarse) and (orientation: landscape) {
  .sticky-cart-sidebar .sidebar-bundle-header {
    padding: 8px 50px 8px 12px !important; /* 横屏时可以稍微压缩高度 */
  }
}

/* 📱 小屏触摸设备特殊优化 */
@media (hover: none) and (pointer: coarse) and (max-width: 480px) {
  .sticky-cart-sidebar .sidebar-bundle-header {
    padding: 14px 60px 14px 16px !important; /* 小屏幕增加更多触摸空间 */
  }
  
  .sticky-cart-sidebar .sidebar-close-btn {
    width: 38px !important; /* 小屏幕增大关闭按钮 */
    height: 38px !important;
    right: 10px !important;
  }
  
  .sticky-cart-sidebar .sidebar-close-btn svg {
    width: 16px !important;
    height: 16px !important;
  }
}



/* ==================== 第三步：主产品区域重构 - 核心优化 ==================== */

/* 🎯 统一：主产品容器（去重去冲突） */
.sticky-cart-sidebar .current-product-info {
  background: linear-gradient(135deg, #f0fff4, #ffffff) !important;
  border: 2px solid #28a745 !important;
  border-radius: 12px !important;
  padding: 12px !important; /* 压缩：从15px减少到12px */
  flex-shrink: 0 !important;
  margin-bottom: 12px !important; /* 压缩：从15px减少到12px */
  position: relative !important;
  display: block !important; /* 确保容器为块级元素 */
  
  /* 🎯 性能优化 */
  will-change: transform !important;
}

/* 🎯 产品信息上半部分 - 图片和基本信息 */
.sticky-cart-sidebar .current-product-info .product-info-top {
  display: flex !important;
  gap: 10px !important; /* 压缩：从12px减少到10px */
  margin-bottom: 10px !important; /* 压缩：从12px减少到10px */
  align-items: flex-start !important;
}

/* 🎯 主产品图片区域 */
.sticky-cart-sidebar .current-product-info .product-image {
  flex-shrink: 0 !important;
}

.sticky-cart-sidebar .current-product-info .product-image img {
  width: 55px !important; /* 压缩：从60px减少到55px */
  height: 55px !important;
  border-radius: 8px !important;
  border: 2px solid rgba(40, 167, 69, 0.3) !important;
  transition: all 0.3s ease !important;
  object-fit: cover !important;
}

/* 🎯 主产品详情区域 */
.sticky-cart-sidebar .current-product-info .product-details {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  padding-right: 30px !important; /* 为HOT标签留空间 */
  min-width: 0 !important; /* 防止flex子元素溢出 */
}

.sticky-cart-sidebar .current-product-info .product-details h4 {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #1e7e34 !important;
  margin:  0 !important; /* 压缩：从6px减少到5px */
  line-height: 1.2 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
}

.sticky-cart-sidebar .current-product-info .product-price {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #dc3545 !important;
  margin: 0 0 6px 0 !important; /* 压缩：从8px减少到6px */
}

/* 🎯 核心优化：变体选择器并排布局 */
.sticky-cart-sidebar .product-variants {
  display: flex !important; /* 关键：改为flex布局 */
  gap: 8px !important; /* 变体选择器之间的间距 */
  margin-bottom: 6px !important; /* 压缩：减少底部间距 */
  flex-wrap: wrap !important; /* 允许换行，适应小屏幕 */
}

.sticky-cart-sidebar .variant-selector {
  flex: 1 !important; /* 平均分配空间 */
  min-width: 80px !important; /* 确保最小宽度 */
  margin-bottom: 0 !important; /* 移除原有的底部间距 */
}

.sticky-cart-sidebar .variant-selector label {
  font-size: 10px !important; /* 压缩：从11px减少到10px */
  margin-bottom: 2px !important;
  color: #495057 !important;
  font-weight: 600 !important;
  display: block !important;
  white-space: nowrap !important; /* 防止标签换行 */
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.sticky-cart-sidebar .variant-dropdown {
  width: 100% !important;
  padding: 3px 6px !important; /* 压缩：从4px 8px减少 */
  border: 1px solid #e9ecef !important;
  border-radius: 4px !important; /* 压缩：从6px减少到4px */
  font-size: 10px !important; /* 压缩：从11px减少到10px */
  height: 26px !important; /* 压缩：从28px减少到26px */
  background: white !important;
  cursor: pointer !important;
  transition: border-color 0.2s ease !important;
}

.sticky-cart-sidebar .variant-dropdown:focus {
  border-color: #28a745 !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2) !important;
}

/* 🎯 底部操作区域优化 */
.sticky-cart-sidebar .product-purchase-area {
  display: flex !important;
  gap: 10px !important; /* 压缩：从12px减少到10px */
  align-items: center !important;
  margin-top: 0 !important; /* 压缩：从12px减少到10px */
  padding-top: 0 !important; /* 压缩：从12px减少到10px */
  border-top: 1px solid rgba(40, 167, 69, 0.1) !important;
}

/* 🎯 数量选择器优化 */
.sticky-cart-sidebar .quantity-selector {
  display: flex !important;
  border: 1px solid #e9ecef !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  height: 32px !important; /* 压缩：从36px减少到32px */
}

.sticky-cart-sidebar .quantity-btn {
  width: 32px !important; /* 压缩：从36px减少到32px */
  height: 32px !important;
  border: none !important;
  background: #f8f9fa !important;
  font-size: 13px !important; /* 压缩：从14px减少到13px */
  font-weight: 600 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  color: #495057 !important;
}

.sticky-cart-sidebar .quantity-btn:hover {
  background: #28a745 !important;
  color: white !important;
}

.sticky-cart-sidebar #mainProductQuantity {
  width: 45px !important; /* 压缩：从50px减少到45px */
  height: 32px !important;
  border: none !important;
  text-align: center !important;
  font-size: 11px !important; /* 压缩：从12px减少到11px */
  font-weight: 600 !important;
  background: white !important;
  color: #2c3e50 !important;
}

/* 🎯 主产品按钮优化 */
.sticky-cart-sidebar .main-product-add-to-cart {
  flex: 1 !important;
  height: 32px !important; /* 压缩：从36px减少到32px */
  padding: 0 10px !important; /* 压缩：从12px减少到10px */
  background: linear-gradient(135deg, #28a745, #20c997) !important;
  color: white !important;
  border: none !important;
  border-radius: 6px !important;
  font-size: 11px !important; /* 压缩：从12px减少到11px */
  font-weight: 600 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important; /* 压缩：从0.5px减少 */
}

.sticky-cart-sidebar .main-product-add-to-cart:hover {
  background: linear-gradient(135deg, #218838, #1e7e34) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 3px 8px rgba(40, 167, 69, 0.3) !important;
}

/* 🎯 HOT标签优化 */
.sticky-cart-sidebar .current-product-info::after {
  content: 'HOT' !important;
  position: absolute !important;
  top: 10px !important; /* 压缩：从12px减少到10px */
  right: 10px !important; /* 压缩：从12px减少到10px */
  background: linear-gradient(135deg, #ff4444, #e74c3c) !important;
  color: white !important;
  padding: 3px 6px !important; /* 压缩：从4px 8px减少 */
  border-radius: 10px !important; /* 压缩：从12px减少到10px */
  font-size: 8px !important; /* 压缩：从9px减少到8px */
  font-weight: 700 !important;
  box-shadow: 0 2px 6px rgba(255, 68, 68, 0.4) !important;
  animation: pulse-hot 2s ease-in-out infinite !important;
}

/* 📱 移动端主产品区域优化 */
@media (max-width: 768px) {
  .sticky-cart-sidebar .current-product-info {
    padding: 10px !important;
    margin-bottom: 10px !important;
  }
  
  .sticky-cart-sidebar .current-product-info .product-info-top {
  
    margin-bottom: 0 !important;
  }
  
  .sticky-cart-sidebar .current-product-info .product-image img {
    width: 50px !important;
    height: 50px !important;
  }
  

  
  .sticky-cart-sidebar .current-product-info .product-price {
    font-size: 13px !important;
  }
  
  /* 🎯 移动端变体选择器 */
  .sticky-cart-sidebar .product-variants {
    gap: 6px !important;
  }
  
  .sticky-cart-sidebar .variant-selector {
    min-width: 70px !important;
  }
  
  .sticky-cart-sidebar .variant-dropdown {
    height: 24px !important;
    font-size: 9px !important;
    padding: 2px 4px !important;
  }
  

  
  .sticky-cart-sidebar .quantity-selector {
    height: 30px !important;
  }
  
  .sticky-cart-sidebar .quantity-btn {
    width: 30px !important;
    height: 30px !important;
    font-size: 12px !important;
  }
  
  .sticky-cart-sidebar #mainProductQuantity {
    width: 40px !important;
    height: 30px !important;
    font-size: 10px !important;
  }
  
  .sticky-cart-sidebar .main-product-add-to-cart {
    height: 30px !important;
    font-size: 12px !important;
    padding: 0 8px !important;
  }
}

/* 📱 触摸设备主产品区域优化 */
@media (hover: none) and (pointer: coarse) {
  .sticky-cart-sidebar .variant-dropdown {
    min-height: 28px !important; /* 确保触摸友好的最小高度 */
  }
  
  .sticky-cart-sidebar .quantity-btn {
    min-width: 32px !important;
    min-height: 32px !important;
  }
  
  .sticky-cart-sidebar .main-product-add-to-cart {
    min-height: 32px !important;
  }
  
  /* 移除悬停效果 */
  .sticky-cart-sidebar .quantity-btn:hover {
    background: #f8f9fa !important;
    color: #495057 !important;
  }
  
  .sticky-cart-sidebar .main-product-add-to-cart:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  
  /* 添加触摸反馈 */
  .sticky-cart-sidebar .quantity-btn:active {
    background: #28a745 !important;
    color: white !important;
  }
  
  .sticky-cart-sidebar .main-product-add-to-cart:active {
    background: linear-gradient(135deg, #218838, #1e7e34) !important;
  }
}





/* ==================== 第四步：套装推荐区域重构 - 袖珍版优化 ==================== */

/* 🎯 统一：套装推荐容器（去重去冲突） */
.sticky-cart-sidebar .sidebar-bundle-recommendation {
  background: linear-gradient(135deg, #ffffff, #fafbfc) !important;
  border: 1px solid #e9ecef !important;
  border-radius: 12px !important;
  padding: 10px !important; /* 压缩：从18px减少到10px */
  flex-shrink: 0 !important;
  margin-bottom: 10px !important; /* 压缩：从20px减少到10px */
  position: relative !important;
  
  /* 🎯 性能优化 */
  will-change: transform !important;
}

/* 🎯 套装产品列表容器 */
.sticky-cart-sidebar .sidebar-bundle-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important; /* 压缩：从10px减少到6px */
}

/* 🎯 单个套装产品项（大幅压缩） */
.sticky-cart-sidebar .sidebar-bundle-item {
  display: flex !important;
  align-items: center !important;
  padding: 8px !important; /* 压缩：从12px减少到8px */
  background: linear-gradient(135deg, #ffffff, #fafbfc) !important;
  border: 1px solid #e9ecef !important;
  border-radius: 8px !important; /* 压缩：从12px减少到8px */
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  position: relative !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04) !important; /* 压缩阴影 */
}

.sticky-cart-sidebar .sidebar-bundle-item:hover {
  border-color: #28a745 !important;
  box-shadow: 0 3px 8px rgba(40, 167, 69, 0.15) !important; /* 压缩悬停阴影 */
  transform: translateY(-1px) !important; /* 压缩：从-2px减少到-1px */
  background: linear-gradient(135deg, #f0fff4, #ffffff) !important;
}

/* 🎯 套装产品复选框 */
.sticky-cart-sidebar .sidebar-bundle-checkbox {
  margin-right: 8px !important; /* 压缩：从12px减少到8px */
  width: 14px !important; /* 压缩：从16px减少到14px */
  height: 14px !important;
  accent-color: #28a745 !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
}

/* 🎯 套装产品图片 */
.sticky-cart-sidebar .sidebar-bundle-image {
  width: 45px !important; /* 压缩：从50px减少到45px */
  height: 45px !important;
  object-fit: cover !important;
  border-radius: 6px !important; /* 压缩：从8px减少到6px */
  margin-right: 8px !important; /* 压缩：从12px减少到8px */
  transition: all 0.3s ease !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1) !important; /* 压缩阴影 */
  flex-shrink: 0 !important;
}

.sticky-cart-sidebar .sidebar-bundle-item:hover .sidebar-bundle-image {
  transform: scale(1.03) !important; /* 压缩：从1.05减少到1.03 */
  box-shadow: 0 2px 6px rgba(0,0,0,0.15) !important;
}

/* 🎯 套装产品内容区域 */
.sticky-cart-sidebar .sidebar-bundle-content {
  flex: 1 !important;
  min-width: 0 !important;
  margin-left: 0 !important; /* 移除额外边距 */
}

.sticky-cart-sidebar .sidebar-bundle-title {
  font-weight: 600 !important;
  color: #2c3e50 !important;
  font-size: 10px !important;
  margin: 0 0 4px 0 !important; /* 压缩：从6px减少到4px */
  line-height: 1.2 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
}

/* 🎯 套装产品价格行 */
.sticky-cart-sidebar .sidebar-bundle-price-row {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important; /* 压缩：从8px减少到6px */
  flex-wrap: wrap !important;
  margin-bottom: 4px !important; /* 压缩间距 */
}

.sticky-cart-sidebar .sidebar-bundle-price {
  font-size: 12px !important; /* 压缩：从14px减少到12px */
  font-weight: 700 !important;
  color: #e74c3c !important;
  transition: all 0.3s ease !important;
}

.sticky-cart-sidebar .sidebar-bundle-discount {
  background: linear-gradient(135deg, #ff4444, #e74c3c) !important;
  color: white !important;
  padding: 1px 4px !important; /* 压缩：从2px 6px减少 */
  border-radius: 8px !important; /* 压缩：从10px减少到8px */
  font-size: 8px !important; /* 压缩：从9px减少到8px */
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.2px !important; /* 压缩字间距 */
  box-shadow: 0 1px 3px rgba(255, 68, 68, 0.25) !important;
}

/* 🎯 套装变体选择器（压缩版） */
.sticky-cart-sidebar .bundle-variant-selectors {
  margin-top: 4px !important; /* 压缩：从6px减少到4px */
}

.sticky-cart-sidebar .bundle-variant-option {
  margin-bottom: 3px !important; /* 压缩：从4px减少到3px */
}

.sticky-cart-sidebar .bundle-variant-option label {
  font-size: 8px !important; /* 压缩：从10px减少到8px */
  color: #666 !important;
  margin-right: 4px !important; /* 压缩：从5px减少到4px */
  margin-bottom: 1px !important;
}

.sticky-cart-sidebar .bundle-variant-dropdown {
  font-size: 8px !important; /* 压缩：从10px减少到8px */
  padding: 1px 3px !important; /* 压缩：从2px 4px减少 */
  border: 1px solid #ddd !important;
  border-radius: 3px !important;
  height: 18px !important; /* 大幅压缩高度 */
  background: white !important;
  cursor: pointer !important;
}

/* 🎯 价格计算区域优化 */
.sticky-cart-sidebar .sidebar-price-calculation {
  margin-top: 8px !important; /* 压缩：从18px减少到8px */
  padding: 10px !important; /* 压缩：从15px减少到10px */
  background: linear-gradient(135deg, #f8f9fa, #ffffff) !important;
  border-radius: 10px !important; /* 压缩：从12px减少到10px */
  border: 1px solid #e9ecef !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important; /* 压缩阴影 */
  position: relative !important;
  flex-shrink: 0 !important;
}

.sticky-cart-sidebar .sidebar-price-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 4px !important; /* 压缩：从8px减少到4px */
  font-size: 10px !important; /* 压缩：从12px减少到10px */
  color: #495057 !important;
}

.sticky-cart-sidebar .sidebar-price-row.discount {
  color: #e74c3c !important;
  font-weight: 600 !important;
}

.sticky-cart-sidebar .sidebar-price-row.final {
  font-weight: 700 !important;
  font-size: 12px !important; /* 压缩：从14px减少到12px */
  color: #2c3e50 !important;
  border-top: 1px solid #e9ecef !important;
  padding-top: 4px !important; /* 压缩：从8px减少到4px */
  margin-top: 4px !important; /* 压缩：从8px减少到4px */
}

/* 🎯 套装添加到购物车按钮 */
.sticky-cart-sidebar .sidebar-bundle-add-to-cart {
  width: 100% !important;
  padding: 8px !important; /* 压缩：从12px减少到8px */
  background: linear-gradient(135deg, #28a745, #20c997) !important;
  color: white !important;
  border: none !important;
  border-radius: 8px !important; /* 压缩：从10px减少到8px */
  font-size: 11px !important; /* 压缩：从13px减少到11px */
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important; /* 压缩字间距 */
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.25) !important; /* 压缩阴影 */
  margin-top: 6px !important; /* 压缩：从12px减少到6px */
  height: 32px !important; /* 固定高度 */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.sticky-cart-sidebar .sidebar-bundle-add-to-cart:hover {
  background: linear-gradient(135deg, #218838, #1e7e34) !important;
  transform: translateY(-1px) !important; /* 压缩：从-2px减少到-1px */
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.35) !important;
}

/* 📱 移动端套装推荐区域优化 */
@media (max-width: 768px) {
  .sticky-cart-sidebar .sidebar-bundle-recommendation {
    padding: 8px !important;
    margin-bottom: 8px !important;
  }
  
  .sticky-cart-sidebar .sidebar-bundle-list {
    gap: 5px !important;
  }
  
  .sticky-cart-sidebar .sidebar-bundle-item {
    padding: 6px !important;
  }
  
  .sticky-cart-sidebar .sidebar-bundle-image {
    width: 40px !important;
    height: 40px !important;
    margin-right: 6px !important;
  }
  
  .sticky-cart-sidebar .sidebar-bundle-title {
    font-size: 9px !important;
  }
  
  .sticky-cart-sidebar .sidebar-bundle-price {
    font-size: 11px !important;
  }
  
  .sticky-cart-sidebar .sidebar-bundle-discount {
    font-size: 7px !important;
    padding: 1px 3px !important;
  }
  
  .sticky-cart-sidebar .bundle-variant-dropdown {
    height: 16px !important;
    font-size: 7px !important;
  }
  
  .sticky-cart-sidebar .sidebar-price-calculation {
    padding: 6px !important;
    margin-top: 0 !important;

  }
  
  .sticky-cart-sidebar .sidebar-price-row {
    font-size: 12px !important;
    margin-bottom: 3px !important;
  }
  
  .sticky-cart-sidebar .sidebar-price-row.final {
    font-size: 11px !important;
  }
  
  .sticky-cart-sidebar .sidebar-bundle-add-to-cart {
    padding: 6px !important;
    font-size: 12px !important;
    height: 28px !important;
  }
}

/* 📱 触摸设备套装区域优化 */
@media (hover: none) and (pointer: coarse) {
  .sticky-cart-sidebar .sidebar-bundle-checkbox {
    width: 16px !important;
    height: 16px !important;
  }
  
  .sticky-cart-sidebar .bundle-variant-dropdown {
    min-height: 20px !important;
  }
  
  .sticky-cart-sidebar .sidebar-bundle-add-to-cart {
    min-height: 32px !important;
  }
  
  /* 移除悬停效果 */
  .sticky-cart-sidebar .sidebar-bundle-item:hover {
    transform: none !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04) !important;
  }
  
  .sticky-cart-sidebar .sidebar-bundle-item:hover .sidebar-bundle-image {
    transform: none !important;
  }
  
  .sticky-cart-sidebar .sidebar-bundle-add-to-cart:hover {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.25) !important;
  }
  
  /* 添加触摸反馈 */
  .sticky-cart-sidebar .sidebar-bundle-item:active {
    background: linear-gradient(135deg, #f0fff4, #ffffff) !important;
  }
  
  .sticky-cart-sidebar .sidebar-bundle-add-to-cart:active {
    background: linear-gradient(135deg, #218838, #1e7e34) !important;
  }
}












/* ==================== 第五步修正：PC端字号优化（不增加间距） ==================== */

/* 🎯 PC端专用：只增加字号，保持原有间距 */
@media (min-width: 769px) {
  
  /* PC端套装产品标题 - 只增加字号 */
  .sticky-cart-sidebar .sidebar-bundle-title {
    font-size: 11px !important; /* 从10px增加到11px */
    margin: 0 0 4px 0 !important; /* 保持原有的4px间距 */
    line-height: 1.2 !important; /* 保持原有行高 */
  }
  
  /* PC端套装产品价格 - 只增加字号 */
  .sticky-cart-sidebar .sidebar-bundle-price {
    font-size: 13px !important; /* 从12px增加到13px */
  }
  
  /* PC端套装折扣标签 - 只增加字号 */
  .sticky-cart-sidebar .sidebar-bundle-discount {
    font-size: 9px !important; /* 从8px增加到9px */
    padding: 1px 4px !important; /* 保持原有的紧凑padding */
  }
  
  /* PC端套装变体选择器标签 - 只增加字号 */
  .sticky-cart-sidebar .bundle-variant-option label {
    font-size: 9px !important; /* 从8px增加到9px */
    margin-bottom: 1px !important; /* 保持原有间距 */
  }
  
  /* PC端套装变体下拉菜单 - 只增加字号 */
  .sticky-cart-sidebar .bundle-variant-dropdown {
    font-size: 9px !important; /* 从8px增加到9px */
    height: 18px !important; /* 保持原有的18px高度 */
    padding: 1px 3px !important; /* 保持原有的紧凑padding */
  }
  
  /* PC端价格计算区域 - 只增加字号 */
  .sticky-cart-sidebar .sidebar-price-row {
    font-size: 11px !important; /* 从10px增加到11px */
    margin-bottom: 4px !important; /* 保持原有的4px间距 */
  }
  
  .sticky-cart-sidebar .sidebar-price-row.final {
    font-size: 13px !important; /* 从12px增加到13px */
    padding-top: 4px !important; /* 保持原有的4px */
    margin-top: 4px !important; /* 保持原有的4px */
  }
  
  /* PC端套装按钮 - 只增加字号 */
  .sticky-cart-sidebar .sidebar-bundle-add-to-cart {
    font-size: 12px !important; /* 从11px增加到12px */
    height: 32px !important; /* 保持原有的32px高度 */
    padding: 8px !important; /* 保持原有的8px padding */
    margin-top: 6px !important; /* 保持原有的6px间距 */
  }
  
  /* 🎯 关键：保持所有原有的间距设置 */
  .sticky-cart-sidebar .sidebar-bundle-item {
    padding: 8px !important; /* 保持原有的8px */
  }
  
  .sticky-cart-sidebar .sidebar-bundle-list {
    gap: 6px !important; /* 保持原有的6px */
  }
  
  
  
  .sticky-cart-sidebar .sidebar-price-calculation {
    padding: 10px !important; /* 保持原有的10px */
    margin-top: 8px !important; /* 保持原有的8px */
  }
}


@media (max-width: 768px) {
  /* 🎯 使用更高优先级强制布局 */
  .bundle-variant-selectors {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    
    /* 强制flex布局 */
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    margin-top: 6px !important;
    width: 100% !important;
  }
  
  /* 🎯 强制每个选择器并排 */
  .bundle-variant-option {
    flex: 1 1 50% !important;
    display: block !important;
    width: 48% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* 🎯 强制标签和选择器垂直排列 */
  .bundle-variant-option label {
    display: block !important;
    font-size: 9px !important;
    color: #666 !important;
    margin: 0 0 3px 0 !important;
    width: 100% !important;
  }
  
  /* 🎯 强制选择器宽度 */
  .bundle-variant-dropdown {
    display: block !important;
    width: 100% !important;
    font-size: 8px !important;
    height: 20px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 768px) {
  .bundle-variant-selectors {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    display: flex !important;
    gap: 8px !important;
    margin-top: 6px !important;
  }
  
  .bundle-variant-option {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important; /* 垂直居中对齐 */
    gap: 3px !important; /* 标签和选择器之间的小间距 */
    margin: 0 !important;
  }
  
  /* 🎯 标签固定宽度，不换行 */
  .bundle-variant-option label {
    font-size: 8px !important;
    color: #666 !important;
    margin: 0 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    width: 32px !important; /* 固定宽度 */
  }
  
  /* 🎯 选择器占剩余空间 */
  .bundle-variant-dropdown {
    flex: 1 !important;
    font-size: 7px !important;
    height: 18px !important;
    min-width: 0 !important;
  }
}


@media (max-width: 768px) {
  
  /* 🎯 保持成功的并排布局结构 */
  .bundle-variant-selectors {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    display: flex !important;
    gap: 12px !important;
    margin-top: 8px !important;
  }
  
  /* 🎯 保持标签和选择器同行布局（修改） */
  .bundle-variant-option {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important; /* 保持同行 */
    gap: 6px !important;
    margin: 0 !important;
  }
  
  /* 🎯 美化标签（修改） */
  .bundle-variant-option label {
    font-size: 11px !important;
    color: #333 !important;
    font-weight: 600 !important;
    margin: 0 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    width: 40px !important;
  }
  
  /* 🎯 美化选择器（修改） */
  .bundle-variant-dropdown {
    flex: 1 !important;
    height: 28px !important;
    font-size: 11px !important;
    padding: 4px 24px 4px 8px !important;
    border: 1.5px solid #e1e1e1 !important;
    border-radius: 6px !important;
    background-color: #fafafa !important;
    min-width: 0 !important;
  }
}

/* ==================== 套装推荐平衡优化版 ==================== */

@media (max-width: 768px) {
  
  /* 🎯 1. 整体高度控制 - 减少垂直空间占用（修改） */
  body .sidebar-bundle-recommendation .sidebar-bundle-list .sidebar-bundle-item {
    display: flex !important;
    align-items: center !important; /* 改为center，让复选框垂直居中 */
    gap: 8px !important;
    padding: 8px !important; /* 减少内边距 */
    min-height: 85px !important; /* 减少最小高度 */
    background: #fafafa !important;
    border-radius: 6px !important;
    margin-bottom: 6px !important; /* 减少间距 */
  }
  
  /* 🎯 2. 复选框垂直居中对齐（修改） */
  body .sidebar-bundle-recommendation .sidebar-bundle-item .sidebar-bundle-checkbox {
    margin: 0 !important; /* 清除所有边距 */
    flex-shrink: 0 !important;
    align-self: center !important; /* 强制垂直居中 */
  }
  
  /* 🎯 3. 图片尺寸适当缩小（修改） */
  body .sidebar-bundle-recommendation .sidebar-bundle-list .sidebar-bundle-item img.sidebar-bundle-image {
    width: 65px !important; /* 从70px减少到65px */
    height: 65px !important;
    min-width: 65px !important;
    min-height: 65px !important;
    object-fit: cover !important;
    border-radius: 6px !important;
    align-self: center !important; /* 图片也垂直居中 */
  }
  
  /* 🎯 4. 右侧内容区域紧凑化（修改） */
  body .sidebar-bundle-recommendation .sidebar-bundle-content {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important; /* 减少间距 */
    padding: 0 !important;
    justify-content: center !important; /* 内容垂直居中 */
  }
  
  /* 🎯 5. 标题字体适中（修改） */
  body .sidebar-bundle-recommendation .sidebar-bundle-content .sidebar-bundle-title {
    font-size: 14px !important; /* 适中尺寸 */
    font-weight: 600 !important;
    line-height: 1.3 !important;
    color: #333 !important;
    margin: 0 0 3px 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
  }
  
  /* 🎯 6. 价格区域紧凑（修改） */
  body .sidebar-bundle-recommendation .sidebar-bundle-content .sidebar-bundle-price-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 4px !important; /* 减少间距 */
  }
  
  /* 🎯 7. 价格字体适中（修改） */
  body .sidebar-bundle-recommendation .sidebar-bundle-content .sidebar-bundle-price {
    font-size: 16px !important; /* 适中尺寸 */
    font-weight: 700 !important;
    color: #e74c3c !important;
  }
  
  /* 🎯 8. 变体选择器容器（修改） */
  body .sidebar-bundle-recommendation .sidebar-bundle-content .bundle-variant-selectors {
    display: flex !important;
    gap: 10px !important; /* 适中间距 */
    margin-top: 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
  }
  
  /* 🎯 9. 变体标签放大 - 解决红框文字太小问题（修改） */
  body .sidebar-bundle-recommendation .sidebar-bundle-content .bundle-variant-option label {
    font-size: 13px !important; /* 放大标签文字 */
    font-weight: 600 !important;
    color: #333 !important;
    margin: 0 4px 0 0 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    min-width: 42px !important;
  }
  
  /* 🎯 10. 变体下拉框优化（修改） */
  body .sidebar-bundle-recommendation .sidebar-bundle-content .bundle-variant-dropdown {
    flex: 1 !important;
    height: 28px !important; /* 适中高度 */
    font-size: 12px !important; /* 放大下拉框文字 */
    padding: 4px 20px 4px 8px !important;
    border: 1.5px solid #e1e1e1 !important;
    border-radius: 5px !important;
    background-color: white !important;
    color: #333 !important;
    font-weight: 500 !important;
    min-width: 0 !important;
    max-width: 100px !important; /* 控制最大宽度 */
    
    /* 自定义下拉箭头 */
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 5px center !important;
    background-size: 12px !important;
  }
}

/* 🎯 底部主产品区域确保可见（新增） */
@media (max-width: 768px) {
  .current-product-info {
   
    padding: 12px !important;
    background: white !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
  }
}


@media (max-width: 768px) {
  
  /* 🎯 1. 进一步缩小垂直间距（修改） */
  body .sidebar-bundle-recommendation .sidebar-bundle-list .sidebar-bundle-item {
    padding: 6px !important; /* 从8px减少到6px */
    margin-bottom: 4px !important; /* 从6px减少到4px */
    min-height: 80px !important; /* 从85px减少到80px */
    gap: 6px !important; /* 从8px减少到6px */
  }
  
  /* 🎯 2. 右侧内容间距进一步缩小（修改） */
  body .sidebar-bundle-recommendation .sidebar-bundle-content {
    gap: 3px !important; /* 从4px减少到3px */
  }
  
  /* 🎯 3. 标题下边距缩小（修改） */
  body .sidebar-bundle-recommendation .sidebar-bundle-content .sidebar-bundle-title {
    margin: 0 0 2px 0 !important; /* 从3px减少到2px */
  }
  
  /* 🎯 4. 价格区域间距缩小（修改） */
  body .sidebar-bundle-recommendation .sidebar-bundle-content .sidebar-bundle-price-row {
    margin-bottom: 3px !important; /* 从4px减少到3px */
  }
  









@media (max-width: 768px) {
  /* 🎯 清除测试边框 */
  body .sidebar-bundle-recommendation .sidebar-bundle-list .sidebar-bundle-item img.sidebar-bundle-image {
    border: none !important;
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
  }
  
  /* 🎯 只给底部预留空间，不压缩内容 */
  .sidebar-bundle-recommendation {
    border: none !important;
    padding-bottom: 90px !important;
  }
  
  /* 🎯 适度压缩项目高度，保持内容可读 */
  body .sidebar-bundle-recommendation .sidebar-bundle-list .sidebar-bundle-item {
    border: none !important;
    min-height: 75px !important;
    padding: 5px !important;
    margin-bottom: 3px !important;
  }
  
  /* 🎯 保持标题正常显示，只稍微调整间距 */
  body .sidebar-bundle-recommendation .sidebar-bundle-content {
    gap: 0 !important;
  }
  
  /* 🎯 标题保持可读性 */
  body .sidebar-bundle-recommendation .sidebar-bundle-content .sidebar-bundle-title {
    line-height: 1.3 !important;
    margin: 0 0 2px 0 !important;
    /* 移除高度限制，保持标题完整显示 */
  }
}








@media (max-width: 768px) {
  /* 🎯 最高权重选择器 */
  html body .current-product-info {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
  }
}





/* 🎯 套装推荐样式 - 抽屉版本 */
.sticky-cart-sidebar .bundle-recommendation {
    margin: 10px 0 !important;
    padding: 15px 25px !important;
    background: linear-gradient(135deg, #ffffff, #fafbfc) !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    position: relative !important;
    overflow: hidden !important;
}

.sticky-cart-sidebar .bundle-recommendation::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, #28a745, #20c997, #28a745) !important;
}


/* 🎯 绿色标题区域样式 */
.sticky-cart-sidebar .bundle-promotion-beautiful {
    background: linear-gradient(135deg, #28a745, #20c997) !important; 
    color: white !important; 
    padding: 12px 0 !important; 
    border-radius: 12px !important; 
    text-align: center !important; 

    font-weight: 700 !important; 
    font-size: 15px !important; 
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.sticky-cart-sidebar .bundle-promotion-beautiful .bundle-recommendation__title {
    margin-bottom: 6px !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important; 
    line-height: 1.4 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: white !important;
}

.sticky-cart-sidebar .bundle-promotion-beautiful .bundle-subtitle {
    font-size: 1.18rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    opacity: 0.9 !important;
    margin: 0 !important;
    color: #000000 !important;
}






/* 🎯 产品卡片样式 */
.sticky-cart-sidebar .bundle-item {
    background: linear-gradient(135deg, #ffffff, #fafbfc) !important;
    border: 2px solid #e9ecef !important;
    border-radius: 16px !important;
    padding: 0 15px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06) !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
    margin-bottom: 0 !important;
}

.sticky-cart-sidebar .bundle-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.05), transparent) !important;
    transition: left 0.6s ease !important;
}

.sticky-cart-sidebar .bundle-item:hover::before {
    left: 100% !important;
}

.sticky-cart-sidebar .bundle-item:hover {
    border-color: #28a745 !important;
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.18) !important;
    transform: translateY(-4px) scale(1.02) !important;
    background: linear-gradient(135deg, #f8fff9, #ffffff) !important;
}



/* 🎯 复选框和图片样式 */
.sticky-cart-sidebar .bundle-item__checkbox {
    margin-right: 15px !important;
    width: 20px !important;
    height: 20px !important;
    accent-color: #28a745 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.sticky-cart-sidebar .bundle-item__checkbox:checked {
    transform: scale(1.15) !important;
    filter: drop-shadow(0 2px 4px rgba(40, 167, 69, 0.3)) !important;
}

.sticky-cart-sidebar .bundle-item__image {
    width: 70px !important;
    height: 70px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    margin-right: 15px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

.sticky-cart-sidebar .bundle-item:hover .bundle-item__image {
    transform: scale(1.05) rotate(1deg) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
}

.sticky-cart-sidebar .bundle-item__content {
    flex: 1 !important;
}

.sticky-cart-sidebar .bundle-item__title {
    font-weight: 600 !important;
    color: #2c3e50 !important;
    font-size: 14px !important;
    margin-bottom: 8px !important;
    line-height: 1.4 !important;
    transition: color 0.3s ease !important;
}

.sticky-cart-sidebar .bundle-item:hover .bundle-item__title {
    color: #28a745 !important;
}


/* 🎯 价格区域样式 */
.sticky-cart-sidebar .bundle-item__price-row {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.sticky-cart-sidebar .bundle-item__price {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #e74c3c !important;
    transition: all 0.3s ease !important;
    text-shadow: 0 1px 2px rgba(231, 76, 60, 0.1) !important;
}

.sticky-cart-sidebar .bundle-item:hover .bundle-item__price {
    transform: scale(1.05) !important;
    color: #c0392b !important;
}

.sticky-cart-sidebar .bundle-item__discount {
    background: linear-gradient(135deg, #ff4444, #e74c3c) !important;
    color: white !important;
    padding: 4px 10px !important;
    border-radius: 16px !important;
    font-size: 9px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.3) !important;
    transition: all 0.3s ease !important;
}

.sticky-cart-sidebar .bundle-item:hover .bundle-item__discount {
    transform: scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.4) !important;
}



/* 🎯 价格计算区域样式 */
.sticky-cart-sidebar .bundle-price-calculation {
    margin-top: 20px !important;
    padding: 20px !important;
    background: linear-gradient(135deg, #f8f9fa, #ffffff) !important;
    border-radius: 16px !important;
    border: 2px solid #e9ecef !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08) !important;
    position: relative !important;
}

.sticky-cart-sidebar .bundle-price-calculation::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 2px !important;
    background: linear-gradient(90deg, #28a745, #20c997) !important;
    border-radius: 16px 16px 0 0 !important;
}

/* 🎯 添加到购物车按钮样式 */
.sticky-cart-sidebar .bundle-add-to-cart {
    width: 100% !important;
    padding: 15px !important;
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3) !important;
}

.sticky-cart-sidebar .bundle-add-to-cart:hover {
    background: linear-gradient(135deg, #218838, #1e7e34) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4) !important;
}

























