  .products-tab-container {
    width: 100%;
    margin: auto;
    color: #333;
    height: 85vh;
  }

  .products-tabs {
    display: flex;
    margin-bottom: 0;
    flex-wrap: wrap;
  }

  .products-tab-btn,
  .sub-products-tab-btn {
    display: flex;
    align-items: center;
    /* vertical centering */
    gap: 8px;
    padding: 10px 30px 10px 30px;
    font-weight: bold;
    
    cursor: pointer;
    border: none;
    background: none;
    transition: 0.3s;
    font-size: 1rem;
    color: #111;
    margin-right: 15px;
    height: 75px;
  }

  .products-tab-btn {
    width: 28%;
    border-radius: 10px 10px 0 0;
    background-color: #aaa;
  }

  .sub-products-tab-btn {
    height: 60px;
    border-radius: 10px;
    font-size: 0.75rem;
    background-color: #bbb;
  }

  .products-tab-btn i {
    font-size: 1.5rem;
    margin: 0 5px 0 0;
  }

  .sub-products-tab-btn i {
    font-size: 2.0rem;
  }

  .products-tab-btn:hover,
  .products-tab-btn.active {
    background-color: #ccc;
    color: #333;
    font-weight: bolder;
    border-radius: 10px 10px 0 0;
  }

  .sub-products-tab-btn:hover,
  .sub-products-tab-btn:active {
    background-color: #ccc;
    font-weight: bolder;
    color: #333;
  }

  .sub-products-tab-btn.active {
    background-color: #474747;
    font-weight: bolder;
    color: #fff;
  }

  .products-tab-content,
  .products-subtab-content {
    display: none;
    background-color: #222;
    border-radius: 0 10px 10px 10px;
  }

  .products-tab-content {
    padding: 15px 15px 0 15px;
  }

  .products-tab-content.active,
  .products-subtab-content.active {
    display: block;
    background-color: #ccc;
  }

  /* Content Layout Inside Tabs */
  .products-content-main-div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .products-tab-inner-content {
    display: flex;
    flex: 0 0 calc(50% - 10px);
    /* 2 items per row */
    max-width: 100%;
    border-radius: 15px;
    margin: 0px 0 15px 0;
    box-sizing: border-box;
    align-items: flex-start;
    max-height: 150px;
  }

  .products-tab-inner-content img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
  }

  .products-text-content {
    margin-left: 15px;
    max-height: 120px;
    overflow: hidden;
  }

  .products-text-content h2 {
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 0;
    color: #111;
    font-weight: bold;
  }

  .products-text-content p {
    text-align: justify;
    font-size: 0.80rem;
    color: #111;
  }

  .products-secondary-tabs-text {
    font-size: 0.8rem;
  }

  @media (max-width: 600px) {
    .products-tab-inner-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .products-tab-inner-content img {
      width: 100%;
    }

    .products-tab-btn {
      font-size: 0.75rem;
      padding: 5px;
      height: 60px;
    }
  
    .products-tab-btn i {
      font-size: 1.2rem;
    }
    
  }