#product.atf-section-padding {
  padding: 90px 0;
}

#product .atf-section-title h5 {
  margin-top: 0.5rem;
  font-size: 14px;
  color: var(--color-primary);
  letter-spacing: 1.8px;
}

#product .atf-section-title h2 {
  font-size: 30px;
  line-height: 1.3;
  text-shadow: 3px 4px 10px rgba(0, 0, 0, 0.2);
}

#product .atf-section-title p {
  margin-top: 15px;
}

.product-desc {
  border-left: 2px solid var(--color-primary);
}

#product .owl-controls {
  margin-top: 30px;
}

.product-grid{
  text-align: center;
}

.product-grid .product-image {
  overflow: hidden;
  position: relative;
}

.product-grid .product-image a.image {
  display: block;
}

.product-grid .product-image img {
  width: 100%;
  height: auto;
  transition: all 0.4s ease-out 0s;
}

.product-grid .product-image:hover img {
  transform: scale(1.15);
}

.product-grid .product-hot-label {
  color: #fff;
  background: var(--color-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  height: 23px;
  padding: 0 8px 0 22px;
  position: absolute;
  top: 10px;
  right: 0;
  clip-path: polygon(100% 0, 100% 100%, 0% 100%, 20% 50%, 0% 0%);
}

.product-grid .product-links {
  background: #fff;
  padding: 0;
  margin: 0;
  list-style: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
  opacity: 0;
  transform: translateX(-100px);
  position: absolute;
  top: 15px;
  left: 15px;
  transition: all 0.4s;
}

.product-grid:hover .product-links {
  opacity: 1;
  transform: translateX(0);
}

.product-grid .product-links li a {
  color: var(--title-text-color);
  line-height: 58px;
  height: 55px;
  width: 55px;
  display: block;
  position: relative;
  transition: all 200ms ease 0s;
}

.product-grid .product-links li a:hover {
  color: var(--color-primary);
}

.product-grid .product-links li a::before,
.product-grid .product-links li a::after {
  content: attr(data-tip);
  color: #fff;
  background-color: var(--color-primary);
  font-size: 13px;
  line-height: 22px;
  border-radius: 5px 5px;
  padding: 5px 10px;
  white-space: nowrap;
  display: none;
  position: absolute;
  left: 60px;
  top: 10px;
}

.product-grid .product-links li a:after {
  content: '';
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 0;
  transform: translateX(30%) rotate(45deg);
  top: 20px;
  left: 52px;
  z-index: -1;
}

.product-grid .product-links li a:hover:before,
.product-grid .product-links li a:hover:after {
  display: block;
}

.product-grid .product-links li a i {
  font-size: 22px;
}

.product-grid .product-content {
  background: #fff;
  padding: 15px 12px;
}

.product-grid .title {
  font-size: 20px;
}

.product-grid .title a {
  display: block;
  color: var(--title-text-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.3s ease 0s;
}

.product-grid .title a:hover {
  color: var(--color-primary);
}

#product-slider .owl-dots {
  margin-top: 30px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
#product-slider .owl-dot {
  display: inline-block;
  zoom: 1;
}
#product-slider .owl-dot span {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  border-radius: 50%;
  border: 2px solid var(--title-text-color);
  background: transparent;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
}
#product-slider .owl-dot.active span,
#product-slider .owl-dot:hover span {
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

@media screen and (max-width: 991px) {
  .product-grid {
    margin: 0 0 30px;
  }
}

@media only screen and (max-width: 767px) {
  #product .atf-section-title h2 {
    font-size: 25px;
  }
}