.wcgcp-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.wcgcp-header {
  margin-bottom: 12px;
}

.wcgcp-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.wcgcp-subtitle {
  font-size: 13px;
  opacity: 0.7;
}

.wcgcp-categories-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 8px 2px 10px;
  scrollbar-width: none;
}

.wcgcp-categories-scroll::-webkit-scrollbar {
  display: none;
}

.wcgcp-cat-item {
  border: 1px solid #eee;
  background: #fff;
  border-radius: 14px;
  padding: 8px;
  min-width: 85px;
  cursor: pointer;
  text-align: center;
  transition: 0.2s ease;
}

.wcgcp-cat-item.active {
  border-color: #111;
  transform: translateY(-1px);
}

.wcgcp-cat-img {
  width: 54px;
  height: 54px;
  margin: 0 auto 6px;
  border-radius: 14px;
  overflow: hidden;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wcgcp-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wcgcp-cat-name {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
}

.wcgcp-products-area {
  margin-top: 12px;
}

.wcgcp-products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.wcgcp-products-title {
  font-size: 16px;
  font-weight: 800;
}

.wcgcp-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 900px) {
  .wcgcp-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.wcgcp-product-card {
  border: 1px solid #eee;
  border-radius: 18px;
  background: #fff;
  padding: 10px;
  transition: 0.2s ease;
  position: relative;
}

.wcgcp-product-card.wcgcp-updating {
  opacity: 0.6;
  pointer-events: none;
}

.wcgcp-product-img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  background: #f7f7f7;
}

.wcgcp-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wcgcp-product-info {
  margin-top: 8px;
}

.wcgcp-product-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: #111;
  line-height: 1.2;
  min-height: 32px;
}

.wcgcp-product-price {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 800;
}

.wcgcp-qty-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 10px;
}

.wcgcp-qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.wcgcp-qty-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.wcgcp-qty {
  min-width: 18px;
  text-align: center;
  font-weight: 800;
}

.wcgcp-loading,
.wcgcp-empty {
  padding: 16px;
  opacity: 0.7;
  font-size: 14px;
}
