:root {
  --pq-ink: #172535;
  --pq-muted: #58697a;
  --pq-primary: #123a63;
  --pq-primary-strong: #0b2a49;
  --pq-accent: #e9a23b;
  --pq-surface: #ffffff;
  --pq-surface-subtle: #f3f6f8;
  --pq-border: #d8e0e7;
  --pq-whatsapp: #137a42;
  --pq-focus: #ffbf47;
  --pq-radius-sm: .5rem;
  --pq-radius: .85rem;
  --pq-shadow: 0 .45rem 1.4rem rgba(19, 41, 63, .09);
  --pq-content-space: clamp(2.5rem, 5vw, 5rem);
}

.public-site {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--pq-ink);
  background: var(--pq-surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.public-site a {
  color: var(--pq-primary);
}

.public-site .btn-primary {
  --bs-btn-bg: var(--pq-primary);
  --bs-btn-border-color: var(--pq-primary);
  --bs-btn-hover-bg: var(--pq-primary-strong);
  --bs-btn-hover-border-color: var(--pq-primary-strong);
  --bs-btn-active-bg: var(--pq-primary-strong);
  --bs-btn-active-border-color: var(--pq-primary-strong);
}

.public-site .btn-outline-primary {
  --bs-btn-color: var(--pq-primary);
  --bs-btn-border-color: var(--pq-primary);
  --bs-btn-hover-bg: var(--pq-primary);
  --bs-btn-hover-border-color: var(--pq-primary);
}

[data-quote-add].is-in-quote {
  color: #fff;
  background: var(--pq-whatsapp);
  border-color: var(--pq-whatsapp);
}

.public-site :focus-visible {
  outline: .2rem solid var(--pq-focus);
  outline-offset: .15rem;
  box-shadow: none;
}

.skip-link {
  position: fixed;
  top: .5rem;
  left: .5rem;
  z-index: 1090;
  padding: .65rem 1rem;
  color: #fff !important;
  background: var(--pq-primary-strong);
  border-radius: var(--pq-radius-sm);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.public-main {
  flex: 1 0 auto;
}

.public-utility-bar {
  padding: .45rem 0;
  color: #e8f0f7;
  background: var(--pq-primary-strong);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .025em;
}

.public-utility-bar a {
  color: inherit;
  text-decoration: none;
}

.public-utility-bar a:hover {
  text-decoration: underline;
}

.public-header {
  position: relative;
  z-index: 1030;
  background: var(--pq-surface);
  box-shadow: 0 .15rem .65rem rgba(18, 58, 99, .07);
}

.public-header-main {
  padding-top: .85rem;
  padding-bottom: .85rem;
}

.public-brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-width: max-content;
  color: var(--pq-ink) !important;
  text-decoration: none;
}

.public-brand-mark {
  display: inline-grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  color: #fff;
  background: var(--pq-primary);
  border-radius: .75rem .25rem .75rem .25rem;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.public-brand-copy {
  display: grid;
  line-height: 1.05;
}

.public-brand-copy strong {
  font-size: 1.05rem;
}

.public-brand-copy small {
  margin-top: .3rem;
  color: var(--pq-muted);
  font-size: .68rem;
  font-weight: 600;
}

.public-menu-button {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: var(--pq-primary);
  border: 1px solid var(--pq-border);
}

.public-search {
  width: min(100%, 45rem);
  margin-inline: auto;
}

.public-search .input-group {
  border: 1px solid var(--pq-border);
  border-radius: var(--pq-radius-sm);
  overflow: hidden;
  box-shadow: 0 .15rem .45rem rgba(19, 41, 63, .05);
}

.public-search .input-group-text,
.public-search .form-control,
.public-search .btn {
  min-height: 2.8rem;
  border: 0;
  border-radius: 0;
}

.public-search .input-group-text {
  color: var(--pq-muted);
  background: #fff;
}

.quote-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  min-height: 2.75rem;
  padding: .45rem .5rem;
  color: var(--pq-primary) !important;
  text-decoration: none;
  font-weight: 700;
}

.quote-cart-count {
  display: inline-grid;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 .25rem;
  place-items: center;
  color: #fff;
  background: var(--pq-primary);
  border-radius: 999px;
  font-size: .7rem;
  font-variant-numeric: tabular-nums;
}

.public-nav {
  border-top: 1px solid var(--pq-border);
  border-bottom: 1px solid var(--pq-border);
}

.public-nav .nav-link {
  padding: .78rem 1rem;
  color: var(--pq-ink);
  font-size: .92rem;
  font-weight: 650;
}

.public-nav .nav-link:first-child {
  padding-left: 0;
}

.public-nav .nav-link:hover,
.public-nav .nav-link:focus-visible {
  color: var(--pq-primary);
}

.public-nav .nav-enquiry {
  color: var(--pq-primary);
}

.public-mobile-nav {
  --bs-offcanvas-width: min(88vw, 22rem);
}

.public-mobile-nav .nav-link {
  padding: .75rem 0;
  color: var(--pq-ink);
  border-bottom: 1px solid var(--pq-border);
  font-weight: 650;
}

.public-breadcrumbs {
  padding: 1rem 0;
  color: var(--pq-muted);
  font-size: .88rem;
}

.public-breadcrumbs a {
  text-decoration: none;
}

.product-card,
.category-card {
  overflow: hidden;
  border: 1px solid var(--pq-border);
  border-radius: var(--pq-radius);
  box-shadow: 0 .2rem .75rem rgba(19, 41, 63, .06);
}

.product-card-media,
.category-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--pq-surface-subtle);
}

.product-card-media {
  aspect-ratio: 4 / 3;
}

.category-card-media {
  aspect-ratio: 8 / 5;
}

.category-card-featured {
  position: absolute;
  top: .75rem;
  left: .75rem;
  box-shadow: 0 .15rem .45rem rgba(0, 0, 0, .16);
}

.product-card-media img,
.category-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-card-badges {
  position: absolute;
  top: .75rem;
  left: .75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}

.product-card-badges .badge {
  box-shadow: 0 .15rem .45rem rgba(0, 0, 0, .15);
}

.product-card .card-body,
.category-card .card-body {
  padding: 1.15rem;
}

.product-card-category,
.category-card-count,
.public-eyebrow {
  color: var(--pq-primary);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.category-card-parent {
  color: var(--pq-muted);
  font-size: .78rem;
  font-weight: 650;
}

.product-card-title a,
.category-card h2 a,
.category-card h3 a,
.category-card h4 a {
  color: var(--pq-ink);
  text-decoration: none;
}

.categories-page-header {
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, #edf3f8, #fff 68%);
  border-bottom: 1px solid var(--pq-border);
}

.categories-page-header h1 {
  max-width: 48rem;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.categories-page-header .lead {
  max-width: 54rem;
  margin-bottom: 0;
  color: var(--pq-muted);
}

.categories-page-content {
  padding: var(--pq-content-space) 0;
}

.category-family + .category-family {
  padding-top: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--pq-border);
}

.category-family-label {
  margin-bottom: 1rem;
  color: var(--pq-primary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.category-family-children .category-card {
  background: var(--pq-surface-subtle);
}

.category-listing-header {
  padding-bottom: clamp(1.35rem, 3vw, 2.35rem);
  background: linear-gradient(135deg, #f3f7fb, #fff 72%);
  border-bottom: 1px solid var(--pq-border);
}

.category-listing-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: .65rem;
}

.category-listing-header .public-eyebrow {
  margin-bottom: .55rem;
  color: #0b6ce5;
  font-size: .72rem;
  letter-spacing: .04em;
}

.category-listing-heading h1 {
  max-width: 52rem;
  margin-bottom: .55rem;
  color: #111827;
  font-size: clamp(2rem, 4vw, 3.05rem);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -.02em;
}

.category-listing-heading .lead {
  max-width: 50rem;
  margin-bottom: 0;
  color: #6f7f95;
  font-size: clamp(.98rem, 1.4vw, 1.08rem);
  line-height: 1.65;
}

.category-listing-total {
  flex: 0 0 auto;
  min-width: 8rem;
  padding: .7rem .95rem;
  margin: 0;
  color: var(--pq-primary-strong);
  background: rgba(255, 255, 255, .88);
  border: 1px solid #dbe4ef;
  border-radius: .75rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .05);
  font-size: .86rem;
  line-height: 1.35;
}

.category-listing-total strong {
  display: block;
  margin-bottom: .22rem;
  font-size: 1.2rem;
  line-height: 1;
}

.category-banner {
  aspect-ratio: 16 / 4.25;
  margin-top: clamp(1.15rem, 2.5vw, 2rem);
  overflow: hidden;
  background: var(--pq-surface-subtle);
  border: 1px solid rgba(219, 228, 239, .75);
  border-radius: .95rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
}

.category-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.category-child-section,
.category-products-section {
  padding: var(--pq-content-space) 0;
}

.category-child-section {
  border-bottom: 1px solid var(--pq-border);
}

.category-products-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.category-products-toolbar h2 {
  margin-bottom: .25rem;
}

.category-sort-form {
  min-width: min(100%, 20rem);
}

.category-sort-form .form-label {
  margin-bottom: .35rem;
  font-size: .85rem;
  font-weight: 750;
}

.category-filter-panel {
  position: sticky;
  top: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--pq-border);
  border-radius: var(--pq-radius);
}

.category-filter-group {
  padding: 1rem 0;
  border: 0;
  border-bottom: 1px solid var(--pq-border);
}

.category-filter-group legend {
  float: none;
  width: auto;
  margin-bottom: .15rem;
  font-size: .99rem;
  font-weight: 600;
  margin-top: 20px;
}

.category-filter-group legend span {
  color: var(--pq-muted);
  font-weight: 600;
}

.category-filter-options {
  display: grid;
  gap: .55rem;
}

.category-filter-options .form-check-label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  cursor: pointer;
}

.category-filter-count {
  color: var(--pq-muted);
  font-variant-numeric: tabular-nums;
}

.category-filter-drawer {
  --bs-offcanvas-width: min(90vw, 24rem);
}

.product-card-sku {
  color: var(--pq-muted);
  font-size: .8rem;
}

