/* ============================================================
   PRODUCT CATEGORY / BRAND LABELS
   Chỉ dùng cho Woo card + single product
   ============================================================ */
.single-product .single-product-category {
  display: none !important;
}
.gam-product-meta-labels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.gam-product-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.gam-product-label-cat {
  color: rgba(255, 255, 255, 0.68);
}

.gam-product-label-brand {
  color: rgba(232, 184, 109, 0.86);
  background: rgba(232, 184, 109, 0.09);
  border-color: rgba(232, 184, 109, 0.16);
}

/* Card Woo */
.woocommerce ul.products li.product .astra-shop-thumbnail-wrap {
  position: relative;
}

.woocommerce ul.products li.product .astra-shop-thumbnail-wrap .gam-product-meta-labels--loop {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 20;
  display: flex !important;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 !important;
  pointer-events: auto;
}

.woocommerce ul.products li.product .astra-shop-thumbnail-wrap .gam-product-label {
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.woocommerce ul.products li.product .astra-shop-thumbnail-wrap .gam-product-label-brand {
  color: rgba(255, 198, 96, 0.95);
  border-color: rgba(255, 198, 96, 0.24);
}

.woocommerce ul.products li.product .ast-woo-product-category {
  display: none !important;
}

/* Trang single product */
.single-product .gam-product-meta-labels--single {
  margin-bottom: 10px;
}

.single-product .gam-product-meta-labels--single .gam-product-label {
  font-size: 12px;
  padding: 5px 10px;
}

/* Mobile */
@media (max-width: 640px) {
  .gam-product-meta-labels {
    gap: 5px;
    margin-bottom: 7px;
  }

  .gam-product-label {
    padding: 3px 7px;
    font-size: 10.5px;
  }

  .single-product .gam-product-meta-labels--single .gam-product-label {
    font-size: 11px;
    padding: 4px 8px;
  }
}