﻿/*********** PRODUCT BOX LEFT EXTRA CONTAINER **********/
.product-left-extra {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  display: flex;
  flex-direction: column;
  min-width: 64px;
  z-index: 1;
}

/*********** PRODUCT BOX NEW TAG (If the product is new) **********/
.product-new-tag {
  width: 100%;
  padding: 6px 18px;
}

.product-new-tag p {
  font-size: 10px;
  text-align: center;
}

/*********** PRODUCT BOX DISCOUNT TAG (If the product has discount) **********/
.product-discount-tag {
  width: 42px;
  height: 42px;
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  margin-inline-start: 12px;
}

.product-discount-tag p {
  font-size: 10px;
}

/*********** PRODUCT BOX BEST SALE TAG (If the product is a best selling product) **********/
.product-best-sale-tag {
  width: 42px;
  height: 42px;
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  margin-inline-start: 12px;
}

.product-best-sale-tag p {
  font-size: 10px;
  text-align: center;
}


/*********** PRODUCT DETAILS PAGE LEFT EXTRA CONTAINER **********/
.product-details-page-left-extra {
  position: absolute;
  display: flex;
  inset-inline-start: 0;
  flex-direction: column;
  min-width: 64px;
  z-index: 1;
}


/*================ X-Large devices (large desktops, 1200px and up) ================*/
@media only screen and (min-width: 1200px) {
  /*************** PRODUCT BOX DEFAULT ****************/
  .product-new-tag p {
    font-size: 12px;
  }

  .product-discount-tag {
    width: 50px;
    height: 50px;
  }

  .product-discount-tag p {
    font-size: 12px;
  }

  .product-best-sale-tag {
    width: 50px;
    height: 50px;
  }

  .product-best-sale-tag p {
    font-size: 12px;
  }
}
