  .product-detail-wrapper {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .product-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 1200px;
    width: 100%;
    box-shadow: 0 10px 30px white;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .product-image {
    width: 100%;
    transition: transform 0.3s ease;
  }
  .product-image:hover {
    transform: scale(1.02);
  }
  .product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Second image container with title and width 50% */
  .second-image-container {
    width: 100%;
    text-align: center;
  }

  .second-image-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f47400; /* your orange accent */
  }

  .second-image-container img {
    width: 50%;
    height: auto;
    transition: transform 0.3s ease;
  }
  .second-image-container img:hover {
    transform: scale(1.02);
  }

  /* ==================== Responsive=============================== */
  @media (max-width: 1200px) {
    .product-box {
      max-width: 90%;
      padding: 30px 20px;
    }
    .second-image-container img {
      width: 70%;
    }
  }
  @media (max-width: 768px) {
    .product-detail-wrapper {
      padding: 30px 15px;
    }
    .product-box {
      padding: 20px 10px;
      max-width: 100%;
      gap: 30px;
    }
    .second-image-container img {
      width: 90%;
    }
  }
  @media (max-width: 480px) {
    .product-detail-wrapper {
      padding: 20px 10px;
    }
  }
