document.addEventListener("DOMContentLoaded", function () {
if (window.innerWidth <= 768) {
const nav = document.createElement("div");
nav.className = "custom-mobile-nav";
nav.innerHTML = `
الرئيسية
التصنيفات
السلة
الحساب
الطلبات
`;
document.body.appendChild(nav);
const style = document.createElement("style");
style.innerHTML = `
.custom-mobile-nav{
position:fixed;
bottom:0;
right:0;
left:0;
height:78px;
background:linear-gradient(90deg,#e7d2c5,#f8efea);
display:flex;
justify-content:space-around;
align-items:center;
z-index:999999;
border-radius:22px 22px 0 0;
box-shadow:0 -5px 20px rgba(0,0,0,.08);
border-top:1px solid rgba(142,96,77,.15);
backdrop-filter:blur(10px);
}
/* الروابط */
.custom-mobile-nav a{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:4px;
text-decoration:none;
width:20%;
height:100%;
color:#8e604d;
transition:.3s;
}
/* الأيقونات */
.custom-mobile-nav i{
font-size:22px;
}
/* النص */
.custom-mobile-nav .nav-text{
font-size:11px;
font-weight:600;
display:block;
line-height:1.2;
}
/* تأثير الضغط */
.custom-mobile-nav a:active{
transform:scale(.92);
opacity:.8;
}
/* مسافة أسفل الصفحة */
body{
padding-bottom:90px;
}
`;
document.head.appendChild(style);
}
});