
.related_product {
  align-items: center;
  display: flex;
  text-align: center;
  border: var(--border);
  background-color: #fff;
  transition: border-color 300ms ease;
  border-width: var(--border-width);
  border-radius: var(--border-radius-s);
  border-color: var(--border-color);
 
  }
  .related_product:hover {
   border-color:#959595;
  }
  .related_product p{
    margin:0px;
  }
  
  .name {
    font-size: 0.8rem;

  }
  .genderType {

    font-weight: bold;
    color: black;
  }
  .see_product_button {
    color: var(--color-action);
    font-weight: bold;
  }
  .thumb_image {
    width: 80px;
  }

  .related-title {
    color: black;
    font-weight: bold;
  }
  .related_products_logia {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .related_product {
    gap: 10px;
    padding: 10px 15px;
  }
  .related_content {
    text-align: left;
  }
  .name {
    width: 120px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .see_product_button {
    margin-top: 5px !important;
  }

  @media screen and (max-width:767px) {
    .related_product {
      width: 100%;
    }
    .related_content {
      width: calc(100% - 80px);
    }
    .name {
      width: 100%;
    }
  }

  .related_content {
    width: calc(100% - 80px);
  }
  .name {
    max-width: 100%;
    width: auto;
  }