/* 
.pm-category-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -100vw 2rem calc(50% - 50vw);
  padding: 1rem 1.5rem;
  background: #e8e8e8;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.pm-category-tabs > div {
  display: flex;
  gap: 0.75rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.pm-category-tab {
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  white-space: nowrap;
  border: 1px solid #ccc;
  border-radius: 0;
  transition: all 0.3s ease;
  color: #333;
  background: #fff;
  display: inline-block;
}

.pm-category-tab:first-child {
  color: #fff;
  background: #000;
  border-color: #000;
}

.pm-category-tab:hover {
  background: #f5f5f5;
  border-color: #999;
  color: #000;
}

.pm-category-tab:first-child:hover {
  background: #222;
  color: #fff;
}

.pm-category-page {
  background: #fff;
  padding: 0;
}

.pm-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem;
}

.pm-breadcrumb {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: #999;
}

.pm-breadcrumb a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pm-breadcrumb a:hover {
  color: #000;
}

.pm-breadcrumb__sep {
  color: #ccc;
}

.productList {
  padding: 0;
  margin: 0;
  background: #fff;
}

.productList > .container {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 1.5rem !important;
  width: 100%;
}

.productList__section {
  padding: 2rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.productList__section:first-child {
  padding-top: 1.5rem;
}

.productList__section:last-child {
  border-bottom: none;
}

.productList__section > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
  gap: 2rem;
}

.productList__section--title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  flex: 0 0 auto;
}

.productList__section--link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  padding: 0;
  white-space: nowrap;
  flex: 0 0 auto;
}

.productList__section--link:hover {
  color: #666;
}

.productList__section--link i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.productList__section--link:hover i {
  transform: translateX(3px);
}

.productList__section .row {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem !important;
  margin: 0 !important;
  width: 100%;
  row-gap: 2rem !important;
}

.productList__section .row > [class*="col-"],
.productList__section .row > div {
  margin: 0 !important;
  padding: 0 !important;
  min-width: 0;
  overflow: visible !important;
  width: 100% !important;
  max-width: 100% !important;
  flex: 1;
}

.productList__section .row.row-cols-1,
.productList__section .row.row-cols-sm-2,
.productList__section .row.row-cols-md-2,
.productList__section .row.row-cols-lg-3 {
  --bs-columns: none !important;
  --bs-gutter-x: 0 !important;
  --bs-gutter-y: 0 !important;
}

.productList__section .row > * {
  flex-basis: auto !important;
  flex-grow: 0 !important;
}

@media (max-width: 1400px) {
  .productList__section .row {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 1200px) {
  .productList__section .row {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 1024px) {
  .productList__section .row {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .productList__section .row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 576px) {
  .productList__section .row {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .productList__section > div:first-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
 */
