:root {
  --Text-Neutral: #606060;
  --Text-Strong: #131312;
  --Text-Subtle: #9a9a91;
  --Text-dark: #1a1a1a;
  --Body-VS: 12px;
  --Body-S: 14px;
  --Body-L: 18px;
  --gray-color: #f7f7f5;
  --accent-blue: #003f91;
  --accent-blue-dark: #1c5dd6;
  --dark-blue: #1f6feb;
  --accent-lime: #c9f26c;
  --border-subtle: #eaeae6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: var(--Text-Strong);
  /* background: var(--gray-color); */
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header .megatech-container,
.site-topbar .megatech-container {
  width: min(1264px, 100% - 48px);
  margin: 0 auto;
}

.megatech-container {
  width: min(1200px, 100% - 48px);
  margin: 0 auto;
}

.text-strong {
  color: var(--Text-Strong);
}

.text-neutral {
  color: var(--Text-Neutral);
}

.text-subtle {
  color: var(--Text-Subtle);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 5px 5px 12px;
  border-radius: 4px 4px 10px 4px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  line-height: 103.316%;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  /*   transform: translateY(-1px); */
}

.btn-black {
  color: #fff;
  background: #2f2f33;
}

.btn-black .btn__icon {
  background: #d80621;
  border-radius: 4px;
}

.btn:hover .btn__icon svg {
  animation: scrollX 400ms linear forwards;
  will-change: transform;
}

.animate-btn {
  border-radius: 5px 5px 9px 5px !important;
}

.animate-btn:hover span svg {
  animation: scrollX 400ms linear forwards;
  will-change: transform;
}

.btn-light {
  background: #f1f1f1;
}

.btn-light span {
  background-color: #dfdfdf;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}

.act-btn {
  margin-top: 10px;
  display: none;
}

.fleet-graphic-single {
  padding: 48px 0 72px;
  background: #ffffff;
}

.fleet-graphic-single__title {
  margin: 0 0 28px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--Text-Strong);
}

.fleet-graphic-single__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.fleet-graphic-single__item {
  margin: 0;
  background: #f1f5f9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.fleet-graphic-single__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

@media (max-width: 900px) {
  .fleet-graphic-single__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .fleet-graphic-single {
    padding: 40px 0 56px;
  }

  .fleet-graphic-single__gallery {
    grid-template-columns: 1fr;
  }
}

@keyframes scrollX {
  0% {
    transform: translateX(0rem);
    opacity: 1;
  }

  50% {
    transform: translateX(10px);
    opacity: 0;
  }

  51% {
    transform: translateX(-10px);
    opacity: 0;
  }

  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

.btn--primary {
  background: var(--accent-blue);
  color: #ffffff;
  height: 50px;
}

.btn--primary .btn__icon {
  width: 40px;
  height: 40px;
}

.btn--primary:hover {
  /* background: var(--accent-blue-dark); */
}

.btn--accent {
  background: var(--accent-lime);
  color: var(--Text-Strong);
}

.btn--secondary {
  background: transparent;
  color: var(--Text-Strong);
  border-color: var(--border-subtle);
}

.btn--ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.15);
  font-size: 16px;
  line-height: 1;
}

.btn--primary .btn__icon {
  background: var(--accent-blue-dark);
}

.shop-page {
  background: #fff;
  padding: 19px 0 64px;
}

.shop-page.is-loading {
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.shop-page__breadcrumb,
.product-single__breadcrumb,
.graphic-single__breadcrumb {
  font-size: 12px;
  color: var(--Text-Subtle);
  margin-bottom: 0px;
  background: #f8f8f8;
  padding: 15px 0px;
}

.shop-page__breadcrumb .woocommerce-breadcrumb,
.shop-page__breadcrumb .woocommerce-breadcrumb a,
.product-single__breadcrumb .woocommerce-breadcrumb,
.product-single__breadcrumb .woocommerce-breadcrumb a,
.graphic-single__breadcrumb nav,
.graphic-single__breadcrumb nav ol,
.graphic-single__breadcrumb nav ol li,
.graphic-single__breadcrumb nav ol li a {
  margin: 0;
  font-size: 14px;
  line-height: 172.727%;
  color: #000;
  font-weight: 500;
}

.graphic-single__breadcrumb nav ol {
  display: flex;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}

.graphic-single__breadcrumb nav ol li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
}

.shop-page__layout {
  display: grid;
  grid-template-columns: 278px 1fr;
  gap: 24px;
  align-items: start;
}

.shop-page__mobile-bar {
  display: none;
}

.shop-page__sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.shop-page__filter-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
}

.shop-page__filter-close {
  display: none;
  align-self: flex-end;
  border: none;
  background: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.shop-filter {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.shop-filter.active-filter {
  box-shadow: none;
  border: none;
  padding: 0;
  margin-bottom: 11px;
  border-radius: 0px;
}

.shop-filter__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #1a1a1a;
  letter-spacing: 0.7px;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
  padding: 0 20px;
  height: 40px;
}

.active-filter .shop-filter__header {
  color: #6b7280;
  margin-bottom: 12px;
  background: transparent;
  border: none;
  padding: 0;
  height: auto;
}

.shop-filter__clear {
  font-size: 12px;
  color: #1f6feb;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 133.333%;
}

.shop-filter__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-filter__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  background: #1f6feb;
  color: #ffffff;
  border-radius: 4px;
  height: 30px;
  font-size: 12px;
  font-weight: 500;
  line-height: 133.333%;
  border: 1px solid rgba(0, 0, 0, 0);
}

.shop-filter__list {
  list-style: none;
  padding: 12px;
  margin: 0;
  display: grid;
  gap: 4px;
}

.shop-filter__tree {
  list-style: none;
  margin: 0;
  display: grid;
  gap: 4px;
  padding: 12px;
}

.shop-filter__parent {
  display: grid;
  gap: 8px;
}

