css
  <title>Avora Shoe</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      border-bottom: 1px solid #ddd;
    }
    header img {
      height: 30px;
    }
    .icons {
      display: flex;
      gap: 15px;
    }
    h2 {
      margin: 20px 15px 10px;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 15px;
      padding: 0 15px 30px;
    }
    .product {
      border: 1px solid #eee;
      padding: 10px;
      background: #fff;
    }
    .product img {
      width: 100%;
      border-radius: 5px;
    }
    .label {
      color: orangered;
      font-size: 14px;
      font-weight: bold;
    }
    .title {
      font-weight: bold;
      margin: 5px 0;
    }
    .category {
      color: gray;
      font-size: 14px;
      margin-bottom: 5px;
    }
    .price {
      font-weight: bold;
      font-size: 16px;
  </style>
</head>