.product-card-sku span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.product-card-description {
  display: -webkit-box;
  overflow: hidden;
  color: var(--pq-muted);
  font-size: .9rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card-price {
  color: var(--pq-primary-strong);
  font-size: 1.05rem;
  font-weight: 800;
}

.btn-whatsapp-outline {
  color: var(--pq-whatsapp);
  border-color: var(--pq-whatsapp);
}

.btn-whatsapp-outline:hover,
.btn-whatsapp-outline:focus-visible {
  color: #fff;
  background: var(--pq-whatsapp);
  border-color: var(--pq-whatsapp);
}

.public-pagination .page-link {
  min-width: 2.5rem;
  margin: .15rem;
  color: var(--pq-primary);
  text-align: center;
  border-color: var(--pq-border);
  border-radius: .45rem !important;
}

.public-pagination .active .page-link {
  color: #fff;
  background: var(--pq-primary);
  border-color: var(--pq-primary);
}

.public-empty-state {
  max-width: 46rem;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  background: var(--pq-surface-subtle);
  border: 1px dashed #b6c3ce;
  border-radius: var(--pq-radius);
}

.public-empty-state p {
  max-width: 34rem;
  margin: 0 auto 1.25rem;
  color: var(--pq-muted);
}

.public-empty-icon {
  display: inline-grid;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  place-items: center;
  color: var(--pq-primary);
  background: #e2ebf3;
  border-radius: 50%;
}

.public-status-page {
  display: grid;
  min-height: min(42rem, 68vh);
  padding: clamp(3rem, 9vw, 7rem) 0;
  place-items: center;
  background: linear-gradient(145deg, var(--pq-surface-subtle), #fff);
}

.public-status-card {
  max-width: 46rem;
  margin-inline: auto;
  padding: clamp(2rem, 6vw, 4.5rem);
  text-align: center;
  background: #fff;
  border: 1px solid var(--pq-border);
  border-radius: var(--pq-radius);
  box-shadow: var(--pq-shadow);
}

.public-status-card p {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  color: var(--pq-muted);
}

.public-status-code {
  display: inline-block;
  margin-bottom: .75rem;
  color: var(--pq-primary);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.network-status-alert:focus {
  outline: 3px solid color-mix(in srgb, var(--pq-primary) 45%, transparent);
  outline-offset: 2px;
}

.public-foundation-hero,
.home-hero {
  padding: var(--pq-content-space) 0;
  background: linear-gradient(135deg, #edf3f8, #fff 68%);
  border-bottom: 1px solid var(--pq-border);
}

.public-foundation-hero h1,
.home-hero h1 {
  max-width: 48rem;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.public-foundation-hero .lead,
.home-hero .lead {
  max-width: 44rem;
  color: var(--pq-muted);
}

.home-section {
  padding: var(--pq-content-space) 0;
}

.home-section-muted {
  background: var(--pq-surface-subtle);
  border-top: 1px solid var(--pq-border);
  border-bottom: 1px solid var(--pq-border);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  letter-spacing: -.025em;
}

.section-heading > a {
  flex: 0 0 auto;
  padding-bottom: .25rem;
  font-weight: 750;
  text-decoration: none;
}

.section-heading-centered {
  justify-content: center;
  text-align: center;
}

.home-benefit {
  height: 100%;
  padding: 1.5rem;
  border: 1px solid var(--pq-border);
  border-radius: var(--pq-radius);
}

.home-benefit > span {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  place-items: center;
  color: var(--pq-primary);
  background: #e2ebf3;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 850;
}

.home-benefit p {
  margin-bottom: 0;
  color: var(--pq-muted);
}

.home-enquiry-cta {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  color: #fff;
  background: var(--pq-primary);
}

.home-enquiry-cta .public-eyebrow {
  color: #ffd18a;
}

.home-enquiry-cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -.025em;
}

.home-enquiry-cta p:not(.public-eyebrow) {
  max-width: 48rem;
  margin-bottom: 0;
  color: #dce8f2;
}

.business-trust-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--pq-border);
  border: 1px solid var(--pq-border);
  border-radius: var(--pq-radius);
}

.business-trust-grid > div {
  display: grid;
  gap: .35rem;
  padding: 1.25rem;
  background: #fff;
}

.business-trust-grid strong {
  color: var(--pq-primary-strong);
}

.business-trust-grid span {
  color: var(--pq-muted);
  font-size: .9rem;
}

.home-faq-list {
  max-width: 52rem;
  margin-inline: auto;
  border-top: 1px solid var(--pq-border);
}

.home-faq-list details {
  background: #fff;
  border-bottom: 1px solid var(--pq-border);
}

.home-faq-list summary {
  padding: 1.15rem 2.5rem 1.15rem 1rem;
  color: var(--pq-ink);
  cursor: pointer;
  font-weight: 750;
}

.home-faq-list details[open] summary {
  color: var(--pq-primary);
}

.home-faq-list p {
  max-width: 46rem;
  padding: 0 1rem 1.25rem;
  margin: 0;
  color: var(--pq-muted);
}

.public-trust-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--pq-primary-strong);
  color: #fff;
  border-radius: var(--pq-radius);
  box-shadow: var(--pq-shadow);
}

.public-trust-panel .public-eyebrow {
  color: #ffd18a;
}

.public-trust-panel li {
  position: relative;
  padding: .65rem 0 .65rem 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.public-trust-panel li:last-child {
  border-bottom: 0;
}

.public-trust-panel li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: #ffd18a;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1020;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 3.15rem;
  padding: .65rem .9rem;
  color: #fff !important;
  background: var(--pq-whatsapp);
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 .45rem 1.25rem rgba(0, 0, 0, .22);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 750;
}

.public-footer {
  margin-top: auto;
  color: #dfe8f0;
  background: var(--pq-primary-strong);
}

.public-footer a {
  color: #fff;
}

.public-brand-footer .public-brand-copy strong,
.public-brand-footer .public-brand-copy small {
  color: #fff;
}

.public-footer-summary {
  max-width: 32rem;
  color: #b9c9d8;
}

.public-footer h2 {
  color: #ffd18a;
  font-weight: 750;
}

.public-footer li + li {
  margin-top: .6rem;
}

.public-footer li a {
  color: #dfe8f0;
  text-decoration: none;
}

.public-footer li a:hover {
  color: #fff;
  text-decoration: underline;
}

.public-footer-bottom {
  padding: 1rem 0;
  color: #b9c9d8;
  background: #071f36;
  font-size: .78rem;
}

#public-toast-host {
  z-index: 1090;
}

.product-detail {
  padding-top: 1.25rem;
}

.product-detail-hero {
  padding: 1.5rem 0 clamp(3rem, 6vw, 5rem);
}

.product-gallery-main {
  overflow: hidden;
  background: var(--pq-surface-subtle);
  border: 1px solid var(--pq-border);
  border-radius: var(--pq-radius);
  aspect-ratio: 4 / 3;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  margin-top: .75rem;
}

.product-gallery-thumbnail {
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 2px solid transparent;
  border-radius: .65rem;
  aspect-ratio: 4 / 3;
}

.product-gallery-thumbnail.is-active {
  border-color: var(--pq-primary);
}

.product-gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-summary {
  position: sticky;
  top: 1rem;
}

.product-detail-summary h1 {
  margin-bottom: 1.25rem;
  color: var(--pq-primary-strong);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -.035em;
}

.product-detail-identity {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  margin-bottom: 1.5rem;
}

.product-detail-identity div {
  min-width: 7rem;
}

.product-detail-identity dt {
  color: var(--pq-muted);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-detail-identity dd {
  margin: .2rem 0 0;
  color: var(--pq-ink);
  font-weight: 700;
}

.product-detail-price {
  margin-bottom: 1rem;
  color: var(--pq-primary);
  font-size: 1.65rem;
  font-weight: 850;
}

.product-detail-moq {
  padding: .9rem 1rem;
  background: var(--pq-surface-subtle);
  border-left: 3px solid var(--pq-accent);
  border-radius: .4rem;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1.5rem 0 .75rem;
}

.product-detail-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.product-detail-section-muted {
  background: var(--pq-surface-subtle);
}

.product-detail-copy {
  max-width: 56rem;
}

.product-content-grid {
  display: grid;
  gap: 1rem;
}

.product-content-item {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--pq-border);
  border-radius: var(--pq-radius);
}

.product-content-item h3 {
  font-size: 1.05rem;
}

.product-content-item p {
  margin: 0;
  color: var(--pq-muted);
}

.product-specification-group {
  max-width: 56rem;
  margin-top: 2rem;
}

.product-specification-group h3 {
  font-size: 1.1rem;
}

.product-specification-table th {
  width: 42%;
  color: var(--pq-primary-strong);
}

.product-application-list {
  display: grid;
  gap: .75rem;
  padding: 0;
  list-style: none;
}

.product-application-list li {
  display: grid;
  gap: .2rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--pq-border);
  border-radius: .65rem;
}

.product-application-list span {
  color: var(--pq-muted);
}

.product-brochure-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: #fff;
  border: 1px solid var(--pq-border);
  border-radius: var(--pq-radius);
  box-shadow: var(--pq-shadow);
}

.recently-viewed-grid {
  display: grid;
  gap: 1rem;
}

.recently-viewed-card a {
  display: grid;
  grid-template-columns: 6rem 1fr;
  align-items: center;
  gap: 1rem;
  height: 100%;
  padding: .75rem;
  color: var(--pq-ink);
  background: #fff;
  border: 1px solid var(--pq-border);
  border-radius: .75rem;
  text-decoration: none;
}

.recently-viewed-card img {
  width: 6rem;
  height: 4.5rem;
  object-fit: cover;
  border-radius: .45rem;
}

.recently-viewed-card span {
  display: grid;
  gap: .3rem;
}

.recently-viewed-card small {
  color: var(--pq-muted);
}

.quote-page-header {
  padding: 1.25rem 0 2rem;
  background: var(--pq-surface-subtle);
  border-bottom: 1px solid var(--pq-border);
}

.quote-page-header h1 {
  color: var(--pq-primary-strong);
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.quote-page {
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.quote-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.quote-item-list {
  display: grid;
  gap: 1rem;
}

.quote-item {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr) minmax(9rem, auto);
  align-items: center;
  gap: 1.25rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--pq-border);
  border-radius: var(--pq-radius);
}

.quote-item-invalid {
  border-color: rgba(var(--bs-danger-rgb), .55);
  background: rgba(var(--bs-danger-rgb), .04);
}

.quote-item-error {
  grid-column: 1 / -1;
}

.quote-item-image {
  overflow: hidden;
  background: var(--pq-surface-subtle);
  border-radius: .65rem;
  aspect-ratio: 4 / 3;
}

.quote-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quote-item-copy h3,
.quote-item-copy p {
  margin-bottom: .35rem;
}

.quote-item-sku,
.quote-item-unit {
  color: var(--pq-muted);
  font-size: .9rem;
}

.quote-item-controls {
  display: grid;
  grid-template-columns: minmax(5rem, 7rem) auto;
  align-items: end;
  gap: .65rem;
}

.quote-item-controls .form-label {
  grid-column: 1 / -1;
  margin-bottom: -.35rem;
}

.quote-customer-section {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.quote-summary-card {
  position: sticky;
  top: 1rem;
  padding: 1.5rem;
  background: var(--pq-surface-subtle);
  border: 1px solid var(--pq-border);
  border-radius: var(--pq-radius);
}

.quote-summary-card dl {
  margin: 1.5rem 0;
}

.quote-summary-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--pq-border);
}

.quote-summary-card dd {
  margin: 0;
  color: var(--pq-primary-strong);
  font-weight: 800;
}

/* Finished quote cart layout */
.quote-page-header {
  padding: 1.65rem 0 2.15rem;
  background:
    linear-gradient(135deg, #f6f9fc 0%, #fff 72%);
  border-bottom: 1px solid #e3eaf3;
}

.quote-page-header .public-breadcrumbs,
.quote-page-header nav {
  margin-bottom: 1rem;
}

.quote-page-header .public-eyebrow {
  margin-bottom: .5rem;
  color: #1a73e8;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.quote-page-header h1 {
  margin-bottom: .55rem;
  color: #082a59;
  font-size: clamp(2rem, 4vw, 3.05rem);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: -.02em;
}

.quote-page-header .lead {
  max-width: 48rem;
  margin: 0;
  color: #64748b;
  font-size: 1.02rem;
  line-height: 1.6;
}

.quote-page {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.25rem);
  color: #1f2937;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.quote-enquiry-form > .row {
  align-items: start;
}

.quote-section-heading {
  align-items: center;
  margin-bottom: 1rem;
}

.quote-section-heading h2,
.quote-customer-section h2,
.quote-summary-card h2 {
  margin: 0;
  color: #172033;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -.01em;
}

.quote-section-heading .public-eyebrow,
.quote-customer-section .public-eyebrow,
.quote-summary-card .public-eyebrow {
  margin-bottom: .45rem;
  color: #1a73e8;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .055em;
}

.quote-section-heading .btn-outline-danger {
  min-height: 38px;
  padding: .46rem .82rem;
  color: #dc3545;
  background: #fff;
  border-color: #ffb3bd;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
}

.quote-item-list {
  gap: .85rem;
}

.quote-item {
  grid-template-columns: 88px minmax(0, 1fr) minmax(170px, auto);
  gap: 1rem;
  padding: .9rem;
  border-color: #e3eaf3;
  border-radius: 1rem;
  box-shadow: 0 14px 36px rgba(15, 23, 42, .045);
}

