          /* Add styles for regular price */
          .regular-price {
              color: #999;
              /* Light grey color */
              font-size: 0.6em;
              /* Smaller font size */
              text-decoration: line-through;
              /* Strike-through effect */
              margin-left: 10px;
              font-weight: normal;
              padding-top: 10px;
          }

          /* Make the price more prominent */
          .wcpa_price_summary .wcpa_price .price_value {
              font-size: 1.2em;
              /* Make the price a bit larger */
              font-weight: bold;
              /* Make it bold */
              color: #333;
              /* Dark color for the price */
          }

          /* Optional: Add some spacing between price and regular price */
          .wcpa_price_summary {
              margin-bottom: 20px;
          }

          .sale-20 {
              font-size: 14px;
              background: red;
              color: #fff;
              padding: 5px 10px;
              border-radius: 5px;
              display: inline-block;
              animation: scale 1s infinite alternate;
              /* Hiệu ứng phóng to thu nhỏ */
          }

          @keyframes blink {
              from {
                  opacity: 1;
              }

              to {
                  opacity: 0.7;
              }
          }

          @keyframes scale {
              from {
                  transform: scale(1);
              }

              to {
                  transform: scale(1.2);
              }
          }

          .countdown-timer-container {
              display: flex;
              flex-direction: column;
              align-items: center;
              width: 100%;
          }

          #countdown-timer {
              background: #fff;
              border: 2px solid red;
              border-radius: 10px;
              padding: 10px 15px;
              font-size: 24px;
              color: red;
              text-align: center;
              width: 100%;
          }

          #text-people-are-viewing-product {
              transition: all 0.5s ease;
          }

          div#poststuff {
              display: none;
          }

          .wrap .acf-settings-wrap {
              display: none;
          }

         