.img-placeholder {
  background: var(--bg-secondary);
  color: var(--text-light);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* 分页样式（主题化） */
.pagination {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
}

.pagination .page-item {
  margin: 0 4px;
}

.pagination .page-link {
  display: block;
  padding: 8px 14px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.pagination .page-link:hover {
  background: var(--primary-light);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.pagination .page-item.active .page-link {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-white);
  font-weight: 600;
}

.pagination .page-item.disabled .page-link {
  background: var(--bg-secondary);
  border-color: var(--border-color);
  color: var(--text-tertiary);
  cursor: not-allowed;
  opacity: 0.6;
}

.pagination .page-item.disabled .page-link:hover {
  background: var(--bg-secondary);
  border-color: var(--border-color);
  color: var(--text-tertiary);
  transform: none;
  box-shadow: none;
}

/* 工具栏 */
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-primary);
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.toolbar-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.toolbar-count {
  color: var(--text-secondary);
  font-size: 14px;
}

.toolbar-count span {
  color: var(--primary-color);
  font-weight: 600;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 筛选控件 */
.filter-select {
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 150px;
}

.filter-select:hover {
  border-color: var(--primary-color);
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-light);
}

/* Select2 样式调整 */
.filter-select + .select2-container {
  min-width: 150px !important;
}

.filter-select + .select2-container .select2-selection--single {
  min-width: 150px !important;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-primary);
}

.filter-select + .select2-container:hover .select2-selection--single {
  border-color: var(--primary-color);
}

.filter-select + .select2-container .select2-selection__rendered {
  padding: 8px 12px;
}

/* 视图切换按钮 */
.view-toggle {
  display: flex;
  gap: 8px;
}

.view-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--text-secondary);
}

.view-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.view-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-white);
}

.view-btn i {
  font-size: 18px;
}

/* 商品列表容器 */
.result-container {
  min-height: 400px;
}

