* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}

/* ====================== HEADER ====================== */
.header {
    background-color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid #eee;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -2px;
    color: #E30613;
    text-decoration: none;
}

.logo span {
    color: #111111;
}

/* Menu */
.menu {
    display: flex;
    gap: 2.8rem;
    list-style: none;
}

.menu a {
    color: #222222;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08rem;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #E30613;
}




.container {
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 20px;
    }

    .products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .product {
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: transform 0.3s;
    }

    .product:hover {
      transform: translateY(-5px);
    }

    .product img {
      width: 100%;
      height: 240px;
      object-fit: contain;
      margin-bottom: 20px;
    }

    .product h2 {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .product p {
      font-size: 14px;
      color: #555;
      margin-bottom: 15px;
    }

    .price {
      font-size: 22px;
      font-weight: 700;
      color: #16a34a;
      margin-bottom: 20px;
    }

    .btn {
      background: #16a34a;
      color: #fff;
      border: none;
      padding: 14px;
      width: 100%;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
    }

    .btn:hover {
      background: #15803d;
    }

