   /* Reset and base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #121212;
      color: #cccccc;
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    a:focus-visible {
      outline: 2px solid #4f46e5;
      outline-offset: 2px;
    }

    /* Header */
    .header {
      background: #0d0d0d;
      padding: 20px 60px;
      border-bottom: 1px solid #2a2a2a;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 8px rgba(0,0,0,0.7);
      transition: background-color 0.3s ease;
    }

    .header:hover {
      background-color: #1a1a1a;
    }

    .logo {
      font-size: 1.75rem;
      font-weight: 800;
      color: #e0e0e0;
      display: flex;
      align-items: center;
      gap: 14px;
      user-select: none;
      letter-spacing: 1.2px;
      text-shadow: 0 0 6px #4f46e5;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .logo img {
      height: 48px;
      width: auto;
      filter: drop-shadow(0 0 3px #4f46e5);
      transition: transform 0.3s ease;
    }

    .logo:hover {
      color: #7c3aed;
    }

    .logo:hover img {
      transform: scale(1.1);
    }
  

    /* Navigation */
    .nav-menu {
      display: flex;
      gap: 36px;
      list-style: none;
      font-weight: 600;
      font-size: 1rem;
    }

    .nav-menu a {
      color: #999999;
      padding: 10px 0;
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: #7c3aed;
      transition: width 0.3s ease;
      border-radius: 2px;
    }

    .nav-menu a:hover,
    .nav-menu a:focus {
      color: #ffffff;
    }

    .nav-menu a:hover::after,
    .nav-menu a:focus::after {
      width: 100%;
    }

    /* Hero Section */
    .hero {
      max-width: 900px;
      margin: 80px auto 100px;
      padding: 0 40px;
      display: flex;
      justify-content: center;
      text-align: center;
      flex-wrap: wrap;
      user-select: none;
      flex-direction: column;
      gap: 24px;
    }

    .hero-text {
      max-width: 700px;
      margin: 0 auto;
    }

    .hero-title {
      font-size: 3.6rem;
      font-weight: 900;
      color: #e0e0e0;
      margin-bottom: 24px;
      line-height: 1.1;
      letter-spacing: 0.03em;
      text-shadow: 0 0 10px #7c3aed;
      animation: fadeInUp 1s ease forwards;
      opacity: 0;
      transform: translateY(20px);
      animation-delay: 0.2s;
    }

    .hero-subtitle {
      font-size: 1.3rem;
      color: #a0a0a0;
      margin-bottom: 40px;
      font-weight: 400;
      max-width: 520px;
      line-height: 1.5;
      margin-left: auto;
      margin-right: auto;
      animation: fadeInUp 1s ease forwards;
      opacity: 0;
      transform: translateY(20px);
      animation-delay: 0.4s;
    }

    .hero-cta {
      background: linear-gradient(135deg, #7c3aed, #4c1d95);
      color: white;
      padding: 20px 60px;
      border-radius: 14px;
      font-weight: 700;
      font-size: 1.2rem;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(124, 58, 237, 0.6);
      transition: all 0.3s ease;
      display: inline-block;
      user-select: none;
      animation: fadeInUp 1s ease forwards;
      opacity: 0;
      transform: translateY(20px);
      animation-delay: 0.6s;
      text-shadow: 0 0 6px #d8b4fe;
    }

    .hero-cta:hover,
    .hero-cta:focus {
      background: linear-gradient(135deg, #9d7edd, #5b2eac);
      box-shadow: 0 12px 30px rgba(157, 126, 221, 0.8);
      transform: translateY(-3px);
      outline: none;
    }

    /* Featured Products */
    .featured-products {
      max-width: 1200px;
      margin: 0 auto 100px;
      padding: 0 60px;
    }

    .section-title {
      font-size: 2.8rem;
      color: #e0e0e0;
      margin-bottom: 50px;
      font-weight: 800;
      text-align: center;
      letter-spacing: 0.05em;
      text-shadow: 0 0 8px #7c3aed;
      user-select: none;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 48px;
    }

    .product-card {
      background: #1a1a1a;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
      display: flex;
      flex-direction: column;
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
      cursor: pointer;
      border: 1px solid #2a2a2a;
      user-select: none;
    }

    .product-card:focus-visible {
      outline: 3px solid #7c3aed;
      outline-offset: 3px;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(124, 58, 237, 0.7);
      border-color: #7c3aed;
    }

    .product-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-bottom: 1px solid #2a2a2a;
      transition: transform 0.4s ease;
      will-change: transform;
    }

    .product-card img:hover,
    .product-card img:focus {
      transform: scale(1.08);
      outline: none;
    }

    .product-info {
      padding: 24px 28px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .product-title {
      font-size: 1.4rem;
      color: #e0e0e0;
      font-weight: 700;
      margin-bottom: 14px;
      letter-spacing: 0.02em;
    }

    .product-subtitle {
      font-size: 1rem;
      color: #a0a0a0;
      margin-bottom: 28px;
      flex-grow: 1;
      line-height: 1.4;
    }

    .product-link {
      text-align: center;
    }

    .product-link a {
      display: inline-block;
      background: linear-gradient(135deg, #7c3aed, #4c1d95);
      color: white;
      padding: 14px 40px;
      border-radius: 14px;
      font-weight: 700;
      font-size: 1.05rem;
      border: none;
      box-shadow: 0 6px 18px rgba(124, 58, 237, 0.6);
      transition: all 0.3s ease;
      user-select: none;
    }

    .product-link a:hover,
    .product-link a:focus {
      background: linear-gradient(135deg, #9d7edd, #5b2eac);
      box-shadow: 0 10px 30px rgba(157, 126, 221, 0.8);
      transform: translateY(-3px);
      outline: none;
    }

    /* Footer */
    .footer {
      text-align: center;
      margin-top: auto;
      padding: 40px 60px;
      border-top: 1px solid #2a2a2a;
      color: #666666;
      font-size: 1rem;
      user-select: none;
      letter-spacing: 0.05em;
      background: #0d0d0d;
      box-shadow: inset 0 1px 3px rgba(255,255,255,0.05);
    }

     /* Hamburger button - hidden on desktop */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 32px;
      height: 28px;
      background-color: #000000; /* black background */
      border: none;
      border-radius: 6px;
      cursor: pointer;
      padding: 6px;
      box-shadow: 0 0 8px rgba(0,0,0,0.8);
      transition: background-color 0.3s ease;
      z-index: 1100;
    }

    .hamburger:focus-visible {
      outline: 2px solid #7c3aed;
      outline-offset: 2px;
    }

    .hamburger-line {
      width: 100%;
      height: 3px;
      background-color: #e0e0e0;
      border-radius: 2px;
      transition: background-color 0.3s ease;
    }

    /* Animations */
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero {
        padding: 0 40px;
        gap: 40px;
      }

      .header {
        padding: 20px 40px;
      }

      .featured-products {
        padding: 0 40px;
      }
    }

    @media (max-width: 768px) {
      .header {
        padding: 16px 20px;
      }

      /* Hamburger button - hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 28px;
  background-color: #000000; /* black background */
  border: none;
  border-radius: 6px;
  cursor: pointer;
  padding: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,0.8);
  transition: background-color 0.3s ease;
  z-index: 1100;
}

.hamburger:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #e0e0e0;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  /* Hide the normal nav menu by default on mobile */
  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: #000000; /* black background for mobile menu */
    position: absolute;
    top: 64px; /* adjust if header height changes */
    right: 20px;
    width: 200px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.9);
    padding: 16px 0;
    z-index: 1050;
  }

  /* Show nav-menu when active */
  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    margin: 0;
  }

  .nav-menu a {
    padding: 12px 24px;
    color: #cccccc;
    font-weight: 600;
    font-size: 1rem;
  }

  .nav-menu a:hover,
  .nav-menu a:focus {
    background-color: #7c3aed;
    color: white;
    border-radius: 4px;
  }
}

      .nav-menu {
        gap: 24px;
        font-size: 0.95rem;
      }

      .hero {
        padding: 0 20px;
        margin: 60px auto 80px;
      }

      .hero-title {
        font-size: 2.6rem;
      }

      .hero-subtitle {
        max-width: 100%;
        font-size: 1.1rem;
      }

      .products-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .product-card img {
        height: 180px;
      }

      .product-info {
        padding: 20px 24px;
      }

      .product-title {
        font-size: 1.2rem;
      }

      .product-subtitle {
        font-size: 0.9rem;
      }

      .product-link a {
        padding: 12px 32px;
        font-size: 1rem;
      }

      .footer {
        padding: 30px 20px;
        font-size: 0.9rem;
      }
    }
    /* Reviews Section */
