
 /* ---------- Reset & Base ---------- */
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    font-family: 'Open Sans', sans-serif;
    background: black;
    min-height: 100vh;
    color: black;          /* deeper, darker text */
    line-height: 1.6;
  }
  a { text-decoration: none; color: inherit; }



  /* ---------- Products Section ---------- */
  .products-section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .products-section h1 {
    font-size: 2.5rem;
    text-align: center;
    color:  #ff9933;
    margin-bottom: 0.5rem;
  }
  .products-section .subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
  }

  /* ---------- Grid & Cards (With Shiny Border) ---------- */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
    gap: 1.5rem;
  }
  .card {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    /* shiny white border */
    border: 1px solid rgba(255,255,255,0.3);
    /* soft glow */
    box-shadow:
      0 0 8px rgba(255,255,255,0.2),
      0 4px 6px rgba(0,0,0,0.7);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .card:hover {
    transform: translateY(-5px);
    box-shadow:
      0 0 12px rgba(255,255,255,0.4),
      0 8px 12px rgba(0,0,0,0.7);
  }
  .card img {
    display: block;
    margin: 1rem auto;
    height: 50px;
    width: auto;
    object-fit: contain;
    background: transparent;
  }
  .card-content {
    padding: 1rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color:  #b36b00;
  }
  .card-desc {
    flex-grow: 1;
    color: #ccc;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .card a {
    padding: 0.75rem 1rem;
    background: #4ff1e2;
    color: black;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
  }
  .card a:hover {
    background:#cc0000;
    color:white;
  }
.products-section h1 {
  font-size: 2.5rem;
  text-align: center;
  color: #ff9933;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block; /* Needed for ribbon alignment */
  padding: 0 36px;
}

.products-section h1 {
  font-size: 2.5rem;
  text-align: center;
  color: #ff9933;
  margin-bottom: 0.5rem;
  position: relative;
}

.products-section h1::after {
  content: "";
  display: block;
  margin: 0.7rem auto 0 auto;
  width: 180px;
  height: 6px;
  border-radius: 4px;
  background: linear-gradient(90deg, #ff9933 60%, #fff466 100%);
  /* For a ribbon look, you can use a solid color or play with gradient */
}
