.product-row-wrapper {
    width: 100%;
    height: 368px;
    direction: rtl;
    background: #ffffff;
    border-radius: 8px;
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 8px hsla(0, 0%, 46%, .1);
    margin-bottom: 16px;
  }
  .product-row-wrapper.is-special-seller {
    border: 1px solid #d9b600;
  }
  .elevator {
    position: absolute;
    left: 8px;
    /* top: 8px; */
    color: #457e96;
    width: 16px;
    height: 16px;
  }
  .elevator i {
    width: 1.8rem;
    text-align: center;
  }
  .elevator svg {
    width: 16px;
    height: 16px;
  }
  .product-row-wrapper .special-seller {
    width: 70px;
    height: 21px;
    background: #d9b600;
    position: absolute;
    z-index: 4;
    right: -1px;
    font-size: 1rem;
    font-weight: 400;
    top: 0;
    padding: 2px;
    text-align: center;
    color: #fff !important;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
    padding: 6px 4px 6px 12px;
    border-top-right-radius: 8px;
  }
  .product-top-contents {
    display: grid;
    grid-template-columns: 126px auto;
    position: relative;
  }
  .product-top-contents .product-image {
    position: relative;
    height: 168px;
    background-color: #404b55;
    margin-bottom: 16px;
  }
  .product-top-contents .product-image .image-counts {
    width: 28px;
    height: 17px;
    font-size: 1rem;
    position: absolute;
    bottom: 5px;
    z-index: 5;
    right: 5px;
    color: #ffffff;
    background: rgba(117, 117, 117, 0.6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px 2px;
  }
  .product-top-contents .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  .product-top-contents .product-image .media-icon {
    position: absolute;
    right: 7.621px;
    bottom: 8px;
    width: 20px;
    height: 20px;
    border-radius: 100px;
    background: rgba(117, 117, 117, 0.60);
    backdrop-filter: blur(2px);
    z-index: 2;
  }
  .product-top-contents .product-image .media-icon svg {
    width: 20px;
    height: 20px;
  }
  .product-top-contents .product-content {
    padding-right: 8px;
    display: flex;
    flex-direction: column;
    color: #757575;
    font-size: 1.4rem;
    gap: 8px;
    overflow: hidden;
    position: relative;
  }
  .product-top-contents .product-content .icon {
    width: 16px;
    height: 16px;
  }
  .product-top-contents .product-content .icon svg {
    width: 16px;
    height: 16px;
  }
  .product-top-contents .product-content .product-name {
    display: inline-block;
    color: #030303;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 90%;
    white-space: nowrap;
  }
  .product-top-contents .product-content > div {
    height: 24px;
  }
  
  .product-top-contents .product-content .location {
    width: 100%;
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .product-top-contents .product-content .location .location-name{
    text-overflow: ellipsis;
    overflow: hidden; 
    width: 80%; 
    height: 24px; 
    line-height: 24px;
    white-space: nowrap;
    display: inline-block;
  }
  .product-top-contents .product-content .unit-amount {
    width: 100%;
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .product-top-contents .product-content .unit-amount .unit-amount-value {
    text-overflow: ellipsis;
    overflow: hidden; 
    width: 80%; 
    height: 24px; 
    line-height: 24px;
    white-space: nowrap;
    display: inline-block;
  }
  .product-top-contents .product-content > div:last-child {
    margin-bottom: 0;
  }
  .product-content .verified-user {
    font-size: 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3px;
    cursor: pointer;
  }
  .product-content .verified-user svg {
    width: 14px;
  }
  .product-content .verified-user span {
    background-color: #deebf0;
    color: rgba(30, 159, 189, 0.8);
    padding: 4px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 400;
  }
  .product-footer {
    display: flex;
    margin-top: 8px;
  }
  .product-footer .unit {
    color: #979797;
    font-size: 1.2rem;
    font-weight: 400;
  }
  .product-footer .currency {
    color: #979797;
    font-size: 1.4rem;
    font-weight: 400;
  }
  .product-footer .price {
    color: #030303;
    font-size: 1.8rem;
    font-weight: 500;
  }
  .product-footer.is-login {
    border-top: 1px solid #ededed;
    padding: 16px 8px;
    display: flex;
    justify-content: space-between;
  }
  .product-footer button {
    max-width: 100%;
    border-radius: 8px;
    color: #ff8603;
    font-size: 1.4rem;
    padding: 7px 6px;
    line-height: 24px;
  }
  .spinner-border {
    position: absolute;
    left: calc(50% - 20px);
    top: calc(50% - 20px);
    color: #ffffff;
    width: 4rem;
    height: 4rem;
    vertical-align: text-bottom;
    border-width: 0.35rem;
  }
  @media (min-width: 1201px) {
    .product-row-wrapper {
      width: 23%;
      margin: 8px;
      padding: 0;
    }
  }
  @media (min-width: 768px) and (max-width: 1200px) {
    .product-row-wrapper {
      width: 31%;
      margin: 8px;
    }
  }
  @media (min-width: 767px) {
    .product-list-container.container{
        width: 100%;
      }  
      /* .product-top-contents .product-content {
        padding: 8px;
      } */
      .product-top-contents {
        display: flex;
        flex-direction: column;
        grid-template-columns: none;
      }
    
      .product-row-wrapper > a {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }
/*     
      .elevator {
        top: 179px;
      } */
    
      .product-footer {
        padding: 8px;
      }
    
      .product-row-wrapper .special-seller {
        right: unset;
        left: 0;
        clip-path: polygon(0 0, 100% 0, 83% 100%, 0% 100%);
        border-radius: 0;
        border-top-left-radius: 8px;
        padding: 3px 7px 3px 0px;
      }
    
      .product-top-contents .product-image {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
      }
      .mobile{
        display: none !important;
      }
      .spinner-border {
        left: calc(50% - 10px);
        top: calc(50% - 10px);
        width: 2rem;
        height: 2rem;
      }
    }
    @media (max-width: 768px) {
      .icon-button:hover span{
        background: unset;
      }
      .rate-filter-mobile-wrapper.desktop-filter-items {
        display: none;
      }
      .desktop{
        display: none !important;
      }
      .product-top-contents {
        position:unset;
      }
      .product-top-contents .product-image {
        border-radius: 4px;
        height: 119px;
      }
      .product-row-wrapper {
        height: 184px;
        position: unset;
      }
      .product-row-wrapper > a {
        overflow: unset;
        position: relative;
      }
      .product-row-wrapper .special-seller {
        padding-top: 4px;
        top: -10px;
        right: -8px;
      }
      .product-top-contents .product-image img{
        border-radius: 8px;
      }
      .product-row-wrapper.is-special-seller {
        border: 0;
      }
  }