.shop-filter__parent-toggle {
  width: 100%;
  background: transparent;
  border: none;
  padding: 6px 8px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--Text-dark);
  cursor: pointer;
  font-family: "Roboto", sans-serif;
}

.shop-filter__parent-toggle:hover {
  background: #f3f4f6;
}

.shop-filter__parent-toggle:hover .shop-filter__parent-count {
  background: #fff;
}

.shop-filter__parent-toggle .shop-filter__parent-name {
  text-align: left;
}

.shop-filter__parent-count {
  font-size: 12px;
  color: #6b7280;
  line-height: 1;
  font-weight: 600;
  padding: 2px 8px;
  background: #f1f5f9;
  border-radius: 100px;
  height: 20px;
  display: flex;
  align-items: center;
}

.shop-filter__parent-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #d1d5db;
  position: relative;
}

.shop-filter__parent-icon::before,
.shop-filter__parent-icon::after {
  content: "";
  position: absolute;
  background: #6b7280;
}

.shop-filter__parent-icon::before {
  width: 8px;
  height: 2px;
  left: 3px;
  top: 6px;
}

.shop-filter__parent-icon::after {
  width: 2px;
  height: 8px;
  left: 6px;
  top: 3px;
  transition: opacity 0.2s ease;
}

.shop-filter__parent.is-open .shop-filter__parent-icon::after {
  opacity: 0;
}

.shop-filter__parent .shop-filter__list {
  display: none;
  padding-left: 0px;
  padding-right: 0px;
}

.shop-filter__parent.is-open .shop-filter__list {
  display: grid;
}

.shop-filter__link {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--Text-Neutral);
}

.shop-filter__link:hover,
.shop-filter__link.is-active {
  background: #eef2ff;
  color: var(--Text-Strong);
}

.shop-filter__check {
  width: 16px;
  height: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background: #f9fafb;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shop-filter__link.is-active .shop-filter__check {
  background: #1f6feb;
  border-color: #1f6feb;
  position: relative;
}

.shop-filter__link.is-active .shop-filter__check::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 6px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
  left: 2px;
  top: 3px;
}

.shop-filter__count {
  /* font-size: 12px; */
  color: #6b7280;
  line-height: 1;
  font-weight: 600;
  padding: 2px 8px;
  background: #f1f5f9;
  border-radius: 100px;
  height: 20px;
  display: flex;
  align-items: center;
}

.shop-filter__link:hover .shop-filter__count,
.shop-filter__link.is-active .shop-filter__count {
  background: #fff;
}

.shop-filter__name {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  line-height: 142.857%;
}

.shop-page__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.shop-page__toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0px;
}

.shop-page__toolbar .woocommerce-ordering {
  margin: 0;
}

.shop-page__toolbar select {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  outline: none;
  min-width: 200px;
}

.shop-page__promo {
  background: #f6f6f6;
  border-radius: 10px;
  padding: 27px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
}

.shop-page__promo h2 {
  margin: 0;
  font-size: 28px;
  color: #1a1a1a;
  font-weight: 700;
  line-height: 114.286%;
}

.shop-page__promo p {
  margin: 8px 0 0;
  font-size: 16px;
  color: #1a1a1a;
  max-width: 364px;
  font-weight: 400;
  line-height: 125%;
}

.shop-page__promo-button {
  height: 40px;
}

.shop-page__promo-button .btn__icon {
  height: 30px;
  width: 30px;
  background: #1fa5ff;
}

.shop-page__promo-image {
  position: absolute;
  width: 280px;
  left: 250px;
  right: 0;
  margin: auto;
  bottom: 0px;
}

.shop-page__promo-image img {
  mix-blend-mode: multiply;
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.shop-product-card {
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.shop-product-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  background: #f8fafc;
  max-height: 240px;
  border-radius: 11px;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.shop-product-card__image img {
  max-height: 225px;
  width: 100%;
  object-fit: cover;
}

.shop-product-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 19px 0px 0px;
}


.products .shop-product-quote.shop-hide {
  position: relative;
  bottom: 0px;
  transform: inherit;
}

.product-single .products .shop-product-quote.shop-hide {
  display: none;
}

.featured-products.product-related-slide .shop-product-quote.shop-hide {
  display: none;
}

.shop-product-card__category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #1f6feb;
  background: rgba(31, 111, 235, 0.16);
  border-radius: 6px;
  padding: 2px 10px;
  line-height: 1;
  letter-spacing: 0.6px;
  height: 20px;
  display: inline-flex;
  align-items: center;
}

.products .product-cat {
  margin-bottom: 6px;
}

.shop-product-card__title {
  margin: 0;
  font-size: 20px;
  color: #1a1a1a;
  font-weight: 600;
  line-height: 140%;
}

