🔥 Λ И G E Я Fabric Specs

Compression t-shirts engineered for maximum performance:

🛡️

High Compression & Flexibility

Provides optimal muscle pressure to improve circulation and reduce fatigue, featuring premium 4-way stretch mobility.

💧

Dry-Fit Sweat Wicking

Advanced moisture-wicking technology pulls sweat away from your skin, keeping you dry during intense workouts.

🧵

Flat-lock Stitching

Seamless flat seams completely eliminate skin chafing and friction, built to withstand heavy lifting.

💀 WELCOME TO THE ABYSS

"We don't just make athletic wear.. We arm the monsters that wake up in the dark."

Λ И G E Я is the final sanctuary for those fueled by pain, those who make heavy iron their personal symphony. We are here to transform your suppressed rage into a devastating force that breaks all limits.

Fear? Left behind. Fatigue? Our fuel. Λ И G E Я compression gear is designed to stick like a second skin, giving you the dominance that commands the room.

🔥 Join The Elite

How was your experience with Λ И G E Я gear?

𝖂𝖊𝖑𝖈𝖔𝖒𝖊 𝖙𝖔 𝖙𝖍𝖊 𝕬𝖇𝖞𝖘𝖘. 𝖂𝖊 𝖍𝖆𝖛𝖊 𝖇𝖊𝖊𝖓 𝖊𝖝𝖕𝖊𝖈𝖙𝖎𝖓𝖌 𝖞𝖔𝖚.     𝖂𝖊𝖑𝖈𝖔𝖒𝖊 𝖙𝖔 𝖙𝖍𝖊 𝕬𝖇𝖞𝖘𝖘. 𝖂𝖊 𝖍𝖆𝖛𝖊 𝖇𝖊𝖊𝖓 𝖖𝖚𝖎𝖊𝖙𝖑𝖞 𝖜𝖆𝖏𝖙𝖎𝖓𝖌 𝖋𝖔𝖗 𝖞𝖔𝖚.

THE COMPRESSION DROP

Anger Anger
COMPRESSION DROP 01
EGP 400 EGP 550
Anger Anger
COMPRESSION DROP 02
EGP 400 EGP 550
Anger Anger
COMPRESSION DROP 03
EGP 400 EGP 550
Anger Anger
COMPRESSION DROP 04
EGP 400 EGP 550
Anger Anger
COMPRESSION DROP 05
EGP 400 EGP 550
Anger Anger
COMPRESSION DROP 06
EGP 400 EGP 550
Anger Anger
COMPRESSION DROP 07
EGP 400 EGP 550
Anger Anger
COMPRESSION DROP 08
EGP 400 EGP 550
Anger Anger
COMPRESSION DROP 09
EGP 400 EGP 550
Anger Anger
COMPRESSION DROP 10
EGP 400 EGP 550

THE PANTS DROP

Anger WIDE LEG Pants Anger WIDE LEG Pants Anger WIDE LEG Pants
WIDE LEG PANTS BLACK
EGP 550 EGP 800
Anger WIDE LEG Pants Anger WIDE LEG Pants Anger WIDE LEG Pants
WIDE LEG PANTS GRAY
EGP 550 EGP 800

THE VOICES OF RAGE

What the community says about our gear:

0

Shopping Cart

Your cart is empty

Order Shipping Details

