.product-page {
  padding-bottom: 0;
}
.product-category {
  /*padding: 2rem;*/
  margin-bottom: 2.5rem;
  /*background: var(--smoke-color2);*/
}
.product-card {
  position: relative;
  background-color: var(--smoke-color2);
  /*overflow: hidden;*/
  transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  -o-transition: .5s;
  border-radius: 15px;
  border: 1px solid var(--smoke-color2);
}
.product-card .product-img{
  position: relative;
  background-color: var(--smoke-color2);
  border-radius: 15px 15px 0 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.product-card .product-img a img {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1);
  transition: all ease 0.5s;
}
.product-card:hover .product-img > a > img {
  transform: scale(1.1);
}
.product-card:hover {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}
.product-card:hover .product-title a {
  color: var(--theme-color);
}
.product-card .product-content {
  padding: 1rem;
}
.product-card .product-categories {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}
.product-card .product-categories a {
  color: inherit;
  font-size: 0.875rem;
}
.product-card .product-categories a:hover {
  text-decoration: underline;
  color: var(--theme-color);
}
.product-card .product-title a {
  font-size: 1rem;
  color: var(--title-color);
}
.product-card .product-title .product-title-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; 
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5em;
  min-height: calc(1.5em * 2);
  max-height: calc(1.5em * 2);
  width: 100%;
  font-size:14px;
}
.product-card .product-title a:hover {
  color: var(--theme-color);
}
.product-gallery {
  overflow: hidden;
}
.product-main {
  margin-bottom: 1rem;
  position: relative;
}
.product-main .maximize-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--theme-color);
  opacity: 0;
  z-index: 3;
  transition: opacity ease 0.4s;
  pointer-events: none;
}
.product-main:hover .maximize-icon {
  opacity: 1;
}
.product-main:not(.swiper-initialized) .swiper-slide:not(:first-child),
.product-thumbs:not(.swiper-initialized) .swiper-slide:not(:first-child) {
  display: none;
}
.product-thumbs:not(.swiper-initialized) .swiper-slide {
  display: none;
}
.product-main .swiper-slide,
.product-thumbs .swiper-slide {
  height: auto;
}
.product-main .swiper-slide a {
  width: 100%;
  height: 100%;
}
.product-main .swiper-wrapper .swiper-slide img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-main .swiper-slide a.image-lazyload:hover,
.product-main .maximize-icon:hover {
  cursor: zoom-in;
}

.nav-image {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: all ease 0.4s;
}
.image-lazyload img,
.nav-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-image img {
  opacity: 0.65;
  transition: opacity ease 0.4s;
}
.product-thumbs .swiper-slide-thumb-active .nav-image {
  border-color: var(--theme-color);
}
.product-thumbs .swiper-slide-thumb-active .nav-image img {
  opacity: 1;
}
.nav-image:hover img {
  opacity: 1;
}
.nav-image:hover {
  border-color: var(--theme-color);
  cursor: pointer;
}
.swiper-button-next,
.swiper-button-prev {
  --swiper-navigation-size: 23px;
  --swiper-theme-color: #fff;
  background-color: var(--theme-color);
  border-radius: 50%;
  padding: 6px;
}
.products-details .product-model {
  --r: .8em; /* control the cutout */
  
  border-block: .5em solid #0000;
  padding-inline: calc(var(--r) + .25em) .5em;
  line-height: 1.8;
  clip-path: polygon(0 0,100% 0,100% 100%,0 100%,0 calc(100% - .25em),var(--r) 50%,0 .25em);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(255, 255, 255, 0.18) 40%, rgba(255, 255, 255, 0.1) 60%, rgba(0, 0, 0, 0.2) 100%) padding-box var(--theme-color);
  width: fit-content;
  color: #fff;
  padding-left: 2rem;
  padding-right: 2rem;
}
.basic-information {
  margin-top: 1.5rem;
}
.product-applications {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.product-applications-item {
  position: relative;
  display: inline-flex;
  padding: 8px;
  background-color: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #eee;
  outline: none;
}
.product-applications-img img {
  width: 100px;
  height: 100px;
  display: block;
  border-radius: 6px;
  object-fit: cover;
}
.app-tooltip {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background-color: rgba(33, 37, 41, 0.9);
  color: #fff;
  padding: 0 12px;
  font-size: 10px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  z-index: 10;
}
.product-applications-item:hover .app-tooltip,
.product-applications-item:focus .app-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.products-details .product-tags {
  padding: 20px 0 10px 0;
  font-size: 14px;
}
.products-details .product-tags span,
.products-details .product-social span {
  font-weight: 600;
  font-size: 0.875rem;
  margin-right: 5px;
}
.products-details .product-social span {
  display: inline-block;
  margin-bottom: 5px;
}
.products-details .product-tags a {
  color: var(--body-color);
  display: inline-block;
  border: 1px solid var(--border-color);
  padding: 0px 10px;
  margin: 3px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.products-details .product-tags a:hover {
  color: #fff;
  border: 1px solid var(--theme-color);
  background-color: var(--theme-color);
  transition: all 0.3s ease-in-out;
}
.products-details .content-title {
  margin-bottom: 60px;
}
.products-details .content-title h3 {
  position: relative;
  border-bottom: medium none currentcolor;
}
.products-details .content-title h3::after {
  border-bottom: medium none currentcolor;
  content: "";
  position: absolute;
  left: 0px;
  bottom: -15px;
  height: 3px;
  width: 60px;
  border-radius: 15px;
  background: var(--theme-color);
}
.products-details .content-parameter .table {
  --bs-table-striped-bg: #f9f9f9;
  --bs-table-hover-bg: var(--smoke-color2);
  --bs-table-striped-color: var(--body-color);
  color: var(--body-color);
}
.products-details .content-parameter .table th {
  color: var(--body-color);
}
.products-details .content-details {
  margin-top: 60px;
}
.related_product {
  padding: 80px 38px;
}
@media (max-width: 991px) {
  .product-gallery {
    margin-bottom: 20px;
  }
  .product-applications {
    gap: 8px;
  }
  .product-applications-img img {
    width: 80px;
    height: 80px;
  }
  .products-details .content-parameter table td,
  .products-details .content-parameter table th {
    font-size: 12px;
  }
  .related_product {
    padding: 40px 0px;
  }
  .pages-layout.product-page {
      padding: 60px 0px;
  }
  .related_product .products-details .row.gy-40 {
    --bs-gutter-y: 20px;
  }
}