.shop-product-card__title a {
  color: inherit;
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.shop-product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.shop-product-card__tags span {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  background: #ECECEC;
  color: #314158;
}

.shop-product-quote {
  position: absolute;
  bottom: 10px;
  width: 100%;
  padding: 0px 10px;
  transform: translateY(60px);
  transition: all 0.6s;
}

.shop-product-card__image:hover {
  border: 1px solid #1f6feb;
}

.shop-product-card__image:hover .shop-product-quote {
  transform: translateY(0px);
  transition: all 0.6s;
}

.quoteInner {
  border-radius: 4px 4px 10px 4px;
  background: #364153;
  padding: 5px 5px 5px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.getQuote {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 142.857%;
}

.quoteLink .btn__icon {
  background: #1fa5ff;
}

.shop-page__pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  margin-bottom: 30px;
  gap: 16px;
  flex-wrap: wrap;
}

.shop-page__pagination .shop-page__result-count {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #a0a0a0;
}

.woocommerce-pagination {
  display: flex;
  justify-content: flex-end;
}

.woocommerce-pagination ul.page-numbers {
  display: inline-flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-pagination .page-numbers {
  min-width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--Text-Strong);
  background: #ffffff;
  text-decoration: none;
}

.woocommerce-pagination .page-numbers.current {
  background: #ffffff;
  border-color: #2563eb;
  color: #2563eb;
}

.woocommerce-pagination .page-numbers.prev {
  background: #e5e7eb;
  border-color: #e5e7eb;
  color: #9ca3af;
}

.woocommerce-pagination .page-numbers.next {
  background: #ffffff;
  border-color: #e5e7eb;
  color: #6b7280;
}

.shop-filter__mobile-actions {
  display: none;
}

body.has-filter-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .shop-page__layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .shop-page__mobile-bar {
    display: flex;
    justify-content: flex-start;
  }

  .shop-page__sidebar {
    order: 0;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    padding: 16px 16px 0px 16px;
    /* Let sticky handle bottom padding */
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
    box-shadow: none;
    z-index: 1000;
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .shop-page.is-filter-open .shop-page__sidebar {
    transform: translateX(0);
    visibility: visible;
  }

  .shop-filter {
    margin-bottom: 15px;
  }

  .shop-page__filter-close {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    margin-left: auto;
  }

  .shop-page__content {
    order: 1;
  }

  .shop-filter__mobile-actions {
    display: flex;
    position: sticky;
    bottom: 0;
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
    margin-top: auto;
    background: #fff;
    padding: 16px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
    z-index: 1001;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
  }

  .shop-filter__mobile-clear {
    color: #6b7280;
    text-decoration: underline;
    font-weight: 500;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
  }

  .shop-filter__mobile-apply {
    width: auto;
    padding: 12px 24px;
    border-radius: 8px;
    background-color: #1f2937;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
  }
}

@media (max-width: 900px) {
  .shop-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .shop-products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .shop-page__content {
    gap: 20px;
  }

  .shop-page__promo {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-product-card__title {
    font-size: 16px;
  }

  .shop-product-card__meta .product-cat {
    width: 100%;
  }

  .shop-product-card__category {
    height: 15px;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    width: max-content;
    white-space: nowrap;
    text-align: center;
    max-width: 100%;
  }

}

.btn--accent .btn__icon {
  background: rgba(19, 19, 18, 0.12);
}

.btn--secondary .btn__icon {
  background: #1961d6;
}

.btn--ghost .btn__icon {
  background: rgba(255, 255, 255, 0.2);
}

.product-single {
  background: #fff;
  padding: 25px 0px 0px;
}

.product-description-info {
  background: #f1f5f9;
  padding: 53px 0px;
}

.product-slide-info {
  margin-bottom: 34px;
}

.product-single__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.product-single__gallery {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 17px;
  background: #ffffff;
}

.product-single__thumbs {
  display: flex;
  gap: 17px;
  place-items: flex-start;
  align-items: flex-start;
  flex-direction: column;
  max-height: 511px;
  overflow: auto;
}

.product-single__thumb {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0px;
  background: #ffffff;
  cursor: pointer;
  width: 110px;
  height: 115px;
  display: flex;
  overflow: hidden;
  min-height: 115px;
}

.product-single__thumb img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.product-single__image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 14px;
  padding: 12px;
  aspect-ratio: 3 / 3;
}

.product-single__image-panel[hidden] {
  display: none;
}

.product-single__image img {
  /*   max-height: 480px; */
  max-height: 100%;
  width: auto;
}

.product-single__image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 14px;
  padding: 12px;
  aspect-ratio: 3 / 3;
  position: relative;
}

.product-single__brochure {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: max-content;
  z-index: 1;
}

.product-single__download-brochure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 21px;
  border-radius: 27px;
  background: #ffffff;
  color: #3a3a3a;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: 1px solid #F1F5F9;
}

.product-single__download-brochure img {
  max-width: 24px;
}

.product-single__summary {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 0 24.3px 0 #e5ebf1;
}

.product-single__category {
  /*   display: inline-flex; */
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
}

.product-single__title {
  margin: 0;
  font-size: clamp(18px, 2vw, 28px);
  color: #0f0303;
  font-weight: 500;
  letter-spacing: -1px;
}

.megatech-container>h1.product-single__title {
  margin-bottom: 18px;
}

.product-single__summary h2 {
  margin: 0;
  color: #0f0303;
  font-weight: 500;
  letter-spacing: -1px;
}

.product-single__form .gform_fields {
  gap: 20px !important;
}

.product-single__excerpt {
  font-size: 13px;
  color: var(--Text-Neutral);
}

.product-single__form .gform_fields input.large,
.product-single__form .gform_fields select.large,
.product-single__form .gform_fields .ginput_password.large {
  background: #f1f5f9;
  border-radius: 7px;
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  line-height: 150%;
  height: auto;
  color: #000;
  outline: none;
  box-shadow: none;
}

.product-single__form .gform_fields textarea {
  background: #f1f5f9;
  border-radius: 7px;
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  resize: none;
  color: #000;
  height: 140px !important;
  max-height: 140px !important;
  min-height: 140px !important;
}

.product-single__form .gform_fields textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.product-single__form fieldset .ginput_container input {
  background: #f1f5f9;
  border-radius: 7px;
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  line-height: 150%;
  height: auto;
  color: #000;
  outline: none;
  box-shadow: none;
}

.product-single__form fieldset .ginput_container input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.product-single__form .gform_wrapper .gform-body fieldset .ginput_container {
  gap: 20px;
}

.product-single__form .gform_fields .gfield--type-textarea {
  height: 140px;
}

.product-single__form .gform_fields input.large::placeholder,
.product-single__form .gform_fields select.large::placeholder,
.product-single__form .gform_fields .ginput_password.large::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.product-single__form .gform_wrapper .gform-footer.gform_footer .gform_button {
  background: #2f2f33 !important;
}

.product-single__actions .single_add_to_cart_button {
  background: #1f66e5;
  border-radius: 8px;
  border: none;
  color: #ffffff;
  font-weight: 600;
  padding: 10px 14px;
}

