50949771198628
M.E.K Galleria
100% Premium Cotton
350 GSM
Oversized Fit
How can we be is quick to judge what someone else has the need to feel like if we've never understood their so called "need". I tried it and I didn't like it. But it will never be a regret, I understand what they wanted to feel. Who are we to tell someone it's wrong when they think it's right? Maybe curiosity will kill us and lead us to a path of regret...
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
51071332155556
M.E.K Galleria
Gold Stainless Steel
316L
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...
51186245009572
Galleria NYC
-
One size fits all with adjustable snap closure for a universal, secure fit
-
Side and back embroidery with tight & clean stitching
-
Custom ripped front panel exposing layered fabric
-
Front features screen-printed artwork aligned with the distressed tear for a unique, multi-texture look
Statement of individuality, as if we should redefine what "normal" means and what it should look like. Your version of "ordinary" is someone else's version of weird. F*ck The Ordinary
51186201067684
Galleria NYC
"M.E.K" Edition Plushie
Full Printed Cotton Stuffed Plushie
65cm height
Please review all our policies, production may take up to 3 weeks.
It's hard to move past an addiction, why not trophy it?
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();
});