body { 
  background: #f6f6f6;
  /* 页面切换时淡入效果 - 解决闪现问题 */
  animation: fadein 0.25s ease-out; 
}

@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* 确保内容容器一开始就有高度 */
#contentContainer {
  min-height: 80vh;
}

.card { box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.card-img-top { background: #fff; }
.navbar { box-shadow: 0 2px 4px rgba(0,0,0,0.03); }

/* 购物车图标按钮样式 */
.etsy-product-price {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px; /* 添加间距 */
}

/* 商品卡片平滑过渡 */
.etsy-product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.etsy-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* 图片容器预定义尺寸，防止图片加载时的布局抖动 */
.etsy-product-img-wrap {
  aspect-ratio: 1;
  background-color: #f5f5f5;
  overflow: hidden;
  border-radius: 8px;
}

.etsy-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* 详情页图片预留空间 */
.etsy-detail-media {
  min-height: 300px;
  background-color: #f8f8f8;
}

/* 筛选栏样式 */
.etsy-filter-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 15px 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  margin-bottom: 25px;
  border: 1px solid #f0f0f0;
  font-size: 0.95rem;
}

.etsy-filter-title {
  font-weight: 700;
  margin-bottom: 18px;
  color: #d97706; /* 与网站logo颜色一致 */
  border-bottom: 2px solid #f8f0e3;
  padding-bottom: 10px;
  font-size: 1.1rem;
}

.filter-section {
  margin-bottom: 24px;
}

.filter-section h6 {
  margin-bottom: 12px;
  color: #333;
  font-weight: 600;
  font-size: 1rem;
}

.etsy-filter-list {
  list-style: none;
  padding-left: 8px;
  margin-bottom: 0;
}

.etsy-filter-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.etsy-filter-list input[type="checkbox"] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #d97706; /* 复选框选中颜色 */
}

.etsy-filter-list label {
  margin-bottom: 0;
  cursor: pointer;
  font-size: 0.95rem;
  color: #444;
  transition: color 0.2s;
}

.etsy-filter-list label:hover {
  color: #d97706;
}

.filter-actions {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

.filter-actions .btn-outline-secondary {
  border-color: #d97706;
  color: #d97706;
  font-size: 0.9rem;
  padding: 6px 15px;
  transition: all 0.3s;
}

.filter-actions .btn-outline-secondary:hover {
  background-color: #d97706;
  color: white;
}

.etsy-product-price .btn-outline-secondary {
  border-color: #e1e1e1;
  color: #666;
  width: 34px;
  height: 34px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 50%;
  margin-left: 5px;
}

.etsy-product-price .btn-outline-secondary:hover {
  background-color: #d97706;
  border-color: #d97706;
  color: white;
  box-shadow: 0 2px 5px rgba(217, 119, 6, 0.3);
}

.etsy-product-price .bi-cart-plus {
  font-size: 16px;
}

/* 分页控件样式 - 增大版，保持原始位置 */
.pagination-container {
  display: inline-block;
  margin-left: 20px;
  vertical-align: middle;
}

.pagination-container .pagination {
  margin-bottom: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-radius: 8px;
  padding: 3px;
  background-color: white;
}

.etsy-category-desc {
  margin-top: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.etsy-category-desc .page-link {
  color: #333;
  border-color: #eaeaea;
  background-color: #fff;
  padding: 0.5rem 0.9rem;
  font-size: 1.05rem;
  min-width: 42px;
  text-align: center;
  transition: all 0.2s ease;
  margin: 0 1px;
}

.etsy-category-desc .page-item.active .page-link {
  background-color: #d97706;
  border-color: #d97706;
  color: white;
  font-weight: 600;
  transform: scale(1.02);
  box-shadow: 0 2px 6px rgba(217, 119, 6, 0.2);
}

.etsy-category-desc .page-link:hover {
  background-color: #f8f0e3;
  color: #d97706;
  border-color: #d97706;
  z-index: 2;
  transform: translateY(-1px);
}
