
    /* Page-specific styles */
    .product-page {
      display: flex;
      gap: 24px;
      padding: 24px;
      box-sizing: border-box;
      max-width: 1400px;
      margin: 0 auto;
    }

    /* Left-side image gallery */
    .image-gallery {
      flex: 1;
      position: sticky;
      top: 0;
    }
    .image-gallery .main-image {
      width: 100%;
      
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 12px;
    }
    .image-gallery .thumbnail-bar {
      display: flex;
      gap: 8px;
      
    }
    .image-gallery .thumbnail {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 4px;
      cursor: pointer;
      transition: transform 0.2s;
    }
    .image-gallery .thumbnail:hover {
      transform: scale(1.1);
    }

    /* Right-side product description */
    .product-description {
      flex: 2;
      overflow-y: auto;
      
      padding: 16px;
      border: 1px solid #ddd;
      border-radius: 8px;
      background: #f9f9f9;
    }
    .product-description h1 {
      margin: 0 0 12px;
      font-size: 24px;
    }
    .product-description p {
      margin: 0 0 12px;
      line-height: 1.6;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .product-page {
        flex-direction: column;
      }
      .image-gallery {
        position: static;
      }
      .product-description {
        max-height: none;
      }
    }
    h1, h2, h3, h4, h5, h6 {
    font-size: revert !important;
    font-weight: revert !important;
    line-height: revert;
    margin: revert;
  }
  a:hover {
    text-decoration: underline;
    color: #0080ff;
  }