body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1e1e1e;
    color: #fff;
    padding: 10px 20px;
  }
  
  header .logo h1 {
    font-size: 24px;
  }
  
  header nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
  }
  
  header nav a:hover {
    text-decoration: underline;
  }
  
  main {
    padding: 20px;
  }
  
  .product-details {
    text-align: center;
  }
  .product-details h2{
    font-weight: 800;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #d93600;
  }
  .product-container p{
    font-size: larger;
    font-weight: 700;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  }
  
  .product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .product-image {
    max-width: 300px;
    width: 100%;
    border-radius: 10px;
    padding-right: 30px;
  }
  
  .product-info {
    max-width: 400px;
    text-align: left;
  }
  
  .product-info ul {
    list-style: none;
    padding: 0;
  }
  
  .product-info ul li {
    margin: 10px 0;
  }
  
  .price {
    font-size: 18px;
    font-weight: bold;
  }
  
  button {
    background-color: #ff3e00;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #d93600;
  }
  
  footer {
    text-align: center;
    padding: 10px;
    background-color: #1e1e1e;
    color: #fff;
  }
  /* General styles remain the same */

.reviews {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
  }
  
  .reviews h3, .reviews h4 {
    text-align: center;
  }
  
  .review-list {
    margin: 20px 0;
  }
  
  .review {
    margin-bottom: 20px;
    padding: 10px;
    border-bottom: 1px solid #ccc;
  }
  
  .review .review-text {
    font-style: italic;
  }
  
  .rating {
    color: #ff9800;
    font-size: 18px;
  }
  
  .review-author {
    text-align: right;
    font-size: 14px;
    color: #555;
  }
  
  #reviewForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  #reviewForm textarea,
  #reviewForm select,
  #reviewForm input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  #reviewForm button {
    background-color:#ff3e00;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  #reviewForm button:hover {
    background-color: #218838;
  }
  h3{
    font-weight: 800;
    color:#ff3e00;
  }
  h4{
    font-weight: 800;
    color:#ff3e00;
  }
  /* General styles remain the same */

.qr-code-section {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
  }
  
  .qr-code-section h3 {
    margin-bottom: 10px;
  }
  
  #qrCode {
    margin: 10px auto;
    padding: 10px;
    background-color: #fff;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
  }
  
  