/* === Base Styling === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Orbitron", sans-serif;
  }
  
  body {
    background: radial-gradient(circle at top, #0a0a0a 30%, #111 100%);
    color: #f2f2f2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  /* === Glassmorphism Header === */
  header {
    backdrop-filter: blur(12px);
    background: rgba(20, 20, 20, 0.6);
    border-bottom: 1px solid rgba(255, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  header h1 {
    color: #f57c00;
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  
  nav a {
    margin: 0 1rem;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
  }
  
  nav a:hover {
    color: #ff2b2b;
  }
  
  /* === Desktop nav list === */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
  }

  .nav-links li a {
    display: inline-block;
    padding: 0.4rem 0.2rem;
  }

  /* === Hamburger (hidden on desktop) === */
  .menu-toggle {
    display: none;
    width: 42px;
    height: 34px;
    border: 1px solid rgba(255, 0, 0, 0.5);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* stack bars vertically */
    gap: 5px; /* space between bars */
  }

  .menu-toggle .bar {
    display: block;
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
  }

  /* === Mobile drawer defaults (closed) === */
  @media (max-width: 768px) {
    header {
      padding: 0.75rem 1rem;
    }

    .menu-toggle {
      display: inline-flex;
    }

    .nav {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: min(80vw, 320px);
      transform: translateX(100%);
      transition: transform 220ms ease;
      background: rgba(20, 20, 20, 0.75);
      backdrop-filter: blur(14px);
      border-left: 1px solid rgba(255, 0, 0, 0.35);
      z-index: 1200;
      padding-top: 4.5rem; /* space below header */
    }

    .nav-links {
      flex-direction: column;
      padding: 0 1rem;
      gap: 0.75rem;
    }

    .nav-links li a {
      width: 100%;
      padding: 0.9rem 0.6rem;
      border: 1px solid rgba(255, 0, 0, 0.25);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.04);
    }

    /* Show drawer when header has .open */
    header.open .nav {
      transform: translateX(0%);
    }

    /* Dim background when open */
    header.open::after {
      content: "";
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(2px);
      z-index: 1100;
    }
  }
  
  /* === Hero Section === */
  .hero {
    text-align: center;
    padding: 6rem 2rem;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    text-shadow: 0 0 10px #f57c00;
  }
  
  .hero p {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #ccc;
  }
  
  /* === Glass Button === */
  .btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    border: 1px solid rgba(255, 0, 0, 0.6);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #f57c00;
    text-decoration: none;
    transition: 0.3s;
    backdrop-filter: blur(10px);
  }
  
  .btn:hover {
    background: rgba(255, 0, 0, 0.2);
  }
  
  /* === Footer === */
footer {
    margin-top: auto;
    padding: 1rem;
    text-align: center;
    background: #777676;
    border-top: 1px solid rgba(255, 0, 0, 0.3);
  }
  /* === Glass Form === */
.glass-form {
    max-width: 400px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.4);
  }
  
  .glass-form input,
  .glass-form textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #fff;
    padding: 0.8rem;
    border-radius: 8px;
  }
  
  .glass-form input::placeholder,
  .glass-form textarea::placeholder {
    color: #bbb;
  }
  
/* === Glass Table (Products) === */
.table-wrap {
  max-width: 1100px;
  margin: 0.2rem auto 3rem;
  padding: 0 1rem;
  /* Allow both horizontal and vertical scroll for responsiveness and sticky header */
  overflow: auto;
  border-radius: 16px;
}

.glass-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 0, 0, 0.35);
  border-radius: 16px;
  overflow: hidden;
  color: #f2f2f2;
}

/* Header */
.glass-table thead th {
  position: sticky; /* sticks within .table-wrap when it scrolls */
  top: 0;
  z-index: 1;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 0, 0, 0.35);
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 1rem 1rem;
}

/* Cells */
.glass-table td {
  padding: 1rem 1rem;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Rounded corners for first/last cells in first/last rows */
.glass-table thead th:first-child {
  border-top-left-radius: 16px;
}
.glass-table thead th:last-child {
  border-top-right-radius: 16px;
}
.glass-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 16px;
}
.glass-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 16px;
}

/* Zebra rows */
.glass-table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}
.glass-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.05);
}

/* Hover glow */
.glass-table tbody tr:hover {
  background: rgba(255, 0, 0, 0.08);
  transition: background 0.2s ease-in-out;
}

/* Action button inside table */
.glass-table .btn {
  margin: 0;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 0, 0, 0.6);
}