// دالة إغلاق البرودكت function closeProductModal() { document.getElementById('productModal').classList.remove('active'); document.body.style.overflow = ''; } // --- بقية الدوال الخاصة بك (تأكد من بقائها كما هي) --- function toggleMenu() { document.getElementById('menuSidebar').classList.toggle('active'); } function toggleCart() { document.getElementById('cartSidebar').classList.toggle('active'); } // تأكد أن دالة addFromModalToCart و buyItNowFromModal موجودة هنا في الأسفل function addFromModalToCart() { const selectedSize = document.querySelector('input[name="modal-size"]:checked').value; cart.push({ id: currentModalProductId, name: currentModalProductName, price: currentModalProductPrice, size: selectedSize, qty: 1 }); updateCartUI(); closeProductModal(); toggleCart(); } function buyItNowFromModal() { const selectedSize = document.querySelector('input[name="modal-size"]:checked').value; cart = [{ id: currentModalProductId, name: currentModalProductName, price: currentModalProductPrice, size: selectedSize, qty: 1 }]; updateCartUI(); closeProductModal(); openCheckoutForm(); } // أضف هنا باقي الدوال (sendOrder, loadSavedReviews, الخ...) // ... function closeProductModal() { document.getElementById('productModal').classList.remove('active'); document.body.style.overflow = ''; } function closeProductModalOnOutsideClick(e) { if(e.target.id === 'productModal') closeProductModal(); } function setModalImage(src, index) { currentImageIndex = index; document.getElementById('modalMainImage').src = src; document.getElementById('thumbFront').classList.remove('active-thumb'); document.getElementById('thumbBack').classList.remove('active-thumb'); if(index === 0) document.getElementById('thumbFront').classList.add('active-thumb'); if(index === 1) document.getElementById('thumbBack').classList.add('active-thumb'); } function switchModalImage(direction) { currentImageIndex += direction; if(currentImageIndex < 0) currentImageIndex = modalImagesArray.length - 1; if(currentImageIndex >= modalImagesArray.length) currentImageIndex = 0; setModalImage(modalImagesArray[currentImageIndex], currentImageIndex); } function buyItNowFromModal() { const selectedSize = document.querySelector('input[name="modal-size"]:checked').value; let finalName = currentModalProductName; if(currentModalProductId === 11) { const selectedColor = document.querySelector('input[name="modal-color"]:checked').value; finalName = `${currentModalProductName} (${selectedColor})`; } cart = [{ id: currentModalProductId, name: finalName, price: currentModalProductPrice, size: selectedSize, qty: 1 }]; updateCartUI(); closeProductModal(); const shippingCost = 80; const finalTotalWithShipping = currentModalProductPrice + shippingCost; document.getElementById('finalTotalDisplay').value = `${currentModalProductPrice} EGP + 80 EGP (مصاريف الشحن) = ${finalTotalWithShipping} EGP`; document.getElementById('checkoutOverlay').classList.add('active'); } function addFromModalToCart() { const selectedSize = document.querySelector('input[name="modal-size"]:checked').value; let finalName = currentModalProductName; if(currentModalProductId === 11) { const selectedColor = document.querySelector('input[name="modal-color"]:checked').value; finalName = `${currentModalProductName} (${selectedColor})`; } const existingItem = cart.find(item => item.id === currentModalProductId && item.size === selectedSize && item.name === finalName); if (existingItem) { existingItem.qty += 1; } else { cart.push({ id: currentModalProductId, name: finalName, price: currentModalProductPrice, size: selectedSize, qty: 1 }); } updateCartUI(); const btn = document.getElementById('modalAddToCartBtn'); btn.innerText = "✓ Added To Cart"; btn.style.background = "#ffffff"; btn.style.color = "#000000"; setTimeout(() => { btn.innerText = "Add To Cart"; btn.style.background = "transparent"; btn.style.color = "#ffffff"; closeProductModal(); toggleCart(); }, 800); } function removeFromCart(index) { cart.splice(index, 1); updateCartUI(); } function updateCartUI() { const cartItemsContainer = document.getElementById('cartItems'); const cartCountElement = document.getElementById('cartCount'); const cartTotalElement = document.getElementById('cartTotal'); const totalQty = cart.reduce((sum, item) => sum + item.qty, 0); cartCountElement.innerText = totalQty; if (cart.length === 0) { cartItemsContainer.innerHTML = '

Your cart is empty

'; cartTotalElement.innerText = '0 EGP'; return; } let html = ''; let totalCost = 0; cart.forEach((item, index) => { const itemTotal = item.price * item.qty; totalCost += itemTotal; html += `

${item.name}

Size: ${item.size} | Qty: ${item.qty}

