.product-card {
  width: 100%;
  position: relative;
}
.product-card.product-card-sold {
  pointer-events: none;
  opacity: 0.5;
}
.product-card .product-image {
  position: relative;
}
.product-card .product-image:hover .image-hover {
  opacity: 1;
}
.product-card .product-image img, .product-card .product-image svg {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}
.product-card .product-image img.image-hover, .product-card .product-image svg.image-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
}
.product-card .product-image svg {
  width: 100%;
  height: auto;
}
.product-card .product-image svg:hover {
  fill: unset;
}
.product-card .product-image .quickview-eye {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 30px;
  height: 22px;
  cursor: pointer;
}
.product-card .product-image .quickview-eye svg {
  height: 21px;
}
.product-card .product-image .quickview-eye svg path {
  stroke: #000000;
}
.product-card .product-card-details {
  padding: 25px 2px 0;
  box-sizing: border-box;
}
@media only screen and (min-width: 992px) {
  .product-card .product-card-details {
    padding: 33px 0 0;
  }
}
.product-card .product-card-top {
  padding-bottom: 16px;
  border: 0px;
}
.product-card .product-card-title {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card .product-card-title a {
  display: block;
  font-size: 14px;
  letter-spacing: 0.02em;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
}
@media only screen and (min-width: 768px) {
  .product-card .product-card-title .product-price {
    text-align: right;
  }
}
.product-card .product-card-title .product-price span {
  display: block;
  font-size: 14px;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .product-card .product-card-title .product-price span {
    text-align: right;
  }
}
.product-card .product-card-title.product-price-staff-discount {
  align-items: flex-start;
}
.product-card .product-card-title.product-price-staff-discount span {
  color: #D90101;
  display: block;
  margin: 0 0 2px;
  font-weight: normal;
}
.product-card .product-card-title.product-price-staff-discount span.rrp {
  color: var(--text-primary-color);
  font-weight: normal;
  text-decoration: line-through;
}
.product-card .product-card-author {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 5px;
}
@media only screen and (min-width: 768px) {
  .product-card .product-card-author {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
}
.product-card .product-card-author a, .product-card .product-card-author span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.02em;
  font-weight: 600;
  margin: 0;
  line-height: 1;
}
.product-card .product-card-author .product-card-edition {
  display: block;
  font-size: 12px;
  letter-spacing: 0.02em;
  font-weight: 400;
  margin: 0;
  line-height: 1;
}
.product-card .product-card-size {
  display: block;
  font-size: 12px;
  letter-spacing: 0.02em;
  font-weight: 400;
  margin: 4px 0 0;
  line-height: 1;
}
.product-card .product-card-more-options {
  margin-top: 14px;
  font-size: 12px;
  display: block;
  font-style: italic;
  font-weight: bold;
}
.product-card .product-card-more-options:hover {
  text-decoration: underline;
}
.product-card .product-card-availability {
  display: flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.02em;
  font-weight: 400;
  margin: 0;
  line-height: 1;
}
.product-card .product-card-availability:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: #6AF03B;
  margin-right: 7px;
}
.product-card .product-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
}
.product-card .product-card-badges {
  position: absolute;
  top: 10px;
  left: 0px;
  z-index: 3;
  display: flex;
  gap: 5px;
}
.product-card .product-card-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-card .product-card-wishlist svg {
  width: 12px;
  height: 12px;
}
.product-card span.smartwishlist[title]:after {
  display: none !important;
}
.product-card .product-card-quickadd a {
  font-size: 14px;
  cursor: pointer;
}
.product-card .product-card-quickadd a:hover {
  text-decoration: underline;
}
.product-card .product-title-reviews {
  font-size: 14px;
  text-transform: capitalize;
}
.product-card .product-title-reviews .product-title {
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}
.product-card .product-description {
  font-size: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 30px;
}
.product-card .product-buttons {
  display: flex;
  gap: 5px;
  text-align: center;
}
.product-card .product-buttons .product-link {
  flex: 1;
}
@media only screen and (max-width: 575.98px) {
  .product-card .product-buttons .product-link {
    padding: 6px 8px;
  }
}

.product-badges {
  display: flex;
  flex-flow: row;
  width: 100%;
  padding: 0;
  pointer-events: none;
}
.product-badges .product-badge {
  display: block;
  font-size: 16px;
  padding: 5px 20px;
  white-space: nowrap;
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
  width: -moz-max-content;
  width: max-content;
  margin-right: 6px;
}
.product-badges .product-badge:last-child {
  margin-right: 0px;
}
.product-badges .product-badge.new-arrival-badge {
  background-color: #fff;
  color: #1b1b1b;
}
.product-badges .product-badge.discount-percentage-badge {
  background-color: var(--accent-1-color);
}
.product-badges .product-badge.limited-edition-badge {
  background-color: var(--accent-2-color);
}
.product-badges .product-badge.bestseller-badge {
  background-color: var(--primary-color);
}
.product-badges .product-badge.preorder-badge {
  background-color: var(--primary-color);
}
.product-badges .product-badge.low-stock-badge {
  background-color: var(--primary-color);
}
.product-badges .product-badge.offer-badge {
  background-color: #4D7272 !important;
}
.product-badges .product-badge.offer-badge div {
  font-size: 12px;
}
.product-badges .product-badge::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  opacity: 0.3;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
  animation: badge_shine 10s infinite 3s;
}
@keyframes badge_shine {
  0% {
    transform: translateX(-100%);
  }
  90% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.product-card-buttons {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.product-card-buttons a {
  white-space: nowrap;
}
@media only screen and (max-width: 1200px) {
  .product-card-buttons .button-3 {
    padding: 5px 15px;
  }
}
.product-card-buttons .quick-add-cart {
  border-radius: 50%;
  min-height: 35px;
  height: 35px;
  min-width: 35px;
  width: 35px;
  padding: 0 !important;
  background-color: var(--button-4-color);
  color: var(--button-4-text-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-buttons .quick-add-cart svg {
  padding-left: 3px;
}
