/*
Theme: Thuy Bich Vinh Long
File: tb-plp.css
Scope: WooCommerce Shop / Product Category archive only
Purpose: Consolidated PLP CSS source of truth

Load this file AFTER style.css.
Do not paste this into the old style.css.
*/

/* =========================================================
   00. TOKENS
========================================================= */

body.woocommerce.archive {
  --tb-plp-max: min(1500px, calc(100vw - 32px));
  --tb-plp-gutter: 28px;
  --tb-plp-sidebar: 280px;
  --tb-plp-gap: 64px;

  --tb-font: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --tb-text: #1E2320;
  --tb-text-strong: #080C0A;
  --tb-muted: #5D655F;
  --tb-muted-soft: #747874;
  --tb-muted-light: #A0A5A1;

  --tb-bg: #FFFFFF;
  --tb-surface: #F7F8F6;
  --tb-surface-soft: #EEF1EC;
  --tb-surface-card: #FFFFFF;
  --tb-surface-image: #FBFBFA;
  --tb-surface-warm: #F0EEE8;
  --tb-surface-warm-hover: #E7E1D6;
  --tb-surface-warm-active: #D8CDBE;

  --tb-line: rgba(45, 52, 50, 0.12);
  --tb-line-soft: rgba(196, 207, 197, 0.42);
  --tb-line-strong: #D8DBD6;

  --tb-card-border: #E0E7DD;
  --tb-card-border-hover: rgba(150, 164, 153, 0.50);

  --tb-brass: #A98A5E;
  --tb-brass-dark: #745A32;

  --tb-badge-bg: #E6D6BE;
  --tb-badge-border: rgba(169, 138, 94, .34);
  --tb-badge-text: #5B421D;

  --tb-sale-red: #D63A2F;
  --tb-sale-red-hover: #C9332A;

  --tb-radius-xs: 2px;
  --tb-radius-sm: 3px;
  --tb-radius-md: 4px;
  --tb-radius-card: 7px;
}

/* =========================================================
   01. ARCHIVE BASE / LAYOUT
========================================================= */

body.woocommerce.archive #wrapper,
body.woocommerce.archive #main {
  background: var(--tb-bg) !important;
}

body.woocommerce.archive .category-page-row {
  max-width: var(--tb-plp-max) !important;
  margin-inline: auto !important;
  padding-inline: var(--tb-plp-gutter) !important;
  padding-bottom: 72px !important;
  align-items: flex-start !important;
}

@media (min-width: 850px) {
  body.woocommerce.archive .category-page-row > .large-3,
  body.woocommerce.archive .category-page-row > .large-4 {
    flex: 0 0 var(--tb-plp-sidebar) !important;
    max-width: var(--tb-plp-sidebar) !important;
    padding-inline: 0 !important;
  }

  body.woocommerce.archive .category-page-row > .large-8,
  body.woocommerce.archive .category-page-row > .large-9 {
    flex: 0 0 calc(100% - var(--tb-plp-sidebar)) !important;
    max-width: calc(100% - var(--tb-plp-sidebar)) !important;
    padding-left: var(--tb-plp-gap) !important;
    padding-right: 0 !important;
  }
}

/* Sidebar reset */
body.woocommerce.archive #shop-sidebar,
body.woocommerce.archive #shop-sidebar .sidebar-wrapper,
body.woocommerce.archive #shop-sidebar .widget,
body.woocommerce.archive #shop-sidebar .widget_text,
body.woocommerce.archive #shop-sidebar .widget_block,
body.woocommerce.archive #shop-sidebar .widget_custom_html,
body.woocommerce.archive #shop-sidebar .textwidget {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body.woocommerce.archive #shop-sidebar h3.widget-title,
body.woocommerce.archive #shop-sidebar span.widget-title,
body.woocommerce.archive #shop-sidebar .is-divider {
  display: none !important;
}

/* =========================================================
   02. HERO / INTRO / BREADCRUMB
========================================================= */

body.woocommerce.archive .tb-shop-intro,
body.woocommerce.archive .tb-shop-hero {
  position: relative !important;
  width: 100% !important;
  min-height: 260px !important;
  margin: 0 0 34px !important;
  padding: 0 !important;
  background: var(--tb-surface) !important;
  border: 0 !important;
  overflow: hidden !important;
}

body.woocommerce.archive .tb-shop-hero-bg,
body.woocommerce.archive .tb-shop-hero-media {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

body.woocommerce.archive .tb-shop-hero-bg::before,
body.woocommerce.archive .tb-shop-hero-media::before {
  display: none !important;
  content: none !important;
}

body.woocommerce.archive .tb-shop-hero-bg img,
body.woocommerce.archive .tb-shop-hero-media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center right !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  transform: none !important;
}

body.woocommerce.archive .tb-shop-intro-inner,
body.woocommerce.archive .tb-shop-hero-inner {
  position: relative !important;
  z-index: 3 !important;
  max-width: var(--tb-plp-max) !important;
  min-height: 260px !important;
  margin: 0 auto !important;
  padding: 48px var(--tb-plp-gutter) !important;
  display: flex !important;
  align-items: center !important;
  background: transparent !important;
}

body.woocommerce.archive .tb-shop-hero-content {
  position: relative !important;
  z-index: 4 !important;
  width: min(560px, 52%) !important;
  max-width: 560px !important;
  background: transparent !important;
}

body.woocommerce.archive .tb-shop-hero.no-hero-image .tb-shop-hero-content {
  width: 100% !important;
  max-width: 680px !important;
}

