document.addEventListener('DOMContentLoaded', function() {
  if (window.location.href === 'https://cinemaholics.ge/en/buytickets' || 
      window.location.href === 'https://cinemaholics.ge/en/buytickets/') {
    
    // Create a style element
    const style = document.createElement('style');
    
    // Add your CSS as text content
    style.textContent = `
      .t-store__card {
        position: relative;
      }
      
      .t-store__card::after {
        content: attr(data-product-inv) " tickets available";
        font-family: 'Playfair Display';
        font-size: 22px;
        font-weight: 900;
        color: #ffffff;
        padding: 3px 8px;
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 100%;
        text-align: left;
        box-sizing: border-box;
      }
      
      .t-store__card__btns-wrapper {
        margin-bottom: 5%;
      }
      
      .js-store-prod-sold-out {
        display: none;
      }
    `;
    
    // Append the style element to the document head
    document.head.appendChild(style);
  }
})