.bcp-widget {
  width: 100%;
}

.bcp-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.bcp-tab-button {
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: .65rem 1rem;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
}

.bcp-tab-button.is-active {
  border-color: #203154;
  background: #203154;
  color: #fff;
}

.bcp-tab-panel {
  display: none;
}

.bcp-tab-panel.is-active {
  display: block;
}

.bcp-category-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.bcp-category-title {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.2;
}

.bcp-category-link {
  white-space: nowrap;
}

.bcp-brand-group {
  margin-bottom: 2rem;
}

.bcp-brand-title {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  line-height: 1.2;
  text-align: center;
}

.bcp-brand-title::before,
.bcp-brand-title::after {
  content: "";
  width: 150px;
  border-bottom: 2px solid #b49f66;
  display: inline-block;
  margin: 5px ;

}
.bcp-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.bcp-product-card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1rem;
  background: #fff;
}

.bcp-product-link {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  color: inherit;
  text-decoration: none;
}

.bcp-product-image-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.bcp-product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .25s ease;
}

.bcp-product-image-hover {
  opacity: 0;
}

.bcp-product-card:hover .bcp-product-image-hover {
  opacity: 1;
}

.bcp-product-card:hover .bcp-product-image-main.has-hover,
.bcp-product-card:hover .bcp-product-image-main:has(+ .bcp-product-image-hover) {
  opacity: 0;
}

@media (max-width: 767px) {
  .bcp-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .bcp-products {
    grid-template-columns: 1fr;
  }
}

.bcp-product-name {
  font-weight: 600;
}

.bcp-product-price {
  font-weight: 300;
}

.bcp-alert,
.bcp-empty {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
}