.product-single__details {
  margin-top: 0px;
  background: transparent;
  border-radius: 12px;
  border: none;
  padding: 0px;
  display: grid;
  gap: 37px;
}

.product-single__details h2 {
  margin: 0px;
  font-size: 48px;
  color: #0f0303;
  font-weight: 500;
  line-height: 137.5%;
  letter-spacing: -2px;
}

.product-single-header .product-tag {
  padding: 2px 10px;
  border-radius: 6px;
  background: rgba(31, 111, 235, 0.16);
  font-size: 22px;
  color: #606060;
  line-height: 1;
  letter-spacing: -1px;
  height: 36px;
  display: inline-flex;
  align-items: center;
}

.product-single__description {
  display: flex;
  gap: 80px;
  border-radius: 14px;
  background: #e6edf5;
  padding: 25px 29px;
  align-items: center;
}

.product-summary {
  max-width: 712px;
}

.product-summary p {
  color: #606060;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -1px;
  margin: 0;
}

.product-single__specs {
  display: grid;
  gap: 18px;
}

.product-single__spec-block h3 {
  margin: 0px 0px 6px;
  color: #0f0303;
  font-size: 48px;
  letter-spacing: -2px;
  font-weight: 500;
  line-height: 137.5%;
}

.product-single__spec-block ul {
  margin: 0;
  padding-left: 18px;
  max-width: 970px;
}

.product-single__spec-block ul li {
  font-size: 16px;
  color: #2b2929;
  font-weight: 400;
  line-height: 1.5;
  margin-left: 4px;
  margin-bottom: 15px;
}

.product-related-slide {
  padding: 71px 0px;
}

section.featured-products.product-related-slide {
  padding: 20px 0px 110px;
}

.product-single__related h2 {
  font-size: 48px;
  margin: 0;
  color: #0f0303;
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 137.5%;
  text-transform: capitalize;
}

.product-related__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.home .trusted-agencies {
  padding-top: 0;
  padding-bottom: 173px;
}


.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.product-single__related .products {
  /* display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0;
  padding: 0; */
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-related__controls {
  display: none;
  gap: 8px;
}

.product-related__btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.product-related__btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.product-related__btn:hover:not(:disabled) {
  background: #e5e7eb;
  border-color: #d1d5db;
  color: #374151;
}

.product-related.has-overflow .product-related__controls {
  display: none;
}

.product-related__track {
  margin-top: 32px;
}

.product-related__progress {
  margin-top: 22px;
  height: 2px;
  width: 100%;
  background: #d1d5db;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  display: none;
}

.product-related__progress-fill {
  position: absolute;
  inset: 0;
  background: #1d4ed8;
  width: 25%;
  transform: translateX(0%);
  transition: transform 0.35s ease;
  border-radius: 0;
}

.product-related.is-slider .product-related__track {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  width: calc(100% + (100vw - 100%) / 2);
  margin-right: calc((100vw - 100%) / -2);
  transition: margin-left 0.3s ease, width 0.3s ease;
}

.product-related.is-slider .product-related__track.is-scrolling {
  margin-left: calc((100vw - 1200px) / -2);
  width: calc(100% + (100vw - 100%) / 1);
}

.product-related.is-slider .product-related__track::-webkit-scrollbar {
  display: none;
}

.product-related.is-slider .products {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  padding: 0;
  margin: 0;
}

.product-related.is-slider .products .product {
  flex: 0 0 calc((100% - 72px) / 4);
  width: auto;
  scroll-snap-align: start;
}

.product-related.has-overflow .product-related__progress {
  display: block;
}

.product-related.is-slider .product-related__progress {
  width: calc(100% + (100vw - 100%) / 2);
  margin-right: calc((100vw - 100%) / -2);
}

.product-single__related .products .product {
  list-style: none;
  width: 100%;
  margin: 0;
  position: relative;
}

.product-single__related .products .shop-product-card {
  height: 100%;
}

.shop-page .shop-hide {
  display: none;
}

.woocommerce nav.woocommerce-pagination ul {
  border: none;
  gap: 8px;
  display: flex;
}



@media (max-width: 640px) {
  .woocommerce nav.woocommerce-pagination ul {
    flex-wrap: wrap;
  }
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none;
}

.woocommerce-pagination .page-numbers li .page-numbers.current {
  color: #1f6feb;
}

.woocommerce-pagination .page-numbers li .page-numbers {
  width: 32px;
  height: 32px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #fff !important;
  font-weight: 700;
  font-size: 14px;
  line-height: 142.857%;
}

/************** Contact section start **************/
.blank_container {
  padding-bottom: 100px;
}

.blank_container .gform_heading {
  text-align: center;
  margin-bottom: 45px;
}

.blank_container .gform_heading .gform_title {
  font-size: clamp(32px, 4.1vw, 58px);
  font-weight: 500;
  line-height: 117.241%;
  margin: 0;
}

.blank_container .gform_heading .gform_description {
  color: #606060;
  line-height: 145.455%;
  letter-spacing: -1px;
  font-size: clamp(18px, 1.6vw, 22px);
  margin: 5px auto 0px;
  max-width: 508px;
}

.blank_container .gform_wrapper .gform_fields {
  gap: 30px;
}

.gform_wrapper .gform-body fieldset .ginput_container {
  gap: 30px;
  margin: 0;
}

.gform_wrapper .gform-body fieldset .ginput_container span {
  padding: 0px;
}

.blank_container .gform_wrapper .gform_fields .gfield input {
  padding: 15px 20px 16px 25px;
  box-shadow: none;
  border: 1px solid #d1e0f4;
  border-radius: 7px;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 109.091%;
  height: 68px;
  outline: none;
  background: #F3F8FF;
}

.blank_container .gform_wrapper .gform_fields .gfield input::placeholder {
  color: #99a1af;
}

.blank_container .gform_wrapper .gform_fields .gfield .textarea {
  padding: 15px 20px 16px 25px;
  box-shadow: none;
  border: 1px solid #d1e0f4;
  border-radius: 7px;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 109.091%;
  height: 152px;
  outline: none;
  resize: none;
  background: #F3F8FF;
}

.blank_container .gform_wrapper .gform_fields .gfield .textarea::placeholder {
  color: #99a1af;
}

.gform_wrapper .gform-footer.gform_footer .gform_button {
  border-radius: 5px 4px 10px 4px !important;
  background: #003f91 !important;
  padding: 5px 19px !important;
  font-size: 18px !important;
  outline: none !important;
}

p.gform_required_legend {
  display: none;
}

.gform_validation_errors {
  margin-bottom: 12px !important;
  padding: 10px !important;
  border-radius: 6px !important;
  outline: none !important;
}

.gform_validation_errors {
  display: none !important;
}

.gform_validation_errors h2.gform_submission_error {
  font-size: 13px !important;
  font-weight: normal !important;
}

.gfield {
  position: relative !important;
}

.gfield .validation_message {
  position: absolute;
  bottom: -17px;
  font-size: 11px !important;
}

/************** Contact section start **************/

/************** 404 Page **************/
.page-404 {
  position: relative;
  min-height: calc(100vh - 120px);
  background-color: #0f1724;
  color: #ffffff;
}

.page-404--with-bg {
  background-size: cover;
  background-position: center;
}

.page-404__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 36, 0.78);
}

