* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }
  body {
    background: linear-gradient(120deg, #0f0c29, #302b63, #24243e);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  .logo {
    font-size: 2rem;
    color: #00f0ff;
    text-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff;
  }
  .menu-btn {
    width: 30px;
    cursor: pointer;
  }
  .menu-btn span {
    display: block;
    height: 4px;
    background: #00f0ff;
    margin: 6px 0;
    border-radius: 2px;
    transition: 0.3s;
  }
  .sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #111;
    padding-top: 60px;
    transition: 0.4s ease;
    box-shadow: 0 0 15px #00f0ff;
  }
  .sidebar.active {
    left: 0;
  }
  .sidebar ul {
    list-style: none;
  }
  .sidebar ul li {
    padding: 20px;
  }
  .sidebar ul li a {
    text-decoration: none;
    color: #00f0ff;
    font-size: 1.2rem;
    transition: 0.2s;
  }
  .sidebar ul li a:hover {
    text-shadow: 0 0 5px #00f0ff, 0 0 10px #00f0ff;
  }
  .hero {
    text-align: center;
    margin-top: 100px;
  }
  .hero h2 {
    font-size: 3rem;
    text-shadow: 0 0 10px #f0f, 0 0 20px #f0f;
  }
  .hero p {
    margin: 15px 0;
    font-size: 1.2rem;
    color: #ccc;
  }
  .neon-btn {
    background: transparent;
    border: 2px solid #00f0ff;
    padding: 12px 30px;
    color: #00f0ff;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 25px;
    text-shadow: 0 0 5px #00f0ff;
    box-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff inset;
    transition: 0.3s;
  }
  .neon-btn:hover {
    background: #00f0ff;
    color: #111;
    box-shadow: 0 0 20px #00f0ff, 0 0 30px #00f0ff inset;
  }
  .section-title {
    text-align: center;
    margin: 50px 0 20px;
    font-size: 2rem;
    color: #00f0ff;
    text-shadow: 0 0 10px #00f0ff;
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 0 20px 60px;
  }
  .product-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    color: #00f0ff;
    text-decoration: none;
    box-shadow: 0 0 10px #00f0ff30;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px #00f0ff, 0 0 30px #00f0ff66;
  }
  .product-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  .product-detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    gap: 40px;
  }
  .product-detail img {
    width: 350px;
    border-radius: 20px;
    box-shadow: 0 0 20px #00f0ff;
  }
  .details {
    max-width: 400px;
  }
  .details h2 {
    font-size: 2.5rem;
    text-shadow: 0 0 10px #00f0ff;
  }
  .details .price {
    font-size: 1.8rem;
    margin: 10px 0;
    color: #00f0ff;
  }
  .description {
    color: #ccc;
    margin-bottom: 20px;
  }
  
  .text-container {
    position: relative;
    overflow: hidden; /* Hide the overflowing highlight */
    display: inline-block; /* Adjust as needed */
  }
  
  .animated-text {
    position: relative;
    color: black; /* Your default text color */
  }
  
  .animated-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%; /* Start the highlight off-screen */
    width: 50%; /* Adjust the width of the highlight */
    height: 100%;
    background: linear-gradient(90deg, transparent, yellow, transparent); /* Your highlight color */
    animation: light-sweep 3s infinite linear; /* Adjust duration and iteration */
  }
  
  @keyframes light-sweep {
    0% {
      left: -100%;
    }
    50% {
      left: 100%;
    }
    100% {
      left: 100%;
    }
  }

  