/*
* Basic Styles For the frontend by DRTSWebWorks
*/

.price{
	display: none;
}

/* Old Price */
.drtswwc-old-price {
    font-size: 0.8em !important;
    color: #888 !important;
    text-decoration: line-through;
    margin: 0;
    padding: 0;
}
.drtswwc-old-price .amount {
    font-size: inherit !important;
    color: inherit !important;
    margin: 0;
    padding: 0;
}

/* New Price */
.drtswwc-new-price {
    font-size: 1.5em !important;
    font-weight: 600;
    color: red !important;
    margin: 0;
    padding: 0;
}
.drtswwc-new-price .amount {
    font-size: inherit !important;
    color: inherit !important;
    margin: 0;
    padding: 0;
}


.drtswwc-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0;
    padding: 0; 
}

/* Mobile grid */
@media (max-width: 768px) {

  ul.products .price .drtswwc-price,
  .woocommerce ul.products .price .drtswwc-price {

    font-size: 15px !important;
    line-height: 1.25;
  }

  ul.products .drtswwc-old-price,
  ul.products .drtswwc-new-price {
    display: block;
    font-size: 15px !important;
  }

  ul.products .drtswwc-old-price {
    opacity: 0.7;
  }

  ul.products .drtswwc-new-price {
    font-weight: 600;
  }

}