* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  body {
	font-family: Arial, sans-serif;
	background-color: #f4f4f4;
	padding: 20px;
  }
  
  .container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
	/* margin: 10px; */
  }
  
  .product {
	background-color: white;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 15px;
	text-align: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .product img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
  }
  
  .product h2 {
	font-size: 18px;
	margin: 10px 0;
  }
  
  .product .description {
	font-size: 14px;
	color: #555;
	margin-bottom: 15px;
	height: 100px;
	overflow: hidden;
	text-overflow: ellipsis;
  }
  
  .more-btn {
	padding: 8px 16px;
	background-color: #3d4ebd;
	color: white;
	border: none;
	border-radius: 4px;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
	transition: background-color 0.3s ease;
  }
  
  .more-btn:hover {
	background-color: #122487;
  }
  
  /* استجابة للأجهزة الصغيرة */
  @media screen and (max-width: 1024px) {
	.container {
		grid-template-columns: repeat(2, 1fr);
	}
  }
  
  @media screen and (max-width: 768px) {
	.container {
		grid-template-columns: 1fr;
	}
  }
  