.cardContainer {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 3%;
  flex-wrap: wrap;
  padding-bottom: 30px;
  /* background-color: red; */
}

.productCard {
  width: 45%;
  aspect-ratio: 0.64;
  /* background-color: rgba(232, 230, 230, 0.942); */
  background-color: white;
  border-radius: 10px 10px 0 0;
  margin-top: 7px;
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.productCard--img {
  width: 100%;
  height: 55%;
  background-size: cover;
  background-position: center;
  border-radius: 6% 6% 0% 0%;
  border: 1px solid rgb(152, 152, 152);
  border-bottom: none;
  display: flex;
  flex-direction: column;
}

.productCard--discBlock{
  width: 50%;
  text-align: center;
  margin-top: auto;
  margin-left: auto;
  background-color: rgb(255, 44, 44);
  color: white;
  font-weight: bold;
  border: 1px solid white;
  border-radius: 5px 0px 0px 0px;
}

.productCard--content {
  width: 94%;
  height: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgb(152, 152, 152);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 3%;
}

.productCard--t1 {
  font-size: 0.8rem;
  width: 100%;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.productCard--sold{
    font-size: 0.8rem;
    color: rgb(60, 60, 60);
    width: 100%;
    text-align: left;
    margin-top: 4%;
}

.productCard--row2{
    display: flex;
    flex-direction:row; 
    width: 100%;
    margin-top: auto;
}

.productCard--qty{
    width: 40%;
    background-color: chartreuse;
    border-radius: 6px;
    margin-left: 2%;
    text-align: center;
    height: fit-content;
    padding: 2px;
}

.pcQty--text{
    font-size: 0.9rem;
}

.productCard--t2 {
    font-size: 1rem;
    width: 100%;
    text-align: right;
    overflow: hidden;
    font-weight: bolder;
}

.productCard--oldPrice{
  font-size: 0.7rem;
  text-decoration: line-through;
  color: rgb(79, 79, 79);
}

.productCard--priceCol{
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: end;
  margin-left: auto;
  padding-right: 10px;
}

.productCard--btn{
    width: 100%;
    height: 25%;
    border-radius: 5px;
    border: 1px solid #ee1abf;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    color: #ee1abf;
    font-weight: bold;
    background-color: white;
    cursor: pointer;
}

.productCard--btn:hover{
  background-color: #ee1abf;
  color: white;
}

@media only screen and (min-width: 400px) {
  .productCard{
    width: 40%;
  }
}

@media screen and (min-width: 520px) {
  .productCard{
    width: 30%;
  }
}

@media screen and (min-width: 780px) {
  .productCard{
    width: 20%;
  }
}

@media screen and (min-width: 1024px) {
  .productCard{
    width: 15%;
  }
}

@media screen and (min-width: 1200px) {
  .productCard{
    width: 14%;
  }
}

.paginationRow{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: rgb(255, 142, 221);
  padding-top: 1vh;
  padding-bottom: 1vh;
}

.pagination--nextBtn{
  background-color: #fbbff0;
  border: 1px solid rgb(131, 131, 131);
  border-radius: 1px;
  margin-right: 10px;
  margin-left: 10px;
  font-size: 1rem;
  cursor: pointer;
}

.pagination--nextBtn:hover{
  color: blue;
}

.productPagination{
  width: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

@media only screen and (min-width: 450px) {
  .productPagination{
    width: 30%;
  }
}

@media screen and (min-width: 950px) {
  .productPagination{
    width: 20%;
  }
}