/* Shop archive only: hide the page title */
body.post-type-archive-product .woocommerce-products-header__title.page-title {
  display: none;
}

/* Shop archive only: remove header spacing left by hidden title */
body.post-type-archive-product .woocommerce-products-header {
  padding-bottom: 0;
}

/* Shop archive only: align result count and ordering on the right */
body.post-type-archive-product .storefront-sorting {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

body.post-type-archive-product .storefront-sorting .woocommerce-result-count,
body.post-type-archive-product .storefront-sorting .woocommerce-ordering {
  margin: 0;
}

/* Mobile: avoid forced horizontal layout */
@media (max-width: 767px) {
  body.post-type-archive-product .storefront-sorting {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  body.post-type-archive-product .storefront-sorting .woocommerce-ordering {
    order: 1;
    text-align: right;
    float: none;
    margin-bottom: 8px;
  }

  body.post-type-archive-product .storefront-sorting .woocommerce-result-count {
    order: 2;
    text-align: right;
    margin-bottom: 0;
  }
}
