/**
 * 购物车商品区域扩展样式
 * 增加购物车商品区域的高度，以便显示更多商品
 */

/* 购物车商品区域 */
.cart-items {
  flex: 1 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important; /* 防止水平滚动 */
  padding: 5px 15px 30px !important;
  margin-top: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  max-height: none !important; /* 移除最大高度限制 */
}

/* 移动端适配 */
@media (max-width: 768px) {
  .cart-items {
    padding-top: 5px !important;
    padding-bottom: 120px !important; /* 为底部结账按钮留出空间 */
  }
  
  /* 确保购物车页面可以滚动 */
  .cart-page {
    overflow: hidden !important;
    height: 100% !important;
    max-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
  }
  
  /* 确保购物车商品项正确显示 */
  .cart-item {
    margin-bottom: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* 超小屏幕适配 */
@media (max-width: 360px) {
  .cart-items {
    padding: 5px 10px 120px !important;
  }
}
