
.ocop-product-item {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--light-color);
}

.ocop-product-item:hover a {
  color: var(--primary-color);
}

.ocop-product-item:hover .ocop-product-item-img img {
  transform: translateY(-5px);
}

.ocop-product-item .ocop-product-item-percent {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 3;
  background-image: url("../img/homepage/sale-off-prod/sale-off-bg.svg");
  color: var(--light-color);
  font-weight: 500;
  line-height: calc(22/14);
  width: 44px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ocop-product-item-img {
  width: 100%;
  height: 220px;
}

.ocop-product-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease-in-out;
}

.ocop-product-item-info {
  padding: 8px;
  margin-bottom: 12px;
}

.ocop-product-item-info .ocop-product-item-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  line-height: calc(22/14);
  margin-bottom: 8px;
  color: var(--text-color);
}

.ocop-product-item-info .ocop-product-item-pricing {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ocop-product-item-info .ocop-product-item-pricing .current-price {
  color: #D0021C;
  font-size: 18px;
  font-weight: 500;
  line-height: calc(26/18);
}

.ocop-product-item-info .ocop-product-item-pricing .old-price {
  text-decoration: line-through;
  color: #8C8C8C;
  line-height: 22px;
}

.ocop-product-item-info .add-to-cart-btn {
  border-radius: 100%;
  background: var(--light-color);
  box-shadow: 0px 0px 8px 0px rgba(7, 111, 191, 0.40);
  padding: 8px;
  border: none;
}

.ocop-product-item-info .add-to-cart-btn:hover {
  transform: scale(1.15);
  transition: transform 0.3s linear;
}

.ocop-product-item-progress {
  margin-top: 12px;
  width: 100%;
  height: 16px;
  border-radius: 16px;
  position: relative;
  background: var(--neutral-color);
}

.ocop-product-item-progress .progressbar-before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.ocop-product-item-progress .progress-saled {
  font-size: 12px;
  color: var(--text-color);
  line-height: calc(16 / 12);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.ocop-product-item-progress .progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(90deg, #F7941D 0%, #F7C71D 100%);
}