body.woocommerce.archive .tb-shop-title {
  margin: 0 0 14px !important;
  color: var(--tb-text) !important;
  font-family: var(--tb-font) !important;
  font-size: clamp(34px, 3.8vw, 48px) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
}

body.woocommerce.archive .tb-shop-description {
  max-width: 560px !important;
  color: var(--tb-muted) !important;
  font-family: var(--tb-font) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
}

body.woocommerce.archive .tb-shop-description p {
  margin: 0 !important;
}

body.woocommerce.archive .woocommerce-breadcrumb,
body.woocommerce.archive .breadcrumbs,
body.woocommerce.archive .tb-shop-breadcrumb {
  max-width: var(--tb-plp-max) !important;
  margin: 22px auto 10px !important;
  padding: 0 var(--tb-plp-gutter) !important;
  color: var(--tb-muted-soft) !important;
  font-family: var(--tb-font) !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.woocommerce.archive .woocommerce-breadcrumb a,
body.woocommerce.archive .breadcrumbs a,
body.woocommerce.archive .tb-shop-breadcrumb a {
  color: var(--tb-muted-soft) !important;
  text-decoration: none !important;
}

body.woocommerce.archive .woocommerce-breadcrumb a:hover,
body.woocommerce.archive .breadcrumbs a:hover,
body.woocommerce.archive .tb-shop-breadcrumb a:hover {
  color: var(--tb-text) !important;
}

/* =========================================================
   03. PRODUCT GRID / CARD
========================================================= */

body.woocommerce.archive #main .shop-container,
body.woocommerce.archive #main .tb-plp-shell,
body.woocommerce.archive #main .tb-plp-layout {
  max-width: var(--tb-plp-max);
}

body.woocommerce.archive #main .products.row {
  margin-left: -9px;
  margin-right: -9px;
  align-items: flex-start;
}

body.woocommerce.archive #main .products.row > .product-small.col {
  display: block;
  padding-left: 9px;
  padding-right: 9px;
  padding-bottom: 28px;
  margin-bottom: 0;
}

body.woocommerce.archive #main .products.row > .product-small.col > .col-inner {
  height: auto;
  min-height: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.woocommerce.archive #main .products.row > .product-small.col > .col-inner > .box.product-small {
  display: block;
  height: auto;
  min-height: 0;
  background: var(--tb-surface-card);
  border: 1px solid var(--tb-card-border);
  border-radius: var(--tb-radius-card);
  overflow: hidden;
  box-shadow: none;
  transform: none;
  transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}

body.woocommerce.archive #main .products.row > .product-small.col > .col-inner > .box.product-small:hover {
  border-color: var(--tb-card-border-hover);
  background: #fff;
  transform: none;
  box-shadow: 0 6px 16px rgba(30, 35, 32, 0.025);
}

/* Image */
body.woocommerce.archive #main .products.row > .product-small.col > .col-inner > .box.product-small > .box-image {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  background: var(--tb-surface-image);
  overflow: hidden;
  border: 0;
  box-shadow: none;
  transition: background-color .18s ease;
}

body.woocommerce.archive #main .products.row > .product-small.col > .col-inner > .box.product-small:hover > .box-image {
  background: #F7F8F5;
}

body.woocommerce.archive #main .products.row > .product-small.col > .col-inner > .box.product-small > .box-image .image-cover {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  padding-top: 98%;
  background: var(--tb-surface-image);
  overflow: hidden;
  transition: background-color .18s ease;
}

body.woocommerce.archive #main .products.row > .product-small.col > .col-inner > .box.product-small > .box-image .image-cover > a {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

body.woocommerce.archive #main .products.row > .product-small.col > .col-inner > .box.product-small > .box-image .image-cover img {
  position: absolute !important;
  inset: 8px !important;
  width: calc(100% - 16px) !important;
  height: calc(100% - 16px) !important;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: none;
}

/* Sale badge - giữ nguyên màu/logic hiện tại */
body.woocommerce.archive .tb-card-sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 22;
  min-width: 0;
  height: 24px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tb-sale-red);
  color: #fff;
  border-radius: 4px;
  font-family: var(--tb-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  box-shadow: none;
  transform: none;
}

body.woocommerce.archive .tb-card-sale-badge:hover {
  background: var(--tb-sale-red-hover);
}

body.woocommerce.archive .tb-card-sale-badge::after {
  display: none;
  content: none;
}

/* Hide default tools / legacy actions */
body.woocommerce.archive #main .products.row > .product-small.col > .col-inner > .box.product-small > .box-image > .image-tools:not(.tb-card-top-tools),
body.woocommerce.archive .tb-card-top-tools,
body.woocommerce.archive .tb-card-heart-fallback,
body.woocommerce.archive .tb-card-heart-svg,
body.woocommerce.archive .tb-card-actions,
body.woocommerce.archive .tb-card-detail-btn,
body.woocommerce.archive .tb-card-wishlist-action {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Card body */
body.woocommerce.archive #main .products.row > .product-small.col > .col-inner > .box.product-small > .box-text {
  display: block;
  height: auto;
  min-height: 0;
  padding: 16px 12px 18px;
  background: #fff;
  border-top: 0;
  text-align: left;
  box-shadow: none;
}

