.sale-timer-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    background-color: #2c1364; /* Dark Purple */
    color: #ffffff;
    padding: 20px 40px;
    font-size: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin: 10px 0px;
  }

  .sale-timer-container.pst-stack{
    display: flex;
    flex-direction: column
  }

  .sale-timer-container .sale-timer-title{
    font-weight: bold;
  }
  .sale-timer-container span {
    font-weight: bold;
  }

  @media screen and (max-width: 768px) {
    .sale-timer-container {
        flex-direction: column;
        font-size: 1rem;
        padding: 15px 20px;
    }
    .sale-timer-container.pst-stack-mobile{
      display: flex;
      flex-direction: column
    }
  }