.page-404__content {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
}

.page-404__inner {
  max-width: 760px;
}

.page-404__title {
  margin: 0 0 20px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -1.5px;
}

.page-404__text {
  margin: 0 0 32px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
}

.page-404__actions {
  display: grid;
  gap: 32px;
}

.page-404__search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.page-404__search-field {
  flex: 1 1 320px;
  min-width: 220px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 14px;
  height: 50px;
  outline: none;
}

.page-404__search-field::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.page-404__search-button {
  padding: 12px 24px;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-404__search-button .btn__label {
  text-align: center;
}

.page-404__cta-button {
  /* min-width: 130px;
  max-width: 160px; */
}

.product-single__thumbs::-webkit-scrollbar {
  display: none;
}

.product-single__thumbs {
  scrollbar-width: none;
}

/************** 404 Page End **************/

@media (max-width: 1100px) {
  .product-single__top {
    grid-template-columns: 1fr;
  }

  /* .product-single__thumbs {
    grid-auto-flow: column;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  } */
  .product-single__details h2 {
    font-size: 40px;
  }

  .product-single-header .product-tag {
    font-size: 18px;
    height: 30px;
  }

  .product-single__spec-block h3 {
    font-size: 40px;
  }

  .product-single__spec-block ul li {
    font-size: 20px;
  }

  .product-single__related h2 {
    font-size: 40px;
  }

  .product-single__related .products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-related.is-slider .products .product {
    flex: 0 0 calc((100% - 48px) / 3);
  }

  .inner-hero__bottom-text {
    bottom: 0px !important;
    line-height: 1;
  }
}

@media (max-width: 767px) {
  .product-single__gallery {
    display: flex;
    flex-direction: column-reverse;
  }

  .product-single__thumbs {
    width: calc(100vw - 50px);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .product-single__thumbs>* {
    flex: 0 0 auto;
    width: 86px;
  }

  .product-single__thumb {
    width: 86px;
    height: 85px;
  }

  .product-single {
    padding: 24px 0 6px;
  }

  .product-single__related .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-related.is-slider .products .product {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .product-single__description {
    flex-direction: column;
    gap: 20px;
    padding: 16px;
  }

  .product-single__details h2 {
    font-size: 38px;
  }

  .product-single-header .product-tag {
    height: 28px;
    font-size: 18px;
  }

  .product-summary p {
    font-size: 16px;
    letter-spacing: -0.5px;
  }

  .product-single__spec-block h3 {
    font-size: 38px;
  }

  .product-single__spec-block ul li {
    font-size: 16px;
    letter-spacing: inherit;
  }

  .product-single__related h2 {
    font-size: 38px;
  }

  .product-related-slide {
    padding: 40px 0px;
  }

  .shop-page__breadcrumb .woocommerce-breadcrumb,
  .shop-page__breadcrumb .woocommerce-breadcrumb a,
  .product-single__breadcrumb .woocommerce-breadcrumb,
  .product-single__breadcrumb .woocommerce-breadcrumb a {
    font-size: 18px;
    word-break: break-all;
  }

  .fleet-cta__media {
    display: none;
  }

  .fleet-cta--image .fleet-cta__inner {
    padding-top: 30px !important;
  }

  .blank_container .gform_wrapper .gform_fields .gfield input {
    padding: 15px 20px;
    font-size: 16px;
    height: 55px;
  }

  .blank_container .gform_wrapper .gform_fields .gfield textarea {
    font-size: 16px !important;
    padding: 15px 20px !important;
  }

  .blank_container {
    padding-bottom: 70px;
  }

  .page-404__content {
    padding: 60px 0;
  }

  .page-404__title {
    font-size: clamp(36px, 12vw, 58px);
  }

  .product-related.is-slider .product-related__track {
    width: 100%;
  }

  .product-related.is-slider .product-related__progress {
    width: 100%;
  }

  .trusted-agencies__track {
    width: 100%;
  }

}

@media (max-width: 640px) {
  .shop-page__promo-image {
    position: relative;
    max-width: 280px;
    width: 100%;
    left: 0px;
    bottom: 0px;
    display: none;
  }

  .product-related__track {
    margin-top: 20px;
  }

  .gform-theme--foundation .gform_fields {
    grid-template-columns: auto !important;
  }
}

@media (max-width: 520px) {
  .product-single__related .products {
    grid-template-columns: 1fr;
  }

  .product-related.is-slider .products .product {
    flex: 0 0 80%;
  }

  .shop-page__promo {
    padding: 25px 20px;
  }

  .shop-page__promo h2 {
    font-size: 22px;
  }

  .shop-filter__header {
    padding: 0 12px;
    font-size: 12px;
  }

  .product-single__spec-block h3 {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .product-single__details h2 {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .product-single__spec-block ul li {
    font-size: 18px;
  }

  .product-single__related h2 {
    font-size: 30px;
    letter-spacing: -1px;
  }
}

@media (max-width: 420px) {
  .btn__icon {
    width: 24px;
    height: 24px;
  }

  .getQuote {
    font-size: 12px;
  }
}

.installation-single {
  padding: 48px 16px 72px;
  background: #ffffff;
}

.installation-single__header {
  text-align: center;
  max-width: 870px;
  margin: 0 auto 32px;
}

.installation-single__eyebrow {
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7c7c7c;
  font-weight: 600;
}

.installation-single__title {
  margin: 0 auto;
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 600;
  color: #000;
  line-height: 115.625%;
  letter-spacing: -2px;
  max-width: 710px;
}

.installation-single__summary {
  margin-top: 10px;
  color: #606060;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 138.462%;
}

.installation-single__summary p {
  margin: 0;
}

.installation-single__hero {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
}

.installation-single__hero img {
  width: 100%;
  height: auto;
  display: block;
}

.installation-single__hero-cta {
  position: absolute;
  right: 16px;
  bottom: 16px;
}

.installation-single__hero-cta-icon {
  background: #111827;
  color: #ffffff;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.installation-single__stats {
  margin: 32px 0 46px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.installation-single__stat {
  background: #ededed;
  border-radius: 14px;
  padding: 10px 12px;
  display: grid;
  gap: 10px;
}

.installation-single__stat-label {
  font-size: 14px;
  color: #000;
  font-weight: 400;
  line-height: 142.857%;
}

.installation-single__stat-value {
  font-weight: 600;
  color: #000;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 92.308%;
}

.installation-single__content {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 58px;
}

.installation-single__section {
  margin-bottom: 24px;
}

.installation-single__section h2,
.installation-single__section h3 {
  margin: 0 0 8px;
  font-weight: 600;
  color: #111827;
}

.installation-single__section h2 {
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 146.296%;
}

.installation-single__section h3 {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 128.571%;
}

.installation-single__section p {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
  line-height: 162.5%;
  font-weight: 400;
}

.installation-single__tags {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.equipment-installed {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  padding: 22px 16px;
}

.installation-single__tags li {
  color: #1a1a1a;
  padding: 6px 10px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  background: #fff;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.installation-single__list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 8px;
}

.installation-single__list li {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #1b1b1b;
  line-height: 133.333%;
}

.project-highlights .installation-single__list {
  margin-top: 24px;
}

.project-highlights .installation-single__list img {
  min-width: 24px;
  width: 24px;
}

.installation-single__section.challenges-overcome {
  margin-top: 50px;
}

.installation-single__section.challenges-overcome .installation-single__list--highlight {
  margin-top: 25px;
}

.installation-single__section.challenges-overcome .installation-single__list--highlight img {
  max-height: 32px;
}

.installation-single__list--highlight li {
  background: #fffbeb;
  border: 1px solid #fee685;
  border-radius: 6px;
  padding: 8px 35px 8px 16px;
  font-size: 16px;
  line-height: 150%;
}

.equipment-installed .installation-single__tags {
  margin-top: 24px;
}

.project-highlights {
  margin-top: 50px;
}

.photo-gallery {
  margin-top: 50px;
}

.photo-gallery .installation-single__gallery {
  margin-top: 24px;
}

.installation-single__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.installation-single__gallery-item {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #e5e7eb;
}

.installation-single__gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.installation-single__sidebar {
  display: grid;
  gap: 16px;
}

.installation-single__card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 22px 25px;
}

.installation-single__card h3 {
  margin: 0 0 10px;
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 600;
  color: #0e0e0e;
  line-height: 144%;
}

.installation-single__brands,
.installation-single__related-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.installation-single__brands a,
.installation-single__related-list a {
  color: #1f6feb;
  font-size: 13px;
}

.installation-single__contact-name {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.installation-single__contact-title {
  margin: 4px 0 8px;
  color: #6b7280;
  font-size: 12px;
}

.installation-single__contact-link {
  display: block;
  color: #1f6feb;
  font-size: 13px;
  margin-bottom: 6px;
}

.installation-single__related-type {
  margin: 0 0 8px;
  font-size: 12px;
  color: #6b7280;
}

@media (max-width: 980px) {
  .installation-single__content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .installation-single__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .installation-single__gallery {
    grid-template-columns: 1fr;
  }

  .installation-single__stats {
    grid-template-columns: 1fr;
  }
}

.installation-single__card--brands {
  padding: 16px;
  border-radius: 12px;
}

.installation-single__brand-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
  display: grid;
  gap: 8px;
}

.installation-single__brand-list li {
  background: #f8fafc;
  border-radius: 6px;
  padding: 8px 12px 8px 28px;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 133.333%;
}

.installation-single__brand-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #1f6feb;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.installation-single__card-buttons {
  display: grid;
  gap: 10px;
  margin-top: 23px;
  border-top: 1px solid #e2e8f0;
  padding-top: 17px;
}

.installation-single__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  line-height: 125%;
}

.installation-single__button--primary {
  background: #2f3136;
  color: #ffffff;
}

.installation-single__button--ghost {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  justify-content: center;
  font-size: 16px;
  line-height: 125%;
  color: #1a1a1a;
}

.installation-single__button-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #dc2626;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.installation-single__card--related .installation-single__related-list {
  gap: 10px;
}

.installation-single__related-link {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  color: inherit;
}

.installation-single__related-title {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.installation-single__related-meta {
  font-size: 12px;
  color: #6b7280;
}

.installation-single__testimonial {
  margin-top: 52px;
  border: 2px solid #85abe6;
  border-radius: 12px;
  padding: 22px 28px;
  display: grid;
  gap: 22px;
  background: #f6f6f6;
}

.installation-single__testimonial-quote {
  color: #dc2626;
  font-size: 32px;
  line-height: 1;
}

.installation-single__testimonial p {
  margin: 0;
  font-size: clamp(18px, 2vw, 28px);
  font-style: italic;
  color: #1a1a1a;
  font-weight: 500;
  line-height: 135.714%;
}

.installation-single__testimonial-footer {
  display: flex;
  gap: 16px;
  align-items: center;
}

.installation-single__testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  background: #e0e7ff;
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.installation-single__testimonial-role {
  font-size: 17px;
  color: #6b7280;
  line-height: 141.176%;
  font-weight: 400;
}

.testimonial-avatar-info strong {
  font-size: 22px;
  color: #1a1a1a;
  font-weight: 700;
  line-height: 127.273%;
}

body.single-post {
  padding: 0;
}

.single-post {
  padding: 64px 0px 40px;
  background: #ffffff;
}

.single-post__hero {
  margin-bottom: 32px;
  overflow: hidden;
  border-radius: 24px;
}

.single-post__hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.single-post__header {
  margin-bottom: 24px;
}

.single-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--Text-Subtle);
  margin-bottom: 12px;
}

.single-post__article {
  display: grid;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

.single-post__title {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  margin: 0;
  color: var(--Text-Strong);
}

.single-post__excerpt {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.9;
  color: var(--Text-Neutral);
  max-width: 760px;
}

.single-post__content {
  margin-bottom: 56px;
}

.related-posts {
  padding: 56px 0;
  background: #f9fbff;
}

.related-posts__header {
  margin-bottom: 32px;
}

.related-posts__header h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--Text-Strong);
}

.related-posts__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.related-post-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
  display: grid;
  grid-template-rows: auto 1fr;
}

