/* ── Shop Hero ── */
.workforce-shop-hero {
  position: relative;
  height: 7rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .workforce-shop-hero { height: 10rem; margin-bottom: 2rem; }
}
@media (min-width: 768px) {
  .workforce-shop-hero { height: 14rem; }
}
.workforce-shop-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(200, 149, 108, 0.2), #0a0a0a);
}
.workforce-shop-hero__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .workforce-shop-hero__content { padding-inline: 1.5rem; }
}
@media (min-width: 1024px) {
  .workforce-shop-hero__content { padding-inline: 2rem; }
}
.workforce-shop-hero__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #f5f0e8;
}
@media (min-width: 640px) {
  .workforce-shop-hero__title { font-size: 1.875rem; }
}
@media (min-width: 768px) {
  .workforce-shop-hero__title { font-size: 3rem; }
}
.workforce-shop-hero__desc {
  color: rgba(245, 240, 232, 0.5);
  font-size: 13px;
  margin-top: 0.25rem;
}
@media (min-width: 640px) {
  .workforce-shop-hero__desc { margin-top: 0.5rem; }
}

/* ── Shop Wrap ── */
.workforce-shop-wrap {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .workforce-shop-wrap { padding-inline: 1.5rem; }
}
@media (min-width: 1024px) {
  .workforce-shop-wrap { padding-inline: 2rem; }
}

/* ── Layout ── */
.workforce-shop-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .workforce-shop-layout {
    flex-direction: row;
    gap: 2rem;
  }
}

/* ── Desktop Sidebar ── */
.workforce-shop-sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .workforce-shop-sidebar {
    display: block;
    width: 16rem;
    flex-shrink: 0;
  }
}
.workforce-shop-sidebar__inner {
  position: sticky;
  top: 6rem;
  background: #1a1a1a;
  border-radius: 1rem;
  border: 1px solid rgba(200, 149, 108, 0.1);
  padding: 1.5rem;
}
.workforce-sidebar-heading {
  color: var(--color-primary, #c8956c);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.workforce-sidebar-divider {
  border-top: 1px solid rgba(200, 149, 108, 0.1);
  margin-top: 1rem;
  padding-top: 1rem;
}

/* ── Category Buttons ── */
.workforce-cat-btn {
  display: block;
  width: 100%;
  text-align: right;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  margin-bottom: 0.25rem;
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.875rem;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.workforce-cat-btn:hover {
  color: #f5f0e8;
}
.workforce-cat-btn.is-active {
  background: rgba(200, 149, 108, 0.1);
  color: var(--color-primary, #c8956c);
}
.workforce-cat-btn__icon {
  margin-inline-end: 0.35rem;
}

/* ── Price Filter ── */
.workforce-price-labels {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 240, 232, 0.5);
  font-size: 14px;
}
.workforce-range-input {
  width: 100%;
  margin-top: 0.5rem;
  accent-color: var(--color-primary, #c8956c);
  cursor: pointer;
}
.workforce-price-filter-btn {
  margin-top: 0.75rem;
  width: 100%;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: rgba(200, 149, 108, 0.1);
  color: var(--color-primary, #c8956c);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.workforce-price-filter-btn:hover {
  background: rgba(200, 149, 108, 0.2);
}

/* ── Mobile Filter Bar ── */
.workforce-shop-mobile-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .workforce-shop-mobile-bar { display: none; }
}
.workforce-filter-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #1a1a1a;
  border: 1px solid rgba(200, 149, 108, 0.1);
  color: #f5f0e8;
  padding: 0.625rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.15s;
  flex-shrink: 0;
}
.workforce-filter-toggle:active { transform: scale(0.95); }
.workforce-shop-count,
.workforce-shop-count-desktop {
  color: rgba(245, 240, 232, 0.3);
  font-size: 14px;
  flex-shrink: 0;
}
.workforce-shop-count-desktop { display: none; }
@media (min-width: 640px) {
  .workforce-shop-count-desktop { display: inline; }
}

/* ── Main Column ── */
.workforce-shop-main {
  flex: 1 1 0%;
  min-width: 0;
}
.workforce-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 0.75rem;
  flex-wrap: wrap;
}
@media (min-width: 640px) {
  .workforce-shop-toolbar { margin-bottom: 1.5rem; }
}
.workforce-shop-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.workforce-sort-label {
  color: rgba(245, 240, 232, 0.5);
  font-size: 13px;
  flex-shrink: 0;
}
.workforce-shop-sort .woocommerce-ordering select {
  background: #1a1a1a;
  border: 1px solid rgba(200, 149, 108, 0.1);
  color: #f5f0e8;
  padding: 0.625rem 2rem 0.625rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 13px;
  appearance: none;
  cursor: pointer;
  max-width: 160px;
}
.workforce-shop-sort .woocommerce-ordering {
  margin: 0;
}

/* ── Product Grid (overrides wc-camipx.css) ── */
.workforce-shop .woocommerce ul.products,
.workforce-shop ul.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 640px) {
  .workforce-shop .woocommerce ul.products,
  .workforce-shop ul.products { gap: 1rem; }
}
@media (min-width: 768px) {
  .workforce-shop .woocommerce ul.products,
  .workforce-shop ul.products { gap: 1.5rem; }
}
@media (min-width: 1280px) {
  .workforce-shop .woocommerce ul.products,
  .workforce-shop ul.products { grid-template-columns: repeat(3, 1fr); }
}
.workforce-shop ul.products li.product {
  width: auto !important;
  margin: 0 !important;
}

/* ── No Products ── */
.workforce-no-products {
  text-align: center;
  padding: 4rem 0;
}
.workforce-no-products p {
  color: rgba(245, 240, 232, 0.3);
  font-size: 15px;
}

/* ── Pagination ── */
.workforce-shop .woocommerce-pagination {
  margin-top: 2rem;
  text-align: center;
}
.workforce-shop .woocommerce-pagination ul {
  display: inline-flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}
.workforce-shop .woocommerce-pagination ul li a,
.workforce-shop .woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: #1a1a1a;
  border: 1px solid rgba(200, 149, 108, 0.1);
  color: rgba(245, 240, 232, 0.5);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.workforce-shop .woocommerce-pagination ul li a:hover {
  color: #f5f0e8;
  background: rgba(200, 149, 108, 0.1);
}
.workforce-shop .woocommerce-pagination ul li span.current {
  background: var(--color-primary, #c8956c);
  color: #0a0a0a;
  font-weight: 700;
  border-color: var(--color-primary, #c8956c);
}

/* ── Mobile Filter Overlay ── */
.workforce-filter-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media (min-width: 1024px) {
  .workforce-filter-overlay { display: none !important; }
}
.workforce-filter-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.workforce-filter-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 280px;
  background: #1a1a1a;
  padding: 1.25rem 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 640px) {
  .workforce-filter-panel { width: 320px; }
}
.workforce-filter-overlay.is-open .workforce-filter-panel {
  transform: translateX(0);
}
.workforce-filter-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.workforce-filter-panel__header h3 {
  color: var(--color-primary, #c8956c);
  font-weight: 700;
}
.workforce-filter-close {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.05);
  color: rgba(245, 240, 232, 0.5);
  cursor: pointer;
  transition: background 0.2s;
}
.workforce-filter-close:active { transform: scale(0.9); }
.workforce-filter-section-title {
  color: #f5f0e8;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0.75rem;
}

/* ── Breadcrumb ── */
.workforce-breadcrumb {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
