/* Global Reset */
html, body {
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100%;
      font-family: Helvetica, Arial, sans-serif;
      overflow-x: hidden;
  }
  
  /* Wrapper */
  .wrapper {
      width: 100%;
      height: auto;
  }
  
  /* Navigation */
  .nav {
      width: 100%;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2rem;
      background-color: rgba(255, 255, 255, 0.9);
      box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
      position: fixed;
      top: 0;
      z-index: 10;
  }
  
  .logo a {
      font-size: 18px;
      font-weight: bold;
      text-decoration: none;
      color: #333;
  }
  
  .menu ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
  }
  
  .menu ul li a {
      text-decoration: none;
      color: #333;
      font-size: 15px;
  }
  
  .cart ion-icon {
      font-size: 20px;
      color: #333;
  }
  
  /* Hero Section */
  .hero {
      margin-top: 80px;
      text-align: center;
      padding: 2rem 1rem;
  }
  
  .runner {
      width: 100%;
      max-width: 700px;
      margin: 0 auto;
      display: block;
  }
  
  .title-1 {
      font-size: 2.5rem;
      color: rgb(173, 135, 235);
      margin-top: 1rem;
  }
  
  .content {
      margin-top: 1.5rem;
      font-size: 1rem;
      color: #666;
      line-height: 1.6;
  }
  
  button {
      margin-top: 1rem;
      background: rgb(173, 135, 235);
      color: #fff;
      padding: 0.8rem 1.5rem;
      border: none;
      font-size: 14px;
      cursor: pointer;
      transition: background 0.3s;
  }
  
  button:hover {
      background: rgb(150, 120, 220);
  }
  
  /* Footer */
  footer {
      background-color: #333;
      color: #fff;
      text-align: center;
      padding: 1.5rem 0;
      font-size: 0.9rem;
  }
  
  footer a {
      color: rgb(173, 135, 235);
      text-decoration: none;
      margin: 0 0.5rem;
  }
  
  footer a:hover {
      text-decoration: underline;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
      .menu ul {
          flex-direction: column;
          display: none;
          background: rgba(255, 255, 255, 0.9);
          position: absolute;
          top: 80px;
          right: 0;
          padding: 1rem;
      }
  
      .menu ul.active {
          display: flex;
      }
  
      .hero {
          padding: 1rem;
      }
  
      .runner {
          width: 90%;
      }
  
      .title-1 {
          font-size: 2rem;
      }
  
      .content {
          font-size: 0.9rem;
      }
  
      button {
          font-size: 13px;
          padding: 0.6rem 1.2rem;
      }
  }
  
  