/*
Theme Name: Minimog Child
Theme URI: http://minimog.thememove.com/
Author: ThemeMove
Author URI: http://thememove.com/
Version: 1.0.0
Template: minimog
Text Domain:  minimog-child
Tags: editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready
*/

/* Style for MOQ message above quantity */
.nrp-moq-note {
  font-size: 13px;
  font-weight: 500;
  color: #f25c05; /* change this to your brand color */
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Product single page title */
.woocommerce div.product .product_title,
h1.product_title {
  text-transform: none !important;
}

/* Shop / archive card titles */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
h2.woocommerce-loop-product__title,
.product-item__title,
.product-loop__title {
  text-transform: none !important;
}

/* In case the theme capitalizes only the first letter */
.woocommerce-loop-product__title::first-letter,
.product_title::first-letter,
.product-item__title::first-letter {
  text-transform: none !important;
}

/* If the theme set transform on headings globally, cancel it only inside WooCommerce */
.woocommerce h1, .woocommerce h2, .woocommerce h3 {
  text-transform: none !important;
}

document.addEventListener('DOMContentLoaded', function () {
  document.querySelectorAll('.product_title, .woocommerce-loop-product__title, .product-item__title')
    .forEach(el => el.style.textTransform = 'none');
});

