/* General Styles */
.productDetail {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    color: #333;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .productDetail h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #444;
  }
  
  /* Product Detail Layout */
  .detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  .leftSide.image {
    flex: 1;
    text-align: center;
  }
  
  .leftSide.image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .rightSide.details {
    flex: 2;
    padding: 10px;
  }
  
  .rightSide.details h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
  }
  
  .rightSide.details p {
    font-size: 16px;
    color: #555;
    margin: 10px 0;
    line-height: 1.6;
  }
  
  .rightSide.details p span {
    font-weight: bold;
    color: #000;
  }
  
  /* Product Description */
  .productDescription {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
    font-size: 16px;
    color: #555;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .detail {
      flex-direction: column;
      align-items: center;
    }
  
    .rightSide.details {
      text-align: center;
    }
  }