🎙️ اسمع تجربة أحد زبائننا
00:00 00:00
تجربة حقيقية من أحد زبائننا
.custom-audio-box{ direction: rtl; position: relative; background: linear-gradient( 135deg, #FFFDF7 0%, #F8F3E6 55%, #F2E8CE 100% ); border: 2px solid #C99A28; border-radius: 20px; padding: 22px 20px 18px; box-shadow: 0 10px 28px rgba(55,90,45,.10), 0 3px 8px rgba(0,0,0,.05); overflow: hidden; } /* GOLD TOP LINE */ .custom-audio-box:before{ content:""; position:absolute; top:0; right:0; left:0; height:5px; background:linear-gradient( 90deg, #A77712, #E5B83F, #A77712 ); } /* TITLE */ .audio-title{ color:#255B32; font-family:"Cairo", sans-serif; font-size:22px; font-weight:800; text-align:center; margin-bottom:16px; } /* PLAYER */ .audio-player{ display:flex; align-items:center; gap:14px; background:#FFFFFF; border:1px solid rgba(201,154,40,.35); border-radius:15px; padding:10px 14px; box-shadow: 0 5px 16px rgba(37,91,50,.08); } /* PLAY BUTTON */ .play-btn{ width:46px; height:46px; min-width:46px; border:none; border-radius:50%; background:linear-gradient( 135deg, #2F713D, #1E522A ); color:white; font-size:18px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:.25s ease; box-shadow: 0 4px 12px rgba(37,91,50,.25); } .play-btn:hover{ transform:scale(1.06); } /* CENTER */ .audio-center{ flex:1; } /* PROGRESS */ .progress{ width:100%; height:6px; appearance:none; -webkit-appearance:none; background:#E6DDC7; border-radius:20px; outline:none; cursor:pointer; } /* TRACK - CHROME */ .progress::-webkit-slider-runnable-track{ height:6px; border-radius:20px; background:#E6DDC7; } /* THUMB - CHROME */ .progress::-webkit-slider-thumb{ -webkit-appearance:none; width:16px; height:16px; margin-top:-5px; background:#C99A28; border:3px solid #FFF; border-radius:50%; box-shadow: 0 2px 5px rgba(0,0,0,.2); } /* FIREFOX */ .progress::-moz-range-track{ height:6px; border-radius:20px; background:#E6DDC7; } .progress::-moz-range-thumb{ width:16px; height:16px; background:#C99A28; border:3px solid white; border-radius:50%; } /* TIME */ .audio-times{ display:flex; justify-content:space-between; margin-top:6px; color:#6E6250; font-family:Arial, sans-serif; font-size:12px; } /* VOLUME */ .volume-btn{ border:none; background:transparent; font-size:21px; cursor:pointer; padding:4px; } /* LABEL */ .audio-label{ width:fit-content; margin:14px auto 0; padding:7px 16px; background:rgba(201,154,40,.12); border:1px solid rgba(201,154,40,.35); border-radius:50px; color:#8B650F; font-family:"Cairo", sans-serif; font-size:13px; font-weight:700; } /* MOBILE */ @media(max-width:767px){ .custom-audio-box{ padding:18px 14px 15px; border-radius:16px; } .audio-title{ font-size:18px; } .audio-player{ gap:9px; padding:9px 10px; } .play-btn{ width:40px; height:40px; min-width:40px; } .volume-btn{ font-size:18px; } .audio-label{ font-size:12px; } } document.querySelectorAll('.custom-audio-box').forEach(function(box){ const audio = box.querySelector('.real-audio'); const playBtn = box.querySelector('.play-btn'); const volumeBtn = box.querySelector('.volume-btn'); const progress = box.querySelector('.progress'); const current = box.querySelector('.current-time'); const duration = box.querySelector('.duration'); function formatTime(seconds){ if(isNaN(seconds)) return '00:00'; const min = Math.floor(seconds / 60); const sec = Math.floor(seconds % 60); return String(min).padStart(2,'0') + ':' + String(sec).padStart(2,'0'); } audio.addEventListener('loadedmetadata', function(){ duration.textContent = formatTime(audio.duration); }); playBtn.addEventListener('click', function(){ if(audio.paused){ audio.play(); playBtn.textContent = '❚❚'; }else{ audio.pause(); playBtn.textContent = '▶'; } }); audio.addEventListener('timeupdate', function(){ if(audio.duration){ progress.value = (audio.currentTime / audio.duration) * 100; current.textContent = formatTime(audio.currentTime); } }); progress.addEventListener('input', function(){ if(audio.duration){ audio.currentTime = (progress.value / 100) * audio.duration; } }); volumeBtn.addEventListener('click', function(){ audio.muted = !audio.muted; volumeBtn.textContent = audio.muted ? '🔇' : '🔊'; }); audio.addEventListener('ended', function(){ playBtn.textContent = '▶'; progress.value = 0; }); });

دهان الحنظل هو منتج تم تطويره خصيصا للمساعدة على راحة المفاصل والعضلات
بفضل قوامه الغني والناعم الاخضر، يساعد البلسم على تسهيل التدليك الموضعي، كما يمنح إحساسًا بالراحة والاسترخاء على مستوى المناطق المتعبة أو المجهدة

القوة الشفائية لدهان الحنظل

تسنيم تسنيم
تسنيم تسنيم @username
شكرا على المنتج الرائع نقص الالم من اليوم الاول من استعملته من اول تجربة الحمد لله
ام ايمن
ام ايمن@username
ريحني هذي حقيقة انا كنت في حالة الحمد لله
Amine bouzid
Amine bouzid @username
و الله غير لما جربتو رتاحيت بزاف منتج فعال مشاء الله

جرّب دهان الحنظل الأكثر طلباً عند الجزائريين لتخفيف آلام المفاصل

📦
⚠️ تحديث المخزون
باقي فقط 500 علبة!
💎 دهان الحنظل الطبيعي
🔴 الكمية محدودة المخزون ينفذ
/* ===================================== PREMIUM STOCK NOTIFICATION OLIVE + GOLD + CREAM ===================================== */ .stock-popup{ position:fixed; left:20px; bottom:95px; width:365px; max-width:calc(100vw - 30px); background:linear-gradient( 135deg, #FFFDF7 0%, #F7F1E3 60%, #EFE3C7 100% ); border:2px solid #C89B36; border-radius:18px; padding:15px 16px; display:flex; align-items:center; gap:14px; box-shadow: 0 14px 35px rgba(44,70,34,.18), 0 4px 10px rgba(0,0,0,.08); z-index:999999; font-family:"Cairo",sans-serif; direction:rtl; opacity:0; transform:translateX(-30px) scale(.96); pointer-events:none; transition: opacity .45s ease, transform .45s ease; overflow:hidden; } /* GOLD TOP LINE */ .stock-popup::before{ content:""; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient( 90deg, #8E6A18, #E4B84B, #8E6A18 ); } /* SHOW */ .stock-popup.show{ opacity:1; transform:translateX(0) scale(1); } /* ICON */ .stock-icon{ width:58px; height:58px; min-width:58px; border-radius:50%; background:linear-gradient( 135deg, #4A6B36, #2E4E24 ); border:3px solid #E2C16B; display:flex; align-items:center; justify-content:center; font-size:27px; box-shadow: 0 5px 14px rgba(48,78,36,.25); } /* CONTENT */ .stock-content{ flex:1; } /* TITLE */ .stock-title{ color:#355B2B; font-size:16px; font-weight:800; margin-bottom:2px; } /* MAIN STOCK */ .stock-main{ color:#2B2B2B; font-size:15px; font-weight:700; margin-bottom:2px; } /* NUMBER */ .stock-main strong{ color:#C62828; font-size:19px; font-weight:900; padding:0 3px; } /* PRODUCT */ .stock-product{ color:#7A5A13; font-size:13px; font-weight:700; margin-bottom:7px; } /* BOTTOM */ .stock-bottom{ display:flex; align-items:center; justify-content:space-between; gap:8px; font-size:10px; margin-bottom:6px; } /* STATUS */ .stock-status{ background:linear-gradient( 135deg, #FDE8E8, #F8D4D4 ); color:#B42323; border:1px solid #E8B5B5; font-weight:800; padding:3px 8px; border-radius:20px; } /* RIGHT TEXT */ #stock-percent{ color:#7B7468; font-weight:700; } /* STOCK BAR */ .stock-bar{ width:100%; height:7px; background:#E3DCCB; border-radius:20px; overflow:hidden; } /* PROGRESS */ #stock-progress{ height:100%; width:100%; background:linear-gradient( 90deg, #C62828, #E05252 ); border-radius:20px; transition:width 1s ease; } /* LITTLE GLOW */ .stock-popup::after{ content:""; position:absolute; width:90px; height:90px; left:-30px; bottom:-35px; background:rgba(201,155,54,.10); border-radius:50%; } /* MOBILE */ @media(max-width:767px){ .stock-popup{ left:10px; right:10px; bottom:80px; width:auto; padding:13px 14px; border-radius:15px; } .stock-icon{ width:50px; height:50px; min-width:50px; font-size:23px; } .stock-title{ font-size:14px; } .stock-main{ font-size:13px; } .stock-main strong{ font-size:17px; } .stock-product{ font-size:12px; } .stock-bottom{ font-size:9px; } } document.addEventListener("DOMContentLoaded", function(){ const popup = document.getElementById("stock-notification"); const stockNumber = document.getElementById("stock-number"); const progress = document.getElementById("stock-progress"); /* ===================================== STOCK SETTINGS ===================================== */ let stock = 500; const initialStock = 500; /* ===================================== UPDATE STOCK ===================================== */ function updateStock(){ stockNumber.textContent = stock; /* Calculate percentage */ let percentage = (stock / initialStock) * 100; progress.style.width = percentage + "%"; /* Change color when stock gets low */ if(stock <= 100){ progress.style.background = "linear-gradient(90deg,#B71C1C,#E53935)"; } else if(stock 1){ stock--; } } /* ===================================== FIRST POPUP ===================================== */ setTimeout(showStockPopup,4000); /* ===================================== NEW POPUP EVERY 12 SECONDS ===================================== */ setInterval(showStockPopup,12000); });