/* 网格视图 */
.grid-view {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* 列表视图 */
.list-view {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-view .product-item {
  display: flex;
  background: var(--bg-primary);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.list-view .product-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.list-view .item-img {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  border-radius: 8px;
}

.list-view .item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.list-view .item-img .img-placeholder {
  height: 100%;
  margin: 0;
}

.list-view .item-info {
  flex: 1;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}

.list-view .item-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.list-view .item-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.list-view .item-bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list-view .price-box {
  margin-bottom: 8px;
}

.list-view .current-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.list-view .stock-sales-row {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.list-view .btn-view {
  padding: 10px 24px;
  background: var(--gradient-primary);
  color: var(--text-white);
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.list-view .btn-view:hover {
  background: var(--primary-hover);
  color: var(--text-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* 网格视图商品卡片 */
.product-card {
  background: var(--bg-primary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.product-img-box {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background: var(--bg-secondary);
}

.product-img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-img-box img {
  transform: scale(1.05);
}

.badge-new {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  color: var(--text-white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
}

/* 收藏图标 */
.favorite-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-base);
  color: var(--text-secondary);
  font-size: 16px;
  z-index: 20;
}

.favorite-icon:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-white);
  transform: scale(1.1);
}

.favorite-icon.favorited {
  color: #ff4757;
  border-color: #ff4757;
  background: white;
}

.favorite-icon.favorited:hover {
  background: #ff4757;
  color: white;
}

.product-body {
  padding: 12px;
}

.product-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  height: 39.2px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
  min-height: 20px;
}

.feature-tag {
  background: var(--primary-light);
  color: var(--primary-color);
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
}

.product-price {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.product-price small {
  font-size: 12px;
  font-weight: 400;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.product-stock {
  color: var(--text-secondary);
}

.product-unit {
  color: var(--text-light);
}

.product-actions {
  display: flex;
  gap: 8px;
}

.btn-view {
  flex: 1;
  padding: 8px 12px;
  background: var(--gradient-primary);
  color: var(--text-white);
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
}

.btn-view:hover {
  background: var(--primary-hover);
  color: var(--text-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-add-cart-quick {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.btn-add-cart-quick:hover {
  background: var(--primary-color);
  color: var(--text-white);
  border-color: var(--primary-color);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* 深色主题下的卡片样式 */
[data-theme="dark"] .product-card {
  background-color: var(--bg-primary);
  border-color: var(--border-color);
}

[data-theme="dark"] .product-title {
  color: var(--text-primary);
}

/* 空状态 */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-tertiary);
}

.empty-state i {
  font-size: 80px;
  margin-bottom: 20px;
  opacity: 0.5;
  display: block;
}

.empty-state h3 {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.empty-state p {
  font-size: 14px;
}

@media (max-width: 991px) {
  .grid-view {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .toolbar {
    flex-direction: column;
    gap: 12px;
  }

  .toolbar-left, .toolbar-right {
    width: 100%;
    justify-content: space-between;
  }

  .list-view .product-item {
    flex-direction: column;
  }

  .list-view .item-img {
    width: 100%;
    height: 200px;
  }

  .list-view .item-info {
    padding-left: 0;
    padding-top: 16px;
  }

  .grid-view {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-actions {
    flex-direction: column;
  }

  .product-img-box {
    padding-top: 100%;
  }
}

/* 暗色主题适配 */
[data-theme="dark"] .img-placeholder {
  background: var(--bg-secondary);
  color: var(--text-light);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

[data-theme="dark"] .pagination {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
}

[data-theme="dark"] .pagination .page-item {
  margin: 0 4px;
}

[data-theme="dark"] .pagination .page-link {
  display: block;
  padding: 8px 14px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

[data-theme="dark"] .pagination .page-link:hover {
  background: var(--primary-light);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .pagination .page-item.active .page-link {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-white);
  font-weight: 600;
}

[data-theme="dark"] .pagination .page-item.disabled .page-link {
  background: var(--bg-secondary);
  border-color: var(--border-color);
  color: var(--text-tertiary);
  cursor: not-allowed;
  opacity: 0.6;
}

[data-theme="dark"] .pagination .page-item.disabled .page-link:hover {
  background: var(--bg-secondary);
  border-color: var(--border-color);
  color: var(--text-tertiary);
  transform: none;
  box-shadow: none;
}

[data-theme="dark"] .toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-primary);
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

[data-theme="dark"] .toolbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

[data-theme="dark"] .toolbar-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

[data-theme="dark"] .toolbar-count {
  color: var(--text-secondary);
  font-size: 14px;
}

[data-theme="dark"] .toolbar-count span {
  color: var(--primary-color);
  font-weight: 600;
}

[data-theme="dark"] .toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

[data-theme="dark"] .filter-select {
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 150px;
}

[data-theme="dark"] .filter-select:hover {
  border-color: var(--primary-color);
}

[data-theme="dark"] .filter-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-light);
}

[data-theme="dark"] .filter-select + .select2-container {
  min-width: 150px !important;
}

[data-theme="dark"] .filter-select + .select2-container .select2-selection--single {
  min-width: 150px !important;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-primary);
}

[data-theme="dark"] .filter-select + .select2-container:hover .select2-selection--single {
  border-color: var(--primary-color);
}

[data-theme="dark"] .filter-select + .select2-container .select2-selection__rendered {
  padding: 8px 12px;
}

[data-theme="dark"] .view-toggle {
  display: flex;
  gap: 8px;
}

[data-theme="dark"] .view-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--text-secondary);
}

[data-theme="dark"] .view-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

[data-theme="dark"] .view-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-white);
}

[data-theme="dark"] .view-btn i {
  font-size: 18px;
}

[data-theme="dark"] .result-container {
  min-height: 400px;
}

[data-theme="dark"] .grid-view {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

[data-theme="dark"] .list-view {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

[data-theme="dark"] .list-view .product-item {
  display: flex;
  background: var(--bg-primary);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

[data-theme="dark"] .list-view .product-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

[data-theme="dark"] .list-view .item-img {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  border-radius: 8px;
}

[data-theme="dark"] .list-view .item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

[data-theme="dark"] .list-view .item-img .img-placeholder {
  height: 100%;
  margin: 0;
}

[data-theme="dark"] .list-view .item-info {
  flex: 1;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}

[data-theme="dark"] .list-view .item-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

[data-theme="dark"] .list-view .item-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

[data-theme="dark"] .list-view .item-bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

[data-theme="dark"] .list-view .price-box {
  margin-bottom: 8px;
}

[data-theme="dark"] .list-view .current-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

[data-theme="dark"] .list-view .stock-sales-row {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

[data-theme="dark"] .list-view .btn-view {
  padding: 10px 24px;
  background: var(--gradient-primary);
  color: var(--text-white);
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

[data-theme="dark"] .list-view .btn-view:hover {
  background: var(--primary-hover);
  color: var(--text-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .product-card {
  background: var(--bg-primary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
}

[data-theme="dark"] .product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

[data-theme="dark"] .product-img-box {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background: var(--bg-secondary);
}

[data-theme="dark"] .product-img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

[data-theme="dark"] .product-card:hover .product-img-box img {
  transform: scale(1.05);
}

[data-theme="dark"] .badge-new {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  color: var(--text-white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
}

[data-theme="dark"] .favorite-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-base);
  color: var(--text-secondary);
  font-size: 16px;
  z-index: 20;
}

[data-theme="dark"] .favorite-icon:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-white);
  transform: scale(1.1);
}

[data-theme="dark"] .favorite-icon.favorited {
  color: #ff4757;
  border-color: #ff4757;
  background: white;
}

[data-theme="dark"] .favorite-icon.favorited:hover {
  background: #ff4757;
  color: white;
}

[data-theme="dark"] .product-body {
  padding: 12px;
}

[data-theme="dark"] .product-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  height: 39.2px;
}

[data-theme="dark"] .product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
  min-height: 20px;
}

[data-theme="dark"] .feature-tag {
  background: var(--primary-light);
  color: var(--primary-color);
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
}

[data-theme="dark"] .product-price {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

[data-theme="dark"] .product-price small {
  font-size: 12px;
  font-weight: 400;
}

[data-theme="dark"] .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
}

[data-theme="dark"] .product-stock {
  color: var(--text-secondary);
}

[data-theme="dark"] .product-unit {
  color: var(--text-light);
}

[data-theme="dark"] .product-actions {
  display: flex;
  gap: 8px;
}

[data-theme="dark"] .btn-view {
  flex: 1;
  padding: 8px 12px;
  background: var(--gradient-primary);
  color: var(--text-white);
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
}

[data-theme="dark"] .btn-view:hover {
  background: var(--primary-hover);
  color: var(--text-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .btn-add-cart-quick {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

[data-theme="dark"] .btn-add-cart-quick:hover {
  background: var(--primary-color);
  color: var(--text-white);
  border-color: var(--primary-color);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-tertiary);
}

[data-theme="dark"] .empty-state i {
  font-size: 80px;
  margin-bottom: 20px;
  opacity: 0.5;
  display: block;
}

[data-theme="dark"] .empty-state h3 {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

[data-theme="dark"] .empty-state p {
  font-size: 14px;
}

@media (max-width: 991px) {
  [data-theme="dark"] .grid-view {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  [data-theme="dark"] .toolbar {
    flex-direction: column;
    gap: 12px;
  }

  [data-theme="dark"] .toolbar-left, [data-theme="dark"] .toolbar-right {
    width: 100%;
    justify-content: space-between;
  }

  [data-theme="dark"] .list-view .product-item {
    flex-direction: column;
  }

  [data-theme="dark"] .list-view .item-img {
    width: 100%;
    height: 200px;
  }

  [data-theme="dark"] .list-view .item-info {
    padding-left: 0;
    padding-top: 16px;
  }

  [data-theme="dark"] .grid-view {
    grid-template-columns: repeat(2, 1fr);
  }

  [data-theme="dark"] .product-actions {
    flex-direction: column;
  }

  [data-theme="dark"] .product-img-box {
    padding-top: 100%;
  }
}
