/* ===== BUTTON EXACT STYLE ===== */
.vq-actions {
  margin-top: 14px;
}

.vq-btn {
  background: var(--color-text-red);
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(0, 0, 0, .18);
}

.vq-btn:hover {
  background: #c71626;
}

/* ===== Series section ===== */
.vq-series {
  margin: 18px 0 28px;
}

.vq-series__head {
  margin-bottom: 12px;
}

.vq-series__title {
  font-size: clamp(32px, 4vw, var(--text-4xl));
  margin: 0 0 4px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.vq-series__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  top: -7px;
  background: #ff2b2b;
}

.vq-series__subtitle {
  margin-bottom: 20px;
  opacity: 0.75;
  font-size: var(--text-13);
}

.vq-series__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* ===== Card ===== */
.vq-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.vq-card__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.vq-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vq-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.vq-card__name {
  margin: 0;
  font-size: clamp(--text-sm, 2vw, var(--text-base));
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.25;
}

.vq-card__name a {
  color: inherit;
  text-decoration: none;
}

.vq-badge {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

.vq-badge--red {
  background: #ff2b2b;
  color: #fff;
  border-color: transparent;
}

.vq-badge--gray {
  background: #f2f2f2;
  color: #111;
}

.vq-badge--black {
  background: #111;
  color: #fff;
  border-color: transparent;
}

/* Specs list */
.vq-card__specs {
  margin: 10px 0 12px;
  padding: 0;
  list-style: none;
  font-size: var(--text-xs);
  line-height: 1.5;
}
.vq-specs__item{
  display: flex;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(0,0,0,.08);
}

.vq-specs__key{
	width: 80px;
  font-weight: 500;
  color: #666;
}

.vq-specs__val{
  font-weight: 600;
  color: #111;
	 display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  overflow: hidden;
  min-width: 0;

  line-height: 1.45;     
  padding-right: 6px;   
}
.vq-card__footer {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.vq-card__cta {
  flex: 1;
  text-align: center;
  padding: 10px 14px;

  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: var(--radius-md);

  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-13);

  color: #111;
  background: #fff;

  transition: all .2s ease;
}

.vq-card__footer .vq-card__cta:first-child {
  background: #fff;
  color: #444;
}

.vq-card__footer .vq-card__cta:first-child:hover {
  border-color: rgba(0, 0, 0, .25);
  color: #111;
}

.vq-card__footer .vq-card__cta:last-child {
  background: var(--color-text-red);
  color: #fff;
  border-color: var(--color-text-red);
}

.vq-card__footer .vq-card__cta:last-child:hover {
  background: var(--color-text-red);
  border-color: #fff;
}


/*  */
.vq-solution {
  margin: 26px 0 34px;
  padding: 20px;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.vq-solution__head {
  text-align: center;
  margin-bottom: 14px;
}

.vq-solution__title {
  margin: 0 0 4px;
  font-weight: 900;
}

.vq-solution__subtitle {
  margin: 0;
  opacity: 0.7;
  font-size: var(--text-13);
}

.vq-solution__grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.vq-solution__grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vq-solution__grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vq-solution-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-xl);
  padding: 14px;
  background: #fff;
}

.vq-solution-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.vq-solution-card__name {
  margin: 0;
  font-weight: 900;
  font-size: var(--text-xl);
  text-transform: uppercase;
}

.vq-solution-card__name a {
  color: inherit;
  text-decoration: none;
}

.vq-solution-card__img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  margin-bottom: 10px;
}

.vq-solution-card__table .vq-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: var(--text-xs);
}

.vq-row__label {
  opacity: 0.7;
}

.vq-row__value {
  font-weight: 800;
  text-align: right;
}

.vq-row__value.is-highlight {
  color: #ff2b2b;
}

/* Hero o to */
.vq-hero {
  margin: 12px 0 90px;
}