.related-post-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #e8eef8;
}

.related-post-card__image:hover img {
  scale: 1.05;
  transition: all 0.6s;
}

.related-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s;
}

.related-post-card__image--fallback {
  width: 100%;
  height: 100%;
  background: #e8eef8;
}

.related-post-card__body {
  padding: 24px;
  display: grid;
  gap: 18px;
}

.related-post-card__reading-time {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f4f6ff;
  color: var(--accent-blue);
  font-size: 13px;
  font-weight: 700;
}

.related-post-card__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.related-post-card__title a {
  color: inherit;
}

.related-post-card__excerpt {
  margin: 0;
  color: var(--Text-Neutral);
  line-height: 1.75;
}

.related-post-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: transparent;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px 4px 10px 4px;
  border: 1px solid #000;
  line-height: 90.402%;
  padding: 7px 5px 7px 16px;
  height: 44px;
  position: absolute;
  bottom: 0px;
}

.related-post-card__button .btn__icon {
  background: #000;
}

/*********************** single blog post page start *******************/
.single-post .single-post__article {
  max-width: 100%;
}

.single-post .single-post__article .single-post__header {
  max-width: 878px;
  margin: auto;
  text-align: center;
}

.single-post .single-post__title {
  color: #000;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 115.625%;
  letter-spacing: -2px;
}