/* Swatches + gift badge */
body.woocommerce.archive .tb-card-top-meta {
  min-height: 22px;
  margin: 0 0 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

body.woocommerce.archive .tb-card-swatches {
  min-height: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0;
}

body.woocommerce.archive .tb-card-swatch {
  width: 14px;
  height: 14px;
  min-width: 14px;
  display: inline-block;
  border-radius: 999px;
  background: var(--tb-swatch-color, #6B3F24);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

body.woocommerce.archive .tb-card-swatch-more {
  color: var(--tb-muted);
  font-size: 11px;
  line-height: 1;
}

body.woocommerce.archive .tb-card-badge {
  min-height: 22px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--tb-badge-bg);
  color: var(--tb-badge-text);
  border: 1px solid var(--tb-badge-border);
  border-radius: 6px;
  box-shadow: none;
  font-family: var(--tb-font);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .005em;
  text-transform: uppercase;
  white-space: nowrap;
}

body.woocommerce.archive .tb-card-badge * {
  text-transform: none;
  letter-spacing: 0;
}

body.woocommerce.archive .tb-card-gift-svg {
  width: 12px;
  height: 12px;
  min-width: 12px;
  display: block;
  color: currentColor;
  stroke: currentColor;
  stroke-width: 2.05;
}

/* Title + metadata */
body.woocommerce.archive #main .products.row > .product-small.col > .col-inner > .box.product-small .product-title,
body.woocommerce.archive #main .products.row > .product-small.col > .col-inner > .box.product-small .product-title a,
body.woocommerce.archive #main .products.row > .product-small.col > .col-inner > .box.product-small .title-wrapper a {
  min-height: 39px;
  color: var(--tb-text);
  font-size: 14.4px;
  font-weight: 600;
  line-height: 1.36;
  letter-spacing: -0.01em;
}

body.woocommerce.archive .tb-product-name {
  display: block;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.35;
}

body.woocommerce.archive .tb-product-name--full {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

body.woocommerce.archive .tb-product-code {
  display: block;
  margin-top: 1px;
  color: var(--tb-text);
  font-size: inherit;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

body.woocommerce.archive .tb-card-info-line {
  min-height: 18px;
  max-width: 100%;
  margin: 7px 0 0;
  color: var(--tb-muted);
  font-family: var(--tb-font);
  font-size: 12.8px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  word-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Hide ratings */
body.woocommerce.archive .tb-card-rating-row,
body.woocommerce.archive .products .product-small .star-rating,
body.woocommerce.archive .products .product-small .text-count-review,
body.woocommerce.archive .products .product-small .yith-ywar-product-rating {
  display: none !important;
}

/* Price + arrow */
body.woocommerce.archive .tb-card-bottom-row {
  width: 100%;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--tb-line-soft);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px;
  align-items: center;
  gap: 9px;
}

body.woocommerce.archive .tb-card-price-row,
body.woocommerce.archive .tb-card-price-row .price-wrapper {
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body.woocommerce.archive .tb-card-price-clean,
body.woocommerce.archive .tb-card-price-clean--sale,
body.woocommerce.archive .tb-card-sale-price {
  display: inline-flex;
  align-items: baseline;
  color: var(--tb-text-strong);
  font-family: var(--tb-font);
  font-size: 16.5px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}

body.woocommerce.archive .tb-card-price-clean--sale {
  gap: 7px;
  max-width: 100%;
}

body.woocommerce.archive .tb-card-price-clean *,
body.woocommerce.archive .tb-card-price-clean .woocommerce-Price-amount,
body.woocommerce.archive .tb-card-price-clean .woocommerce-Price-currencySymbol,
body.woocommerce.archive .tb-card-price-clean bdi,
body.woocommerce.archive .tb-card-sale-price *,
body.woocommerce.archive .tb-card-sale-price .woocommerce-Price-amount,
body.woocommerce.archive .tb-card-sale-price .woocommerce-Price-currencySymbol,
body.woocommerce.archive .tb-card-sale-price bdi {
  color: inherit;
  font-size: 18px;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
}

body.woocommerce.archive .tb-card-regular-price {
  display: inline-flex;
  align-items: baseline;
  color: var(--tb-muted-light);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: currentColor;
}

body.woocommerce.archive .tb-card-regular-price *,
body.woocommerce.archive .tb-card-regular-price .woocommerce-Price-amount,
body.woocommerce.archive .tb-card-regular-price .woocommerce-Price-currencySymbol,
body.woocommerce.archive .tb-card-regular-price bdi {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: inherit;
}

body.woocommerce.archive .tb-card-arrow-btn {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  display: grid;
  place-items: center;
  background: var(--tb-text-strong);
  color: #fff;
  border: 1px solid var(--tb-text-strong);
  border-radius: var(--tb-radius-md);
  box-shadow: none;
  text-decoration: none;
  transform: none;
  opacity: 1;
  transition: background-color .14s ease, border-color .14s ease, opacity .14s ease;
}

body.woocommerce.archive .tb-card-arrow-btn:hover {
  background: var(--tb-text);
  border-color: var(--tb-text);
  color: #fff;
  transform: none;
  box-shadow: none;
  opacity: .96;
}

body.woocommerce.archive .tb-card-arrow-btn:visited,
body.woocommerce.archive .tb-card-arrow-btn:active,
body.woocommerce.archive .tb-card-arrow-btn:focus {
  background: var(--tb-text-strong);
  border-color: var(--tb-text-strong);
  color: #fff;
  transform: none;
  box-shadow: none;
}

body.woocommerce.archive .tb-card-arrow-btn:focus-visible {
  outline: 2px solid rgba(169, 138, 94, 0.55);
  outline-offset: 3px;
}

body.woocommerce.archive .tb-card-arrow-svg {
  width: 16px;
  height: 16px;
  display: block;
  color: currentColor;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform .14s ease, opacity .14s ease;
}

body.woocommerce.archive .tb-card-arrow-btn:hover .tb-card-arrow-svg {
  transform: translateX(1px);
  opacity: .92;
}

/* =========================================================
   04. FILTER PANEL
========================================================= */

body.woocommerce.archive .tb-filter-panel {
  width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

body.woocommerce.archive .tb-filter-head {
  height: auto !important;
  min-height: 0 !important;
  margin: 0 0 22px !important;
  padding: 0 0 22px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0 !important;
  border-bottom: 1px solid var(--tb-line) !important;
}

body.woocommerce.archive .tb-filter-title,
body.woocommerce.archive .tb-filter-eyebrow {
  margin: 0 0 8px !important;
  color: var(--tb-text) !important;
  font-family: var(--tb-font) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body.woocommerce.archive .tb-filter-subtitle {
  margin: 0 0 18px !important;
  color: var(--tb-muted) !important;
  font-family: var(--tb-font) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
}

body.woocommerce.archive .tb-filter-view-all-products {
  width: 100% !important;
  min-height: 40px !important;
  padding: 0 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #fff !important;
  color: var(--tb-text) !important;
  border: 1px solid var(--tb-text) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: var(--tb-font) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  text-align: center !important;
  text-decoration: none !important;
  text-transform: none !important;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease !important;
}

body.woocommerce.archive .tb-filter-view-all-products:hover {
  background: #F3F3F1 !important;
  color: var(--tb-text) !important;
  border-color: var(--tb-text) !important;
  text-decoration: none !important;
}

body.woocommerce.archive .tb-filter-view-all-products:focus-visible {
  outline: 2px solid var(--tb-brass) !important;
  outline-offset: 3px !important;
}

body.woocommerce.archive .tb-filter-view-all-icon,
body.woocommerce.archive .tb-filter-view-all-products::before,
body.woocommerce.archive .tb-filter-view-all-products::after {
  display: none !important;
  content: none !important;
}

/* Filter groups */
body.woocommerce.archive .tb-filter-nav {
  display: grid !important;
  visibility: visible !important;
  opacity: 1 !important;
  gap: 22px !important;
  margin-top: 0 !important;
}

body.woocommerce.archive .tb-filter-nav > .tb-filter-group {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 0 8px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--tb-line) !important;
}

body.woocommerce.archive .tb-filter-summary {
  display: grid !important;
  grid-template-columns: 28px minmax(0, 1fr) 12px !important;
  column-gap: 10px !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 32px !important;
  padding: 0 !important;
  margin: 0 !important;
  color: var(--tb-muted) !important;
  font-family: var(--tb-font) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  list-style: none !important;
  cursor: pointer !important;
  user-select: none !important;
}

body.woocommerce.archive .tb-filter-summary::-webkit-details-marker,
body.woocommerce.archive .tb-filter-summary::marker {
  display: none !important;
  content: "" !important;
}

body.woocommerce.archive .tb-filter-icon {
  grid-column: 1 !important;
  justify-self: center !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--tb-muted-soft) !important;
}

body.woocommerce.archive .tb-filter-icon svg {
  width: 20px !important;
  height: 20px !important;
  display: block !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  vector-effect: non-scaling-stroke !important;
}

body.woocommerce.archive .tb-filter-label {
  grid-column: 2 !important;
  min-width: 0 !important;
  color: inherit !important;
  font-family: var(--tb-font) !important;
  font-size: 14px !important;
  font-weight: inherit !important;
  line-height: 1.35 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.woocommerce.archive .tb-filter-summary::after {
  content: "" !important;
  grid-column: 3 !important;
  justify-self: end !important;
  align-self: center !important;
  width: 8px !important;
  height: 8px !important;
  border-right: 2px solid var(--tb-muted-soft) !important;
  border-bottom: 2px solid var(--tb-muted-soft) !important;
  transform: rotate(45deg) translateY(-2px) !important;
  transform-origin: center !important;
  transition: transform .18s ease, border-color .18s ease !important;
}

body.woocommerce.archive .tb-filter-group[open] > .tb-filter-summary::after {
  transform: rotate(225deg) translate(-2px, -1px) !important;
  border-color: var(--tb-text) !important;
}

body.woocommerce.archive .tb-filter-summary:hover,
body.woocommerce.archive .tb-filter-summary:hover .tb-filter-label,
body.woocommerce.archive .tb-filter-summary:hover .tb-filter-icon,
body.woocommerce.archive .tb-filter-group[open] > .tb-filter-summary,
body.woocommerce.archive .tb-filter-group[open] > .tb-filter-summary .tb-filter-label,
body.woocommerce.archive .tb-filter-group[open] > .tb-filter-summary .tb-filter-icon {
  color: var(--tb-text) !important;
}

body.woocommerce.archive .tb-filter-summary:hover,
body.woocommerce.archive .tb-filter-summary:hover .tb-filter-label {
  font-weight: 600 !important;
}

body.woocommerce.archive .tb-filter-group[open] > .tb-filter-summary,
body.woocommerce.archive .tb-filter-group[open] > .tb-filter-summary .tb-filter-label {
  font-weight: 700 !important;
}

/* Filter options */
body.woocommerce.archive .tb-filter-options,
body.woocommerce.archive .tb-filter-options--category {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  margin: 12px 0 0 !important;
  padding: 0 !important;
}

body.woocommerce.archive .tb-filter-option,
body.woocommerce.archive .tb-filter-category-option,
body.woocommerce.archive .tb-filter-attribute-option {
  display: grid !important;
  grid-template-columns: 28px minmax(0, 1fr) 34px !important;
  column-gap: 10px !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 28px !important;
  padding: 0 !important;
  margin: 0 !important;
  color: var(--tb-muted) !important;
  font-family: var(--tb-font) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
}

body.woocommerce.archive .tb-filter-option-main {
  display: contents !important;
}

body.woocommerce.archive .tb-filter-option::before {
  display: none !important;
  content: none !important;
}

body.woocommerce.archive .tb-filter-mark {
  grid-column: 1 !important;
  justify-self: center !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  display: block !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #E9E9E6 !important;
  box-shadow: none !important;
}

body.woocommerce.archive .tb-filter-option-name {
  grid-column: 2 !important;
  min-width: 0 !important;
  display: block !important;
  color: inherit !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.woocommerce.archive .tb-filter-option-count {
  grid-column: 3 !important;
  justify-self: end !important;
  min-width: 34px !important;
  margin-left: 0 !important;
  color: var(--tb-muted-soft) !important;
  font-family: var(--tb-font) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-align: right !important;
}

body.woocommerce.archive .tb-filter-option:hover,
body.woocommerce.archive .tb-filter-option:hover .tb-filter-option-name,
body.woocommerce.archive .tb-filter-option:hover .tb-filter-option-count,
body.woocommerce.archive .tb-filter-option.is-active {
  color: var(--tb-text) !important;
}

body.woocommerce.archive .tb-filter-option.is-active {
  font-weight: 600 !important;
}

body.woocommerce.archive .tb-filter-option.is-active .tb-filter-mark {
  background: var(--tb-brass) !important;
}

/* Color filter swatches */
body.woocommerce.archive .tb-filter-option[data-filter-taxonomy="pa_mau-sac"] .tb-filter-mark {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  border-radius: 999px !important;
  border: 0 !important;
  background: #7A5135 !important;
}

body.woocommerce.archive .tb-filter-option[data-filter-taxonomy="pa_mau-sac"][data-filter-slug="den"] .tb-filter-mark,
body.woocommerce.archive .tb-filter-option[data-filter-taxonomy="pa_mau-sac"][data-filter-slug="mau-den"] .tb-filter-mark {
  background: #111111 !important;
}

body.woocommerce.archive .tb-filter-option[data-filter-taxonomy="pa_mau-sac"][data-filter-slug="bo"] .tb-filter-mark,
body.woocommerce.archive .tb-filter-option[data-filter-taxonomy="pa_mau-sac"][data-filter-slug="mau-bo"] .tb-filter-mark {
  background: #8A5A35 !important;
}

body.woocommerce.archive .tb-filter-option[data-filter-taxonomy="pa_mau-sac"][data-filter-slug="nau"] .tb-filter-mark,
body.woocommerce.archive .tb-filter-option[data-filter-taxonomy="pa_mau-sac"][data-filter-slug="mau-nau"] .tb-filter-mark {
  background: #6A3F2A !important;
}

body.woocommerce.archive .tb-filter-option[data-filter-taxonomy="pa_mau-sac"][data-filter-slug="nau-dam"] .tb-filter-mark,
body.woocommerce.archive .tb-filter-option[data-filter-taxonomy="pa_mau-sac"][data-filter-slug="mau-nau-dam"] .tb-filter-mark {
  background: #3D281F !important;
}

body.woocommerce.archive .tb-filter-option[data-filter-taxonomy="pa_mau-sac"][data-filter-slug="nau-sang"] .tb-filter-mark,
body.woocommerce.archive .tb-filter-option[data-filter-taxonomy="pa_mau-sac"][data-filter-slug="mau-nau-sang"] .tb-filter-mark {
  background: #A8794D !important;
}

body.woocommerce.archive .tb-filter-option[data-filter-taxonomy="pa_mau-sac"].is-active .tb-filter-mark {
  outline: 2px solid var(--tb-brass) !important;
  outline-offset: 2px !important;
}

/* Price filter */
body.woocommerce.archive .tb-filter-options--price {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin: 14px 0 0 !important;
  padding: 0 !important;
}

body.woocommerce.archive .tb-filter-price-pill {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 34px !important;
  padding: 0 10px !important;
  background: var(--tb-surface-warm) !important;
  color: #5F5A52 !important;
  border: 0 !important;
  border-radius: var(--tb-radius-xs) !important;
  box-shadow: none !important;
  font-family: var(--tb-font) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  text-align: center !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: background-color .16s ease, color .16s ease !important;
}

body.woocommerce.archive .tb-filter-price-pill:hover {
  background: var(--tb-surface-warm-hover) !important;
  color: #2F2D29 !important;
  text-decoration: none !important;
}

body.woocommerce.archive .tb-filter-price-pill.is-active {
  background: var(--tb-surface-warm-active) !important;
  color: #2F2D29 !important;
}

/* =========================================================
   05. TOOLBAR / SORT / ACTIVE CHIPS
========================================================= */

body.woocommerce.archive .tb-shop-toolbar {
  min-height: 42px !important;
  height: 42px !important;
  margin: 0 0 22px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

body.woocommerce.archive .tb-shop-count,
body.woocommerce.archive .tb-shop-count .woocommerce-result-count {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--tb-muted) !important;
  font-family: var(--tb-font) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 42px !important;
}

body.woocommerce.archive .tb-active-chips {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  min-height: 34px !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
}

body.woocommerce.archive .tb-active-chip {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 34px !important;
  padding: 0 13px !important;
  background: var(--tb-surface-warm) !important;
  color: #5F5A52 !important;
  border: 0 !important;
  border-radius: var(--tb-radius-xs) !important;
  box-shadow: none !important;
  font-family: var(--tb-font) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: background-color .16s ease, color .16s ease !important;
}

body.woocommerce.archive .tb-active-chip::after {
  content: "\00D7" !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-left: 9px !important;
  color: #918A80 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  transform: translateY(-1px) !important;
}

body.woocommerce.archive .tb-active-chip:hover {
  background: var(--tb-surface-warm-hover) !important;
  color: #2F2D29 !important;
  text-decoration: none !important;
}

body.woocommerce.archive .tb-clear-filters {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 34px !important;
  padding: 0 2px !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #9A7D54 !important;
  font-family: var(--tb-font) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
  text-decoration-thickness: 1px !important;
}

body.woocommerce.archive .tb-clear-filters:hover {
  color: var(--tb-brass-dark) !important;
}

/* Sort */
body.woocommerce.archive .tb-shop-sort {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  margin-left: auto !important;
}

body.woocommerce.archive .tb-shop-sort > span,
body.woocommerce.archive .tb-shop-sort .woocommerce-ordering,
body.woocommerce.archive .tb-shop-sort select.orderby {
  display: none !important;
}

body.woocommerce.archive .tb-sort-ui {
  position: relative !important;
  display: block !important;
  width: 238px !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: var(--tb-font) !important;
}

body.woocommerce.archive .tb-sort-trigger {
  position: relative !important;
  width: 100% !important;
  height: 38px !important;
  min-height: 38px !important;
  margin: 0 !important;
  padding: 0 34px 0 12px !important;
  display: flex !important;
  align-items: center !important;
  background: #fff !important;
  border: 1px solid var(--tb-line-strong) !important;
  border-radius: var(--tb-radius-sm) !important;
  box-shadow: none !important;
  color: var(--tb-text) !important;
  font-family: var(--tb-font) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  text-align: left !important;
  list-style: none !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}

body.woocommerce.archive .tb-sort-trigger::-webkit-details-marker,
body.woocommerce.archive .tb-sort-trigger::marker {
  display: none !important;
  content: "" !important;
}

body.woocommerce.archive .tb-sort-trigger:hover {
  background: #F5F5F3 !important;
  border-color: #C4C7C3 !important;
}

body.woocommerce.archive .tb-sort-trigger-label {
  display: block !important;
  overflow: visible !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  line-height: 1.35 !important;
}

body.woocommerce.archive .tb-sort-trigger::after {
  content: "" !important;
  position: absolute !important;
  right: 13px !important;
  top: 50% !important;
  width: 7px !important;
  height: 7px !important;
  border-right: 1.5px solid var(--tb-muted-soft) !important;
  border-bottom: 1.5px solid var(--tb-muted-soft) !important;
  transform: translateY(-65%) rotate(45deg) !important;
  pointer-events: none !important;
}

body.woocommerce.archive .tb-sort-ui[open] .tb-sort-trigger::after,
body.woocommerce.archive .tb-sort-ui.is-open .tb-sort-trigger::after {
  transform: translateY(-35%) rotate(225deg) !important;
}

body.woocommerce.archive .tb-sort-menu {
  position: absolute !important;
  top: calc(100% + 2px) !important;
  right: 0 !important;
  z-index: 90 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #fff !important;
  border: 1px solid var(--tb-line-strong) !important;
  border-radius: var(--tb-radius-sm) !important;
  box-shadow: none !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

body.woocommerce.archive .tb-sort-item {
  width: 100% !important;
  height: 34px !important;
  min-height: 34px !important;
  margin: 0 !important;
  padding: 0 12px !important;
  display: flex !important;
  align-items: center !important;
  background: #fff !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #444845 !important;
  font-family: var(--tb-font) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  text-align: left !important;
  text-decoration: none !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}

body.woocommerce.archive .tb-sort-item:hover {
  background: #F3F3F1 !important;
  color: var(--tb-text) !important;
}

body.woocommerce.archive .tb-sort-item.is-active {
  background: #EEEEEC !important;
  color: var(--tb-text) !important;
  font-weight: 600 !important;
}

/* =========================================================
   06. EMPTY / AJAX / BACK FILTER
========================================================= */

body.woocommerce.archive .tb-shop-no-results {
  width: 100% !important;
  margin: 24px 0 0 !important;
  padding: 28px 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.woocommerce.archive .tb-shop-no-results-title {
  margin: 0 0 10px !important;
  color: var(--tb-text) !important;
  font-family: var(--tb-font) !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}

body.woocommerce.archive .tb-shop-no-results-text {
  max-width: 560px !important;
  margin: 0 0 18px !important;
  color: var(--tb-muted) !important;
  font-family: var(--tb-font) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

body.woocommerce.archive .tb-shop-no-results-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  align-items: center !important;
}

body.woocommerce.archive .tb-shop-no-results-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  padding: 0 22px !important;
  background: #fff !important;
  color: var(--tb-text) !important;
  border: 1px solid var(--tb-text) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: var(--tb-font) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
  text-decoration: none !important;
  cursor: pointer !important;
}

body.woocommerce.archive .tb-shop-no-results-btn:hover {
  background: var(--tb-surface-soft) !important;
  color: var(--tb-text) !important;
  border-color: var(--tb-text) !important;
  text-decoration: none !important;
}

body.woocommerce.archive .tb-shop-no-results-btn--primary {
  background: var(--tb-text) !important;
  color: #fff !important;
  border-color: var(--tb-text) !important;
}

body.woocommerce.archive .tb-shop-no-results-btn--primary:hover {
  background: #2D3432 !important;
  color: #fff !important;
  border-color: #2D3432 !important;
}

body.woocommerce.archive .tb-back-to-filters {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.woocommerce.archive .tb-back-to-filters.is-floating {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: fixed !important;
  left: var(--tb-back-filter-left, 24px) !important;
  top: var(--tb-back-filter-top, 72px) !important;
  z-index: 120 !important;
  width: var(--tb-back-filter-width, 220px) !important;
  min-height: 40px !important;
  padding: 0 18px !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  background: #fff !important;
  color: var(--tb-text) !important;
  border: 1px solid var(--tb-text) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: var(--tb-font) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
  text-align: center !important;
  text-decoration: none !important;
  cursor: pointer !important;
}

body.woocommerce.archive .tb-back-to-filters.is-floating:hover {
  background: #F3F3F1 !important;
  color: var(--tb-text) !important;
  border-color: var(--tb-text) !important;
}

/* AJAX stable state */
body.woocommerce.archive.tb-archive-ajax-busy .tb-filter-option,
body.woocommerce.archive.tb-archive-ajax-busy .tb-filter-price-pill,
body.woocommerce.archive.tb-archive-ajax-busy .tb-active-chip,
body.woocommerce.archive.tb-archive-ajax-busy .tb-clear-filters,
body.woocommerce.archive.tb-archive-ajax-busy .tb-sort-item,
body.woocommerce.archive.tb-archive-ajax-busy .woocommerce-pagination a,
body.woocommerce.archive.tb-archive-ajax-busy .nav-pagination a {
  pointer-events: auto !important;
}

body.woocommerce.archive.tb-archive-ajax-busy .shop-container,
body.woocommerce.archive.tb-archive-ajax-busy .tb-filter-panel,
body.woocommerce.archive.tb-archive-ajax-busy .tb-filter-nav,
body.woocommerce.archive.tb-archive-ajax-busy .products {
  opacity: 1 !important;
  filter: none !important;
}

/* =========================================================
   07. PAGINATION
========================================================= */

body.woocommerce.archive .woocommerce-pagination {
  width: 100% !important;
  max-width: 100% !important;
  clear: both !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 44px auto 0 !important;
  padding: 0 !important;
  float: none !important;
  text-align: center !important;
}

body.woocommerce.archive .woocommerce-pagination ul.page-numbers,
body.woocommerce.archive .woocommerce-pagination .nav-pagination,
body.woocommerce.archive .nav-pagination {
  width: auto !important;
  max-width: max-content !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  float: none !important;
  text-align: center !important;
  border: 0 !important;
  list-style: none !important;
}

body.woocommerce.archive .woocommerce-pagination li,
body.woocommerce.archive .nav-pagination li {
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  display: inline-flex !important;
  border: 0 !important;
  list-style: none !important;
}

body.woocommerce.archive .woocommerce-pagination .page-numbers,
body.woocommerce.archive .nav-pagination .page-number,
body.woocommerce.archive .nav-pagination .page-numbers {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #444845 !important;
  font-family: var(--tb-font) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

body.woocommerce.archive .woocommerce-pagination .page-numbers.current,
body.woocommerce.archive .nav-pagination .page-number.current,
body.woocommerce.archive .nav-pagination .page-numbers.current {
  background: var(--tb-text) !important;
  color: #fff !important;
}

body.woocommerce.archive .woocommerce-pagination a.page-numbers:hover,
body.woocommerce.archive .nav-pagination a.page-number:hover,
body.woocommerce.archive .nav-pagination a.page-numbers:hover {
  background: var(--tb-surface-soft) !important;
  color: var(--tb-text) !important;
}

body.woocommerce.archive .woocommerce-pagination .page-numbers.dots,
body.woocommerce.archive .nav-pagination .page-number.dots,
body.woocommerce.archive .nav-pagination .page-numbers.dots {
  width: auto !important;
  min-width: 12px !important;
  background: transparent !important;
  color: var(--tb-muted-soft) !important;
}

body.woocommerce.archive .woocommerce-pagination .prev,
body.woocommerce.archive .woocommerce-pagination .next,
body.woocommerce.archive .nav-pagination .prev,
body.woocommerce.archive .nav-pagination .next {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  color: #444845 !important;
}

/* =========================================================
   08. RESPONSIVE
========================================================= */

@media (max-width: 849px) {
  body.woocommerce.archive {
    --tb-plp-gutter: 16px;
    --tb-plp-sidebar: 100%;
    --tb-plp-gap: 0;
  }

  body.woocommerce.archive .category-page-row {
    padding-inline: var(--tb-plp-gutter) !important;
  }

  body.woocommerce.archive .category-page-row > .large-3,
  body.woocommerce.archive .category-page-row > .large-4,
  body.woocommerce.archive .category-page-row > .large-8,
  body.woocommerce.archive .category-page-row > .large-9 {
    max-width: 100% !important;
    flex-basis: 100% !important;
    padding-inline: 0 !important;
  }

  body.woocommerce.archive .tb-shop-intro,
  body.woocommerce.archive .tb-shop-hero {
    min-height: 360px !important;
    margin-bottom: 24px !important;
  }

  body.woocommerce.archive .tb-shop-intro-inner,
  body.woocommerce.archive .tb-shop-hero-inner {
    min-height: 360px !important;
    padding: 30px 16px 210px !important;
    align-items: flex-start !important;
  }

  body.woocommerce.archive .tb-shop-hero-content {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.woocommerce.archive .tb-shop-title {
    font-size: 30px !important;
    letter-spacing: -0.025em !important;
  }

  body.woocommerce.archive .tb-shop-hero-bg img,
  body.woocommerce.archive .tb-shop-hero-media img {
    object-position: center bottom !important;
  }

  body.woocommerce.archive .woocommerce-breadcrumb,
  body.woocommerce.archive .breadcrumbs,
  body.woocommerce.archive .tb-shop-breadcrumb {
    margin: 16px auto 8px !important;
    padding: 0 16px !important;
    font-size: 12px !important;
  }

  body.woocommerce.archive .tb-filter-panel {
    margin-bottom: 24px !important;
  }

  body.woocommerce.archive .tb-filter-head {
    margin-bottom: 22px !important;
  }

  body.woocommerce.archive .tb-filter-nav {
    gap: 18px !important;
  }

  body.woocommerce.archive .tb-shop-toolbar {
    height: auto !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: start !important;
    gap: 12px !important;
    margin-bottom: 18px !important;
  }

  body.woocommerce.archive .tb-shop-count,
  body.woocommerce.archive .tb-shop-count .woocommerce-result-count {
    line-height: 1.4 !important;
  }

  body.woocommerce.archive .tb-shop-sort {
    width: 100% !important;
    justify-content: flex-start !important;
  }

  body.woocommerce.archive .tb-sort-ui {
    width: 100% !important;
  }

  body.woocommerce.archive .woocommerce-pagination ul.page-numbers,
  body.woocommerce.archive .woocommerce-pagination .nav-pagination,
  body.woocommerce.archive .nav-pagination {
    gap: 8px !important;
  }

  body.woocommerce.archive .woocommerce-pagination .page-numbers,
  body.woocommerce.archive .nav-pagination .page-number,
  body.woocommerce.archive .nav-pagination .page-numbers {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 549px) {
  body.woocommerce.archive #main .products.row {
    margin-left: -7px;
    margin-right: -7px;
  }

  body.woocommerce.archive #main .products.row > .product-small.col {
    padding-left: 7px;
    padding-right: 7px;
  }

  body.woocommerce.archive #main .products.row > .product-small.col > .col-inner > .box.product-small > .box-image .image-cover img {
    inset: 7px !important;
    width: calc(100% - 14px) !important;
    height: calc(100% - 14px) !important;
  }

  body.woocommerce.archive .tb-card-sale-badge {
    top: 10px;
    left: 10px;
    height: 22px;
    padding: 0 8px;
    font-size: 11.5px;
  }

  body.woocommerce.archive #main .products.row > .product-small.col > .col-inner > .box.product-small > .box-text {
    padding: 13px 8px 14px;
  }

  body.woocommerce.archive .tb-card-top-meta {
    min-height: 22px;
    margin-bottom: 10px;
    gap: 7px;
  }

  body.woocommerce.archive .tb-card-swatches {
    gap: 6px;
  }

  body.woocommerce.archive .tb-card-swatch {
    width: 14px;
    height: 14px;
    min-width: 14px;
  }

  body.woocommerce.archive .tb-card-badge {
    min-height: 22px;
    padding: 0 7px;
    font-size: 10.5px;
  }

  body.woocommerce.archive .tb-card-gift-svg {
    width: 11px;
    height: 11px;
    min-width: 11px;
  }

  body.woocommerce.archive #main .products.row > .product-small.col > .col-inner > .box.product-small .product-title,
  body.woocommerce.archive #main .products.row > .product-small.col > .col-inner > .box.product-small .product-title a,
  body.woocommerce.archive #main .products.row > .product-small.col > .col-inner > .box.product-small .title-wrapper a {
    min-height: 38px;
    font-size: 13.4px;
    line-height: 1.34;
  }

  body.woocommerce.archive .tb-card-info-line {
    min-height: 17px;
    margin-top: 6px;
    font-size: 12px;
  }

  body.woocommerce.archive .tb-card-bottom-row {
    margin-top: 18px;
    padding-top: 10px;
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 8px;
  }

  body.woocommerce.archive .tb-card-price-clean,
  body.woocommerce.archive .tb-card-sale-price {
    font-size: 15.5px;
    line-height: 28px;
  }

  body.woocommerce.archive .tb-card-price-clean--sale {
    gap: 6px;
  }

  body.woocommerce.archive .tb-card-regular-price {
    font-size: 11.5px;
  }

  body.woocommerce.archive .tb-card-arrow-btn {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
  }

  body.woocommerce.archive .tb-card-arrow-svg {
    width: 15px;
    height: 15px;
  }

  body.woocommerce.archive .tb-filter-options--price {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  body.woocommerce.archive .tb-filter-price-pill {
    min-height: 32px !important;
    padding: 0 6px !important;
    font-size: 13px !important;
  }

  body.woocommerce.archive .tb-active-chips {
    gap: 8px !important;
  }

  body.woocommerce.archive .tb-active-chip {
    min-height: 32px !important;
    font-size: 13px !important;
  }
}