* { box-sizing: border-box; }
body{
  margin:0;
  font-family: "Tahoma", Arial;
  background:#F7F5EF;
  direction:rtl;
  color:#111;
}
header{
  background:#111;
  color:#C9A24D;
  padding:22px 16px;
  text-align:center;
}
header h1{ margin:0; letter-spacing:1px; }
header p{ margin:6px 0 0; color:#e6d8a8; }

.container{ padding:20px; }

.products{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:18px;
}

.product{
  background:#fff;
  border-radius:14px;
  padding:14px;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
  transition:.25s;
}
.product:hover{ transform:translateY(-4px); }

.product img{
  width:100%;
  height:190px;
  object-fit:cover;
  border-radius:10px;
}

.product h3{ margin:10px 0 4px; }
.price{
  color:#1F6F54;
  font-weight:bold;
}

.btn{
  display:block;
  margin-top:12px;
  background:#111;
  color:#C9A24D;
  text-align:center;
  padding:12px;
  border-radius:10px;
  text-decoration:none;
  font-weight:bold;
}
.btn:hover{ opacity:.9; }

.footer{
  text-align:center;
  padding:16px;
  color:#777;
}