/* .productPage {
    padding: 4rem 2rem;
    color: #fff;
    background-color: #030303;
    font-family: 'Poppins', sans-serif;
  } */
  
  .productHero {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
  }
  
  .textSide {
    flex: 1;
    min-width: 280px;
  }
  
  .imgSide {
    flex: 1;
    text-align: center;
  }
  
  .imgSide img {
    max-width: 100%;
    border-radius: 1rem;
    box-shadow: 0 0 15px rgba(0, 255, 140, 0.1);
  }
  
  .productFeatures,
  .productPreview {
    margin-top: 4rem;
  }
  
  .featureList {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
  }
  
  .featureList li {
    background: #111;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #04AA6D;
  }