
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: hsl(209, 63%, 79%);
    color: #333;
    line-height: 1.6;
  }
  
  /* Header */
  .header {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 10px;
  }
  
  .header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
  }
  
  .header .back-home {
    
    text-decoration: none;
    font-size: 1em;
  }
  
  .header .back-home:hover {
    text-decoration: underline;
    color:blue;
  }
  
  /* Product Grid */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 items per row */
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .product {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .product:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 16px rgba(243, 10, 10, 0.993);
  }
  
  .product img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  .product h3 {
    font-size: 1.2em;
    color: #222;
    margin-bottom: 8px;
  }
  
  .product p {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 10px;
  }
  
  .product span {
    font-size: 1.1em;
    font-weight: bold;
    color: #ff5a5f;
    display: block;
    margin-bottom: 10px;
  }
  
  .product button {
    background-color: #ff5a5f;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
  }
  
  .product button:hover {
    background-color: #0b33e4;
  }
  
  /* Footer */
  .footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 30px;
  }
  
  .footer p {
    font-size: 0.9em;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .products-grid {
      grid-template-columns: repeat(2, 1fr); 
    }
  }
  
  @media (max-width: 480px) {
    .products-grid {
      grid-template-columns: 1fr; 
    }
  }
  /* Navigation Links */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #222;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

nav a.to-cart {
  background-color: #ff5a5f;
  
}

nav a.to-cart:hover {
  background-color: #da39f0;
  color:blue;
}

nav a.back-home {
  background-color: #e0484d;
}

nav a.back-home:hover {
  background-color: #da39f0;
}

  