<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>قالب متجر يوكان</title>
<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Cairo', sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
}
header {
background-color: #3c64f9;
color: #fff;
padding: 15px;
text-align: center;
}
header h1 {
margin: 0;
font-size: 24px;
}
nav {
display: flex;
justify-content: center;
background-color: #ffffff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
padding: 10px 0;
}
nav a {
color: #3c64f9;
text-decoration: none;
margin: 0 15px;
font-weight: bold;
}
.categories {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 15px;
padding: 20px 10px;
background-color: #fff;
margin-bottom: 20px;
}
.categories .category {
text-align: center;
font-size: 14px;
color: #555;
}
.products {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
padding: 20px;
}
.product {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
text-align: center;
padding: 15px;
}
.product img {
max-width: 100%;
border-radius: 8px;
}
.product h3 {
font-size: 16px;
color: #333;
margin: 10px 0;
}
.product .price {
font-size: 14px;
color: #3c64f9;
font-weight: bold;
margin: 5px 0;
}
.product button {
background-color: #3c64f9;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
}
.product button:hover {
background-color: #2b4acb;
}
</style>
</head>
<body>
<header>
<h1>متجر يوكان</h1>
<p>تخفيضات تصل حتى 50% - عروض حصرية</p>
</header>
<nav>
<a href="#">الرئيسية</a>
<a href="#">الإلكترونيات</a>
<a href="#">الصحة والجمال</a>
<a href="#">الرياضة</a>
<a href="#">عروض خاصة</a>
</nav>
<section class="categories">
<div class="category">
<img src="category1.png" alt="Category 1" width="50">
<p>الإلكترونيات</p>
</div>
<div class="category">
<img src="category2.png" alt="Category 2" width="50">
<p>الصحة والجمال</p>
</div>
<div class="category">
<img src="category3.png" alt="Category 3" width="50">
<p>الرياضة</p>
</div>
</section>
<section class="products">
<div class="product">
<img src="product1.png" alt="Product 1">
<h3>منتج رقم 1</h3>
<p class="price">90 درهم</p>
<button>شراء الآن</button>
</div>
<div class="product">
<img src="product2.png" alt="Product 2">
<h3>منتج رقم 2</h3>
<p class="price">110 درهم</p>
<button>شراء الآن</button>
</div>
<div class="product">
<img src="product3.png" alt="Product 3">
<h3>منتج رقم 3</h3>
<p class="price">240 درهم</p>
<button>شراء الآن</button>
</div>
</section>
</body>
</html>