.quote-item-image {
  border-radius: .7rem;
  aspect-ratio: 1 / 1;
}

.quote-item-copy h3 {
  margin-bottom: .28rem;
  color: #172033;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.32;
}

.quote-item-copy h3 a {
  color: #1a73e8;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.quote-item-sku,
.quote-item-unit {
  margin-bottom: .18rem;
  color: #667085;
  font-size: .82rem;
  line-height: 1.35;
}

.quote-item-controls {
  grid-template-columns: 92px auto;
  gap: .65rem;
}

.quote-item-controls .form-label {
  margin-bottom: -.15rem;
  color: #344054;
  font-size: .78rem;
  font-weight: 700;
}

.quote-item-controls .form-control {
  min-height: 38px;
  padding: .42rem .6rem;
  border-color: #dbe4ef;
  border-radius: .55rem;
}

.quote-item-controls .btn-outline-danger {
  min-height: 38px;
  padding: .44rem .72rem;
  border-color: #ff9aaa;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 800;
}

.quote-page .btn-link {
  color: #1a73e8;
  font-size: .9rem;
  font-weight: 750;
}

.quote-customer-section {
  margin-top: 2rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #e3eaf3;
  border-radius: 1rem;
  box-shadow: 0 14px 36px rgba(15, 23, 42, .035);
}

.quote-customer-section > p.text-body-secondary {
  margin: .45rem 0 1.15rem;
  color: #667085 !important;
  font-size: .9rem;
}

.quote-page .form-label {
  margin-bottom: .4rem;
  color: #344054;
  font-size: .86rem;
  font-weight: 650;
}

.quote-page .form-control {
  min-height: 42px;
  border-color: #dbe4ef;
  border-radius: .62rem;
  color: #172033;
  font-size: .92rem;
}

.quote-page textarea.form-control {
  min-height: 116px;
  resize: vertical;
}

.quote-page .form-control:focus {
  border-color: #8bbdff;
  box-shadow: 0 0 0 .22rem rgba(26, 115, 232, .12);
}

.quote-page .form-text {
  color: #768397;
  font-size: .78rem;
  line-height: 1.45;
}

.quote-page .form-check {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  margin-top: .25rem;
}

.quote-page .form-check-input {
  float: none;
  flex: 0 0 auto;
  margin: .2rem 0 0;
}

.quote-page .form-check-label {
  color: #344054;
  font-size: .9rem;
  line-height: 1.45;
}

.quote-summary-card {
  top: 1.25rem;
  padding: 1.25rem;
  background: #fff;
  border-color: #e3eaf3;
  border-radius: 1rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
}

.quote-summary-card dl {
  margin: 1.25rem 0 1.35rem;
}

.quote-summary-card dl div {
  padding: .72rem 0;
  color: #1f2937;
  border-bottom-color: #e6edf5;
  font-size: .92rem;
}

.quote-summary-card dt {
  font-weight: 750;
}

.quote-summary-card dd {
  color: #082a59;
  font-weight: 850;
}

.quote-summary-card .btn-whatsapp-outline {
  min-height: 48px;
  color: #138a46;
  background: #eafcf1;
  border-color: #b9f2cc;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 850;
}

.quote-summary-card .btn-whatsapp-outline:hover,
.quote-summary-card .btn-whatsapp-outline:focus-visible {
  color: #fff;
  background: #168f49;
  border-color: #168f49;
}

.quote-summary-card > p.small {
  color: #667085 !important;
  font-size: .82rem;
  line-height: 1.55;
}

.quote-page + .whatsapp-float,
main:has(.quote-page) ~ .whatsapp-float {
  bottom: 1.25rem;
}

@media (max-width: 1199.98px) {
  .quote-summary-card {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .quote-page-header {
    padding: 1.25rem 0 1.6rem;
  }

  .quote-page {
    padding-top: 1.35rem;
  }

  .quote-item {
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: start;
    padding: .82rem;
  }

  .quote-item-controls {
    grid-column: 1 / -1;
    grid-template-columns: minmax(90px, 1fr) auto;
    padding-top: .35rem;
  }

  .quote-customer-section,
  .quote-summary-card {
    padding: 1rem;
    border-radius: .9rem;
  }
}

@media (max-width: 575.98px) {
  .quote-section-heading .btn-outline-danger {
    align-self: start;
  }

  .quote-item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: .75rem;
  }

  .quote-item-copy h3 {
    font-size: .95rem;
  }

  .quote-item-controls {
    grid-template-columns: 1fr;
  }

  .quote-item-controls .form-label {
    margin-bottom: -.25rem;
  }
}

@media (min-width: 768px) {
  .public-header-main {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .product-card .card-body,
  .category-card .card-body {
    padding: 1.35rem;
  }

  .business-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-content-grid,
  .product-application-list,
  .recently-viewed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .public-brand-copy small,
  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    width: 3.25rem;
    padding: 0;
    justify-content: center;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .category-listing-heading,
  .category-products-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .category-listing-total {
    align-self: start;
  }

  .category-listing-heading {
    gap: 1rem;
    margin-top: .4rem;
  }

  .category-listing-heading h1 {
    margin-bottom: .45rem;
  }

  .category-listing-heading .lead {
    font-size: .95rem;
    line-height: 1.55;
  }

  .category-banner {
    aspect-ratio: 16 / 7.5;
    margin-top: 1rem;
    border-radius: .8rem;
  }

  .product-detail-summary {
    position: static;
  }

  .product-detail-actions,
  .product-brochure-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .quote-section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .quote-item {
    grid-template-columns: 5.5rem minmax(0, 1fr);
  }

  .quote-item-controls {
    grid-column: 1 / -1;
  }

  .public-status-card .btn,
  .public-empty-state .btn,
  .quote-section-heading .btn {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .product-card,
  .category-card {
    transition: transform .16s ease, box-shadow .16s ease;
  }

  .product-card:hover,
  .category-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--pq-shadow);
  }
}

/* demo1-inspired public storefront refresh */
:root {
  --pq-ink: #111827;
  --pq-muted: #64748b;
  --pq-primary: #1a73e8;
  --pq-primary-strong: #0b2d5f;
  --pq-accent: #ff6b35;
  --pq-surface: #ffffff;
  --pq-surface-subtle: #f8fafc;
  --pq-border: #e2e8f0;
  --pq-whatsapp: #15803d;
  --pq-focus: #ff6b35;
  --pq-radius-sm: .75rem;
  --pq-radius: 1.1rem;
  --pq-shadow: 0 1rem 2.5rem rgba(15, 23, 42, .10);
  --pq-soft-shadow: 0 .6rem 1.75rem rgba(15, 23, 42, .06);
}

.public-site {
  color: var(--pq-ink);
  background: var(--pq-surface);
}

.public-site .btn {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.public-site .btn:hover {
  transform: translateY(-1px);
}

.public-site .btn-primary {
  --bs-btn-bg: var(--pq-primary);
  --bs-btn-border-color: var(--pq-primary);
  --bs-btn-hover-bg: var(--pq-primary-strong);
  --bs-btn-hover-border-color: var(--pq-primary-strong);
  box-shadow: 0 .75rem 1.5rem rgba(26, 115, 232, .22);
}

.public-site .btn-outline-primary {
  --bs-btn-color: var(--pq-primary);
  --bs-btn-border-color: #bfdbfe;
  --bs-btn-hover-bg: #eef4ff;
  --bs-btn-hover-border-color: #bfdbfe;
  --bs-btn-hover-color: var(--pq-primary);
  background: #fff;
}

.public-utility-bar {
  padding: .48rem 0;
  color: #fff;
  background: linear-gradient(90deg, #061226, #0b2d5f, #061226);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: 0;
}

.public-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, .95);
  box-shadow: 0 .65rem 1.9rem rgba(15, 23, 42, .06);
}

.public-header-main {
  padding-top: .95rem;
  padding-bottom: .95rem;
}

.public-brand {
  gap: .75rem;
}

.public-brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  background: linear-gradient(135deg, var(--pq-primary), var(--pq-primary-strong));
  border-radius: .95rem;
  box-shadow: 0 .75rem 1.4rem rgba(26, 115, 232, .25);
  letter-spacing: 0;
}

.public-brand-logo {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
  border-radius: .95rem;
}

.public-brand-copy strong {
  color: #0b1220;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.public-brand-copy small {
  color: var(--pq-muted);
  font-weight: 800;
  letter-spacing: 0;
}

.public-menu-button,
.quote-cart-link {
  background: #fff;
  border: 1px solid #dbe3ef;
  border-radius: .9rem;
  box-shadow: 0 .45rem 1.15rem rgba(15, 23, 42, .06);
}

.public-menu-button {
  color: #0f172a;
}

.public-search {
  width: min(100%, 29rem);
}

.public-search .input-group {
  min-height: 3rem;
  overflow: visible;
  background: #fff;
  border-color: #dbe3ef;
  border-radius: 999px;
  box-shadow: 0 .6rem 1.6rem rgba(15, 23, 42, .07);
}

.public-search .input-group:focus-within {
  border-color: var(--pq-primary);
  box-shadow: 0 0 0 .25rem rgba(26, 115, 232, .12), 0 .75rem 1.75rem rgba(15, 23, 42, .08);
}

.public-search .input-group-text {
  border-radius: 999px 0 0 999px;
}

.public-search .form-control {
  color: var(--pq-ink);
  font-weight: 650;
}

.public-search .btn {
  margin: .25rem;
  min-height: 2.35rem;
  border-radius: 999px;
}

.quote-cart-link {
  min-height: 2.75rem;
  padding: .45rem .75rem;
  color: #0f172a !important;
}

.quote-cart-count {
  background: #ef4444;
  box-shadow: 0 .45rem 1rem rgba(239, 68, 68, .26);
  font-weight: 900;
}

.public-nav {
  border-top: 1px solid #edf2f7;
  border-bottom: 0;
}

.public-nav .nav {
  gap: .35rem;
}

.public-nav .nav-link {
  margin: .55rem 0;
  padding: .55rem .85rem;
  color: #0f172a;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 850;
  letter-spacing: 0;
}

.public-nav .nav-link:hover,
.public-nav .nav-link:focus-visible {
  color: var(--pq-primary);
  background: #eef4ff;
}

.public-nav .nav-enquiry {
  color: var(--pq-primary);
  background: #eef4ff;
  border: 1px solid #bfdbfe;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 255, 255, .18), transparent 18rem),
    linear-gradient(135deg, #0b1220 0%, #0b2d5f 52%, #1a73e8 100%);
  border-bottom: 0;
}

.home-hero .public-eyebrow {
  color: #bfdbfe;
}

.home-hero h1 {
  max-width: 44rem;
  color: #fff;
  font-size: 3.2rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.home-hero .lead {
  max-width: 42rem;
  color: #e0edff;
  font-size: 1.12rem;
}

.home-hero .btn-outline-primary {
  color: #fff;
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .32);
  box-shadow: none;
}

.home-hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  min-height: 25rem;
}

.home-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 11rem;
  object-fit: cover;
  background: #f8fafc;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 1.35rem;
  box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, .24);
}

.home-hero-visual img:first-child {
  grid-row: span 2;
}

.home-hero-offer {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 15rem;
  padding: 1rem;
  color: #0f172a;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 1rem;
  box-shadow: var(--pq-shadow);
}

.home-hero-offer strong,
.home-hero-offer span {
  display: block;
}

.home-hero-offer strong {
  color: var(--pq-primary);
  font-size: 1.05rem;
  font-weight: 900;
}

.home-hero-offer span {
  color: var(--pq-muted);
  font-size: .86rem;
  font-weight: 650;
}

.home-section {
  padding: 3.5rem 0;
}

