/* ========================================
   SHOP & CATEGORY ARCHIVES
   ======================================== */
/* Category Title Bar */
.woocommerce ul.products li.product-category h2.woocommerce-loop-category__title,
.category-title-bar {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

/* Mobile: Category Title */
@media (max-width: 767px) {
  .woocommerce ul.products li.product-category h2.woocommerce-loop-category__title,
  .category-title-bar {
    font-size: 15px;
    letter-spacing: 1px;
  }
}

/* Brand Exploring Links */
.brand-series-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  margin-top: 10px;
}

.brand-series-links a {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 120px;
  min-height: 150px;
  text-align: center;
  text-decoration: none;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 2px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.brand-series-links img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.brand-series-links span {
  margin-top: auto;
  font-weight: bold;
  color: #333;
}

.brand-series-links a:hover {
  border-color: #aaa;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #f0f0f0;
}
