<style>
    body {
      font-family: Arial, sans-serif;
      background: #ffffff;
      color: #333;
      margin: 0;
      padding: 0;
	  text-align: justify;
	  line-height: 130%;
    }
    .container {
      width: 90%;
      max-width: 800px;
      margin: 20px auto;
      padding: 20px;
      border: 1px solid #ddd;
    }
    .title {
      font-size: 24px;
      font-weight: bold;
      color: #0077cc;
      margin-bottom: 20px;
    }

    .gallery {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .main-image img {
      width: 100%;
      max-width: 500px;
      border: 1px solid #ccc;
      margin-bottom: 10px;
    }

    .thumbnail-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    .thumbnail-row img {
      width:100%;
      max-width: 500px;
      object-fit: cover;
      cursor: pointer;
      border: 2px solid transparent;
      transition: border 0.3s;
    }

    .description {
      margin-top: 20px;
      font-size: 16px;
      line-height: 1.6;
    }

    .features {
      margin-top: 20px;
    }

    .features ul {
      padding-left: 20px;
    }
	  
	li {
		list-style-type: square;
	}
	  
    .shipping {
      margin-top: 20px;
      background: #f8f8f8;
      padding: 10px;
      border: 1px solid #ccc;
    }
  </style>
  
