.block-title{
    color: var(--main-color-black, #3E3E3E);
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 3rem;
    margin-top: 3rem;
  }
  .content-block > .container{
    padding: 10rem 0;
  }
  .content {
    display: flex;
    justify-content: center;
    width: 100%;
}
.container {
  max-width: 1400px;
  width: 100%;
}
  .content-block > .container > .products {
    display: flex;
    /* flex-wrap: wrap; */
    flex-direction: column;
    /* padding: 0 15rem; */
    max-width: 1400px;
  }
  .product-card{
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    background: var(--secondary-color-light-grey, #F6F6F6);
    border-radius: 20px;
    margin: 30px 0;
  }
  footer {
    width: 100%;
    display: flex;
    justify-content: center;
}
  .product-card > .product-view {
    width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-card > .product-view > .image > img {
  width: 80%;
  height: auto;
  padding: 30px;
}
  .product-card > .product-view > .popup-view{
    display: none;
  }
  .product-card > .product-info {
    /* padding: 0 3rem 0; */
    display: flex;
    height: 20rem;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    /* border-radius: 0rem 0rem 0.5rem 0.5rem; */
    width: 50%;
}
  .product-card > .product-info > .content{
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .product-card > .product-info  .name{
    color: var(--main-color-black, #3E3E3E);
    /* Headlines/H4-20px */
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .product-card > .product-info .description {
    color: var(--main-color-black, #3E3E3E);
    font-size: 27px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-top: 1.25rem;
}

  .product-card > .product-info  .detail{
    color: var(--main-color-light-green, #7BAF21);
    /* Headlines/H5-16px */
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .product-card > .product-info .detail:hover{
    color: #6C991E;
    box-shadow: 0px 0px 8px 4px rgba(204, 204, 204, 0.10);
  }
  .product-card > .product-info .detail:active {
    color: var(--main-color-dark-green, #285F38);
  }


  .popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .popup-content {
    position: relative;
  }
  
  #popupImage {
    max-width: 80%;
    max-height: 80%;
  }
  
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
  }
  .categories-mobile{
    display: none;
  }
  @media only screen and (max-width: 1440px) {
    .content-block > .container{
      margin: 0 1rem 0;
      width: calc(100% - 2rem);
    }
    .block-title{
      font-size: 1.5rem;
      padding-top: 2rem;
      width: calc(100%);
    }
    
  }

  @media only screen and (max-width: 890px) {
    .category.content-block{
      display: none;
    }
    .popup-view{
      display: none;
    }
    .categories-mobile{
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      padding: 4.5rem 1.25rem 2rem;
    }
    .custom-dropdown {
      position: relative;
      display: none;
      flex-direction: column;
      gap: 0.5rem;
      padding: 70px 0 0;
    }
    
    .selected-option {
      border-radius: 0.5rem;
      background: #7BAF21;
      color: #fff;
      padding: 0.6875rem 0.6875rem 0.75rem 0.875rem;
      cursor: pointer;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      font-size: 1rem;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
    }
    .categories-mobile > .products{
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .product-card{
      width: 100%;
      height: fit-content;
      box-sizing: border-box;
    }
    
    .options {
      display: none;
      position: relative;
      top: 100%;
      left: 0;
      width: 100%;
      opacity: 0;
      transform: scaleY(0);
      transform-origin: top;
      transition: opacity 0.3s ease, transform 0.3s ease;
      
    }
    
    .options.active {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      opacity: 1;
      transform: scaleY(1);
    }
    
    .option {
      border-radius: 0.5rem;
      background: #F6F6F6;
      cursor: pointer;
      color: #3E3E3E;
      font-size: 1rem;
      font-style: normal;
      font-weight: 600;
      line-height: normal;
      padding: 0.75rem 3.5625rem 0.8125rem 0.875rem;
    }
    
    .option:hover {
      background-color: #ddd;
    }
    
    .option.selected {
      display: none;
    }
    
    .product-card > .product-info {
      padding: 0;
      height: 13rem;
    }
  }
  
  @media only screen and (max-width: 520px) {
    .product-card > .product-info .description {
      font-size: 20px;
  }
  }