.home-section-muted {
  background: var(--pq-surface-subtle);
  border-color: var(--pq-border);
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  color: #0b1220;
  font-size: 2.05rem;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading a {
  color: var(--pq-primary);
  font-weight: 900;
  text-decoration: none;
}

.public-eyebrow,
.product-card-category,
.category-card-count {
  color: var(--pq-primary);
  font-weight: 900;
  letter-spacing: .04em;
}

.product-card,
.category-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.35rem;
  box-shadow: var(--pq-soft-shadow);
}

.product-card-media {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #dbeafe, #f8fafc);
}

.category-card-media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #eef4ff, #f8fafc);
}

.product-card-media img,
.category-card-media img {
  transition: transform .26s ease;
}

.product-card:hover .product-card-media img,
.category-card:hover .category-card-media img {
  transform: scale(1.035);
}

.product-card-badges,
.category-card-featured {
  top: .85rem;
  left: .85rem;
}

.product-card-badges .badge,
.category-card-featured,
.product-card .badge {
  border-radius: 999px;
  font-weight: 900;
}

.product-card .card-body,
.category-card .card-body {
  padding: 1.05rem;
}

.product-card-title,
.category-card h2,
.category-card h3,
.category-card h4 {
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.product-card-title a,
.category-card h2 a,
.category-card h3 a,
.category-card h4 a {
  color: #111827;
}

.product-card-description,
.category-card .text-body-secondary,
.product-card-sku,
.category-card-parent {
  color: var(--pq-muted) !important;
}

.product-card-price {
  color: #0b1220;
  font-size: 1.08rem;
  font-weight: 900;
}

.btn-whatsapp-outline {
  color: var(--pq-whatsapp);
  background: #ecfdf5;
  border-color: #bbf7d0;
  border-radius: 999px;
  font-weight: 800;
}

.btn-whatsapp-outline:hover,
.btn-whatsapp-outline:focus-visible {
  color: #fff;
  background: var(--pq-whatsapp);
  border-color: var(--pq-whatsapp);
}

.home-benefit,
.business-trust-grid div,
.home-faq-list details,
.public-empty-state,
.public-status-card,
.product-detail-summary,
.product-detail-gallery,
.product-brochure-panel,
.quote-item,
.quote-summary-card,
.filters-panel,
.category-products-toolbar {
  border-color: #e5e7eb;
  border-radius: 1.25rem;
  box-shadow: var(--pq-soft-shadow);
}

.home-enquiry-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--pq-primary), #0f172a);
}

.home-enquiry-cta .public-eyebrow,
.home-enquiry-cta p {
  color: #dbeafe;
}

.home-enquiry-cta h2 {
  color: #fff;
  letter-spacing: 0;
}

