/* ===== Taikoo 商城购物样式 ===== */
:root {
  --shop-grad: linear-gradient(135deg, #149bde, #4ec9e7);
  --shop-blue: #149bde;
  --shop-dark: #0e7ab5;
}

/* 加入购物车按钮 */
.btn-add-cart {
  display:inline-flex; align-items:center; gap:6px;
  padding:10px 24px; font-size:14px; font-weight:700;
  background: var(--shop-grad); color: #fff;
  border: none; border-radius: 8px; cursor: pointer;
  transition: all .25s; box-shadow: 0 2px 8px rgba(20,155,222,.3);
  text-decoration: none;
}
.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20,155,222,.4);
}

/* 结算/提交按钮 */
.btn-checkout {
  display:inline-flex; align-items:center; gap:6px;
  padding:14px 40px; font-size:16px; font-weight:700;
  background: var(--shop-grad); color: #fff;
  border: none; border-radius: 8px; cursor: pointer;
  transition: all .25s; box-shadow: 0 3px 12px rgba(20,155,222,.35);
  text-decoration: none;
}
.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20,155,222,.45);
}

/* 悬浮按钮组 */
#floatBtnGroup > div {
  background: linear-gradient(135deg,#149bde,#4ec9e7) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(20,155,222,.35) !important;
}
@media(max-width:767px){
  #floatBtnGroup { right:12px!important; bottom:76px!important; gap:8px!important; }
  #floatBtnGroup > div { width:40px!important; height:40px!important; }
  #floatBtnGroup > div svg { max-width:18px!important; max-height:18px!important; width:18px!important; height:18px!important; }
  #floatBtnGroup > div .cart-badge { min-width:16px!important; height:16px!important; font-size:9px!important; top:-3px!important; right:-3px!important; }
}

/* 商品价格 */
.shop-price {
  color: #149bde; font-weight: 700;
}

/* 购物车页面删除按钮 */
.cart-remove-btn {
  padding:4px 12px; font-size:12px; color:#fff;
  background: #ff6b6b; border:none; border-radius:6px; cursor:pointer;
}

/* 数字徽标 */
.shop-badge {
  display:inline-flex; align-items:center; justify-content:center;
  min-width:20px; height:20px; padding:0 6px;
  background: #ff6b6b; color:#fff;
  border-radius:10px; font-size:11px; font-weight:700;
}

/* 商品卡片 */
.shop-card {
  background:#fff; border-radius:12px; overflow:hidden;
  border:1px solid #e8eaed; text-decoration:none; color:inherit;
  display:block; transition:all .25s;
}
.shop-card:hover {
  transform:translateY(-4px);
  box-shadow:0 8px 24px rgba(20,155,222,.12);
  border-color: #149bde;
}

/* Toast 通知 */
.toast-notification {
  border-left: 4px solid #149bde !important;
}
.toast-notification a {
  background: var(--shop-grad) !important;
}

/* 商城页头 */
.shop-header {
  background: var(--shop-grad);
  color: #fff; padding: 40px 0; text-align: center;
}
.shop-header h1 { font-size: 28px; font-weight: 700; margin: 0; }
.shop-header p { font-size: 14px; opacity: .8; margin: 8px 0 0; }

/* 登录/注册按钮 */
.user-btn {
  display:block; width:100%; padding:14px;
  background: var(--shop-grad); color:#fff;
  font-size:15px; font-weight:700; border:none; border-radius:8px;
  cursor:pointer; transition:all .25s;
}
.user-btn:hover { transform:translateY(-2px); box-shadow:0 4px 16px rgba(20,155,222,.3); }