.single-post .single-post__excerpt {
  margin-top: 14px;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 138.462%;
  color: #606060;
  max-width: 100%;
}

.single-post .single-post__article .wp-block-heading {
  font-size: clamp(26px, 2.3vw, 32px);
  margin: 0;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1;
}

.single-post .single-post__content p {
  margin-top: 15px;
  margin-bottom: 32px;
  color: #6B7280;
  font-weight: 400;
  font-size: 16px;
  line-height: 162.5%;
}

.single-post .single-post__content {
  max-width: 976px;
  margin-bottom: 0;
}

.single-post .single-post__content .wp-block-list {
  padding-left: 20px;
  margin-top: 0px;
}

.single-post .single-post__content .wp-block-list li {
  color: #1B1B1B;
  font-size: 18px;
  line-height: 133.333%;
  font-weight: 400;
  margin-bottom: 8px;
}

.pro-tip {
  border-left: 3.636px solid #2B7FFF;
  background: #EFF6FF;
  padding: 47px 24px 23px 28px;
  margin: 34px 0px;
}

.pro-tip p {
  margin: 0px !important;
}

.pro-tip .megatech-container {
  max-width: 830px;
  width: 100%;
  margin-left: 0;
}

.single-post .single-post__content .pro-tip p {
  margin: 0px;
  color: #193CB8;
  font-size: 18px;
  letter-spacing: -0.439px;
  line-height: 175%;
}

.single-post .single-post__content .pro-tip p strong {
  color: #1C398E;
  letter-spacing: -0.439px;
  font-weight: 600;
}

.single-post .related-posts {
  background: transparent;
  padding-top: 0px;
  padding-bottom: 90px;
}

.single-post .related-posts__header {
  margin-bottom: 20px;
}

.single-post .related-posts__header h2 {
  font-size: clamp(26px, 2.7vw, 38px);
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 173.684%;
}

.single-post .related-posts .related-posts__list {
  gap: 30px;
}

.single-post .related-posts .related-post-card {
  box-shadow: none;
  border-radius: 0px;
  align-items: flex-start;
  position: relative;
}

.single-post .related-posts .related-post-card .related-post-card__image {
  border-radius: 15px;
  aspect-ratio: auto;
  max-height: 249px;
  min-height: 249px;
}

.single-post .related-posts .related-post-card .related-post-card__image img {
  min-height: 249px;
  max-height: 249px;
}

.single-post .related-post-card .related-post-card__body {
  padding: 20px 0px;
  gap: 16px;
  align-items: flex-start;
}

.single-post .related-post-card .related-post-card__body .related-post-card__reading-time {
  background: transparent;
  color: #707070;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.157px;
  padding: 0;
  border-radius: 0;
}

.single-post .related-post-card .related-post-card__body .related-post-card__title a {
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(20px, 2.3vw, 30px);
}

