/*
Theme Name: Extra Child (Woo Fix + Left Sidebar)
Template: Extra
Version: 1.2
Description: Restores Woo archives and adds a left sidebar for filters/widgets.
Author: You
*/

/* Left sidebar two-column grid */
.container.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}
.shop-sidebar .widget { margin-bottom: 1.5rem; }
.shop-sidebar .widget-title { font-size: 1.1rem; margin-bottom: .5rem; }

/* Stack on small screens */
@media (max-width: 980px) {
  .container.shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { order: 2; }
}

.shop-archive-header {
  margin: 0 0 1rem;
}

.shop-archive-header .woocommerce-breadcrumb {
  margin-bottom: .25rem;
  font-size: .9rem;
  opacity: .8;
}

.shop-archive-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 .5rem;
}

.shop-archive-description {
  margin-top: .25rem;
  max-width: 70ch;
  opacity: .9;
}
