  
    .placeholder-box {
      background-color: #e9ecef;
      border-radius: .5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #6c757d;
      font-size: 14px;
    }
    .product-image {
      aspect-ratio: 1 / 1;
      width: 100%;
    }
    .thumb {
      aspect-ratio: 1 / 1;
      width: 100%;
    }
    .sticky-cta {
      position: sticky;
      top: 1rem;
    }
    .product-price{
      color: var(--color-temudi);
    }

    .image-wrapper-product {
        /* background-color: #f8f9fa;  */
        width: 100%;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .image-wrapper-product img {
        width: 100%;       
        height: auto;    
        object-fit: contain;
    }


    @media (max-width: 992px) {
      .sticky-cta {
        position: static;
      }
    }