.wc-price-table {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  width: 100%;
}

.wc-price-table-header,
.wc-price-table-row {
  display: flex;
  width: 100%;
}

.wc-price-table-header {
  background-color: #1c1c1cb8;
  font-weight: bold;
  margin-bottom: 10px;
  border: none;
  border-radius: 6px;
  color: white;
}
.wc-price-table-row {
  background: #f0f0ff;
  margin-bottom: 10px;
  border-radius: 5px;
}

.product-name img {
  max-width: 50px;
  margin-right: 10px;
}

.product-name a {
  text-decoration: none;
}

.stock-qty.out-of-stock {
  color: red;
}

.stock-qty.in-stock {
  color: green;
}

.button.add-to-cart.disabled {
  background-color: gray;
  cursor: not-allowed;
}
.wc-price-table-cell.product-name img {
  width: 45px;
}
.wc-price-table-cell {
  display: flex;
  justify-content: start;
  align-items: center;
}
.wc-price-table-cell.add-to-cart {
  flex-direction: column;
}
.wc-price-table-cell a.added_to_cart.wc-forward {
  display: none;
}

.wc-price-table-cell.description {

  height: auto;
  max-height: 90px;
  overflow: hidden;
  width:100px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.wc-price-table-cell.add-to-cart{
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .wc-price-table-cell {
    padding: 10px;
  }
  .wc-price-table-cell.product-name {
    width: 25%;
  }
  .wc-price-table-cell.description {
    width: 50%;
  }
  .wc-price-table-cell.stock-qty {
    width: 12%;
  }
  
  .wc-price-table-cell.product-price {
    width: 10%;
  }
  .wc-price-table-cell.add-to-cart {
    width: 13%;
  }
  .wc-price-table-cell.mobile-label , .label-mb {
    display: none;
  }
}
@media (max-width: 768px) {
  .wc-price-table-header{
    flex-direction: column;
  }

  .wc-price-table-cell {
    border: none;
    padding: 5px;
  }
  .wc-price-table-header .wc-price-table-cell {
    border-bottom: 1px solid gray;
  }
  .wc-price-table-header .wc-price-table-cell:last-child {
    border: none !important;
  }
  .wc-price-table-cell.add-to-cart {
    flex-direction: row;
    gap: 10px;
  }
  .wc-price-table-cell.price-per-pc {
    display: none;
  }

  .wc-price-table-row {
    padding: 10px;
    flex-wrap: wrap;
  }
  .wc-price-table-row .wc-price-table-cell.product-name {
    border-bottom: 1px solid #2e2e2e1c;
    padding-bottom: 15px;
  }
   .wc-price-table-cell.product-name {
    width: 100%;
    height: auto;
  }
  .wc-price-table-cell.description {
    width: 100%;
    height: auto;
    max-height: 80px;
  }
  .wc-price-table-row .wc-price-table-cell.stock-qty , .wc-price-table-row .wc-price-table-cell.add-to-cart, .wc-price-table-row .wc-price-table-cell.product-price{
    width: 32%;
    flex-direction: column;
    align-items: self-start;
    margin-top: 13px;
  }
  .wc-price-table-header .wc-price-table-cell{
    display: none;
  }
  .wc-price-table-cell.mobile-label {
    display: block;
    text-align: center;
  }
  .label-mb {
    display: block;
    color: #000000cc;
    font-weight: 500;
  }
  .wc-price-table-cell button.button.add-to-cart {
    width: 100%;
  }

}

.wc-price-table-row .wc-price-table-cell.description {
  align-items: self-start!important;
}
