.product-detail-page {
  padding: 32px 0 0;
  background: #fff;
}

.product-detail-page .inner {
  max-width: var(--content, 1300px);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1;
  color: var(--pink, #f2a1b4);
  font-weight: 500;
}

.breadcrumbs a {
  color: var(--pink, #f2a1b4);
  transition: color 0.18s ease;
}

.breadcrumbs a:hover {
  color: var(--magenta, #e50687);
}

.breadcrumbs span.current {
  color: var(--maroon, #6a133d);
  font-weight: 700;
}

.breadcrumbs .sep {
  opacity: 0.6;
}

.prod-details-cols {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 90px;
}

.prod-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prod-main-img {
  width: 100%;
  height: 520px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.22s ease, transform 0.2s cubic-bezier(.2, .8, .2, 1);
}

.prod-main-img.is-changing {
  opacity: 0;
  transform: scale(1.02);
}

.prod-thumb-row {
  display: flex;
  gap: 16px;
}

.prod-thumb-row .thumb {
  position: relative;
  height: 100px;
  flex: 1;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: 0 0 0 0 rgba(229, 6, 135, 0);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.prod-thumb-row .thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 13, 0.15);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.prod-thumb-row .thumb:hover {
  transform: translateY(-3px);
  border-color: var(--pink, #f2a1b4);
}

.prod-thumb-row .thumb:hover::after {
  opacity: 0;
}

.prod-thumb-row .thumb.active {
  border-color: var(--magenta, #e50687);
  box-shadow: 0 6px 16px -4px rgba(229, 6, 135, 0.4);
  transform: translateY(-2px);
}

.prod-thumb-row .thumb:not(.active)::after {
  opacity: 1;
}

.prod-thumb-row .thumb:not(.active):hover::after {
  opacity: 0;
}

.prod-info-col {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.prod-info-col h1 {
  color: var(--maroon, #6a133d);
  margin: 0;
}

.prod-info-col .tagline {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink, #353435);
  margin: 0;
}

.prod-specs-table {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.prod-specs-table .spec-row {
  display: flex;
  padding: 18px 0;
  border-bottom: 1px solid #f4f1ee;
  font-size: 16px;
  line-height: 1.4;
}

.prod-specs-table .spec-label {
  width: 150px;
  font-weight: 700;
  color: var(--ink, #353435);
  flex-shrink: 0;
}

.prod-specs-table .spec-value {
  color: #6c6c6c;
  flex-grow: 1;
  font-size: 15px;
}

.prod-specs-table .spec-value p {
  margin: 0;
}

.prod-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.prod-action-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  text-decoration: none;
}

.prod-action-buttons .btn-magenta {
  background-color: var(--magenta, #e50687);
  color: #fff;
  border: none;
}

.prod-action-buttons .btn-magenta:hover {
  background-color: var(--maroon, #6a133d);
}

.prod-action-buttons .btn-dark {
  background-color: #100e0e;
  color: #fff;
  border: none;
  gap: 8px;
}

.prod-action-buttons .btn-dark:hover {
  background-color: var(--magenta, #e50687);
}

.prod-action-buttons .btn-outline {
  background-color: transparent;
  color: var(--maroon, #6a133d);
  border: none;
  box-shadow: inset 0 0 0 2px var(--magenta, #e50687);
}

.prod-action-buttons .btn-outline:hover {
  background-color: var(--magenta, #e50687);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: none;
}

.suitable-sec {
  background-color: #fcf8f8;
  padding: 110px 0;
  width: 100%;
}

.suitable-sec .center-head {
  text-align: center;
  margin-bottom: 60px;
}

.suitable-sec .center-head .eyebrow {
  color: var(--magenta, #e50687);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.suitable-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.suitable-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.suitable-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  background-color: var(--maroon, #6a133d);
}

.suitable-card-img {
  height: 250px;
  width: 100%;
  border-radius: 8px;
  background-color: #fcf8f8;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px var(--pinkline, #fcd2de);
}

.suitable-card-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.suitable-card-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--maroon, #6a133d);
  transition: color 0.2s ease;
}

.suitable-card:hover .suitable-card-info h3 {
  color: #fff;
}

.suitable-card-info p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink, #353435);
  margin: 0;
  transition: color 0.2s ease;
}

.suitable-card:hover .suitable-card-info p {
  color: rgba(255, 255, 255, 0.8);
}

.estimator-sec {
  background-color: #fff;
  padding: 110px 0;
  width: 100%;
}

.estimator-sec .inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.estimator-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.estimator-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.estimator-title .eyebrow {
  color: var(--magenta, #e50687);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.estimator-desc {
  max-width: 320px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink, #353435);
  margin: 0;
  text-align: right;
}

.estimator-panel {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  background-color: var(--pink, #f2a1b4);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(229, 6, 135, 0.1);
  align-items: stretch;
}

.estimator-form {
  background-color: var(--pinkbg, #ffeff4);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.estimator-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.estimator-row .estimator-input-group {
  flex: 1;
}

.estimator-input-group {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 15px;
}

.estimator-input-group label {
  position: absolute;
  left: 16px;
  top: -9px;
  background-color: var(--pinkbg, #ffeff4);
  padding: 0 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--magenta, #e50687);
  line-height: 1;
  z-index: 2;
  text-transform: none;
  letter-spacing: normal;
}

.estimator-input-group input,
.estimator-input-group select {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid var(--pinkline, #fcd2de);
  background-color: transparent;
  font-family: inherit;
  font-size: 15px;
  color: #6c6c6c;
  outline: none;
  transition: border-color 0.18s ease;
  box-sizing: border-box;
}

.estimator-input-group input::placeholder {
  color: #6c6c6c;
  opacity: 0.6;
}

.estimator-input-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%23f2a1b4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.estimator-btn {
  background-color: var(--magenta, #e50687);
  color: #fff;
  height: 52px;
  border-radius: 52px;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.18s ease;
  margin-top: 15px;
  width: 100%;
}

.estimator-btn:hover {
  background-color: var(--maroon, #6a133d);
}

.estimator-results {
  background: linear-gradient(135deg, var(--magenta, #e50687) 0%, var(--maroon, #6a133d) 100%);
  color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.estimator-results .result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.estimator-results .result-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.estimator-results .result-lbl {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.estimator-results .result-val {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.est-quote-btn {
  background-color: #fff !important;
  color: var(--magenta, #e50687) !important;
  height: 52px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.est-quote-btn:hover {
  transform: translateY(-2px);
  background-color: #fff9fb !important;
}

.est-quote-btn.is-disabled {
  background-color: rgba(255, 255, 255, 0.5) !important;
  color: rgba(229, 6, 135, 0.5) !important;
  cursor: not-allowed;
  pointer-events: none;
}

.est-quote-btn.is-disabled:hover {
  transform: none;
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.est-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 1.4;
  margin-top: 5px;
}

.product-detail-page .sec {
  padding: 110px 0;
}

.product-detail-page .pcard p {
  font-size: 14px;
  max-width: 250px;
}

.product-detail-page .center-head {
  margin: 0 auto 50px;
}

@media (max-width: 1024px) {
  .prod-details-cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .suitable-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .estimator-panel {
    grid-template-columns: 1fr;
  }

  .estimator-desc {
    text-align: left;
  }

  .estimator-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 640px) {
  .product-detail-page .inner {
    padding: 0 20px;
  }

  .breadcrumbs {
    flex-wrap: wrap;
  }

  .prod-main-img {
    height: 320px;
  }

  .prod-thumb-row {
    gap: 10px;
  }

  .prod-thumb-row .thumb {
    height: 60px;
  }

  .suitable-grid {
    grid-template-columns: 1fr;
  }

  .estimator-form,
  .estimator-results {
    padding: 24px;
  }

  .estimator-row {
    flex-direction: column;
    gap: 15px;
  }

  .suitable-sec,
  .estimator-sec {
    padding: 60px 0;
  }
}

.product-detail-page a.btn-magenta,
.product-detail-page a.btn-dark {
  color: #fff !important;
}

.product-detail-page a.btn-outline {
  color: var(--maroon, #6a133d) !important;
}

.product-detail-page a.btn-outline:hover {
  color: #fff !important;
}

.cat-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
}

.cat-chip {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 5px;
  border: none;
  border-radius: 50px;
  background: var(--cream, #fcf8f8);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background .25s ease, box-shadow .25s ease;
}

.cat-chip .cat-chip-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  background: #eee;
}

.cat-chip .cat-chip-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cat-chip .cat-chip-label {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.01em;
  color: var(--maroon, #6a133d);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cat-chip.active {
  background: var(--magenta, #e50687);
}

.cat-chip.active .cat-chip-label {
  color: #fff;
}

@media (max-width: 960px) {
  .cat-chips {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .cat-chips {
    grid-template-columns: 1fr;
  }

  .cat-chip .cat-chip-label {
    white-space: normal;
  }
}

/* Category Listing Grid - Main Products Page (3 columns) */

.prod-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

/* Home page: 4-column category grid */
#products .prod-cat-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* Category Pages - 4 columns */
.taxonomy-product_category .prod-cat-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.prod-cat-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 18px;
  width: 100%;
}

.prod-cat-list-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: #fff;
  border-radius: 35px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.prod-cat-list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.prod-cat-list-icon {
  width: 75px;
  height: 75px;
  min-width: 75px;
  border-radius: 50%;
  overflow: hidden;
  background: #f7f4f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.prod-cat-list-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prod-cat-list-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--maroon, #6a133d);
}

@media (max-width: 1024px) {
  .prod-cat-list {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 660px) {
  .prod-cat-list {
    grid-template-columns: 1fr;
  }

  #products .prod-cat-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .taxonomy-product_category .prod-cat-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.taxonomy-product_category .prod-cat-card {
  border-radius: 50px;
}

.taxonomy-product_category .prod-cat-card-content h3 {
  font-size: 16px;
  margin: 0;
}

.taxonomy-product_category .prod-cat-card-content {
  padding: 17px 25px;
}

.prod-cat-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.prod-cat-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.prod-cat-card-img {
  height: 175px;
  background: var(--cream, #fcf8f8);
  overflow: hidden;
  border-bottom: 1px solid #f0ede9;
}

.prod-cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.prod-cat-card:hover .prod-cat-card-img img {
  transform: scale(1.05);
}

.prod-cat-card-content {
  padding: 15px;
}

.prod-cat-card-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--maroon, #6a133d);
  margin: 0 0 8px 0;
}

.prod-cat-card-content p {
  font-size: 14px;
  color: #6c6c6c;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .prod-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .prod-cat-grid {
    grid-template-columns: 1fr;
  }

  .prod-cat-card-img {
    height: 160px;
  }
}

/* Mini Card in Child Category Grid */
#childProdGrid .pcard--mini {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#childProdGrid .pcard--mini:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

#childProdGrid .pcard--mini .imgbox {
  height: 200px;
  background: #f8f9fa;
}

#childProdGrid .pcard--mini .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

#childProdGrid .pcard--mini .prow {
  padding: 0 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#childProdGrid .pcard--mini h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--maroon, #6a133d);
  margin: 0 0 8px;
}

.compare-table {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--pinkline, #fcd2de);
}

.compare-table .compare-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.compare-table .compare-row.head {
  background: var(--maroon, #6a133d);
}

.compare-table .compare-row.head span {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

.compare-table .compare-row:not(.head):nth-child(even) {
  background: #f8f9fa;
}

.compare-table .compare-row:not(.head):nth-child(odd) {
  background: #fff;
}

.compare-table .compare-row span {
  padding: 20px;
  font-size: 14px;
  color: #334155;
}

@media (max-width: 800px) {
  .compare-table {
    overflow-x: auto;
  }

  .compare-table .compare-row {
    grid-template-columns: repeat(4, 200px);
    width: max-content;
    min-width: 100%;
  }
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  width: 100%;
}

.partner-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  min-height: 160px;
  background: var(--cream, #fcf8f8);
  box-shadow: inset 0 0 0 1px rgba(106, 19, 61, .06);
  cursor: pointer;
  transition: background .18s ease, box-shadow .2s ease, transform .2s cubic-bezier(.2, .8, .2, 1);
}

.partner-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 6, 135, .12), transparent 70%);
  opacity: 0;
  transition: opacity .2s ease;
}

.partner-card:hover {
  background: var(--maroon, #6a133d);
  box-shadow: 0 20px 40px -12px rgba(106, 19, 61, .45);
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-card .picon {
  position: relative;
  width: 64px;
  height: 60px;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px var(--pinkline, #fcd2de);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--magenta, #e50687);
  transition: background .18s ease, box-shadow .18s ease, color .18s ease, transform .2s cubic-bezier(.2, .8, .2, 1);
}

.partner-card .picon svg {
  width: 28px;
  height: 28px;
}

.partner-card:hover .picon {
  box-shadow: none;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}

.partner-card-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.partner-card span {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--maroon, #6a133d);
  transition: color .25s ease;
}

.partner-card:hover span {
  color: #fff;
}

.partner-card .circ {
  flex: none;
  width: 34px;
  height: 34px;
  box-shadow: inset 0 0 0 1px rgba(106, 19, 61, .2);
  color: var(--maroon, #6a133d);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .18s ease, transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.partner-card:hover .circ {
  opacity: 1;
  transform: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5);
  color: #fff;
}

@media (max-width: 960px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .compare-table .compare-row span {
    padding: 14px;
  }
}

.cta-banner--centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.cta-banner--centered .ctxt {
  align-items: center;
  text-align: center;
}

.cta-banner--centered .ctxt h3 {
  font-size: 40px;
}

.cta-banner--centered .cta-actions {
  justify-content: center;
}

/* ─── Leaf Category Filter Bar ─── */
.leaf-filter-bar {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-bottom: 2px solid #e8e5e1;
  flex-wrap: wrap;
}

.leaf-filter-btn {
  padding: 12px 24px;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.leaf-filter-btn:hover {
  color: var(--maroon, #6a133d);
  background: rgba(106, 19, 61, 0.04);
}

.leaf-filter-btn.active {
  color: var(--magenta, #e50687);
  border-bottom-color: var(--magenta, #e50687);
  background: rgba(229, 6, 135, 0.04);
}

/* ─── Product Card Enhanced ─── */
.pcard--mini .prow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pcard--mini .pcard-desc {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #6c6c6c;
}

.pcard--mini .pcard-dims {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.pcard--mini .pcard-dims-label {
  font-weight: 600;
  color: var(--ink, #353435);
}

.pcard--mini .pcard-dims-value {
  font-weight: 500;
  color: #6c6c6c;
}

.pcard--mini {
  text-decoration: none;
  color: inherit;
}

.pcard--mini .imgbox {
  transition: border-color 0.3s ease;
  border-bottom: 2px solid transparent;
}

.pcard--mini:hover .imgbox {
  border-bottom-color: var(--magenta, #e50687);
}

/* ─── Grid Item Wrapper for Filtering ─── */
.prod-grid-item {
  display: flex;
}

.prod-grid-item .pcard--mini {
  width: 100%;
}

/* ─── Product Card Actions Overlay ─── */
.pcard-actions-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: rgba(8, 9, 13, 0.65);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  border-radius: inherit;
  z-index: 2;
}

.pcard--mini:hover .pcard-actions-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pcard-actions-overlay .pcard-btn {
  min-width: 140px;
  text-align: center;
}


.pcard-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  line-height: 1;
}

.pcard-btn svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}

.pcard-btn--primary {
  background: var(--magenta, #e50687);
  color: #fff !important;
}

.pcard-btn--primary svg {
  stroke: #fff;
}

.pcard-btn--primary:hover {
  background: var(--maroon, #6a133d);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(229, 6, 135, 0.3);
}

.pcard-btn--secondary {
  background: #fff;
  color: var(--magenta, #e50687);
  box-shadow: inset 0 0 0 1.5px var(--magenta, #e50687);
}

.pcard-btn--secondary svg {
  stroke: var(--magenta, #e50687);
}

.pcard-btn--secondary:hover {
  background: var(--magenta, #e50687);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(229, 6, 135, 0.3);
}

.pcard-btn--secondary:hover svg {
  stroke: #fff;
}

/* ─── Responsive: Leaf Filter Bar ─── */
@media (max-width: 640px) {
  .leaf-filter-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
  }

  .leaf-filter-btn {
    flex-shrink: 0;
    padding: 10px 18px;
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .leaf-filter-btn {
    padding: 10px 20px;
    font-size: 13.5px;
  }
}

/* ─── Category Landing Content: Section 1 — Hero Block ─── */

.kpg-cl-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.kpg-cl-hero-media {
  position: relative;
}

.kpg-cl-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.kpg-cl-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kpg-cl-hero-copy .h2 {
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--maroon, #6a133d);
}

.kpg-cl-hero-copy .lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink, #353435);
  margin: 0;
}

.kpg-cl-hero-cta {
  margin-top: 8px;
}

/* ─── Category Landing Content: Section 2 — Features Grid ─── */

.kpg-cl-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.kpg-cl-feat-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: inset 0 0 0 1px var(--pinkline, #fcd2de);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, box-shadow 0.25s ease;
}

@media (hover: hover) {
  .kpg-cl-feat-card:hover {
    background: var(--maroon, #6a133d);
    box-shadow: 0 15px 30px rgba(106, 19, 61, 0.18);
  }

  .kpg-cl-feat-card:hover h3,
  .kpg-cl-feat-card:hover p {
    color: #fff;
  }

  .kpg-cl-feat-card:hover .kpg-cl-feat-icon img {
    filter: brightness(0) invert(1);
  }
}

.kpg-cl-feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--cream, #fcf8f8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kpg-cl-feat-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: filter 0.2s ease;
}

.kpg-cl-feat-card h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--maroon, #6a133d);
  transition: color 0.2s ease;
}

.kpg-cl-feat-card p {
  margin: 0;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.55;
  color: #6c6c6c;
  transition: color 0.2s ease;
}

/* ─── Responsive ─── */

@media (max-width: 1024px) {
  .kpg-cl-feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kpg-cl-hero-copy .h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .kpg-cl-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kpg-cl-hero-media {
    order: -1;
  }

  .kpg-cl-hero-media img {
    aspect-ratio: 16 / 10;
    border-radius: 12px;
  }

  .kpg-cl-hero-copy .h2 {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .kpg-cl-feat-grid {
    grid-template-columns: 1fr;
  }

  .kpg-cl-feat-card {
    padding: 24px 20px;
  }
}

/* ─── Load More Button ─── */

.kpg-load-more-wrap {
  text-align: center;
  padding: 40px 0 8px;
}

.kpg-load-more-btn {
  min-width: 200px;
  position: relative;
}

.kpg-load-more-btn:disabled {
  opacity: 0.85;
  cursor: not-allowed;
}

.kpg-lm-spinner {
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  vertical-align: middle;
}

.kpg-spinner-svg {
  width: 20px;
  height: 20px;
  animation: kpg-spinner-rotate 0.8s linear infinite;
}

@keyframes kpg-spinner-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}