.public-footer {
  color: #cbd5e1;
  background: linear-gradient(180deg, #08111f 0%, #0b1220 58%, #060b14 100%);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.public-footer .container-xl.py-5 {
  padding-top: 3.25rem !important;
  padding-bottom: 3rem !important;
}

.public-footer-summary {
  color: #a8b3c4;
}

.public-footer h2 {
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
}

.public-footer a,
.public-footer li a {
  color: #cbd5e1;
  text-decoration: none;
}

.public-footer a:hover,
.public-footer li a:hover {
  color: #fff;
  text-decoration: none;
}

.public-footer .public-brand-copy strong,
.public-footer .public-brand-copy small {
  color: #fff;
}

.public-footer-bottom {
  color: #94a3b8;
  background: rgba(0, 0, 0, .22);
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.whatsapp-float {
  border-radius: 999px;
  box-shadow: 0 1rem 2rem rgba(21, 128, 61, .25);
}

@media (max-width: 991.98px) {
  .home-hero {
    padding: 3rem 0;
  }

  .home-hero h1 {
    font-size: 2.45rem;
  }

  .home-hero-visual {
    min-height: 19rem;
  }
}

@media (max-width: 575.98px) {
  .public-header-main {
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .home-hero h1,
  .section-heading h2 {
    font-size: 2rem;
  }

  .home-hero-visual {
    min-height: 0;
  }

  .home-hero-visual img {
    min-height: 8rem;
    border-radius: 1rem;
  }

  .home-hero-offer {
    position: static;
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .public-site .btn,
  .product-card,
  .category-card,
  .public-footer a {
    transition: transform .18s ease, box-shadow .18s ease, color .18s ease, background-color .18s ease;
  }

  .product-card:hover,
  .category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pq-shadow);
  }
}

/* demo1 closer pass */
.public-site {
  font-size: 14px;
}

.public-utility-bar {
  height: 2.15rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}

.public-utility-bar .container-xl {
  font-size: .72rem;
}

.public-header {
  position: sticky;
  top: 0;
}

.public-header-main {
  padding-top: .7rem;
  padding-bottom: .7rem;
}

.public-header-main > .d-flex {
  min-height: 4rem;
}

.public-brand {
  flex: 0 0 auto;
}

.public-brand-mark {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: .9rem;
}

.public-brand-copy strong {
  font-size: 1.05rem;
}

.public-brand-copy small {
  font-size: .67rem;
}

.public-inline-nav {
  align-items: center;
  gap: .1rem;
  margin-left: .35rem;
}

.public-inline-nav a {
  padding: .55rem .55rem;
  color: #0f172a;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 900;
  text-decoration: none;
}

.public-inline-nav a:hover,
.public-inline-nav a:focus-visible {
  color: var(--pq-primary);
  background: #eef4ff;
}

.public-header-search {
  display: flex;
  justify-content: flex-end;
}

.public-search {
  width: min(100%, 25rem);
  margin-inline: 0;
}

.public-search .input-group {
  min-height: 2.75rem;
  border-radius: 999px;
}

.public-search .input-group-text,
.public-search .form-control,
.public-search .btn {
  min-height: 2.45rem;
}

.public-search .form-control {
  font-size: .78rem;
}

.public-search .btn {
  padding-inline: .85rem;
  font-size: .78rem;
}

.quote-cart-link {
  min-height: 2.55rem;
  padding: .45rem .75rem;
  border-radius: .85rem;
}

.quote-cart-label {
  font-size: .84rem;
}

.home-hero {
  min-height: 31.25rem;
  padding: 0;
  display: grid;
  align-items: center;
  background: linear-gradient(120deg, #0b1220 0%, #164a91 54%, #1a73e8 100%);
}

.home-hero-slide {
  position: relative;
  min-height: 31.25rem;
  display: flex;
  align-items: center;
}

.home-hero-panel {
  width: min(31rem, 100%);
  padding: 1.6rem;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: .9rem;
  backdrop-filter: blur(8px);
}

.home-hero-panel .public-eyebrow {
  margin-bottom: .55rem;
  color: #bfdbfe;
  font-size: .75rem;
}

.home-hero h1 {
  margin: 0 0 .75rem;
  max-width: 29rem;
  font-size: clamp(2.15rem, 4.2vw, 3.55rem);
  font-weight: 900;
}

.home-hero .lead {
  max-width: 28rem;
  margin-bottom: 1rem;
  font-size: .9rem;
  line-height: 1.5;
}

.home-hero .btn {
  min-height: 2.4rem;
  padding: .55rem 1rem;
  font-size: .78rem;
}

.home-hero-orb {
  position: absolute;
  right: 8%;
  top: 50%;
  width: min(29vw, 20rem);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
}

.home-category-section {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

.home-products-section {
  padding-top: 2rem;
}

.section-heading-centered {
  justify-content: center;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: .45rem;
  font-size: 2rem;
}

.section-heading p {
  margin: 0;
  color: var(--pq-muted);
  font-size: .86rem;
}

.home-category-grid .category-card {
  min-height: 8.7rem;
  text-align: center;
  border-radius: .85rem;
}

.home-category-grid .category-card-media {
  width: 3.8rem;
  height: 3.8rem;
  margin: .9rem auto .2rem;
  border-radius: .8rem;
  aspect-ratio: auto;
}

.home-category-grid .category-card .card-body {
  padding: .35rem .75rem .85rem;
}

.home-category-grid .category-card-parent,
.home-category-grid .category-card .text-body-secondary,
.home-category-grid .category-card .btn {
  display: none;
}

.home-category-grid .category-card-count {
  margin-bottom: 0 !important;
  color: var(--pq-muted);
  font-size: .72rem;
  letter-spacing: 0;
  text-transform: none;
}

.home-category-grid .category-card h2,
.home-category-grid .category-card h3,
.home-category-grid .category-card h4 {
  margin: .15rem 0 .2rem;
  font-size: .9rem;
}

.home-promo-section {
  padding: 0 0 3rem;
}

.home-promo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.home-promo-card {
  min-height: 12.8rem;
  padding: 1.7rem;
  color: #fff;
  background: linear-gradient(135deg, var(--pq-primary), #0f172a);
  border-radius: 1rem;
}

.home-promo-card-hot {
  background: linear-gradient(135deg, var(--pq-accent), #7c2d12);
}

.home-promo-card h2 {
  margin: 0 0 .7rem;
  font-size: 1.2rem;
  font-weight: 900;
}

.home-promo-card p {
  color: #e0edff;
  font-size: .85rem;
}

.home-promo-card strong {
  display: block;
  margin-top: 1rem;
  font-size: .85rem;
}

.home-promo-card .btn {
  min-height: 2.35rem;
  padding: .55rem 1rem;
  font-size: .76rem;
}

.home-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
  margin-bottom: 1.4rem;
}

.home-tabs span {
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  padding: .45rem .85rem;
  color: #0f172a;
  background: #fff;
  border: 1px solid #dbe3ef;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 900;
}

.home-tabs .is-active {
  color: #fff;
  background: var(--pq-primary);
  border-color: var(--pq-primary);
}

.product-card {
  border-radius: .95rem;
}

.product-card-media {
  aspect-ratio: 4 / 3;
}

.product-card .card-body {
  padding: .9rem;
}

.product-card-category {
  margin-bottom: .2rem !important;
  color: #64748b;
  font-size: .66rem;
  letter-spacing: .02em;
}

.product-card-title {
  margin-bottom: .35rem;
  font-size: .9rem;
  font-weight: 900;
}

.product-card-sku {
  margin-bottom: .3rem;
  color: #94a3b8;
  font-size: .66rem;
  text-transform: uppercase;
}

.product-card-rating {
  margin-bottom: .45rem;
  color: #f59e0b;
  font-size: .72rem;
  font-weight: 800;
}

.product-card-description {
  display: none;
}

.product-card-price {
  margin-bottom: .7rem !important;
  font-size: .92rem;
}

.product-card .btn-primary {
  min-height: 2.35rem;
  padding: .5rem .75rem;
  font-size: .74rem;
}

.home-trust-section {
  padding: 1.15rem 0;
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.home-trust-grid div {
  display: grid;
  gap: .1rem;
  font-size: .78rem;
}

.home-trust-grid strong {
  color: #0f172a;
  font-weight: 900;
}

.home-trust-grid span {
  color: var(--pq-muted);
}

@media (max-width: 1199.98px) {
  .public-inline-nav {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .home-hero,
  .home-hero-slide {
    min-height: 25rem;
  }

  .home-hero-orb {
    right: -5rem;
    width: 15rem;
  }

  .home-promo-grid,
  .home-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* demo1 pixel pass */
.public-site {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.container-xl {
  width: min(1180px, calc(100% - 32px));
  max-width: none !important;
  padding-right: 0;
  padding-left: 0;
}

.public-main > .container-xl:first-child {
  display: none;
}

.public-utility-bar {
  height: 36px;
  padding: 0;
  justify-content: center;
  color: #fff;
  background: #0b1220;
  font-weight: 800;
}

.public-utility-bar .container-xl {
  overflow: hidden;
  font-size: .7rem;
  text-overflow: clip;
}

.public-header {
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: none;
}

.public-header-main {
  padding-top: 0;
  padding-bottom: 0;
}

.public-header-main > .d-flex {
  height: 76px;
  min-height: 76px;
  gap: 18px !important;
}

.public-brand {
  min-width: max-content;
  gap: .62rem;
}

.public-brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  font-size: .95rem;
  font-weight: 900;
}

.public-brand-copy {
  line-height: 1;
}

.public-brand-copy strong {
  color: var(--pq-primary);
  font-size: 1.34rem;
  font-weight: 900;
  letter-spacing: .0em;
}

.public-brand-copy small {
  margin-top: 4px;
  color: #64748b;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.public-inline-nav {
  flex: 0 0 auto;
  gap: 4px;
  margin-left: 0;
}

.public-inline-nav a {
  padding: 26px 10px;
  color: #0f172a;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: .78rem;
  font-weight: 800;
}

.public-inline-nav a:hover {
  color: var(--pq-primary);
  background: transparent;
}

.public-header-search {
  min-width: 0;
  justify-content: stretch;
}

.public-search {
  width: 100%;
  max-width: 430px;
}

.public-search .input-group {
  height: 48px;
  min-height: 48px;
  padding: 4px 6px;
  align-items: center;
  overflow: visible;
  background: #f3f6fb;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  box-shadow: none;
}

.public-search .input-group-text {
  width: 24px;
  min-height: auto;
  padding: 0 0 0 8px;
  color: #64748b;
  background: transparent;
}

.public-search .form-control {
  min-height: auto;
  padding: 10px 10px;
  border: 0;
  background: transparent;
  font-size: .78rem;
  font-weight: 700;
}

.public-search .btn {
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  overflow: hidden;
  border-radius: 50%;
  font-size: 0;
  box-shadow: none;
}

.public-search .btn::before {
  content: ">";
  font-size: 1rem;
  line-height: 1;
}

.quote-cart-link {
  min-width: 48px;
  height: 44px;
  min-height: 44px;
  padding: 10px 12px;
  gap: 0;
  background: #eef4ff;
  border: 0;
  border-radius: 14px;
  box-shadow: none;
}

.quote-cart-link svg {
  width: 21px;
  height: 21px;
}

.quote-cart-label {
  display: none !important;
}

.quote-cart-count {
  position: absolute;
  right: -7px;
  top: -7px;
  min-width: 22px;
  height: 22px;
  background: var(--pq-accent);
  font-size: .8rem;
}

.home-hero,
.home-hero-slide {
  height: 500px;
  min-height: 500px;
}

.home-hero {
  background: linear-gradient(110deg, #0b1220 0%, #174a91 55%, #1a73e8 100%);
}

.home-hero-panel {
  width: min(560px, calc(100% - 36px));
  padding: 18px;
  border-radius: 18px;
}

.home-hero-panel .public-eyebrow {
  margin: 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.home-hero h1 {
  margin: 8px 0;
  max-width: 33rem;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 1.05;
  font-weight: 900;
}

.home-hero .lead {
  max-width: 31rem;
  margin-bottom: 1rem;
  color: #fff;
  font-size: .84rem;
}

.home-hero .btn {
  min-height: 36px;
  padding: 10px 14px;
  font-size: .75rem;
}

.home-hero .btn-primary {
  min-width: 10.8rem;
  color: #fff !important;
  font-size: .82rem;
  font-weight: 900;
}

.home-hero .btn-primary::before {
  content: none !important;
}

.home-hero-orb {
  right: 9%;
  width: 320px;
  background: rgba(255, 255, 255, .18);
}

.home-section {
  padding: clamp(18px, 3vw, 48px) 0;
}

.home-category-section {
  padding-top: 24px;
  padding-bottom: 36px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0 0 6px;
  color: #111827;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.2;
}

.section-heading p {
  font-size: .85rem;
}

@media (min-width: 1200px) {
  .row-cols-xl-8 > * {
    flex: 0 0 auto;
    width: 12.5%;
  }
}

.home-category-grid {
  --bs-gutter-x: 14px;
  --bs-gutter-y: 14px;
}

.home-category-grid .category-card {
  min-height: 141px;
  padding: 0;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, .05);
}

.home-category-grid .category-card-media {
  width: 56px;
  height: 56px;
  margin: 22px auto 0;
  background: #eef4ff;
  border-radius: 16px;
}

.home-category-grid .category-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.home-category-grid .category-card .card-body {
  padding: 8px 10px 14px;
}

.home-category-grid .category-card h2,
.home-category-grid .category-card h3,
.home-category-grid .category-card h4 {
  margin: 0 0 3px;
  font-size: .9rem;
  line-height: 1.15;
}

.home-category-grid .category-card-count {
  font-size: .78rem;
}

.home-promo-section {
  padding-bottom: 42px;
}

.home-promo-grid {
  gap: 16px;
}

.home-promo-card {
  min-height: 194px;
  padding: 28px;
  border-radius: 18px;
}

.home-promo-card h2 {
  font-size: 1.3rem;
}

.home-products-section {
  padding-top: 18px;
}

.home-tabs {
  gap: 10px;
  margin-bottom: 24px;
}

.home-tabs span {
  min-height: 38px;
  padding: 10px 14px;
  font-size: .78rem;
  font-weight: 800;
}

.home-products-section .row {
  --bs-gutter-x: 18px;
  --bs-gutter-y: 18px;
}

.product-card {
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}

.product-card-media {
  aspect-ratio: 3 / 4;
  background: #f8fafc;
}

.product-card-media img {
  object-fit: cover;
}

.product-card .card-body {
  padding: 16px;
}

.product-card-category {
  font-size: .78rem;
  font-weight: 700;
}

.product-card-title {
  margin: 6px 0;
  font-size: 1.05rem;
}

.product-card-sku {
  font-size: .72rem;
}

.product-card-rating {
  font-size: .82rem;
}

.product-card-price {
  margin: 8px 0 14px !important;
  font-size: 1.1rem;
}

.product-card .btn-primary {
  min-height: 40px;
  padding: 10px 14px;
  font-size: .8rem;
}

.home-trust-section {
  padding: 22px 0;
}

.home-trust-grid {
  gap: 14px;
}

.home-trust-grid div {
  gap: 2px;
  font-size: .9rem;
}

.public-footer.footer--premium {
  background: linear-gradient(180deg, #08111f 0%, #0b1220 55%, #060b14 100%);
}

.footer-service__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 22px 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 1.55fr 1fr;
  gap: 30px;
  padding: 44px 0 30px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.footer-bottom__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 18px 0;
}

@media (max-width: 1199.98px) {
  .public-header-main > .d-flex {
    height: auto;
    min-height: 72px;
    padding: 10px 0;
  }

  .public-search {
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .home-hero,
  .home-hero-slide {
    height: 300px;
    min-height: 300px;
  }

  .home-hero-panel {
    width: min(560px, calc(100% - 36px));
  }

  .home-hero-orb {
    display: none;
  }

  .footer-service__grid,
  .footer-main,
  .footer-links,
  .footer-bottom__inner {
    grid-template-columns: 1fr;
  }
}

/* DB-backed public navigation and professional footer */
.public-header-main {
  position: relative;
}

.public-mega-nav {
  position: static;
}

.public-mega-toggle {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-height: 2.3rem;
  padding: .55rem .75rem;
  color: #0f172a;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
}

.public-mega-toggle:hover,
.public-mega-toggle:focus-visible,
.public-mega-toggle[aria-expanded="true"] {
  color: var(--pq-primary);
  background: #eef4ff;
}

.public-mega-menu {
  width: 100%;
  max-height: min(74vh, 36rem);
  overflow-y: auto;
  padding: 1rem;
  border: 1px solid #dbe7f6;
  border-radius: 1.25rem;
  box-shadow: 0 1.25rem 3.5rem rgba(15, 23, 42, .18);
}

.public-mega-nav .dropdown-menu[data-bs-popper] {
  top: calc(100% - .15rem) !important;
  right: 0 !important;
  left: 0 !important;
  transform: none !important;
}

.public-mega-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .9rem;
  padding: .8rem .9rem;
  color: #0f172a;
  background: linear-gradient(135deg, #eef4ff, #f8fbff);
  border: 1px solid #dbeafe;
  border-radius: 1rem;
}

.public-mega-head strong,
.public-mega-head small {
  display: block;
}

.public-mega-head small {
  margin-top: .2rem;
  color: #64748b;
  font-size: .82rem;
}

.public-mega-head a {
  padding: .45rem .7rem;
  color: var(--pq-primary);
  background: #fff;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

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

.public-mega-card {
  min-width: 0;
  padding: .75rem;
  background: #fff;
  border: 1px solid #e5edf7;
  border-radius: 1rem;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.public-mega-card:hover {
  transform: translateY(-2px);
  border-color: #bfdbfe;
  box-shadow: 0 .85rem 1.75rem rgba(15, 23, 42, .08);
}

.public-mega-root {
  display: grid;
  grid-template-columns: 3.4rem minmax(0, 1fr);
  gap: .7rem;
  align-items: center;
  padding: 0 !important;
  color: #0f172a !important;
  background: transparent !important;
  border-radius: 0 !important;
  text-decoration: none;
}

.public-mega-root img {
  width: 3.4rem;
  height: 3.4rem;
  object-fit: cover;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: .9rem;
}

.public-mega-root strong,
.public-mega-root small {
  display: block;
}

.public-mega-root strong {
  overflow: hidden;
  color: #0f172a;
  font-size: .88rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.public-mega-root small {
  margin-top: .2rem;
  color: #64748b;
  font-size: .74rem;
  font-weight: 700;
}

.public-mega-children {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .7rem;
}

.public-mega-children a {
  max-width: 100%;
  padding: .32rem .5rem !important;
  color: #334155 !important;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 750;
  text-decoration: none;
}

.public-mega-children a:hover,
.public-mega-children a:focus-visible {
  color: var(--pq-primary) !important;
  background: #eef4ff;
}

.public-mega-empty {
  display: grid;
  gap: .25rem;
  padding: 1.25rem;
  color: #475569;
  text-align: center;
}

.public-mobile-category-list {
  display: grid;
  gap: .65rem;
}

.public-mobile-category {
  padding: .8rem;
  border: 1px solid #e5edf7;
  border-radius: 1rem;
  background: #fff;
}

.public-mobile-root {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  color: #0f172a;
  font-weight: 850;
  text-decoration: none;
}

.public-mobile-root small {
  color: #64748b;
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
}

.public-mobile-children {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .65rem;
}

.public-mobile-children a {
  padding: .32rem .55rem;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}

.public-footer.footer--professional {
  margin-top: 4rem;
  color: #dbe7f6;
  background:
    radial-gradient(circle at 12% 20%, rgba(37, 99, 235, .28), transparent 18rem),
    radial-gradient(circle at 82% 14%, rgba(16, 185, 129, .16), transparent 16rem),
    linear-gradient(180deg, #071426 0%, #08111f 56%, #050b13 100%);
}

.footer--professional .footer-service {
  border-bottom: 1px solid rgba(226, 232, 240, .12);
}

.footer--professional .footer-service__grid > div {
  display: grid;
  grid-template-columns: 2.45rem 1fr;
  grid-template-rows: auto auto;
  column-gap: .75rem;
  align-items: center;
  padding: .9rem;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 1rem;
}

.footer--professional .footer-service__grid span {
  grid-row: 1 / 3;
  display: inline-grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  color: #fff;
  background: var(--pq-primary);
  border-radius: .85rem;
  font-weight: 900;
}

.footer--professional .footer-service__grid strong {
  color: #fff;
  font-size: .92rem;
}

.footer--professional .footer-service__grid small {
  color: #9fb2c9;
  font-size: .78rem;
}

.footer--professional .footer-brand,
.footer-business-card,
.footer-contact-card,
.footer-store-card {
  min-width: 0;
}

.footer--professional .public-footer-summary {
  margin: 1rem 0;
  color: #aebfd4;
  font-size: .94rem;
  line-height: 1.75;
}

.footer-contact-card,
.footer-store-card,
.footer-business-card {
  padding: 1rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1rem;
}

.footer-contact-card {
  display: grid;
  gap: .35rem;
}

.footer-contact-card strong,
.footer-store-card strong,
.footer-business-card h2 {
  color: #fff;
}

.footer-contact-card a,
.footer-store-card a {
  color: #dbeafe;
  text-decoration: none;
  word-break: break-word;
}

.footer-contact-card a:hover,
.footer-store-card a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .9rem;
}

.footer-social a {
  padding: .4rem .65rem;
  color: #dbeafe;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-social a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .13);
}

.footer--professional .footer-accordion {
  padding: .9rem;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .085);
  border-radius: 1rem;
}

.footer--professional .footer-accordion summary {
  margin-bottom: .75rem;
  color: #fff;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .02em;
}

.footer--professional .footer-accordion a {
  display: block;
  padding: .32rem 0;
  color: #b9c9d8;
  font-size: .86rem;
  font-weight: 650;
  text-decoration: none;
}

.footer--professional .footer-accordion a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-business-card {
  align-self: start;
}

.footer-badge {
  display: inline-flex;
  margin-bottom: .75rem;
  padding: .32rem .62rem;
  color: #bfdbfe;
  background: rgba(37, 99, 235, .18);
  border: 1px solid rgba(191, 219, 254, .18);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 900;
}

.footer-business-card h2 {
  margin-bottom: .65rem;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.footer-business-card p,
.footer-store-card p {
  color: #aebfd4;
  line-height: 1.65;
}

.footer-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 1rem 0;
}

.footer-cta-row .btn {
  border-radius: .8rem;
  font-weight: 800;
}

.footer-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  padding: 0 0 1.35rem;
}

.footer-trust-row div {
  padding: .9rem 1rem;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 1rem;
}

.footer-trust-row strong,
.footer-trust-row span {
  display: block;
}

.footer-trust-row strong {
  color: #fff;
  font-size: .9rem;
}

.footer-trust-row span {
  margin-top: .15rem;
  color: #9fb2c9;
  font-size: .78rem;
}

.footer--professional .footer-bottom {
  border-top: 1px solid rgba(226, 232, 240, .12);
  background: rgba(0, 0, 0, .18);
}

.footer--professional .footer-bottom__inner {
  color: #9fb2c9;
}

.footer--professional .footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.footer--professional .footer-bottom a {
  color: #cfe0f4;
  text-decoration: none;
}

.footer--professional .footer-bottom a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 1199.98px) {
  .public-mega-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .public-mega-menu {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .footer-trust-row {
    grid-template-columns: 1fr;
  }
}

/* Rajesh requested public typography/spacing refinements */
.public-inline-nav a {
  padding: 26px 10px;
  color: #0f172a;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: .88rem;
  font-weight: 600;
}

.public-utility-bar {
  color: #fff;
  font-weight: 600;
}

.footer--professional .footer-accordion summary {
  margin-bottom: .75rem;
  color: #fff;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.product-card-title {
  margin-bottom: .35rem;
  font-size: .9rem;
  font-weight: 600;
}

.product-card-price {
  color: #111;
  font-size: 1.08rem;
  font-weight: 650;
}

/* Home page premium polish: category shortcuts and footer */
.home-category-section {
  position: relative;
  padding-top: 34px;
  padding-bottom: 44px;
}

.home-category-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background:
    radial-gradient(circle at 85% 12%, rgba(24, 119, 242, .14), transparent 18rem),
    linear-gradient(135deg, #f8fbff 0%, #eff8ff 52%, #ffffff 100%);
  border: 1px solid #dbeafe;
  border-radius: 1.65rem;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .08);
}

.home-category-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(24, 119, 242, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(24, 119, 242, .035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
}

.home-category-showcase > * {
  position: relative;
  z-index: 1;
}

.home-category-showcase-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.home-category-showcase-heading h2 {
  margin-bottom: .2rem;
  color: #101828;
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1;
}

.home-category-showcase-heading p:not(.public-eyebrow) {
  max-width: 34rem;
  margin: 0;
  color: #52637a;
  font-size: .98rem;
}

.home-category-showcase-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.home-category-tile {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 178px;
  padding: 1rem;
  color: #101828;
  background: rgba(255, 255, 255, .92);
  border: 1px solid #dbe5f2;
  border-radius: 1.25rem;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .065);
}

.home-category-tile:hover {
  color: #101828;
  border-color: #93c5fd;
  box-shadow: 0 18px 40px rgba(24, 119, 242, .14);
  transform: translateY(-2px);
}

.home-category-tile__visual {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  margin-bottom: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  border: 1px solid #bfdbfe;
  border-radius: 1.15rem;
}

.home-category-tile__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-category-tile__content {
  display: grid;
  align-content: end;
  gap: .25rem;
}

.home-category-tile__content small {
  color: #1877f2;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.home-category-tile__content strong {
  color: #101828;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -.015em;
  line-height: 1.22;
}

.home-category-tile__arrow {
  position: absolute;
  top: .85rem;
  right: .85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  color: #1877f2;
  background: #eff6ff;
  border-radius: 999px;
}

.home-category-tile__arrow span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.public-footer.footer--professional {
  margin-top: 3rem;
  background:
    radial-gradient(circle at 16% 24%, rgba(24, 119, 242, .28), transparent 20rem),
    radial-gradient(circle at 82% 8%, rgba(16, 185, 129, .13), transparent 18rem),
    linear-gradient(180deg, #071426 0%, #08111f 58%, #050b13 100%);
}

.footer--professional .footer-service {
  padding: 1.2rem 0;
}

.footer--professional .footer-service__grid {
  gap: .85rem;
}

.footer--professional .footer-service__grid > div {
  padding: .82rem .95rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, .058);
}

.footer-main {
  grid-template-columns: minmax(260px, .95fr) minmax(390px, 1.45fr) minmax(250px, .82fr);
  gap: 1.2rem;
  padding-top: 2.2rem;
  padding-bottom: 2rem;
}

.footer-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.footer--professional .footer-accordion {
  min-height: auto;
  padding: 1.05rem 1.15rem;
}

.footer--professional .footer-accordion summary {
  margin-bottom: .6rem;
  font-size: .95rem;
  font-weight: 800;
}

.footer--professional .footer-accordion a {
  padding: .28rem 0;
  font-size: .86rem;
  font-weight: 650;
}

.footer-business-card {
  padding: 1.05rem;
  border-radius: 1.2rem;
}

.footer-business-card h2 {
  max-width: 15rem;
  margin-bottom: .55rem;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.1;
}

.footer-business-card p,
.footer-store-card p {
  margin-bottom: .75rem;
  font-size: .9rem;
  line-height: 1.55;
}

.footer-cta-row {
  margin: .85rem 0;
}

.footer-store-card {
  padding: .85rem;
  border-radius: 1rem;
}

.footer-trust-row {
  gap: .75rem;
  padding-bottom: 1.15rem;
}

.footer-trust-row div {
  padding: .8rem .95rem;
}

@media (max-width: 1199.98px) {
  .home-category-showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .home-category-section {
    padding-top: 22px;
    padding-bottom: 32px;
  }

  .home-category-showcase {
    padding: 1rem;
    border-radius: 1.35rem;
  }

  .home-category-showcase-heading {
    align-items: start;
    margin-bottom: 1rem;
  }

  .home-category-showcase-grid {
    grid-template-columns: 1fr;
    gap: .8rem;
  }

  .home-category-tile {
    grid-template-columns: 86px 1fr 2.15rem;
    grid-template-rows: auto;
    align-items: center;
    min-height: 104px;
    padding: .78rem;
  }

  .home-category-tile__visual {
    width: 72px;
    height: 72px;
    margin: 0;
  }

  .home-category-tile__arrow {
    position: static;
    justify-self: end;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* Home DB-driven product filter polish */
.home-tabs button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: .4rem;
  padding: 10px 14px;
  color: #0f172a;
  background: #fff;
  border: 1px solid #dbe3ef;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .05);
  transition: color .15s ease, background-color .15s ease, border-color .15s ease, transform .15s ease;
}

.home-tabs button:hover,
.home-tabs button:focus-visible {
  color: var(--pq-primary);
  background: #eef4ff;
  border-color: #bfdbfe;
}

.home-tabs button.is-active {
  color: #fff;
  background: var(--pq-primary);
  border-color: var(--pq-primary);
}

.home-tabs button span {
  display: inline-grid;
  min-width: 1.3rem;
  height: 1.3rem;
  place-items: center;
  padding: 0 .25rem;
  color: inherit;
  background: rgba(255, 255, 255, .18);
  border: 0;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
}

.home-tabs button:not(.is-active) span {
  background: #eef2f7;
}

[data-home-product-card][hidden] {
  display: none !important;
}

.home-view-all-products {
  display: inline-flex;
  min-width: 13rem;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

/* Footer finishing pass */
.footer--professional .footer-main {
  grid-template-columns: minmax(300px, 1.2fr) minmax(360px, 1.35fr) minmax(280px, .95fr);
  align-items: start;
  gap: 2rem;
  padding-top: 2.25rem;
  padding-bottom: 1.75rem;
}

.footer--professional .footer-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: .75rem;
}

.footer--professional .footer-accordion {
  min-height: 0;
  height: auto;
  padding: 1rem;
}

.footer--professional .footer-accordion summary {
  display: block;
  list-style: none;
  cursor: default;
  user-select: none;
}

.footer--professional .footer-accordion summary::-webkit-details-marker {
  display: none;
}

.footer--professional .footer-accordion summary::marker {
  content: "";
}

.footer--professional .footer-accordion a {
  padding: .28rem 0;
  line-height: 1.45;
}

.footer--professional .public-brand-footer .public-brand-copy strong {
  font-size: 1.08rem;
  letter-spacing: .06em;
  word-spacing: .08em;
}

.footer--professional .footer-business-card {
  padding: 1.05rem;
}

.footer--professional .footer-store-card {
  margin-top: .9rem;
  padding: .85rem 1rem;
}

.whatsapp-float {
  right: 1.25rem;
  bottom: 5.25rem;
}

@media (max-width: 1199.98px) {
  .footer--professional .footer-main {
    grid-template-columns: 1fr;
  }

  .footer--professional .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .footer--professional .footer-links {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
  }
}

/* Footer layout correction: wider link directory, shorter enquiry panel */
.footer--professional .footer-main {
  grid-template-columns: minmax(285px, .9fr) minmax(500px, 1.65fr) minmax(250px, .76fr);
  gap: 1.25rem;
  align-items: start;
}

.footer--professional .footer-links {
  align-self: start;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 1.25rem;
  padding: 1.05rem 1.15rem;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 1rem;
}

.footer--professional .footer-accordion {
  align-self: start;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.footer--professional .footer-accordion > summary {
  margin-bottom: .8rem;
  color: #fff;
  list-style: none !important;
  cursor: default;
  font-size: .92rem;
  font-weight: 700;
}

.footer--professional .footer-accordion > summary::-webkit-details-marker {
  display: none !important;
}

.footer--professional .footer-accordion > summary::marker {
  content: "" !important;
}

.footer--professional .footer-accordion a {
  padding: .24rem 0;
  color: #c9d7e6;
  font-size: .86rem;
  line-height: 1.35;
}

.footer--professional .footer-business-card {
  padding: .95rem;
}

.footer--professional .footer-business-card h2 {
  margin-bottom: .45rem;
  font-size: 1.35rem;
  line-height: 1.18;
}

.footer--professional .footer-business-card p {
  margin-bottom: .75rem;
  font-size: .9rem;
  line-height: 1.55;
}

.footer--professional .footer-badge {
  margin-bottom: .6rem;
  padding: .24rem .55rem;
  font-size: .68rem;
}

.footer--professional .footer-cta-row {
  gap: .55rem;
  margin: .75rem 0;
}

.footer--professional .footer-cta-row .btn {
  padding: .48rem .7rem;
  font-size: .85rem;
}

.footer--professional .footer-store-card {
  margin-top: .7rem;
  padding: .75rem .85rem;
}

.footer--professional .footer-store-card p {
  margin-bottom: 0;
  font-size: .86rem;
  line-height: 1.55;
}

@media (max-width: 1199.98px) {
  .footer--professional .footer-main {
    grid-template-columns: 1fr;
  }

  .footer--professional .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .footer--professional .footer-links {
    grid-template-columns: 1fr;
  }
}

/* Screenshot-style public footer */
.public-footer.footer-showcase {
  margin-top: 4rem;
  color: #d7e3f4;
  background:
    linear-gradient(120deg, rgba(20, 62, 122, .22) 0%, rgba(8, 24, 42, 0) 34%),
    linear-gradient(180deg, #071421 0%, #0b1b2e 54%, #07111d 100%);
}

.footer-showcase a {
  color: inherit;
  text-decoration: none;
}

.footer-showcase svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-showcase__inner {
  padding-top: 3.25rem;
  padding-bottom: 2.6rem;
}

.footer-showcase__top {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(190px, .78fr) minmax(190px, .82fr) minmax(260px, 1fr);
  gap: 2.5rem;
}

.footer-showcase__brand,
.footer-showcase__column,
.footer-showcase__location {
  min-width: 0;
}

.footer-showcase__column,
.footer-showcase__location {
  padding-left: 2.5rem;
  border-left: 1px solid rgba(170, 192, 220, .28);
}

.footer-showcase__logo {
  display: inline-grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.footer-showcase__logo img,
.footer-showcase__logo > span:first-child {
  width: 62px;
  height: 62px;
  border-radius: 8px;
}

.footer-showcase__logo > span:first-child {
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #1c56c8, #173d83);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 14px 34px rgba(26, 89, 201, .28);
  font-size: 1.55rem;
  font-weight: 900;
}

.footer-showcase__logo strong {
  display: block;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-showcase__logo small {
  display: block;
  margin-top: .38rem;
  color: #82b1ff;
  font-size: 1rem;
  font-weight: 800;
}

.footer-showcase__brand p {
  max-width: 23rem;
  margin: 2.1rem 0 1.9rem;
  color: #c8d4e5;
  font-size: 1rem;
  line-height: 2;
}

.footer-showcase__social {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.footer-showcase__social a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #eef5ff;
  border: 1px solid rgba(157, 180, 215, .38);
  border-radius: 50%;
  font-size: 1.24rem;
  font-weight: 900;
  transition: background-color .15s ease, border-color .15s ease, transform .15s ease;
}

.footer-showcase__social a:hover,
.footer-showcase__outline:hover,
.footer-showcase__whatsapp:hover {
  transform: translateY(-1px);
}

.footer-showcase__social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-showcase h2 {
  margin: 0 0 2.35rem;
  color: #82b1ff;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-showcase h2::after {
  display: block;
  width: 52px;
  height: 4px;
  margin-top: 1.25rem;
  background: #3d82ff;
  border-radius: 4px;
  content: "";
}

.footer-showcase__column nav {
  display: grid;
  gap: 1.35rem;
}

.footer-showcase__column a {
  position: relative;
  padding-left: 1.45rem;
  color: #cfdae9;
  font-size: 1rem;
  line-height: 1.35;
}

.footer-showcase__column a::before {
  position: absolute;
  left: 0;
  color: #96b3d5;
  content: ">";
  font-weight: 800;
}

.footer-showcase__column a:hover,
.footer-showcase__bottom a:hover {
  color: #fff;
}

.footer-showcase__address {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.footer-showcase__address span,
.footer-showcase__trust > div > span,
.footer-showcase__phone-main > span {
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #1f5fd1, #153b7a);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 12px 28px rgba(26, 89, 201, .22);
}

.footer-showcase__address span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.18rem;
}

.footer-showcase__address p {
  margin: 0;
  color: #d8e3f2;
  font-size: 1rem;
  line-height: 1.7;
}

.footer-showcase__outline {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: .55rem;
  margin-top: 1.9rem;
  padding: .72rem 1.1rem;
  color: #eff6ff;
  border: 1px solid #3d82ff;
  border-radius: 8px;
  font-weight: 800;
  transition: background-color .15s ease, transform .15s ease;
}

.footer-showcase__outline:hover {
  background: rgba(61, 130, 255, .14);
}

.footer-showcase__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 3.8rem;
  padding: 2.55rem 0 2.65rem;
  border-top: 1px solid rgba(170, 192, 220, .32);
}

.footer-showcase__trust > div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 1.35rem;
  align-items: center;
  padding: 0 2rem;
  border-right: 1px solid rgba(170, 192, 220, .28);
}

.footer-showcase__trust > div:first-child {
  padding-left: 2rem;
}

.footer-showcase__trust > div:last-child {
  border-right: 0;
}

.footer-showcase__trust > div > span {
  width: 82px;
  height: 82px;
  border: 1px solid rgba(104, 155, 240, .24);
  border-radius: 50%;
  font-size: 2.05rem;
}

.footer-showcase__trust p,
.footer-showcase__phone-main p {
  margin: 0;
}

.footer-showcase__trust strong,
.footer-showcase__trust small {
  display: block;
}

.footer-showcase__trust strong {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-showcase__trust small {
  margin-top: .7rem;
  color: #c9d5e5;
  font-size: .95rem;
  line-height: 1.45;
}

.footer-showcase__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.35rem 0;
  padding: 1.55rem 1.85rem;
  border: 1px solid rgba(170, 192, 220, .36);
  border-radius: 8px;
}

.footer-showcase__phone-main,
.footer-showcase__contact-link {
  display: grid;
  grid-template-columns: 64px auto;
  gap: 1rem;
  align-items: center;
}

.footer-showcase__phone-main {
  flex: 1 1 285px;
  min-width: 260px;
}

.footer-showcase__phone-main > span {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  font-size: 1.9rem;
}

.footer-showcase__phone-main strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.footer-showcase__phone-main a {
  display: block;
  margin-top: .48rem;
  color: #dce8f8;
  font-size: 1.72rem;
  line-height: 1.1;
}

.footer-showcase__contact-link {
  flex: 0 1 auto;
  min-height: 64px;
  min-width: 230px;
  padding: .25rem 1.6rem;
  color: #dce8f8;
  border-left: 1px solid rgba(170, 192, 220, .32);
  font-size: 1.2rem;
}

.footer-showcase__contact-link svg {
  color: #6fa4ff;
  font-size: 2.25rem;
}

.footer-showcase__whatsapp {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  margin-left: auto;
  padding: .78rem 1.25rem;
  color: #effff5;
  border: 1px solid #28d468;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  transition: background-color .15s ease, transform .15s ease;
}

.footer-showcase__whatsapp:hover {
  background: rgba(34, 197, 94, .12);
}

.footer-showcase__whatsapp svg {
  color: #31dd73;
  font-size: 1.72rem;
  stroke-width: 1.8;
}

.footer-showcase__bottom {
  background: rgba(3, 10, 18, .42);
}

.footer-showcase__bottom-inner {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #c6d3e4;
}

.footer-showcase__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.footer-showcase__bottom a {
  padding: 0 1.35rem;
  border-right: 1px solid rgba(170, 192, 220, .28);
}

.footer-showcase__bottom a:last-child {
  padding-right: 0;
  border-right: 0;
}

@media (max-width: 1199.98px) {
  .footer-showcase__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-showcase__contact {
    gap: 1.2rem 0;
  }

  .footer-showcase__whatsapp {
    margin-left: 1.6rem;
  }
}

@media (max-width: 991.98px) {
  .footer-showcase__top,
  .footer-showcase__trust {
    grid-template-columns: 1fr;
  }

  .footer-showcase__column,
  .footer-showcase__location {
    padding-left: 0;
    border-left: 0;
  }

  .footer-showcase__trust > div {
    padding: 1.2rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(170, 192, 220, .22);
  }

  .footer-showcase__trust > div:first-child {
    padding-left: 0;
  }

  .footer-showcase__trust > div:last-child {
    border-bottom: 0;
  }

  .footer-showcase__contact {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
  }

  .footer-showcase__contact-link {
    min-width: 0;
    padding: 1rem 0;
    border-left: 0;
    border-top: 1px solid rgba(170, 192, 220, .22);
  }

  .footer-showcase__whatsapp {
    width: 100%;
    margin-left: 0;
  }

  .footer-showcase__bottom-inner {
    flex-direction: column;
    min-height: 120px;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .footer-showcase__inner {
    padding-top: 2.25rem;
  }

  .footer-showcase__logo {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .footer-showcase__logo img,
  .footer-showcase__logo > span:first-child {
    width: 52px;
    height: 52px;
  }

  .footer-showcase__logo strong {
    font-size: 1.15rem;
  }

  .footer-showcase__brand p {
    font-size: .95rem;
    line-height: 1.75;
  }

  .footer-showcase__trust > div,
  .footer-showcase__phone-main,
  .footer-showcase__contact-link {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .footer-showcase__trust > div > span,
  .footer-showcase__phone-main > span {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .footer-showcase__phone-main a {
    font-size: 1.35rem;
  }

  .footer-showcase__contact-link {
    font-size: 1rem;
  }

  .footer-showcase__bottom nav {
    justify-content: center;
  }
}

/* Premium public product detail page */
.product-detail--premium {
  padding-top: 0;
  background:
    radial-gradient(circle at top left, rgba(26, 115, 232, .08), transparent 32rem),
    linear-gradient(180deg, #fff 0, #f8fbff 58rem, #fff 58rem);
}

.product-detail-titlebar {
  position: relative;
  overflow: hidden;
  padding: 1.05rem 0 2rem;
  color: #fff;
  background:
    radial-gradient(circle at 14% 0, rgba(96, 165, 250, .34), transparent 20rem),
    linear-gradient(135deg, #061226 0%, #0b3b78 55%, #1a73e8 100%);
}

.product-detail-titlebar::after {
  content: "";
  position: absolute;
  inset: auto -10% -46% 42%;
  height: 15rem;
  background: rgba(255, 255, 255, .12);
  border-radius: 999px;
  transform: rotate(-8deg);
}

.product-detail-titlebar .container-xl {
  position: relative;
  z-index: 1;
}

.product-detail-titlebar .public-breadcrumbs {
  padding: .35rem 0 1.15rem;
  color: rgba(255, 255, 255, .76);
}

.product-detail-titlebar .breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, .6);
}

.product-detail-titlebar .public-breadcrumbs a,
.product-detail-titlebar .breadcrumb-item.active {
  color: #fff;
}

.product-detail-titlebar .public-eyebrow {
  color: #bfdbfe;
}

.product-detail-titlebar__content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
}

.product-detail-titlebar__lead {
  max-width: 48rem;
  margin: .45rem 0 0;
  color: #dbeafe;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
}

.product-detail-titlebar__back {
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  justify-content: center;
  padding: .65rem 1rem;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.product-detail-titlebar__back:hover,
.product-detail-titlebar__back:focus-visible {
  color: #061226;
  background: #fff;
}

.product-purchase-section {
  padding: clamp(1.65rem, 4vw, 3rem) 0 clamp(2.4rem, 5vw, 4rem);
}

.product-purchase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(24rem, .96fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
}

.product-media-card,
.product-buy-card,
.product-info-card,
.product-specification-card,
.product-brochure-panel--premium {
  background: rgba(255, 255, 255, .96);
  border: 1px solid #e2e8f0;
  border-radius: 1.55rem;
  box-shadow: 0 22px 55px rgba(15, 23, 42, .08);
}

.product-media-card {
  padding: clamp(1rem, 2vw, 1.45rem);
}

.product-media-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.product-media-card__head span,
.product-gallery-note {
  color: #64748b;
  font-size: .84rem;
  font-weight: 700;
}

.product-gallery-main--premium {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(58vw, 34rem);
  background:
    linear-gradient(135deg, rgba(219, 234, 254, .95), rgba(248, 250, 252, .98)),
    #f8fafc;
  border: 1px solid #dbe3ef;
  border-radius: 1.35rem;
  aspect-ratio: 1 / 1;
}

.product-gallery-main--premium::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 1rem;
  pointer-events: none;
}

.product-gallery-main--premium img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: clamp(.65rem, 2vw, 1.2rem);
  object-fit: contain;
  transition: transform .25s ease;
}

.product-gallery-main--premium:hover img {
  transform: scale(1.018);
}

.product-gallery-thumbnails--premium {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .75rem;
  margin-top: .9rem;
}

.product-gallery-thumbnail--premium {
  padding: .35rem;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .07);
  aspect-ratio: 1 / 1;
}

.product-gallery-thumbnail--premium.is-active {
  border-color: #1a73e8;
  box-shadow: 0 0 0 4px rgba(26, 115, 232, .12), 0 12px 24px rgba(15, 23, 42, .1);
}

.product-gallery-thumbnail--premium img {
  border-radius: .7rem;
  object-fit: contain;
}

.product-gallery-note {
  margin-top: .9rem;
  padding: .75rem .9rem;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 1rem;
}

.product-buy-card {
  position: sticky;
  top: 1rem;
  padding: clamp(1.15rem, 2.4vw, 1.8rem);
}

.product-buy-card__topline,
.product-detail-actions--premium,
.product-order-panel,
.product-buy-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
}

.product-buy-card__topline {
  justify-content: space-between;
  margin-bottom: 1rem;
}

.product-category-pill,
.product-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 850;
  text-decoration: none;
}

.product-category-pill {
  color: #1a73e8;
  background: #eef4ff;
}

.product-status-pill {
  color: #027a48;
  background: #dcfce7;
}

.product-buy-card h1 {
  margin: 0 0 1.1rem;
  color: #101828;
  font-size: clamp(1.2rem, 3vw, 3rem);
  font-weight: 550;
  letter-spacing: -.055em;
  line-height: 1.03;
}

.product-fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  margin: 0 0 1rem;
}

.product-fact-grid div {
  padding: .85rem .9rem;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 1rem;
}

.product-fact-grid dt,
.product-price-panel span,
.product-order-panel span,
.product-info-card--summary dt,
.product-key-spec-grid span {
  color: #64748b;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-fact-grid dd {
  margin: .18rem 0 0;
  color: #0f172a;
  font-size: .92rem;
  font-weight: 850;
}

.product-price-panel {
  display: grid;
  gap: .25rem;
  margin: 1rem 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, #eff6ff, #fff);
  border: 1px solid #bfdbfe;
  border-radius: 1.1rem;
}

.product-price-panel strong {
  color: #1a73e8;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -.02em;
}

.product-price-panel small,
.product-contact-note {
  color: #64748b;
  font-size: .86rem;
}

.product-short-description {
  margin: 1rem 0;
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.75;
}

.product-feature-bullets {
  display: grid;
  gap: .5rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.product-feature-bullets li {
  position: relative;
  padding-left: 1.45rem;
  color: #344054;
  font-size: .94rem;
}

.product-feature-bullets li::before {
  content: "";
  position: absolute;
  top: .62rem;
  left: .25rem;
  width: .42rem;
  height: .42rem;
  background: #1a73e8;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(26, 115, 232, .12);
}

.product-order-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1rem 0 1.15rem;
}

.product-order-panel div {
  padding: .95rem 1rem;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 1rem;
}

.product-order-panel strong {
  display: block;
  margin-top: .18rem;
  color: #9a3412;
  font-size: .96rem;
}

.product-detail-actions--premium {
  margin: 1rem 0;
}

.product-detail-actions--premium .btn {
  min-width: 10.5rem;
  min-height: 3rem;
  box-shadow: 0 14px 26px rgba(26, 115, 232, .18);
}

.product-contact-note {
  display: flex;
  align-items: start;
  gap: .55rem;
  margin-top: .6rem;
  padding-top: .9rem;
  border-top: 1px solid #edf2f7;
}

.product-contact-note span {
  display: inline-grid;
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  color: #027a48;
  background: #dcfce7;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 900;
}

.product-assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .95rem;
  margin-top: 1.2rem;
}

.product-assurance-grid div {
  display: grid;
  grid-template-columns: 2.35rem 1fr;
  grid-template-areas:
    "icon title"
    "icon text ";
  align-items: center;
  gap: .1rem .8rem;
  padding: .95rem;
  color: #cbd5e1;
  background: linear-gradient(135deg, #2450a9, #0f63d8);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 1rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
}

.product-assurance-grid span {
  grid-area: icon;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: #fff;
  background: #1a73e8;
  border-radius: .85rem;
  font-weight: 900;
}

.product-assurance-grid strong {
  grid-area: title;
  color: #fff;
  font-size: .92rem;
}

.product-assurance-grid small {
  grid-area: text;
  color: #f6f6f6;
  font-size: .78rem;
}

.product-detail-section--clean {
  background: #fff;
}

.product-information-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .75fr);
  gap: 1.25rem;
  align-items: start;
}

.product-info-card {
  padding: clamp(1.15rem, 2.4vw, 1.75rem);
}

.product-info-card h2,
.product-specs-premium-section h2,
.related-products-premium-section h2,
.recently-viewed-premium-section h2 {
  color: #101828;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 850;
  letter-spacing: -.035em;
}

.product-info-card--large p:not(.public-eyebrow) {
  max-width: 70rem;
  color: #475569;
  font-size: 1rem;
  line-height: 1.85;
}

.product-info-card--summary dl {
  display: grid;
  gap: .8rem;
  margin: 1rem 0 0;
}

.product-info-card--summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid #edf2f7;
}

.product-info-card--summary div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-info-card--summary dd {
  margin: 0;
  color: #0f172a;
  font-weight: 850;
  text-align: right;
}

.section-heading-note {
  max-width: 22rem;
  color: #64748b;
  font-size: .92rem;
}

.product-key-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  margin-bottom: 1.15rem;
}

.product-key-spec-grid div {
  display: grid;
  gap: .28rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
}

.product-key-spec-grid strong {
  color: #101828;
  font-size: .95rem;
}

.product-key-spec-grid small {
  color: #475569;
  font-size: .9rem;
}

.product-specification-card {
  padding: clamp(1rem, 2vw, 1.35rem);
}

.product-specification-group--premium {
  max-width: none;
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid #edf2f7;
}

.product-specification-group--premium:first-child {
  padding-top: 0;
}

.product-specification-group--premium:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-specification-group--premium h3 {
  margin-bottom: .75rem;
  color: #101828;
  font-size: 1.08rem;
  font-weight: 850;
}

.product-specification-table--premium {
  margin-bottom: 0;
}

.product-specification-table--premium th,
.product-specification-table--premium td {
  padding: .8rem .9rem;
  border-color: #edf2f7;
  vertical-align: top;
}

.product-specification-table--premium th {
  width: 36%;
  color: #0f172a;
  background: #f8fafc;
  font-weight: 850;
}

.product-specification-table--premium td {
  color: #475569;
}

.product-application-list--premium {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-application-list--premium li {
  padding: 1.15rem;
  border-radius: 1rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
}

.product-brochure-panel--premium {
  box-shadow: 0 22px 55px rgba(15, 23, 42, .08);
}

.related-products-premium-section .product-card {
  height: 100%;
}

.recently-viewed-grid--premium {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.recently-viewed-grid--premium .recently-viewed-card a {
  border-radius: 1rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .05);
}

@media (max-width: 1199.98px) {
  .product-purchase-grid {
    grid-template-columns: 1fr;
  }

  .product-buy-card {
    position: static;
  }

  .product-assurance-grid,
  .product-key-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .product-detail-titlebar__content,
  .product-information-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-titlebar__content {
    display: grid;
    align-items: start;
  }

  .product-detail-titlebar__back {
    justify-self: start;
  }

  .product-fact-grid,
  .product-order-panel,
  .product-assurance-grid,
  .product-key-spec-grid,
  .product-application-list--premium,
  .recently-viewed-grid--premium {
    grid-template-columns: 1fr;
  }

  .product-detail-actions--premium .btn {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .product-detail-titlebar {
    padding-bottom: 1.55rem;
  }

  .product-buy-card h1 {
    font-size: clamp(1.2rem, 8vw, 2.2rem);
  }

  .product-media-card,
  .product-buy-card,
  .product-info-card,
  .product-specification-card {
    border-radius: 1.15rem;
  }
}

/* Public header search sizing polish */
.public-header-search {
  flex: 1 1 340px;
}

.public-header-search .public-search {
  width: 100%;
  max-width: 560px;
}

.public-search .input-group {
  height: 54px;
  min-height: 54px;
  padding: 3px 5px;
  background: #fff;
  border: 2px solid #bfdbfe;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(26, 115, 232, .12);
}

.public-search .input-group:focus-within {
  border-color: #1a73e8;
  box-shadow: 0 0 0 4px rgba(26, 115, 232, .16), 0 16px 36px rgba(15, 23, 42, .1);
}

.public-search .input-group-text {
  width: 34px;
  padding-left: 12px;
  color: #64748b;
}

.public-search .form-control {
  min-height: 42px;
  padding: 10px 12px;
  color: #0f172a;
  font-size: .92rem;
  font-weight: 650;
}

.public-search .form-control::placeholder {
  color: #64748b;
  opacity: 1;
}

.public-search .btn {
  width: 44px;
  height: 44px;
  min-height: 44px;
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(26, 115, 232, .22);
}

@media (min-width: 1200px) {
  .public-header-search .public-search {
    max-width: 620px;
  }
}

@media (max-width: 991.98px) {
  .public-header-search .public-search {
    max-width: none;
  }
}

/* Search focus + submit-arrow alignment fix */
.public-search .input-group {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.public-search .input-group-text {
  display: inline-flex;
  flex: 0 0 40px;
  height: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 10px;
  border: 0;
  background: transparent;
}

.public-search .form-control {
  height: 44px;
  min-height: 44px;
  border: 0 !important;
  outline: 0 !important;
  background: transparent;
  box-shadow: none !important;
}

.public-search .form-control:focus,
.public-search .form-control:focus-visible,
.public-search .form-control:invalid,
.public-search .btn:focus,
.public-search .btn:focus-visible {
  border-color: transparent !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.public-search .btn {
  display: inline-flex;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 !important;
  border: 0;
  line-height: 1;
  transform: none !important;
}

.public-search .btn::before {
  content: "→";
  display: block;
  font-size: 1.25rem;
  line-height: 1;
  transform: translateY(-1px);
}
.product-rich-description {
  color: #344054;
  line-height: 1.75;
}

.product-rich-description h2,
.product-rich-description h3,
.product-rich-description h4 {
  color: #101828;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.2;
  margin: 1.35rem 0 .65rem;
}

.product-rich-description h2:first-child,
.product-rich-description h3:first-child,
.product-rich-description h4:first-child {
  margin-top: 0;
}

.product-rich-description p,
.product-rich-description ul,
.product-rich-description ol,
.product-rich-description blockquote,
.product-rich-description table {
  margin-bottom: 1rem;
}

.product-rich-description ul,
.product-rich-description ol {
  padding-left: 1.25rem;
}

.product-rich-description blockquote {
  background: #f8fafc;
  border-left: 4px solid var(--pq-primary);
  border-radius: .85rem;
  padding: .85rem 1rem;
}

.product-rich-description table {
  border-collapse: collapse;
  overflow: hidden;
  width: 100%;
}

.product-rich-description th,
.product-rich-description td {
  border: 1px solid rgba(15, 23, 42, .12);
  padding: .65rem .75rem;
}