.vq-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.vq-hero__eyebrow {
  color: var(--color-text-red);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.vq-hero__title {
  font-size: clamp(32px, 4vw, var(--text-5xl));
  color: #111111 !important;
  margin: 0 0 12px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.vq-hero__desc {
  font-size: clamp(12px, 2.5vw, 16px);
  margin: 0;
  opacity: 0.75;
  max-width: 560px;
}

.vq-hero__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.vq-hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: block;
  background: #111;
  text-decoration: none;
}

.vq-hero-card--large {
  grid-column: 1 / -1;
}

.vq-hero-card img,
.vq-hero-card__ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 140px;
}

.vq-hero-card--large img,
.vq-hero-card--large .vq-hero-card__ph {
  height: 194px;
}

.vq-hero-card__ph {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02));
}

.vq-hero-card__label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}

/* ============ CARD WRAP: box + highlights như 1 card ============ */
/* box */

/* Sort tách riêng, không dính title */
.tax-product_cat.vq-subcat .page-title {
  display: none !important;
}

.vq-cat-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 320px;

  padding: 90px 0 80px;

  filter: saturate(1.05) contrast(1.05);
}

.vq-cat-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 20% 40%,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0) 60%),
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.45) 55%,
      rgba(0, 0, 0, 0.18) 100%);
}

.vq-cat-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.vq-cat-hero__title {
  color: #fff;
  font-size: var(--text-40);
  line-height: 1.15;
  font-weight: 650;
  margin: 8px 0 12px;
  letter-spacing: -0.4px;
}

.vq-cat-hero__desc {
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  opacity: 0.92;
}

.vq-cat-hero__breadcrumb .woocommerce-breadcrumb {
  font-size: var(--text-13);
  letter-spacing: 0.2px;
  margin-bottom: 8px;
}

.vq-cat-hero__breadcrumb .woocommerce-breadcrumb,
.vq-cat-hero__breadcrumb .woocommerce-breadcrumb .divider,
.vq-cat-hero__breadcrumb a {
  color: #fff;
}

.vq-cat-hero__breadcrumb a:hover {
  text-decoration: underline;
}

body.tax-product_cat .vq-hero {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.category-page-row {
  padding-top: 0px;
}

.vq-subcat {
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.02),
      rgba(0, 0, 0, 0) 260px) !important;
}

.vq-subcat .shop-page-title {
  color: var(--color-text-secondary) !important;
  font-size: var(--text-34);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 10px !important;
  margin-bottom: 6px !important;
}

.vq-subcat .term-description p {
  display: none;
}

.woocommerce-notices-wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.vq-subcat .woocommerce-notices-wrapper:before {

  content: "DANH SÁCH SẢN PHẨM";
  color: var(--color-text-secondary) !important;
  display: block;
  margin: 0 0 14px;
  font-size: var(--text-lg);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 60px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e41b2140;
}

/* --------------------------- */
.vq-subcat .product-small .col-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.vq-subcat .product-small .col-inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.14);
}

.vq-cta-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 16px;

  margin-top: auto;
  background: rgba(214, 31, 38, 0.08);

  border-top: 1px solid rgba(214, 31, 38, 0.35);
  color: #d61f26 !important;

  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.2px;
  line-height: 1;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.vq-cta-btn:hover {
  background: rgba(214, 31, 38, 0.14);
  border-color: rgba(214, 31, 38, 0.55);
  transform: translateY(1px);
}

.vq-cta-btn:active {
  transform: translateY(0);
}


.vq-subcat .product-small .product-small.box .box-image {
  overflow: hidden;
}

.vq-subcat .product-small .product-small.box .box-image img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.vq-subcat .product-small:hover .product-small.box .box-image img {
  transform: scale(1.03);
}

/* ============ BOX TEXT: title + price cùng hàng ============ */
.vq-subcat .product-small .box-text.box-text-products {
  padding: 16px 18px 14px;
}


.vq-subcat .product-small .box-text {
  align-items: center !important;
}

