/* Wedholm WC Search instead of sorting */

/* Wrapper that replaces sorting */
.wedholm-wc-catalog-search { width: 100%; }

/* Keep result count on one line when there is room */
.wp-block-woocommerce-product-results-count,
.woocommerce-result-count { white-space: nowrap; }

/* Push our search box to the right in the same row */
.wp-block-woocommerce-product-results-count + .wedholm-wc-catalog-search { margin-left: auto; }

/* Form layout (similar to the old sorting position) */
.wedholm-wc-search-form {
  display: flex;
  gap: .5rem;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.wedholm-wc-search-field {
  width: 320px;
  max-width: 320px;
  min-width: 0;
  padding: .55rem .75rem;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 6px;
  line-height: 1.2;
}

.wedholm-wc-search-submit {
  padding: .55rem .9rem;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

@media (max-width: 768px) {
  .wedholm-wc-search-form { justify-content: stretch; }
  .wedholm-wc-search-field { width: 100%; max-width: none; }
}
