No products were found matching your selection.

تصنيف الأقسام

body {
font-family: Tahoma, sans-serif;
direction: rtl; /* للعرض بالعربية */
}
/* شريط التنقل */
.navbar {
background-color: #333;
overflow: hidden;
}
.navbar a {
float: right;
display: block;
color: #fff;
text-align: center;
padding: 14px 20px;
text-decoration: none;
}
.navbar a:hover {
background-color: #575757;
}
/* القائمة المنسدلة */
.dropdown {
float: right;
overflow: hidden;
}
.dropdown .dropbtn {
cursor: pointer;
font-size: 16px;
border: none;
outline: none;
color: #fff;
padding: 14px 20px;
background-color: inherit;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
z-index: 1;
}
.dropdown-content a {
float: none;
color: #333;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: right;
}
.dropdown-content a:hover {
background-color: #ddd;
}
.dropdown:hover .dropdown-content {
display: block;
}