.single-post .related-post-card .related-post-card__body .related-post-card__excerpt {
  font-size: clamp(18px, 1.4vw, 20px);
  line-height: 136.364%;
  margin-bottom: 2px;
  font-weight: 400;
  margin-bottom: 50px;
}

.post-blog-user-card {
  border-left: 4px solid #2B7FFF;
  background: #EFF6FF;
  padding: 46px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}

.post-user-name {
  background: linear-gradient(135deg, #2B7FFF 0%, #AD46FF 100%);
  display: flex;
  width: 64px;
  height: 64px;
  border-radius: 100%;
  min-width: 64px;
  justify-content: center;
  padding: 10px;
  color: #fff;
  align-items: center;
}

.pst-name {
  margin: 0;
  text-transform: uppercase;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.449px;
  line-height: 140%;
}

.post-user-profile h6 {
  margin: 0;
  font-size: 18px;
  color: #101828;
  font-weight: 600;
  letter-spacing: -0.439px;
  line-height: 155.556%;
}

.single-post .single-post__content .post-user-profile p {
  margin: 0;
  font-size: 14px;
  color: #4A5565;
  line-height: 142.857%;
  letter-spacing: -0.15px;
}

.single-post .single-post__content .post-user-desc p {
  margin: 10px 0px 0px;
  font-size: 16px;
  color: #364153;
  line-height: 150%;
  letter-spacing: -0.312px;
}

.post-user-info {
  max-width: 730px;
}

.home .fleet-operation-cards {
  padding-top: 70px;
  padding-bottom: 140px;
}

/*********************** single blog post page end *******************/

@media screen and (min-width: 1201px) {
  .product-single__description p {
    margin: 0;
    max-width: 710px;
  }
}

@media screen and (min-width: 1101px) and (max-width: 1240px) {
  .product-single__image {
    aspect-ratio: auto;
  }
}

@media screen and (max-width: 992px) {
  .installation-single__card--brands {
    padding: 0px;
  }

  .single-post .related-posts {
    padding-bottom: 50px;
  }

  .single-post .single-post__title {
    letter-spacing: -1px;
  }

  .single-post .single-post__content .pro-tip p {
    font-size: 16px;
  }

  .pro-tip {
    padding: 24px 28px;
  }

  .single-post .related-posts__header h2 {
    letter-spacing: -1px;
  }

  div.single-post {
    padding-bottom: 20px;
  }

  .post-blog-user-card {
    padding: 30px;
  }

  .home .fleet-operation-cards {
    padding: 60px 0px;
  }

}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  #scrollTopBtn {
    bottom: 20px;
    right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .installation-single {
    padding-inline: 0px;
  }

  .installation-single__tags li {
    letter-spacing: inherit;
    font-size: 14px;
  }

  .installation-single__list li,
  .installation-single__list--highlight li {
    font-size: 14px;
  }

  .installation-single__title {
    letter-spacing: -1px;
  }

  .single-post .related-posts .related-posts__list {
    grid-template-columns: 1fr;
  }

  .single-post__hero {
    margin-bottom: 10px;
  }

  .home .trusted-agencies__inner .trusted-agencies__intro {
    margin-bottom: 30px;
  }

  .home .trusted-agencies {
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 640px) {
  .home .fleet-operation-cards {
    padding-top: 0px;
  }
}

@media screen and (max-width: 540px) {
  .post-user-name {
    width: 45px;
    height: 45px;
    min-width: 45px;
    padding: 10px;
  }

  .pst-name {
    font-size: 16px;
  }

  .post-blog-user-card {
    padding: 20px;
  }

  .post-blog-user-card {
    flex-direction: column;
  }

  .post-user-profile {
    position: absolute;
    left: 80px;
    top: 17px;
    padding-right: 10px;
  }

  .single-post .single-post__content .pro-tip p {
    font-size: 15px;
    line-height: 1.5;
  }

}

/* Product Image Zoom Overlay */
.product-single__image img {
  cursor: zoom-in;
}

.product-zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  cursor: zoom-out;
  animation: zoomFadeIn 0.2s ease forwards;
}

@keyframes zoomFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.product-zoom-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}

.product-zoom-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.product-zoom-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.product-zoom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}

.product-zoom-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.product-zoom-prev {
  left: 20px;
}

.product-zoom-next {
  right: 20px;
}

@media screen and (min-width: 981px) {
  div.gform_confirmation_message {
    margin-top: 130px;
  }
}

@media screen and (max-width: 980px) {
  div.gform_confirmation_message {
    margin-inline: auto;
    margin-top: 0;
    width: 100% !important;
  }
}

div.gform_confirmation_message {
  text-align: center;
  background: #ddf3dd;
  padding: 20px;
  border-radius: 8px;
  width: max-content;
  max-width: 100%;
}

.product-categories__cta {
  padding-left: 16px;
}



/*********** Landing page css ************/
section.featured-products.product-related-slide.landing-featured {
  padding: 148px 20px;
}

.landing-featured .product-related__title-group h2 {
  max-width: 502px;
  line-height: 122.727%;
  margin-bottom: 22px;
}

.landing-featured .product-related__title-group .product-related__subheading {
  max-width: 362px;
  margin: auto;
  font-size: 18px !important;
  line-height: 155.556%;
  font-weight: 400;
  color: #4B4B4B !important;
}

.landing-featured .product-related__track {
  margin-top: 68px;
}

.landing-featured .product-related__track .products {
  gap: 30px;
  padding: 0px;
}

.ginput_container_phone .gfield_description.instruction.validation_message {
  display: none;
}

.gform-footer.gform_footer.top_label {
  position: relative;
}

.gform-footer .gform-loader {
  position: absolute !important;
  left: 0px !important;
  right: 0px !important;
  margin: auto !important;
}

@media screen and (max-width: 767px) {
  section.featured-products.product-related-slide.landing-featured {
    padding: 70px 0px;
  }
}