.vq-subcat .product-small .box-text .product-cat {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(0, 0, 0, 0.06);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  color: var(--color-text-red);
}

/* title */
.vq-subcat .product-small .box-text .name {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.2;
  font-size: var(--text-base);
  min-width: 0;
}

.vq-subcat .product-small .box-text .name a {
  color: inherit;
  text-decoration: none;
}

.vq-subcat .product-small .box-text .price-wrapper {
  margin-left: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-width: 110px;
}

.vq-subcat .product-small .box-text .price {
  margin: 0 !important;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.1;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.price .woocommerce-Price-currencySymbol {
  font-weight: 600;
  opacity: 0.85;
}

.vq-subcat .product-small .box-text .price-wrapper:empty {
  height: 20px;
}

.vq-subcat .product-small .box-text.box-text-products {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.vq-subcat .product-small .vq-loop-highlights {
  margin: 0;

  padding: 14px 0px;

  list-style: none;
  display: grid;
  gap: 10px;
  font-size: var(--text-13);
  line-height: 1.35;
  background: #fff;
  border-radius: 0 0 18px 18px;

}

.vq-subcat .product-small .vq-loop-highlights li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  align-items: flex-start;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.vq-subcat .product-small .vq-loop-highlights .icon-check {
  width: 14px;
  height: 14px;
  border-radius: var(--radius-pill);
  background: rgba(225, 17, 17, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vq-subcat .product-small .vq-loop-highlights .icon-check:before {
  content: "✓";
  color: var(--color-text-red);
  font-weight: 900;
  font-size: 10px;
  line-height: 1;
}
/* ===== Category Landing Components (Shared) ===== */
/* Page */
.res-landing {
  padding-bottom: 64px;
}

/* HERO */
.res-hero {
  margin-bottom: 18px;
}

.footer_custom .res-hero__background {
  overflow: hidden;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  background-color: #0f172a;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .12);
}

.res-hero__overlay {
  min-height: 280px;
  display: flex;
  align-items: center;
  padding: 46px 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .60), rgba(0, 0, 0, .18));
}

.res-hero__eyebrow {
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .92;
  margin-bottom: 10px;
  color: #fff;
}

.res-hero__title {
  color: #fff;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.12;
  margin: 0 0 10px;
  letter-spacing: -.015em;
}

.res-hero__subtitle {
  color: rgba(255, 255, 255, .9);
  max-width: 760px;
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 18px;
}

.res-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.res-hero__actions .button {
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

/* QUICK NAV */
.res-quick-nav {
  margin: 18px 0 22px;
}

.res-quick-nav__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.res-quick-nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
  color: #111827;
  font-weight: 700;
  font-size: var(--text-13);
  line-height: 1.2;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.res-quick-nav__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .09);
  border-color: rgba(15, 23, 42, .14);
}

/* SECTIONS wrapper */
.res-sections {
  margin-top: 10px;
}

/* Section card */
.res-section {
  border-radius: var(--radius-3xl);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .06);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
  padding: 22px 22px 18px;
  margin-bottom: 18px;
}

/* Section header */
.res-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 23, 42, .06);
  margin-bottom: 14px;
}

.res-section__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0 0 6px;
  color: #0f172a;
}

.res-section__description {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(15, 23, 42, .65);
  max-width: 760px;
}

/* Header CTA link */
.res-section__header-cta {
  flex: 0 0 auto;
  padding-top: 2px;
}

.res-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: var(--text-13);
  text-decoration: none;
  color: var(--color-text-red);
  padding: 8px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(15, 23, 42, .02);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.res-link:hover {
  transform: translateY(-1px);
  color: var(--color-text-white);
  background: var(--color-text-red);
  border-color: rgba(15, 23, 42, .16);
}


.res-empty-state,
.res-empty-products {
  padding: 14px 16px;
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, .04);
  border: 1px dashed rgba(15, 23, 42, .16);
}