${itemTotal} EGP
`; }); cartItemsContainer.innerHTML = html; cartTotalElement.innerText = `${totalCost} EGP`; } function openCheckoutForm() { if (cart.length === 0) { alert("Your cart is empty!"); return; } const productsCost = cart.reduce((sum, item) => sum + (item.price * item.qty), 0); const shippingCost = 80; const finalTotalWithShipping = productsCost + shippingCost; document.getElementById('finalTotalDisplay').value = `${productsCost} EGP + 80 EGP (مصاريف الشحن) = ${finalTotalWithShipping} EGP`; document.getElementById('checkoutOverlay').classList.add('active'); } function closeCheckoutForm() { document.getElementById('checkoutOverlay').classList.remove('active'); } // دالة إرسال الطلب المحدثة - ترسل المقاسات والصور لـ Formspree وتمنع فتح الواتساب تماماً function sendOrder(e) { e.preventDefault(); const productsCost = cart.reduce((sum, item) => sum + (item.price * item.qty), 0); const shippingCost = 80; const grandTotal = productsCost + shippingCost; // تجميع معلومات المنتجات والمقاسات والكميات بالتفصيل لتصل لـ Formspree let itemsDetails = ''; cart.forEach((item, i) => { itemsDetails += `[منتج ${i+1}]: ${item.name} | المقاس: ${item.size} | الكمية: ${item.qty} \n`; }); // تجميع روابط أو أسماء الصور لإرسالها let imagesUrls = cart.map(item => { if(item.id === 11) { return item.name.includes('WHITE') ? 'pants1-white.jpg' : 'pants1-black.jpg'; } return `prod${item.id}-front.jpg`; }).join(', '); // وضع القيم المجمعة بداخل الحقول المخفية المخصصة لها بالفورم document.getElementById('orderedProductsDetails').value = itemsDetails; document.getElementById('orderedProductsImages').value = imagesUrls; const form = document.getElementById('orderForm'); const formData = new FormData(form); // إرسال الـ Form بالكامل إلى الـ API الخاص بـ Formspree fetch(form.action, { method: form.method, body: formData, headers: { 'Accept': 'application/json' } }).then(response => { if (response.ok) { alert("Your Order has been sent successfully to The Abyss!"); cart = []; updateCartUI(); closeCheckoutForm(); } else { alert("There was an error submitting your order. Please try again."); } }).catch(error => { console.error("Error submitting form", error); alert("Connection error. Please try again."); }); } function initStars() { const stars = document.querySelectorAll('.rating-stars .star'); stars.forEach(star => { star.addEventListener('click', function() { selectedRating = parseInt(this.getAttribute('data-value')); stars.forEach(s => { if(parseInt(s.getAttribute('data-value')) <= selectedRating) { s.classList.add('selected'); } else { s.classList.remove('selected'); } }); }); }); } function submitReview() { const name = document.getElementById('reviewerName').value.trim(); const text = document.getElementById('reviewText').value.trim(); if(!name || !text || selectedRating === 0) { alert("Please fill all fields and select a rating!"); return; } const reviews = JSON.parse(localStorage.getItem('anger_reviews') || '[]'); reviews.unshift({ name, text, rating: selectedRating, date: new Date().toLocaleDateString() }); localStorage.setItem('anger_reviews', JSON.stringify(reviews)); loadSavedReviews(); closeReviewAndReset(); alert("Your response has been dropped into The Abyss."); } function closeReviewAndReset() { document.getElementById('reviewOverlay').classList.remove('active'); document.getElementById('reviewerName').value = ''; document.getElementById('reviewText').value = ''; selectedRating = 0; document.querySelectorAll('.rating-stars .star').forEach(s => s.classList.remove('selected')); } function loadSavedReviews() { const container = document.getElementById('reviewsShowcaseGrid'); if(!container) return; const defaultReviews = [ { name: "Youssef Ahmed", text: "The compression quality is out of this world. Fits like a second skin and makes the pump look massive. Best gym wear in Egypt.", rating: 5, date: "12/04/2026" }, { name: "Kareem Omar", text: "Unbelievable flexibility during heavy squats. Flatlock stitching is extremely premium, zero irritation. Buying another drop ASAP.", rating: 5, date: "18/05/2026" } ]; const savedReviews = JSON.parse(localStorage.getItem('anger_reviews') || '[]'); const allReviews = [...savedReviews, ...defaultReviews]; container.innerHTML = ''; allReviews.forEach(r => { let starsHtml = ''; for(let i=0; i
${r.name}${starsHtml}

"${r.text}"

${r.date}`; }); }