/* something not green i guess */ 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    color: var(--fg);
    background: var(--bg);
  }
  
  /* Header / Navigation*/
  .header {
    position: sticky;
    top: 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid #e0e0e0;
    z-index: 100;
  }
  
  .header .logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--fg);
    text-decoration: none;
  }
  
  .header nav {
    display: flex;
    gap: 24px;
  }
  
  .header nav a {
    text-decoration: none;
    color: var(--fg);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color var(--transition);
  }
  
  .header nav a:hover {
    color: var(--accent);
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, #0d1f2d, #162a3a);
    color: #ffffff;
    text-align: center;
    padding: 96px 32px;
  }
  /* did my best */
  .hero h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  
  .hero p {
    font-size: 20px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
  }
  
  .hero-media {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent);
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background var(--transition);
  }
  
  .btn:hover {
    background: #18a286;
  }
  
  /*Product Grid*/
  .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    padding: 64px 32px;
  }
  
  .product-card {
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .product-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
  
  .product-card .info {
    padding: 16px;
    flex-grow: 1;
  }
  
  .product-card .info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--fg);
  }
  
  .product-card .info p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 16px;
    line-height: 1.4;
  }
  
  .product-card .info .price {
    font-weight: 700;
    color: var(--accent);
  }
  
  /* footer */
  .footer {
    background: #ffffff;
    text-align: center;
    padding: 32px;
    border-top: 1px solid #e0e0e0;
    color: #777777;
    font-size: 14px;
  }
  
  /* Utilities & Responsive */
  .text-center {
    text-align: center;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }
  
  @media (max-width: 800px) {
    .hero h1 {
      font-size: 40px;
    }
    .hero p {
      font-size: 25px;
    }
    .header {
      padding: 0 16px;
    }
    .products {
      padding: 32px 16px;
    }
  }
  
