موصى بها بشدة
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GCCalif - المتجر الإلكتروني</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #ffffff;
color: #333333;
}
.header {
background-color: #4CAF50;
color: white;
text-align: center;
padding: 2rem 1rem;
}
.button {
background-color: #FFC107;
color: #000;
border: none;
padding: 0.75rem 1.5rem;
font-size: 1.2rem;
cursor: pointer;
border-radius: 6px;
margin-top: 1rem;
}
.products {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 1.5rem;
padding: 2rem;
}
.product {
text-align: center;
border: 1px solid #eee;
padding: 1rem;
border-radius: 8px;
background-color: #fdfdfd;
}
.product img {
max-width: 100%;
height: auto;
}
.price {
color: #4CAF50;
font-weight: bold;
font-size: 1.1rem;
}
</style>
</head>
<body>
<div class="header">
<h1>توصيل مجاني عند الاستلام</h1>
<button class="button">تسوق الآن</button>
</div>
<div class="products">
<div class="product">
<img src="https://gccalif.com/assets/images/energy-device.png" alt="جهاز توفير الطاقة">
<h3>جهاز توفير الطاقة</h3>
<p class="price">16 د.ك</p>
</div>
<div class="product">
<img src="https://gccalif.com/assets/images/retinol-cream.png" alt="كريم الريتينول بدم التنين">
<h3>كريم الريتينول بدم التنين</h3>
<p class="price">189 د.ك</p>
</div>
<div class="product">
<img src="https://gccalif.com/assets/images/nail-dryer.png" alt="مجفف الأظافر الكهربائي">
<h3>مجفف الأظافر الكهربائي</h3>
<p class="price">189 د.ك</p>
</div>
<div class="product">
<img src="https://gccalif.com/assets/images/arabic-books.png" alt="كتب تعليمية بالعربية">
<h3>كتب تعليمية بالعربية</h3>
<p class="price">17 د.ك</p>
</div>
</div>
</body>
</html>