body {
    margin: 0;
    font-family: Arial;
    background: #f4f4f4;
  }
  
  /* MENU */
  .menu-bar {
    background: #222;
  }
  .menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  .menu li {
    position: relative;
  }
  .menu a {
    color: white;
    padding: 14px 18px;
    display: block;
    text-decoration: none;
  }
  .menu a:hover {
    background: #444;
  }
  
  /* SUB MENU */
  .sub-menu {
    display: none;
    position: absolute;
    background: white;
    min-width: 150px;
  }
  .sub-menu a {
    color: black;
  }
  .has-sub:hover .sub-menu {
    display: block;
  }
  
  /* TITLE */
  .title {
    text-align: center;
    margin: 20px 0;
  }
  
  /* PRODUCTS */
  .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 20px;
    padding: 20px;
  }
  
  .product {
    background: white;
    padding: 12px;
    text-align: center;
    position: relative;
    transition: 0.3s;
  }
  
  .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  
  .product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .price {
    color: red;
    font-weight: bold;
  }
  
  /* TAG */
  .tag {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 12px;
    padding: 3px 6px;
    color: white;
  }
  .new { background: green; }
  .hot { background: orange; }
  .sale { background: red; }
  
  button {
    background: #222;
    color: white;
    border: none;
    padding: 8px;
    width: 100%;
    cursor: pointer;
  }
  
  footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 10px;
  }
  