51003448787108
M.E.K Galleria
Premium Blue Denim
Jean Printed Design & Screen Printed text
Stitched Crotchet
Relaxed fit
"Where there is faith angels dwell, yet there is a bridge between heaven and earth."I almost feel as if Angels serve as a connection or intermediary between heaven and our human experience (earth). It's almost as if they facilitate communication, guidance, and protection from a higher realm that the human cant comprehend. Its almost as if they embody the qualities of love, support, and wisdom, helping the human navigate their personal spiritual journeys
51186470387876
Galleria NYC
350 gsm
Seamless Tee
Pain is something we've all once carried, whether its in the past, now, or future. Its incredible how all of our unique experiences, feelings, and storylines can dictate what we define as something called "pain". its a universal experience but it shapes each of us differently and somehow, we still find a way to keep going...
50932574159012
M.E.K Galleria
100% Premium Cotton
350 GSM
Screen Print + Embroidery
Our world only works by our own understanding and interpretation of it. I find it amazing that two people can perceive the exact same situation differently, leading to varied responses and outcomes. Our perceptions can create a subjective reality that affects our decisions and interactions with others. Whom are we to judge as we walk imperfectly ourselves. We are so quick to make a judgement of others but have yet to see what they see in the lense of their reality.
51089353375908
M.E.K Galleria
PREMADE READY TO SHIP | Limited Stock
100% Premium Cotton
350 GSM
Oversized Fit
A high can only last so long, a sense of euphoria that can give a short-term effect but a long-term memory that lingers, reminding us of moments that transcended time. "ZA LIVES FOREVER"
document.addEventListener('DOMContentLoaded', () => {
const productJson = window?.product || window?.meta?.product || null;
if (!productJson) return;
// Selector used by Globo for the selected variant ID
// (You may need to confirm the exact selector, but Globo always outputs one)
const globoInput = document.querySelector('[name="globo_selected_variant"], [data-globo-variant-id]');
// Your theme's add-to-cart form
const atcForm = document.querySelector('form[action="/cart/add"]');
if (!globoInput || !atcForm) return;
// Create/override the variant input used by Shopify
let variantInput = atcForm.querySelector('input[name="id"]');
if (!variantInput) {
variantInput = document.createElement('input');
variantInput.type = 'hidden';
variantInput.name = 'id';
atcForm.appendChild(variantInput);
}
// Whenever Globo updates a swatch
const updateVariant = () => {
const globoVariantId = globoInput.value || globoInput.getAttribute('data-globo-variant-id');
if (!globoVariantId) return;
// Force the variant ID into the form
variantInput.value = globoVariantId;
// (Optional but recommended)
// Update your theme’s selected variant object if it exists
if (window?.theme?.Product) {
window.theme.Product.selectedVariantId = globoVariantId;
}
};
// Observe Globo changing its input dynamically
const observer = new MutationObserver(updateVariant);
observer.observe(globoInput, { attributes: true, attributeFilter: ['value'] });
// Also patch ATC submission in case theme JS overwrites it
atcForm.addEventListener('submit', () => {
updateVariant(); // last-second override
});
// Initial sync
updateVariant();
});