.reviews {
  max-width: 1200px;
  margin: 0 auto 100px;
  padding: 0 60px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 48px;
}

.review-card {
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
  cursor: pointer;
  border: 1px solid #2a2a2a;
  user-select: none;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  animation-delay: 0.2s; /* Stagger animations; adjust per card if needed */
}

.review-card:nth-child(2) {
  animation-delay: 0.4s;
}

.review-card:nth-child(3) {
  animation-delay: 0.6s;
}

.review-card:focus-visible {
  outline: 3px solid #7c3aed;
  outline-offset: 3px;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.7);
  border-color: #7c3aed;
}

.review-content {
  padding: 24px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-quote {
  font-size: 1.1rem;
  color: #e0e0e0;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.5;
  font-style: italic;
  position: relative;
}

.review-quote::before {
  content: '"';
  font-size: 2rem;
  color: #7c3aed;
  position: absolute;
  top: -10px;
  left: -10px;
  opacity: 0.5;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviewer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #7c3aed;
  transition: transform 0.3s ease;
}

.reviewer-avatar:hover {
  transform: scale(1.1);
}

.reviewer-details {
  flex-grow: 1;
}

.reviewer-name {
  font-size: 1.1rem;
  color: #e0e0e0;
  font-weight: 700;
  margin-bottom: 4px;
}

.reviewer-role {
  font-size: 0.9rem;
  color: #a0a0a0;
  font-weight: 400;
}

/* Responsive Adjustments for Reviews */
@media (max-width: 1024px) {
  .reviews {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .reviews {
    padding: 0 20px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .review-card {
    animation-delay: 0.2s; /* Simplify delays on mobile */
  }

  .review-content {
    padding: 20px 24px;
  }

  .review-quote {
    font-size: 1rem;
  }

  .reviewer-name {
    font-size: 1rem;
  }

  .reviewer-role {
    font-size: 0.85rem;
  }

  .reviewer-avatar {
    width: 50px;
    height: 50px;
  }
}