/**
 * WooCommerce Shop Header Alignment
 * This file ensures the shop header (Nossa Loja) has the same width and 
 * lateral spacing as the main shop content.
 */

/* Base styles for all screen sizes */
.shop-hero .container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* Ensure shop breadcrumb remains correctly positioned */
.shop-hero .shop-breadcrumb {
  padding-left: 0;
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991px) {
  .shop-hero .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* Desktop - padding lateral médio */
@media (min-width: 992px) and (max-width: 1459px) {
  .shop-hero .container {
    max-width: 1400px;
    padding-left: 200px;
    padding-right: 200px;
  }
}

/* Grandes telas (1460px+) incluindo 1920px, 2K, 4K */
@media (min-width: 1460px) {
  .shop-hero .container {
    max-width: none;
    padding-left: 300px;
    padding-right: 300px;
    width: 100%;
    box-sizing: border-box;
  }
}

/* Ensure shop title has good spacing */
.shop-hero .page-title {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Make sure everything aligns properly for product listings */
.shop-hero + .site-content {
  margin-top: 0;
  padding-top: 0;
}