/* Make long "Includes" text readable */
.glass-table td:nth-child(3) {
  line-height: 1.45;
  color: #ddd;
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .glass-table thead th,
  .glass-table td {
    padding: 0.75rem 0.8rem;
    font-size: 0.95rem;
  }
  .glass-table td:nth-child(3) {
    font-size: 0.9rem;
  }
}
.prop65-warning {
  display: flex;
  align-items: flex-start;
  background: #fff8e1;
  color: #000;
  padding: 16px;
  border: 1px solid #ffc107;
  border-radius: 8px;
  max-width: 700px;
  margin: 40px auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.prop65-warning .icon {
  flex: 0 0 auto;
  margin-right: 12px;
  font-size: 2rem;
  color: #ffc107;
  line-height: 1;
}
.prop65-warning .text {
  flex: 1 1 auto;
  font-size: 1rem;
  line-height: 1.5;
}
.prop65-warning a {
  color: #003399;
  text-decoration: underline;
}
/* ================================
   Product Description Section
   ================================ */
   .product-desc {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    background: linear-gradient(180deg, rgba(10,10,10,0.9), rgba(15,15,15,0.95));
  }
  
  .product-container {
    max-width: 1100px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
  }
  
  .product-image {
    width: 100%;
    max-width: 450px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid rgba(255, 0, 0, 0.3);
  }
  
  .product-text {
    flex: 1;
    color: #f2f2f2;
  }
  
  .product-text h2 {
    color: #ff2b2b;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
  }
  
  .product-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 1.5rem;
  }
  
  /* Mobile layout */
  @media (max-width: 768px) {
    .product-container {
      flex-direction: column;
      text-align: center;
    }
    .product-image {
      max-width: 100%;
    }
  }
/* === Spike Display as Background === */
.spike-display {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 0;
  background-image: url("../assets/images/spike.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(255, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 0, 0, 0.3);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.7);
}

.spike-display img {
  display: none;
}
/* === Features Section === */
.features {
  padding: 4rem 2rem;
  background: radial-gradient(circle at top, #111, #000);
  color: #fff;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  color: #ff6600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.features-intro {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #ddd;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: rgba(20, 20, 20, 0.8);
  padding: 1.5rem;
  border: 1px solid rgba(255, 102, 0, 0.4);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.1);
  text-align: left;
}

.feature-card h3 {
  color: #ff6600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #ccc;
  font-size: 0.95rem;
}

.feature-card ul {
  margin-top: 0.5rem;
  padding-left: 1.2rem;
  list-style: disc;
  color: #bbb;
}

.features-cta {
  text-align: center;
  margin-top: 3rem;
}

.features-cta .btn {
  border: 1px solid #ff6600;
  color: #ff6600;
  background: transparent;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.features-cta .btn:hover {
  background: #ff6600;
  color: #000;
}

.cta-note {
  color: #ccc;
  margin-top: 0.8rem;
  font-size: 0.9rem;}

/* === Footer Icons === */
.footer-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 0.8rem;
}

.footer-icon {
  height: 70px;
  width: auto;
  object-fit: contain;
  background: none;
  padding: 0;
  border: none;
  border-radius: 6px;
  filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-icon:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 18px rgba(255, 0, 0, 0.6));
}

.footer-link {
  color: #ff6600;
  display: inline-block;
  margin-top: 0.3rem;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}
/* === Privacy Page === */
#privacy-page .privacy-header {
  background: rgba(20, 20, 20, 0.7);
  border-bottom: 1px solid rgba(255, 0, 0, 0.3);
}
#privacy-page .privacy-header h1 {
  color: #ff6600;
  letter-spacing: 1px;
}

/* Hero with image + readable overlay */
#privacy-hero {
  position: relative;
  padding: 5rem 2rem;
  background-image: url("../assets/images/spike.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#privacy-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.65));
  pointer-events: none;
}
#privacy-hero h2,
#privacy-hero p {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

/* Content container */
.privacy-content {
  padding: 2.5rem 1rem 3.5rem;
}
.privacy-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,0,0,0.35);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.08);
}

.privacy-container h2 {
  color: #ff6600;
  font-size: 1.3rem;
  margin: 1.8rem 0 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 0.35rem;
}
.privacy-container p,
.privacy-container li {
  color: #ddd;
  line-height: 1.7;
}
.privacy-container ul {
  padding-left: 1.2rem;
  margin: 0.4rem 0 0.8rem;
  list-style: disc;
}
.privacy-container a {
  color: #ff8600;
  text-decoration: none;
}
.privacy-container a:hover {
  text-decoration: underline;
  color: #fff;
}

/* Footer variant spacing */
.privacy-footer {
  margin-top: 2rem;
}
a{
  color: #ff6600;
}