.product-detail-page {
    box-sizing: border-box;
    width: 100%;
}

.product-detail-page .product-info {
    box-sizing: border-box;
    width: calc(100% - 80px);
    padding: 12px 0px;
    margin: 0px 40px;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.product-detail-page .product-info .breadcrumb {
    box-sizing: border-box;
    width: 100%;
    line-height: 20px;
    font-size: 16px;
    margin: 0px;
    color: #000;
}

.product-detail-page .product-info .product-name {
    box-sizing: border-box;
    width: 100%;
    margin: 4px 0px;
}

.product-detail-page .product-info .product-name h1 {
    display: block;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
}

.product-detail-page .product-info .product-location {
    box-sizing: border-box;
    flex-direction: row;
    align-items: center;
    display: flex;
    width: 100%;
    margin: 4px 0px;
    gap: 8px;
}

.product-detail-page .product-info .product-owner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 36px;
}

.product-detail-page .product-info .product-owner img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    margin-right: 8px;
    border-radius: 50%;
}

.product-detail-page .product-info .product-owner p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500 !important;
    color: #333 !important;
    margin: unset;
}

.product-detail-page .product-info .product-location .bi-geo-alt {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    width: 16px;
    height: 16px;
}

.product-detail-page .product-info .product-location span {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    width: 100%;
    height: 20px;
}

.product-detail-page .product-info .product-description {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    margin: 16px 0px;
}

.product-detail-page .product-info .product-description * {
    all: unset;
    display: unset;
    box-sizing: border-box;
}

.reference-products-section {
    box-sizing: border-box;
    background: #fff;
    margin: 16px 0px;
}